Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
1b139d9d
Commit
1b139d9d
authored
Jun 21, 2017
by
Weblate
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
1ed233d0
3310df88
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
20137 additions
and
18403 deletions
+20137
-18403
.gitignore
.gitignore
+1
-13
Makefile
Makefile
+11
-6
css/inverse.css
css/inverse.css
+2
-0
dist/converse-mobile.js
dist/converse-mobile.js
+16380
-14731
dist/converse.js
dist/converse.js
+3738
-3645
inverse.html
inverse.html
+1
-7
sass/inverse/_controlbox.scss
sass/inverse/_controlbox.scss
+3
-0
src/templates/brand_heading.html
src/templates/brand_heading.html
+1
-1
No files found.
.gitignore
View file @
1b139d9d
...
...
@@ -49,19 +49,7 @@ develop-eggs
.DS_Store
# Builds
dist/converse-no-dependencies.min.js
dist/converse-no-locales-no-otr.js
dist/converse-no-locales-no-otr.min.js
dist/converse-no-otr.js
dist/converse-no-otr.min.js
dist/converse.min.js
dist/inverse.min.js
dist/converse-no-jquery.js
dist/converse-no-jquery.min.js
dist/converse-mobile.min.js
dist/converse-muc-embedded.js
dist/converse-muc-embedded.min.js
dist/*
css/*.map
css/*.min.css
.sv?
...
...
Makefile
View file @
1b139d9d
# You can set these variables from the command line.
BABEL
?=
node_modules/.bin/babel
BOURBON_TEMPLATES
=
./node_modules/bourbon/app/assets/stylesheets/
BUILDDIR
=
./docs
BUNDLE
?=
./.bundle/bin/bundle
CHROMIUM
?=
./node_modules/.bin/run-headless-chromium
CLEANCSS
?=
./node_modules/clean-css-cli/bin/cleancss
--skip-rebase
ESLINT
?=
./node_modules/.bin/eslint
GRUNT
?=
./node_modules/.bin/grunt
HTTPSERVE
?=
./node_modules/.bin/http-server
ESLINT
?=
./node_modules/.bin/eslint
PAPER
=
CHROMIUM
?=
./node_modules/.bin/run-headless-chromium
RJS
?=
./node_modules/.bin/r.js
PO2JSON
?=
./node_modules/.bin/po2json
RJS
?=
./node_modules/.bin/r.js
SASS
?=
./.bundle/bin/sass
CLEANCSS
?=
./node_modules/clean-css-cli/bin/cleancss
--skip-rebase
SPHINXBUILD
?=
./bin/sphinx-build
SPHINXOPTS
=
...
...
@@ -147,6 +148,10 @@ css/mobile.min.css:: stamp-npm sass/*
watch
:
stamp-bundler
$(SASS)
--watch
-I
./node_modules/bourbon/app/assets/stylesheets/ sass/converse.scss:css/converse.css sass/_muc_embedded.scss:css/converse-muc-embedded.css
.PHONY
:
watchjs
watchjs
:
stamp-npm
$(BABEL)
--source-maps
--watch
=
./src
--out-dir
=
./build
BUILDS
=
dist/converse.js
\
dist/converse.min.js
\
dist/inverse.js
\
...
...
@@ -201,8 +206,8 @@ build:: dev css
.PHONY
:
eslint
eslint
:
stamp-npm
#
$(ESLINT)
src/
#
$(ESLINT)
spec/
$(ESLINT)
src/
$(ESLINT)
spec/
.PHONY
:
check
check
:
eslint
...
...
css/inverse.css
View file @
1b139d9d
...
...
@@ -2272,6 +2272,8 @@ body {
margin-top
:
4em
;
}
#conversejs
#controlbox
.fullscreen
{
width
:
100%
;
}
#conversejs
#controlbox
.fullscreen
.controlbox-pane
{
height
:
100%
;
}
#conversejs
#controlbox
.fullscreen
.box-flyout
{
width
:
100%
;
}
#conversejs
#controlbox
.box-flyout
{
...
...
dist/converse-mobile.js
View file @
1b139d9d
This diff is collapsed.
Click to expand it.
dist/converse.js
View file @
1b139d9d
This diff is collapsed.
Click to expand it.
inverse.html
View file @
1b139d9d
...
...
@@ -7,7 +7,7 @@
<link
rel=
"shortcut icon"
type=
"image/ico"
href=
"css/images/favicon.ico"
/>
<link
type=
"text/css"
rel=
"stylesheet"
media=
"screen"
href=
"css/inverse.css"
/>
<
![
if
gte
IE
9
]
>
<script
src=
"dist/inverse.
min.
js"
></script>
<script
src=
"dist/inverse.js"
></script>
<
![
endif
]
>
</head>
<body>
...
...
@@ -20,17 +20,11 @@
converse
.
initialize
({
authentication
:
'
login
'
,
auto_away
:
300
,
i18n
:
'
en
'
,
auto_join_rooms
:
[
'
eee@conference.opkode.com
'
],
notify_all_room_messages
:
[
'
discuss@conference.conversejs.org
'
],
blacklisted_plugins
:
[
'
converse-minimize
'
,
'
converse-dragresize
'
,
'
converse-otr
'
],
whitelisted_plugins
:
[
'
converse-inverse
'
,
'
converse-singleton
'
],
auto_reconnect
:
true
,
bosh_service_url
:
'
https://conversejs.org/http-bind/
'
,
// Please use this connection manager only for testing purposes
message_archiving
:
'
always
'
,
debug
:
true
});
</script>
</body>
...
...
sass/inverse/_controlbox.scss
View file @
1b139d9d
...
...
@@ -18,6 +18,9 @@
&
.fullscreen
{
width
:
100%
;
.controlbox-pane
{
height
:
100%
;
}
.box-flyout
{
width
:
100%
;
}
...
...
src/templates/brand_heading.html
View file @
1b139d9d
<span>
<h1
class=
"brand-heading"
><i
class=
"icon-conversejs"
></i>
inVerse
</h1>
<p><a
href=
"https://
github.com/jcbrand/converse.js
"
>
Open Source
</a>
XMPP chat client
</p>
<p><a
href=
"https://
conversejs.org
"
>
Open Source
</a>
XMPP chat client
</p>
<span>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment