Software / code / prosody-modules
Annotate
mod_admin_web/admin_web/get_deps.sh @ 4730:1da4b815d2fe
mod_cloud_notify: Identify (and immediately push) urgent stanzas, e.g. calls
This covers the following things:
- A session that appears online, but has a broken TCP connection
- Clients such as Siskin and Snikket iOS that require a push for calls to work
It allows the stanza to be pushed immediately instead of waiting for the
session to hibernate or an ack to timeout.
It shouldn't break any existing cases.
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Wed, 27 Oct 2021 19:12:03 +0100 |
| parent | 2786:127d5452e4bb |
| rev | line source |
|---|---|
|
291
94fab3c0a7aa
mod_admin_web: replace get_deps.lua with a (working) get_deps.sh
Florian Zeitz <florob@babelmonkeys.de>
parents:
diff
changeset
|
1 #!/bin/sh |
|
1217
b3e2ed890b93
mod_admin_web: Bump jquery version
Florian Zeitz <florob@babelmonkeys.de>
parents:
1120
diff
changeset
|
2 JQUERY_VERSION="1.10.2" |
|
1270
7c3c3343365c
mod_admin_web: Bump strophe.js version
Florian Zeitz <florob@babelmonkeys.de>
parents:
1256
diff
changeset
|
3 STROPHE_VERSION="1.1.2" |
|
571
817322323fea
mod_admin_web: Add bootstrap to get_deps.sh
Matthew Wild <mwild1@gmail.com>
parents:
547
diff
changeset
|
4 BOOTSTRAP_VERSION="1.4.0" |
|
768
af06e69c807a
mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents:
575
diff
changeset
|
5 ADHOC_COMMITISH="87bfedccdb91e2ff7cfb165e989e5259c155b513" |
|
af06e69c807a
mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents:
575
diff
changeset
|
6 |
|
291
94fab3c0a7aa
mod_admin_web: replace get_deps.lua with a (working) get_deps.sh
Florian Zeitz <florob@babelmonkeys.de>
parents:
diff
changeset
|
7 cd www_files/js |
|
768
af06e69c807a
mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents:
575
diff
changeset
|
8 |
|
af06e69c807a
mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents:
575
diff
changeset
|
9 rm -f jquery-$JQUERY_VERSION.min.js |
|
1270
7c3c3343365c
mod_admin_web: Bump strophe.js version
Florian Zeitz <florob@babelmonkeys.de>
parents:
1256
diff
changeset
|
10 wget http://code.jquery.com/jquery-$JQUERY_VERSION.min.js || exit 1 |
|
768
af06e69c807a
mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents:
575
diff
changeset
|
11 |
|
af06e69c807a
mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents:
575
diff
changeset
|
12 rm -f adhoc.js |
|
1270
7c3c3343365c
mod_admin_web: Bump strophe.js version
Florian Zeitz <florob@babelmonkeys.de>
parents:
1256
diff
changeset
|
13 wget -O adhoc.js "http://git.babelmonkeys.de/?p=adhocweb.git;a=blob_plain;f=js/adhoc.js;hb=$ADHOC_COMMITISH" || exit 1 |
|
768
af06e69c807a
mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents:
575
diff
changeset
|
14 |
|
af06e69c807a
mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents:
575
diff
changeset
|
15 rm -f strophe.min.js |
|
2786
127d5452e4bb
mod_admin_web: Extract strophe from tarball without --strip-components (fixes #1013)
Kim Alvefur <zash@zash.se>
parents:
1270
diff
changeset
|
16 wget https://raw.github.com/strophe/strophe.im/gh-pages/strophejs/downloads/strophejs-$STROPHE_VERSION.tar.gz && |
|
127d5452e4bb
mod_admin_web: Extract strophe from tarball without --strip-components (fixes #1013)
Kim Alvefur <zash@zash.se>
parents:
1270
diff
changeset
|
17 tar xzf strophejs-$STROPHE_VERSION.tar.gz strophejs-$STROPHE_VERSION/strophe.min.js && |
|
127d5452e4bb
mod_admin_web: Extract strophe from tarball without --strip-components (fixes #1013)
Kim Alvefur <zash@zash.se>
parents:
1270
diff
changeset
|
18 mv strophejs-$STROPHE_VERSION/strophe.min.js . && |
|
127d5452e4bb
mod_admin_web: Extract strophe from tarball without --strip-components (fixes #1013)
Kim Alvefur <zash@zash.se>
parents:
1270
diff
changeset
|
19 rm -r strophejs-$STROPHE_VERSION strophejs-$STROPHE_VERSION.tar.gz || exit 1 |
|
768
af06e69c807a
mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents:
575
diff
changeset
|
20 |
|
571
817322323fea
mod_admin_web: Add bootstrap to get_deps.sh
Matthew Wild <mwild1@gmail.com>
parents:
547
diff
changeset
|
21 cd ../css |
|
768
af06e69c807a
mod_admin_web: Update dependency versions
Florian Zeitz <florob@babelmonkeys.de>
parents:
575
diff
changeset
|
22 rm -f bootstrap-$BOOTSTRAP_VERSION.min.css |
|
1270
7c3c3343365c
mod_admin_web: Bump strophe.js version
Florian Zeitz <florob@babelmonkeys.de>
parents:
1256
diff
changeset
|
23 wget https://raw.github.com/twbs/bootstrap/v$BOOTSTRAP_VERSION/bootstrap.min.css -O bootstrap-$BOOTSTRAP_VERSION.min.css || exit 1 |