##// END OF EJS Templates
py3: fix non-ASCII URLs - decode unicode correctly before passing them to controllers as unicode strings...
py3: fix non-ASCII URLs - decode unicode correctly before passing them to controllers as unicode strings This is needed for supporting localized repo path names in the path of URLs. Some references: https://www.python.org/dev/peps/pep-0333/#unicode-issues https://bugs.python.org/issue16679 http://lucumr.pocoo.org/2010/5/25/wsgi-on-python-3/ https://bugs.launchpad.net/pecan/+bug/1451842 https://github.com/tipabu/eventlet/commit/a5a7751b013fe99b6d30acbca79e819770e9ae5d

File last commit:

r7771:17b86a29 default
r8082:6c381371 default
Show More
.hgignore
55 lines | 1.1 KiB | text/plain | TextLexer
Lukasz Balcerzak
Small hgignore update
r848 syntax: glob
*.pyc
*.swp
ignore sqlite files
r1971 *.sqlite
ignore tox stuff
r2555 *.tox
added egg-info,and .egg in hgignore
r1236 *.egg-info
*.egg
Mads Kiilerich
i18n: don't include .mo files in the repo - build them on demand...
r4986 *.mo
Mads Kiilerich
hgignore: *.orig and *.rej as created by hg when using revert, import, mq, etc
r7771 *.orig
*.rej
Mads Kiilerich
hgignore: ignore *.bak - such files are created by tools like 2to3
r7664 *.bak
Marc Abramowitz
.hgignore: Add .eggs/ and tarballcache/...
r4997 .eggs/
tarballcache/
Marcin Kuzminski
initial commit.
r0
syntax: regexp
ignore rcextensions
r2106 ^rcextensions
Lukasz Balcerzak
Small hgignore update
r848 ^build
added dist dir to .hgignore
r4096 ^dist/
Lukasz Balcerzak
Small hgignore update
r848 ^docs/build/
^docs/_build/
Marcin Kuzminski
added hgignore
r9 ^data$
ignore sql_dumps for testing schema migrations
r3908 ^sql_dumps/
Marcin Kuzminski
added hgignore
r9 ^\.settings$
^\.project$
Marcin Kuzminski
ignore db file
r72 ^\.pydevproject$
ignore coverage and my local dev.ini file
r1893 ^\.coverage$
Mads Kiilerich
front-end: Introduce 'front-end' directory with source files for building the front-end...
r7379 ^kallithea/front-end/node_modules$
^kallithea/front-end/package-lock\.json$
Thomas De Schampheleire
front-end: fix documentation regarding theme.less file...
r7751 ^kallithea/front-end/theme\.less$
Mads Kiilerich
front-end: Store temporary files in a tmp directory...
r7380 ^kallithea/front-end/tmp$
Mads Kiilerich
front-end: Use codemirror from node_modules and stop bundling it
r7386 ^kallithea/public/codemirror$
Mads Kiilerich
front-end: Use select2 from node_modules and stop bundling it...
r7384 ^kallithea/public/css/select2-spinner\.gif$
^kallithea/public/css/select2\.png$
^kallithea/public/css/select2x2\.png$
^kallithea/public/css/style\.css$
^kallithea/public/css/style\.css\.map$
Mads Kiilerich
front-end: Use the existing bootstrap.js from node_modules and stop bundling Bootstrap
r7382 ^kallithea/public/js/bootstrap\.js$
Mads Kiilerich
front-end: Use DataTables from node_modules and stop bundling it...
r7385 ^kallithea/public/js/dataTables\.bootstrap\.js$
domruf
front-end: use At.js for MentionsAutoComplete...
r7387 ^kallithea/public/js/jquery\.atwho\.min\.js$
^kallithea/public/js/jquery\.caret\.min\.js$
Mads Kiilerich
front-end: Use DataTables from node_modules and stop bundling it...
r7385 ^kallithea/public/js/jquery\.dataTables\.js$
Mads Kiilerich
front-end: Use jQuery and Flot from node_modules and stop bundling them...
r7383 ^kallithea/public/js/jquery\.flot\.js$
^kallithea/public/js/jquery\.flot\.selection\.js$
^kallithea/public/js/jquery\.flot\.time\.js$
^kallithea/public/js/jquery\.min\.js$
Mads Kiilerich
front-end: Use select2 from node_modules and stop bundling it...
r7384 ^kallithea/public/js/select2\.js$
Bradley M. Kuhn
Rename some strings in defaults found in config files
r4210 ^kallithea\.db$
ignore test db
r460 ^test\.db$
Bradley M. Kuhn
General renaming to Kallithea
r4212 ^Kallithea\.egg-info$
Mads Kiilerich
docs: rework stuff...
r4902 ^my\.ini$
Added VCS into rhodecode core for faster and easier deployments of new versions
r2007 ^fabfile.py
Updated hgignore to skip .idea config files
r3831 ^\.idea$
Mads Kiilerich
hgignore: ignore `.cache/`, created by pytest 2.8 when writing `.cache/v/cache/lastfailed`
r5516 ^\.cache$
Mads Kiilerich
hgignore: .pytest_cache...
r7375 ^\.pytest_cache$
Mads Kiilerich
tests: move test data to top level 'data' folder - make grepping in kallithea/ easier...
r6001 /__pycache__$