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
2417b5b3
Commit
2417b5b3
authored
Nov 11, 2015
by
Weblate
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
844e7a6b
9966512a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
docs/conf.py
docs/conf.py
+6
-4
weblate/accounts/pipeline.py
weblate/accounts/pipeline.py
+1
-1
weblate/static/loader-bootstrap.js
weblate/static/loader-bootstrap.js
+1
-1
No files found.
docs/conf.py
View file @
2417b5b3
...
...
@@ -15,8 +15,6 @@
import
sys
import
os
on_rtd
=
os
.
environ
.
get
(
'READTHEDOCS'
,
None
)
==
'True'
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
...
...
@@ -107,10 +105,14 @@ pygments_style = 'sphinx'
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
if
o
n_rtd
:
if
o
s
.
environ
.
get
(
'READTHEDOCS'
,
None
)
==
'True'
:
html_theme
=
'default'
else
:
html_theme
=
'alabaster'
try
:
import
alabaster
html_theme
=
'alabaster'
except
ImportErrror
:
html_theme
=
'default'
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
...
...
weblate/accounts/pipeline.py
View file @
2417b5b3
...
...
@@ -125,7 +125,7 @@ def verify_open(strategy, backend, user=None, **kwargs):
raise
AuthException
(
backend
,
_
(
'New registrations are disabled!'
))
def
verify_username
(
strategy
,
backend
,
user
,
social
,
details
,
**
kwargs
):
def
verify_username
(
strategy
,
backend
,
social
,
details
,
user
=
None
,
**
kwargs
):
"""Verified whether username is still free.
It can happen that user has registered several times or other user has
...
...
weblate/static/loader-bootstrap.js
View file @
2417b5b3
...
...
@@ -2,7 +2,7 @@ var loading = 0;
var
machineTranslationLoaded
=
false
;
var
activityDataLoaded
=
false
;
if
(
window
.
location
.
hash
&&
window
.
location
.
hash
===
'
#_=_
'
)
{
if
(
window
.
location
.
hash
&&
(
window
.
location
.
hash
===
'
#_=_
'
||
window
.
location
.
hash
.
indexOf
(
"
=
"
)
>
-
1
)
)
{
window
.
location
.
hash
=
''
;
}
...
...
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