Show More
@@ -0,0 +1,62 b'' | |||||
|
1 | #!/bin/bash | |||
|
2 | set -e | |||
|
3 | set -x | |||
|
4 | ||||
|
5 | echo "Checking tools needed for uploading stuff" | |||
|
6 | pip freeze | grep '^Sphinx==' || pip install Sphinx | |||
|
7 | pip freeze | grep '^Sphinx-PyPI-upload==' || pip install Sphinx-PyPI-upload | |||
|
8 | ||||
|
9 | echo "Verifying everything can build" | |||
|
10 | hg purge --all dist | |||
|
11 | python2 setup.py build_sphinx | |||
|
12 | python2 setup.py compile_catalog # TODO: check for errors | |||
|
13 | python2 setup.py sdist | |||
|
14 | ||||
|
15 | echo "Verifying VERSION from kallithea/__init__.py" | |||
|
16 | namerel=$(cd dist && echo Kallithea-*.tar.gz) | |||
|
17 | namerel=${namerel%.tar.gz} | |||
|
18 | version=${namerel#Kallithea-} | |||
|
19 | echo "Releasing Kallithea $version in directory $namerel" | |||
|
20 | echo "Verifying current revision is tagged for $version" | |||
|
21 | hg log -r "'$version'&." | grep . | |||
|
22 | ||||
|
23 | echo "Cleaning before making release build" | |||
|
24 | hg up -c . | |||
|
25 | hg revert -a -r null | |||
|
26 | hg up -C "'$version'&." | |||
|
27 | hg purge --all | |||
|
28 | ||||
|
29 | echo "Building dist file" | |||
|
30 | python2 setup.py compile_catalog | |||
|
31 | python2 setup.py sdist | |||
|
32 | ||||
|
33 | echo "Verifying dist file content" | |||
|
34 | tar tf dist/Kallithea-*.tar.gz | sed "s|^$namerel/||" | LANG=C sort > scripts/manifest | |||
|
35 | hg diff | |||
|
36 | hg up -c . # fail if manifest changed | |||
|
37 | ||||
|
38 | echo "Now, make sure" | |||
|
39 | echo "* the copyright and contributor lists have been updated" | |||
|
40 | echo "* all tests are passing" | |||
|
41 | echo "* release note is ready" | |||
|
42 | echo "* announcement is ready" | |||
|
43 | echo "* source has been pushed to https://kallithea-scm.org/repos/kallithea" | |||
|
44 | echo | |||
|
45 | ||||
|
46 | echo -n "Enter \"pypi\" to upload Kallithea $version to pypi: " | |||
|
47 | read answer | |||
|
48 | [ "$answer" = "pypi" ] | |||
|
49 | python2 setup.py sdist upload --sign | |||
|
50 | xdg-open https://pypi.python.org/pypi/Kallithea | |||
|
51 | ||||
|
52 | echo "Uploading docs to pypi" | |||
|
53 | # See https://wiki.python.org/moin/PyPiDocumentationHosting | |||
|
54 | python2 setup.py build_sphinx upload_sphinx | |||
|
55 | xdg-open https://pythonhosted.org/Kallithea/ | |||
|
56 | xdg-open http://packages.python.org/Kallithea/installation.html | |||
|
57 | ||||
|
58 | echo "Rebuilding readthedocs for docs.kallithea-scm.org" | |||
|
59 | xdg-open https://readthedocs.org/projects/kallithea/ | |||
|
60 | curl -X POST http://readthedocs.org/build/kallithea | |||
|
61 | xdg-open https://readthedocs.org/builds/kallithea/ | |||
|
62 | xdg-open http://docs.kallithea-scm.org/en/latest/ # or whatever the branch is |
This diff has been collapsed as it changes many lines, (952 lines changed) Show them Hide them | |||||
@@ -0,0 +1,952 b'' | |||||
|
1 | ||||
|
2 | Apache-License-2.0.txt | |||
|
3 | CONTRIBUTORS | |||
|
4 | COPYING | |||
|
5 | Kallithea.egg-info/ | |||
|
6 | Kallithea.egg-info/PKG-INFO | |||
|
7 | Kallithea.egg-info/SOURCES.txt | |||
|
8 | Kallithea.egg-info/dependency_links.txt | |||
|
9 | Kallithea.egg-info/entry_points.txt | |||
|
10 | Kallithea.egg-info/not-zip-safe | |||
|
11 | Kallithea.egg-info/paster_plugins.txt | |||
|
12 | Kallithea.egg-info/requires.txt | |||
|
13 | Kallithea.egg-info/top_level.txt | |||
|
14 | LICENSE-MERGELY.html | |||
|
15 | LICENSE.md | |||
|
16 | MANIFEST.in | |||
|
17 | MIT-Permissive-License.txt | |||
|
18 | PKG-INFO | |||
|
19 | README.rst | |||
|
20 | development.ini | |||
|
21 | docs/ | |||
|
22 | docs/Makefile | |||
|
23 | docs/api/ | |||
|
24 | docs/api/api.rst | |||
|
25 | docs/api/models.rst | |||
|
26 | docs/changelog.rst | |||
|
27 | docs/conf.py | |||
|
28 | docs/contributing.rst | |||
|
29 | docs/images/ | |||
|
30 | docs/images/.img | |||
|
31 | docs/index.rst | |||
|
32 | docs/installation.rst | |||
|
33 | docs/installation_iis.rst | |||
|
34 | docs/installation_puppet.rst | |||
|
35 | docs/installation_win.rst | |||
|
36 | docs/installation_win_old.rst | |||
|
37 | docs/make.bat | |||
|
38 | docs/overview.rst | |||
|
39 | docs/readme.rst | |||
|
40 | docs/setup.rst | |||
|
41 | docs/theme/ | |||
|
42 | docs/theme/nature/ | |||
|
43 | docs/theme/nature/layout.html | |||
|
44 | docs/theme/nature/static/ | |||
|
45 | docs/theme/nature/static/kallithea-logo.svg | |||
|
46 | docs/theme/nature/static/nature.css_t | |||
|
47 | docs/theme/nature/static/pygments.css | |||
|
48 | docs/theme/nature/theme.conf | |||
|
49 | docs/usage/ | |||
|
50 | docs/usage/backup.rst | |||
|
51 | docs/usage/debugging.rst | |||
|
52 | docs/usage/email.rst | |||
|
53 | docs/usage/general.rst | |||
|
54 | docs/usage/locking.rst | |||
|
55 | docs/usage/performance.rst | |||
|
56 | docs/usage/statistics.rst | |||
|
57 | docs/usage/troubleshooting.rst | |||
|
58 | docs/usage/vcs_support.rst | |||
|
59 | init.d/ | |||
|
60 | init.d/celeryd-upstart.conf | |||
|
61 | init.d/kallithea-daemon-arch | |||
|
62 | init.d/kallithea-daemon-debian | |||
|
63 | init.d/kallithea-daemon-gentoo | |||
|
64 | init.d/kallithea-daemon-redhat | |||
|
65 | init.d/kallithea-upstart.conf | |||
|
66 | init.d/supervisord.conf | |||
|
67 | kallithea/ | |||
|
68 | kallithea/__init__.py | |||
|
69 | kallithea/bin/ | |||
|
70 | kallithea/bin/__init__.py | |||
|
71 | kallithea/bin/base.py | |||
|
72 | kallithea/bin/kallithea_api.py | |||
|
73 | kallithea/bin/kallithea_backup.py | |||
|
74 | kallithea/bin/kallithea_config.py | |||
|
75 | kallithea/bin/kallithea_gist.py | |||
|
76 | kallithea/bin/ldap_sync.conf | |||
|
77 | kallithea/bin/ldap_sync.py | |||
|
78 | kallithea/bin/rebranddb.py | |||
|
79 | kallithea/bin/template.ini.mako | |||
|
80 | kallithea/config/ | |||
|
81 | kallithea/config/__init__.py | |||
|
82 | kallithea/config/conf.py | |||
|
83 | kallithea/config/deployment.ini_tmpl | |||
|
84 | kallithea/config/environment.py | |||
|
85 | kallithea/config/middleware.py | |||
|
86 | kallithea/config/post_receive_tmpl.py | |||
|
87 | kallithea/config/pre_receive_tmpl.py | |||
|
88 | kallithea/config/rcextensions/ | |||
|
89 | kallithea/config/rcextensions/__init__.py | |||
|
90 | kallithea/config/routing.py | |||
|
91 | kallithea/controllers/ | |||
|
92 | kallithea/controllers/__init__.py | |||
|
93 | kallithea/controllers/admin/ | |||
|
94 | kallithea/controllers/admin/__init__.py | |||
|
95 | kallithea/controllers/admin/admin.py | |||
|
96 | kallithea/controllers/admin/auth_settings.py | |||
|
97 | kallithea/controllers/admin/defaults.py | |||
|
98 | kallithea/controllers/admin/gists.py | |||
|
99 | kallithea/controllers/admin/my_account.py | |||
|
100 | kallithea/controllers/admin/notifications.py | |||
|
101 | kallithea/controllers/admin/permissions.py | |||
|
102 | kallithea/controllers/admin/repo_groups.py | |||
|
103 | kallithea/controllers/admin/repos.py | |||
|
104 | kallithea/controllers/admin/settings.py | |||
|
105 | kallithea/controllers/admin/user_groups.py | |||
|
106 | kallithea/controllers/admin/users.py | |||
|
107 | kallithea/controllers/api/ | |||
|
108 | kallithea/controllers/api/__init__.py | |||
|
109 | kallithea/controllers/api/api.py | |||
|
110 | kallithea/controllers/bookmarks.py | |||
|
111 | kallithea/controllers/branches.py | |||
|
112 | kallithea/controllers/changelog.py | |||
|
113 | kallithea/controllers/changeset.py | |||
|
114 | kallithea/controllers/compare.py | |||
|
115 | kallithea/controllers/error.py | |||
|
116 | kallithea/controllers/feed.py | |||
|
117 | kallithea/controllers/files.py | |||
|
118 | kallithea/controllers/followers.py | |||
|
119 | kallithea/controllers/forks.py | |||
|
120 | kallithea/controllers/home.py | |||
|
121 | kallithea/controllers/journal.py | |||
|
122 | kallithea/controllers/login.py | |||
|
123 | kallithea/controllers/pullrequests.py | |||
|
124 | kallithea/controllers/search.py | |||
|
125 | kallithea/controllers/summary.py | |||
|
126 | kallithea/controllers/tags.py | |||
|
127 | kallithea/i18n/ | |||
|
128 | kallithea/i18n/be/ | |||
|
129 | kallithea/i18n/be/LC_MESSAGES/ | |||
|
130 | kallithea/i18n/be/LC_MESSAGES/kallithea.mo | |||
|
131 | kallithea/i18n/be/LC_MESSAGES/kallithea.po | |||
|
132 | kallithea/i18n/cs/ | |||
|
133 | kallithea/i18n/cs/LC_MESSAGES/ | |||
|
134 | kallithea/i18n/cs/LC_MESSAGES/kallithea.mo | |||
|
135 | kallithea/i18n/cs/LC_MESSAGES/kallithea.po | |||
|
136 | kallithea/i18n/de/ | |||
|
137 | kallithea/i18n/de/LC_MESSAGES/ | |||
|
138 | kallithea/i18n/de/LC_MESSAGES/kallithea.mo | |||
|
139 | kallithea/i18n/de/LC_MESSAGES/kallithea.po | |||
|
140 | kallithea/i18n/en/ | |||
|
141 | kallithea/i18n/en/LC_MESSAGES/ | |||
|
142 | kallithea/i18n/en/LC_MESSAGES/kallithea.mo | |||
|
143 | kallithea/i18n/fr/ | |||
|
144 | kallithea/i18n/fr/LC_MESSAGES/ | |||
|
145 | kallithea/i18n/fr/LC_MESSAGES/kallithea.mo | |||
|
146 | kallithea/i18n/fr/LC_MESSAGES/kallithea.po | |||
|
147 | kallithea/i18n/how_to | |||
|
148 | kallithea/i18n/hu/ | |||
|
149 | kallithea/i18n/hu/LC_MESSAGES/ | |||
|
150 | kallithea/i18n/hu/LC_MESSAGES/kallithea.mo | |||
|
151 | kallithea/i18n/hu/LC_MESSAGES/kallithea.po | |||
|
152 | kallithea/i18n/ja/ | |||
|
153 | kallithea/i18n/ja/LC_MESSAGES/ | |||
|
154 | kallithea/i18n/ja/LC_MESSAGES/kallithea.mo | |||
|
155 | kallithea/i18n/ja/LC_MESSAGES/kallithea.po | |||
|
156 | kallithea/i18n/kallithea.pot | |||
|
157 | kallithea/i18n/nl_BE/ | |||
|
158 | kallithea/i18n/nl_BE/LC_MESSAGES/ | |||
|
159 | kallithea/i18n/nl_BE/LC_MESSAGES/kallithea.mo | |||
|
160 | kallithea/i18n/nl_BE/LC_MESSAGES/kallithea.po | |||
|
161 | kallithea/i18n/pl/ | |||
|
162 | kallithea/i18n/pl/LC_MESSAGES/ | |||
|
163 | kallithea/i18n/pl/LC_MESSAGES/kallithea.mo | |||
|
164 | kallithea/i18n/pl/LC_MESSAGES/kallithea.po | |||
|
165 | kallithea/i18n/pt_BR/ | |||
|
166 | kallithea/i18n/pt_BR/LC_MESSAGES/ | |||
|
167 | kallithea/i18n/pt_BR/LC_MESSAGES/kallithea.mo | |||
|
168 | kallithea/i18n/pt_BR/LC_MESSAGES/kallithea.po | |||
|
169 | kallithea/i18n/ru/ | |||
|
170 | kallithea/i18n/ru/LC_MESSAGES/ | |||
|
171 | kallithea/i18n/ru/LC_MESSAGES/kallithea.mo | |||
|
172 | kallithea/i18n/ru/LC_MESSAGES/kallithea.po | |||
|
173 | kallithea/i18n/sk/ | |||
|
174 | kallithea/i18n/sk/LC_MESSAGES/ | |||
|
175 | kallithea/i18n/sk/LC_MESSAGES/kallithea.mo | |||
|
176 | kallithea/i18n/sk/LC_MESSAGES/kallithea.po | |||
|
177 | kallithea/i18n/zh_CN/ | |||
|
178 | kallithea/i18n/zh_CN/LC_MESSAGES/ | |||
|
179 | kallithea/i18n/zh_CN/LC_MESSAGES/kallithea.mo | |||
|
180 | kallithea/i18n/zh_CN/LC_MESSAGES/kallithea.po | |||
|
181 | kallithea/i18n/zh_TW/ | |||
|
182 | kallithea/i18n/zh_TW/LC_MESSAGES/ | |||
|
183 | kallithea/i18n/zh_TW/LC_MESSAGES/kallithea.mo | |||
|
184 | kallithea/i18n/zh_TW/LC_MESSAGES/kallithea.po | |||
|
185 | kallithea/lib/ | |||
|
186 | kallithea/lib/__init__.py | |||
|
187 | kallithea/lib/annotate.py | |||
|
188 | kallithea/lib/app_globals.py | |||
|
189 | kallithea/lib/auth.py | |||
|
190 | kallithea/lib/auth_modules/ | |||
|
191 | kallithea/lib/auth_modules/__init__.py | |||
|
192 | kallithea/lib/auth_modules/auth_container.py | |||
|
193 | kallithea/lib/auth_modules/auth_crowd.py | |||
|
194 | kallithea/lib/auth_modules/auth_internal.py | |||
|
195 | kallithea/lib/auth_modules/auth_ldap.py | |||
|
196 | kallithea/lib/auth_modules/auth_pam.py | |||
|
197 | kallithea/lib/base.py | |||
|
198 | kallithea/lib/caching_query.py | |||
|
199 | kallithea/lib/celerylib/ | |||
|
200 | kallithea/lib/celerylib/__init__.py | |||
|
201 | kallithea/lib/celerylib/tasks.py | |||
|
202 | kallithea/lib/celerypylons/ | |||
|
203 | kallithea/lib/celerypylons/__init__.py | |||
|
204 | kallithea/lib/celerypylons/commands.py | |||
|
205 | kallithea/lib/celerypylons/loader.py | |||
|
206 | kallithea/lib/colored_formatter.py | |||
|
207 | kallithea/lib/compat.py | |||
|
208 | kallithea/lib/db_manage.py | |||
|
209 | kallithea/lib/dbmigrate/ | |||
|
210 | kallithea/lib/dbmigrate/__init__.py | |||
|
211 | kallithea/lib/dbmigrate/migrate.cfg | |||
|
212 | kallithea/lib/dbmigrate/migrate/ | |||
|
213 | kallithea/lib/dbmigrate/migrate/__init__.py | |||
|
214 | kallithea/lib/dbmigrate/migrate/changeset/ | |||
|
215 | kallithea/lib/dbmigrate/migrate/changeset/__init__.py | |||
|
216 | kallithea/lib/dbmigrate/migrate/changeset/ansisql.py | |||
|
217 | kallithea/lib/dbmigrate/migrate/changeset/constraint.py | |||
|
218 | kallithea/lib/dbmigrate/migrate/changeset/databases/ | |||
|
219 | kallithea/lib/dbmigrate/migrate/changeset/databases/__init__.py | |||
|
220 | kallithea/lib/dbmigrate/migrate/changeset/databases/firebird.py | |||
|
221 | kallithea/lib/dbmigrate/migrate/changeset/databases/mysql.py | |||
|
222 | kallithea/lib/dbmigrate/migrate/changeset/databases/oracle.py | |||
|
223 | kallithea/lib/dbmigrate/migrate/changeset/databases/postgres.py | |||
|
224 | kallithea/lib/dbmigrate/migrate/changeset/databases/sqlite.py | |||
|
225 | kallithea/lib/dbmigrate/migrate/changeset/databases/visitor.py | |||
|
226 | kallithea/lib/dbmigrate/migrate/changeset/schema.py | |||
|
227 | kallithea/lib/dbmigrate/migrate/exceptions.py | |||
|
228 | kallithea/lib/dbmigrate/migrate/versioning/ | |||
|
229 | kallithea/lib/dbmigrate/migrate/versioning/__init__.py | |||
|
230 | kallithea/lib/dbmigrate/migrate/versioning/api.py | |||
|
231 | kallithea/lib/dbmigrate/migrate/versioning/cfgparse.py | |||
|
232 | kallithea/lib/dbmigrate/migrate/versioning/config.py | |||
|
233 | kallithea/lib/dbmigrate/migrate/versioning/genmodel.py | |||
|
234 | kallithea/lib/dbmigrate/migrate/versioning/migrate_repository.py | |||
|
235 | kallithea/lib/dbmigrate/migrate/versioning/pathed.py | |||
|
236 | kallithea/lib/dbmigrate/migrate/versioning/repository.py | |||
|
237 | kallithea/lib/dbmigrate/migrate/versioning/schema.py | |||
|
238 | kallithea/lib/dbmigrate/migrate/versioning/schemadiff.py | |||
|
239 | kallithea/lib/dbmigrate/migrate/versioning/script/ | |||
|
240 | kallithea/lib/dbmigrate/migrate/versioning/script/__init__.py | |||
|
241 | kallithea/lib/dbmigrate/migrate/versioning/script/base.py | |||
|
242 | kallithea/lib/dbmigrate/migrate/versioning/script/py.py | |||
|
243 | kallithea/lib/dbmigrate/migrate/versioning/script/sql.py | |||
|
244 | kallithea/lib/dbmigrate/migrate/versioning/shell.py | |||
|
245 | kallithea/lib/dbmigrate/migrate/versioning/template.py | |||
|
246 | kallithea/lib/dbmigrate/migrate/versioning/templates/ | |||
|
247 | kallithea/lib/dbmigrate/migrate/versioning/templates/__init__.py | |||
|
248 | kallithea/lib/dbmigrate/migrate/versioning/templates/manage.py_tmpl | |||
|
249 | kallithea/lib/dbmigrate/migrate/versioning/templates/manage/ | |||
|
250 | kallithea/lib/dbmigrate/migrate/versioning/templates/manage/default.py_tmpl | |||
|
251 | kallithea/lib/dbmigrate/migrate/versioning/templates/manage/pylons.py_tmpl | |||
|
252 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/ | |||
|
253 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/__init__.py | |||
|
254 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/default/ | |||
|
255 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/default/README | |||
|
256 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/default/__init__.py | |||
|
257 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/default/migrate.cfg | |||
|
258 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/default/versions/ | |||
|
259 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/default/versions/__init__.py | |||
|
260 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/pylons/ | |||
|
261 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/pylons/README | |||
|
262 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/pylons/__init__.py | |||
|
263 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/pylons/migrate.cfg | |||
|
264 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/pylons/versions/ | |||
|
265 | kallithea/lib/dbmigrate/migrate/versioning/templates/repository/pylons/versions/__init__.py | |||
|
266 | kallithea/lib/dbmigrate/migrate/versioning/templates/script/ | |||
|
267 | kallithea/lib/dbmigrate/migrate/versioning/templates/script/__init__.py | |||
|
268 | kallithea/lib/dbmigrate/migrate/versioning/templates/script/default.py_tmpl | |||
|
269 | kallithea/lib/dbmigrate/migrate/versioning/templates/script/pylons.py_tmpl | |||
|
270 | kallithea/lib/dbmigrate/migrate/versioning/templates/sql_script/ | |||
|
271 | kallithea/lib/dbmigrate/migrate/versioning/templates/sql_script/default.py_tmpl | |||
|
272 | kallithea/lib/dbmigrate/migrate/versioning/templates/sql_script/pylons.py_tmpl | |||
|
273 | kallithea/lib/dbmigrate/migrate/versioning/util/ | |||
|
274 | kallithea/lib/dbmigrate/migrate/versioning/util/__init__.py | |||
|
275 | kallithea/lib/dbmigrate/migrate/versioning/util/importpath.py | |||
|
276 | kallithea/lib/dbmigrate/migrate/versioning/util/keyedinstance.py | |||
|
277 | kallithea/lib/dbmigrate/migrate/versioning/version.py | |||
|
278 | kallithea/lib/dbmigrate/schema/ | |||
|
279 | kallithea/lib/dbmigrate/schema/__init__.py | |||
|
280 | kallithea/lib/dbmigrate/schema/db_1_1_0.py | |||
|
281 | kallithea/lib/dbmigrate/schema/db_1_2_0.py | |||
|
282 | kallithea/lib/dbmigrate/schema/db_1_3_0.py | |||
|
283 | kallithea/lib/dbmigrate/schema/db_1_4_0.py | |||
|
284 | kallithea/lib/dbmigrate/schema/db_1_5_0.py | |||
|
285 | kallithea/lib/dbmigrate/schema/db_1_5_2.py | |||
|
286 | kallithea/lib/dbmigrate/schema/db_1_6_0.py | |||
|
287 | kallithea/lib/dbmigrate/schema/db_1_7_0.py | |||
|
288 | kallithea/lib/dbmigrate/schema/db_1_8_0.py | |||
|
289 | kallithea/lib/dbmigrate/schema/db_2_0_0.py | |||
|
290 | kallithea/lib/dbmigrate/schema/db_2_0_1.py | |||
|
291 | kallithea/lib/dbmigrate/schema/db_2_0_2.py | |||
|
292 | kallithea/lib/dbmigrate/schema/db_2_1_0.py | |||
|
293 | kallithea/lib/dbmigrate/schema/db_2_2_0.py | |||
|
294 | kallithea/lib/dbmigrate/schema/db_2_2_3.py | |||
|
295 | kallithea/lib/dbmigrate/versions/ | |||
|
296 | kallithea/lib/dbmigrate/versions/001_initial_release.py | |||
|
297 | kallithea/lib/dbmigrate/versions/002_version_1_1_0.py | |||
|
298 | kallithea/lib/dbmigrate/versions/003_version_1_2_0.py | |||
|
299 | kallithea/lib/dbmigrate/versions/004_version_1_3_0.py | |||
|
300 | kallithea/lib/dbmigrate/versions/005_version_1_3_0.py | |||
|
301 | kallithea/lib/dbmigrate/versions/006_version_1_4_0.py | |||
|
302 | kallithea/lib/dbmigrate/versions/007_version_1_4_0.py | |||
|
303 | kallithea/lib/dbmigrate/versions/008_version_1_5_0.py | |||
|
304 | kallithea/lib/dbmigrate/versions/009_version_1_5_1.py | |||
|
305 | kallithea/lib/dbmigrate/versions/010_version_1_5_2.py | |||
|
306 | kallithea/lib/dbmigrate/versions/011_version_1_6_0.py | |||
|
307 | kallithea/lib/dbmigrate/versions/012_version_1_7_0.py | |||
|
308 | kallithea/lib/dbmigrate/versions/013_version_1_7_0.py | |||
|
309 | kallithea/lib/dbmigrate/versions/014_version_1_7_1.py | |||
|
310 | kallithea/lib/dbmigrate/versions/015_version_1_8_0.py | |||
|
311 | kallithea/lib/dbmigrate/versions/016_version_2_0_0.py | |||
|
312 | kallithea/lib/dbmigrate/versions/017_version_2_0_0.py | |||
|
313 | kallithea/lib/dbmigrate/versions/018_version_2_0_0.py | |||
|
314 | kallithea/lib/dbmigrate/versions/019_version_2_0_0.py | |||
|
315 | kallithea/lib/dbmigrate/versions/020_version_2_0_1.py | |||
|
316 | kallithea/lib/dbmigrate/versions/021_version_2_0_2.py | |||
|
317 | kallithea/lib/dbmigrate/versions/022_version_2_0_2.py | |||
|
318 | kallithea/lib/dbmigrate/versions/023_version_2_1_0.py | |||
|
319 | kallithea/lib/dbmigrate/versions/024_version_2_1_0.py | |||
|
320 | kallithea/lib/dbmigrate/versions/025_version_2_1_0.py | |||
|
321 | kallithea/lib/dbmigrate/versions/026_version_2_2_0.py | |||
|
322 | kallithea/lib/dbmigrate/versions/027_version_2_2_0.py | |||
|
323 | kallithea/lib/dbmigrate/versions/028_version_2_2_3.py | |||
|
324 | kallithea/lib/dbmigrate/versions/029_version_2_2_3.py | |||
|
325 | kallithea/lib/dbmigrate/versions/030_version_2_2_3.py | |||
|
326 | kallithea/lib/dbmigrate/versions/031_version_2_2_3.py | |||
|
327 | kallithea/lib/dbmigrate/versions/__init__.py | |||
|
328 | kallithea/lib/diffs.py | |||
|
329 | kallithea/lib/exceptions.py | |||
|
330 | kallithea/lib/ext_json.py | |||
|
331 | kallithea/lib/graphmod.py | |||
|
332 | kallithea/lib/helpers.py | |||
|
333 | kallithea/lib/hooks.py | |||
|
334 | kallithea/lib/indexers/ | |||
|
335 | kallithea/lib/indexers/__init__.py | |||
|
336 | kallithea/lib/indexers/daemon.py | |||
|
337 | kallithea/lib/ipaddr.py | |||
|
338 | kallithea/lib/markup_renderer.py | |||
|
339 | kallithea/lib/middleware/ | |||
|
340 | kallithea/lib/middleware/__init__.py | |||
|
341 | kallithea/lib/middleware/errormator.py | |||
|
342 | kallithea/lib/middleware/https_fixup.py | |||
|
343 | kallithea/lib/middleware/pygrack.py | |||
|
344 | kallithea/lib/middleware/sentry.py | |||
|
345 | kallithea/lib/middleware/sessionmiddleware.py | |||
|
346 | kallithea/lib/middleware/simplegit.py | |||
|
347 | kallithea/lib/middleware/simplehg.py | |||
|
348 | kallithea/lib/middleware/wrapper.py | |||
|
349 | kallithea/lib/paster_commands/ | |||
|
350 | kallithea/lib/paster_commands/__init__.py | |||
|
351 | kallithea/lib/paster_commands/cache_keys.py | |||
|
352 | kallithea/lib/paster_commands/cleanup.py | |||
|
353 | kallithea/lib/paster_commands/install_iis.py | |||
|
354 | kallithea/lib/paster_commands/ishell.py | |||
|
355 | kallithea/lib/paster_commands/make_index.py | |||
|
356 | kallithea/lib/paster_commands/make_rcextensions.py | |||
|
357 | kallithea/lib/paster_commands/repo_scan.py | |||
|
358 | kallithea/lib/paster_commands/setup_db.py | |||
|
359 | kallithea/lib/paster_commands/update_repoinfo.py | |||
|
360 | kallithea/lib/pidlock.py | |||
|
361 | kallithea/lib/profiler.py | |||
|
362 | kallithea/lib/rcmail/ | |||
|
363 | kallithea/lib/rcmail/__init__.py | |||
|
364 | kallithea/lib/rcmail/exceptions.py | |||
|
365 | kallithea/lib/rcmail/message.py | |||
|
366 | kallithea/lib/rcmail/response.py | |||
|
367 | kallithea/lib/rcmail/smtp_mailer.py | |||
|
368 | kallithea/lib/rcmail/utils.py | |||
|
369 | kallithea/lib/recaptcha.py | |||
|
370 | kallithea/lib/timerproxy.py | |||
|
371 | kallithea/lib/utils.py | |||
|
372 | kallithea/lib/utils2.py | |||
|
373 | kallithea/lib/vcs/ | |||
|
374 | kallithea/lib/vcs/__init__.py | |||
|
375 | kallithea/lib/vcs/backends/ | |||
|
376 | kallithea/lib/vcs/backends/__init__.py | |||
|
377 | kallithea/lib/vcs/backends/base.py | |||
|
378 | kallithea/lib/vcs/backends/git/ | |||
|
379 | kallithea/lib/vcs/backends/git/__init__.py | |||
|
380 | kallithea/lib/vcs/backends/git/changeset.py | |||
|
381 | kallithea/lib/vcs/backends/git/inmemory.py | |||
|
382 | kallithea/lib/vcs/backends/git/repository.py | |||
|
383 | kallithea/lib/vcs/backends/git/workdir.py | |||
|
384 | kallithea/lib/vcs/backends/hg/ | |||
|
385 | kallithea/lib/vcs/backends/hg/__init__.py | |||
|
386 | kallithea/lib/vcs/backends/hg/changeset.py | |||
|
387 | kallithea/lib/vcs/backends/hg/inmemory.py | |||
|
388 | kallithea/lib/vcs/backends/hg/repository.py | |||
|
389 | kallithea/lib/vcs/backends/hg/workdir.py | |||
|
390 | kallithea/lib/vcs/conf/ | |||
|
391 | kallithea/lib/vcs/conf/__init__.py | |||
|
392 | kallithea/lib/vcs/conf/settings.py | |||
|
393 | kallithea/lib/vcs/exceptions.py | |||
|
394 | kallithea/lib/vcs/nodes.py | |||
|
395 | kallithea/lib/vcs/subprocessio.py | |||
|
396 | kallithea/lib/vcs/utils/ | |||
|
397 | kallithea/lib/vcs/utils/__init__.py | |||
|
398 | kallithea/lib/vcs/utils/annotate.py | |||
|
399 | kallithea/lib/vcs/utils/archivers.py | |||
|
400 | kallithea/lib/vcs/utils/baseui_config.py | |||
|
401 | kallithea/lib/vcs/utils/compat.py | |||
|
402 | kallithea/lib/vcs/utils/diffs.py | |||
|
403 | kallithea/lib/vcs/utils/fakemod.py | |||
|
404 | kallithea/lib/vcs/utils/filesize.py | |||
|
405 | kallithea/lib/vcs/utils/helpers.py | |||
|
406 | kallithea/lib/vcs/utils/hgcompat.py | |||
|
407 | kallithea/lib/vcs/utils/imports.py | |||
|
408 | kallithea/lib/vcs/utils/lazy.py | |||
|
409 | kallithea/lib/vcs/utils/lockfiles.py | |||
|
410 | kallithea/lib/vcs/utils/ordered_dict.py | |||
|
411 | kallithea/lib/vcs/utils/paths.py | |||
|
412 | kallithea/lib/vcs/utils/progressbar.py | |||
|
413 | kallithea/lib/vcs/utils/termcolors.py | |||
|
414 | kallithea/lib/verlib.py | |||
|
415 | kallithea/model/ | |||
|
416 | kallithea/model/__init__.py | |||
|
417 | kallithea/model/api_key.py | |||
|
418 | kallithea/model/changeset_status.py | |||
|
419 | kallithea/model/comment.py | |||
|
420 | kallithea/model/db.py | |||
|
421 | kallithea/model/forms.py | |||
|
422 | kallithea/model/gist.py | |||
|
423 | kallithea/model/meta.py | |||
|
424 | kallithea/model/notification.py | |||
|
425 | kallithea/model/permission.py | |||
|
426 | kallithea/model/pull_request.py | |||
|
427 | kallithea/model/repo.py | |||
|
428 | kallithea/model/repo_group.py | |||
|
429 | kallithea/model/repo_permission.py | |||
|
430 | kallithea/model/scm.py | |||
|
431 | kallithea/model/user.py | |||
|
432 | kallithea/model/user_group.py | |||
|
433 | kallithea/model/validators.py | |||
|
434 | kallithea/public/ | |||
|
435 | kallithea/public/codemirror/ | |||
|
436 | kallithea/public/codemirror/LICENSE | |||
|
437 | kallithea/public/codemirror/lib/ | |||
|
438 | kallithea/public/codemirror/lib/codemirror.css | |||
|
439 | kallithea/public/codemirror/lib/codemirror.js | |||
|
440 | kallithea/public/codemirror/mode/ | |||
|
441 | kallithea/public/codemirror/mode/apl/ | |||
|
442 | kallithea/public/codemirror/mode/apl/apl.js | |||
|
443 | kallithea/public/codemirror/mode/asterisk/ | |||
|
444 | kallithea/public/codemirror/mode/asterisk/asterisk.js | |||
|
445 | kallithea/public/codemirror/mode/clike/ | |||
|
446 | kallithea/public/codemirror/mode/clike/clike.js | |||
|
447 | kallithea/public/codemirror/mode/clojure/ | |||
|
448 | kallithea/public/codemirror/mode/clojure/clojure.js | |||
|
449 | kallithea/public/codemirror/mode/cobol/ | |||
|
450 | kallithea/public/codemirror/mode/cobol/cobol.js | |||
|
451 | kallithea/public/codemirror/mode/coffeescript/ | |||
|
452 | kallithea/public/codemirror/mode/coffeescript/coffeescript.js | |||
|
453 | kallithea/public/codemirror/mode/commonlisp/ | |||
|
454 | kallithea/public/codemirror/mode/commonlisp/commonlisp.js | |||
|
455 | kallithea/public/codemirror/mode/css/ | |||
|
456 | kallithea/public/codemirror/mode/css/css.js | |||
|
457 | kallithea/public/codemirror/mode/css/less_test.js | |||
|
458 | kallithea/public/codemirror/mode/css/scss_test.js | |||
|
459 | kallithea/public/codemirror/mode/cypher/ | |||
|
460 | kallithea/public/codemirror/mode/cypher/cypher.js | |||
|
461 | kallithea/public/codemirror/mode/d/ | |||
|
462 | kallithea/public/codemirror/mode/d/d.js | |||
|
463 | kallithea/public/codemirror/mode/diff/ | |||
|
464 | kallithea/public/codemirror/mode/diff/diff.js | |||
|
465 | kallithea/public/codemirror/mode/django/ | |||
|
466 | kallithea/public/codemirror/mode/django/django.js | |||
|
467 | kallithea/public/codemirror/mode/dtd/ | |||
|
468 | kallithea/public/codemirror/mode/dtd/dtd.js | |||
|
469 | kallithea/public/codemirror/mode/dylan/ | |||
|
470 | kallithea/public/codemirror/mode/dylan/dylan.js | |||
|
471 | kallithea/public/codemirror/mode/ecl/ | |||
|
472 | kallithea/public/codemirror/mode/ecl/ecl.js | |||
|
473 | kallithea/public/codemirror/mode/eiffel/ | |||
|
474 | kallithea/public/codemirror/mode/eiffel/eiffel.js | |||
|
475 | kallithea/public/codemirror/mode/erlang/ | |||
|
476 | kallithea/public/codemirror/mode/erlang/erlang.js | |||
|
477 | kallithea/public/codemirror/mode/fortran/ | |||
|
478 | kallithea/public/codemirror/mode/fortran/fortran.js | |||
|
479 | kallithea/public/codemirror/mode/gas/ | |||
|
480 | kallithea/public/codemirror/mode/gas/gas.js | |||
|
481 | kallithea/public/codemirror/mode/gfm/ | |||
|
482 | kallithea/public/codemirror/mode/gfm/gfm.js | |||
|
483 | kallithea/public/codemirror/mode/gherkin/ | |||
|
484 | kallithea/public/codemirror/mode/gherkin/gherkin.js | |||
|
485 | kallithea/public/codemirror/mode/go/ | |||
|
486 | kallithea/public/codemirror/mode/go/go.js | |||
|
487 | kallithea/public/codemirror/mode/groovy/ | |||
|
488 | kallithea/public/codemirror/mode/groovy/groovy.js | |||
|
489 | kallithea/public/codemirror/mode/haml/ | |||
|
490 | kallithea/public/codemirror/mode/haml/haml.js | |||
|
491 | kallithea/public/codemirror/mode/haskell/ | |||
|
492 | kallithea/public/codemirror/mode/haskell/haskell.js | |||
|
493 | kallithea/public/codemirror/mode/haxe/ | |||
|
494 | kallithea/public/codemirror/mode/haxe/haxe.js | |||
|
495 | kallithea/public/codemirror/mode/htmlembedded/ | |||
|
496 | kallithea/public/codemirror/mode/htmlembedded/htmlembedded.js | |||
|
497 | kallithea/public/codemirror/mode/htmlmixed/ | |||
|
498 | kallithea/public/codemirror/mode/htmlmixed/htmlmixed.js | |||
|
499 | kallithea/public/codemirror/mode/http/ | |||
|
500 | kallithea/public/codemirror/mode/http/http.js | |||
|
501 | kallithea/public/codemirror/mode/jade/ | |||
|
502 | kallithea/public/codemirror/mode/jade/jade.js | |||
|
503 | kallithea/public/codemirror/mode/javascript/ | |||
|
504 | kallithea/public/codemirror/mode/javascript/javascript.js | |||
|
505 | kallithea/public/codemirror/mode/jinja2/ | |||
|
506 | kallithea/public/codemirror/mode/jinja2/jinja2.js | |||
|
507 | kallithea/public/codemirror/mode/julia/ | |||
|
508 | kallithea/public/codemirror/mode/julia/julia.js | |||
|
509 | kallithea/public/codemirror/mode/kotlin/ | |||
|
510 | kallithea/public/codemirror/mode/kotlin/kotlin.js | |||
|
511 | kallithea/public/codemirror/mode/livescript/ | |||
|
512 | kallithea/public/codemirror/mode/livescript/livescript.js | |||
|
513 | kallithea/public/codemirror/mode/lua/ | |||
|
514 | kallithea/public/codemirror/mode/lua/lua.js | |||
|
515 | kallithea/public/codemirror/mode/markdown/ | |||
|
516 | kallithea/public/codemirror/mode/markdown/markdown.js | |||
|
517 | kallithea/public/codemirror/mode/meta.js | |||
|
518 | kallithea/public/codemirror/mode/mirc/ | |||
|
519 | kallithea/public/codemirror/mode/mirc/mirc.js | |||
|
520 | kallithea/public/codemirror/mode/mllike/ | |||
|
521 | kallithea/public/codemirror/mode/mllike/mllike.js | |||
|
522 | kallithea/public/codemirror/mode/modelica/ | |||
|
523 | kallithea/public/codemirror/mode/modelica/modelica.js | |||
|
524 | kallithea/public/codemirror/mode/nginx/ | |||
|
525 | kallithea/public/codemirror/mode/nginx/nginx.js | |||
|
526 | kallithea/public/codemirror/mode/ntriples/ | |||
|
527 | kallithea/public/codemirror/mode/ntriples/ntriples.js | |||
|
528 | kallithea/public/codemirror/mode/octave/ | |||
|
529 | kallithea/public/codemirror/mode/octave/octave.js | |||
|
530 | kallithea/public/codemirror/mode/pascal/ | |||
|
531 | kallithea/public/codemirror/mode/pascal/pascal.js | |||
|
532 | kallithea/public/codemirror/mode/pegjs/ | |||
|
533 | kallithea/public/codemirror/mode/pegjs/pegjs.js | |||
|
534 | kallithea/public/codemirror/mode/perl/ | |||
|
535 | kallithea/public/codemirror/mode/perl/perl.js | |||
|
536 | kallithea/public/codemirror/mode/php/ | |||
|
537 | kallithea/public/codemirror/mode/php/php.js | |||
|
538 | kallithea/public/codemirror/mode/pig/ | |||
|
539 | kallithea/public/codemirror/mode/pig/pig.js | |||
|
540 | kallithea/public/codemirror/mode/properties/ | |||
|
541 | kallithea/public/codemirror/mode/properties/properties.js | |||
|
542 | kallithea/public/codemirror/mode/puppet/ | |||
|
543 | kallithea/public/codemirror/mode/puppet/puppet.js | |||
|
544 | kallithea/public/codemirror/mode/python/ | |||
|
545 | kallithea/public/codemirror/mode/python/python.js | |||
|
546 | kallithea/public/codemirror/mode/q/ | |||
|
547 | kallithea/public/codemirror/mode/q/q.js | |||
|
548 | kallithea/public/codemirror/mode/r/ | |||
|
549 | kallithea/public/codemirror/mode/r/r.js | |||
|
550 | kallithea/public/codemirror/mode/rpm/ | |||
|
551 | kallithea/public/codemirror/mode/rpm/rpm.js | |||
|
552 | kallithea/public/codemirror/mode/rst/ | |||
|
553 | kallithea/public/codemirror/mode/rst/rst.js | |||
|
554 | kallithea/public/codemirror/mode/ruby/ | |||
|
555 | kallithea/public/codemirror/mode/ruby/ruby.js | |||
|
556 | kallithea/public/codemirror/mode/rust/ | |||
|
557 | kallithea/public/codemirror/mode/rust/rust.js | |||
|
558 | kallithea/public/codemirror/mode/sass/ | |||
|
559 | kallithea/public/codemirror/mode/sass/sass.js | |||
|
560 | kallithea/public/codemirror/mode/scheme/ | |||
|
561 | kallithea/public/codemirror/mode/scheme/scheme.js | |||
|
562 | kallithea/public/codemirror/mode/shell/ | |||
|
563 | kallithea/public/codemirror/mode/shell/shell.js | |||
|
564 | kallithea/public/codemirror/mode/sieve/ | |||
|
565 | kallithea/public/codemirror/mode/sieve/sieve.js | |||
|
566 | kallithea/public/codemirror/mode/slim/ | |||
|
567 | kallithea/public/codemirror/mode/slim/slim.js | |||
|
568 | kallithea/public/codemirror/mode/smalltalk/ | |||
|
569 | kallithea/public/codemirror/mode/smalltalk/smalltalk.js | |||
|
570 | kallithea/public/codemirror/mode/smarty/ | |||
|
571 | kallithea/public/codemirror/mode/smarty/smarty.js | |||
|
572 | kallithea/public/codemirror/mode/smartymixed/ | |||
|
573 | kallithea/public/codemirror/mode/smartymixed/smartymixed.js | |||
|
574 | kallithea/public/codemirror/mode/solr/ | |||
|
575 | kallithea/public/codemirror/mode/solr/solr.js | |||
|
576 | kallithea/public/codemirror/mode/sparql/ | |||
|
577 | kallithea/public/codemirror/mode/sparql/sparql.js | |||
|
578 | kallithea/public/codemirror/mode/sql/ | |||
|
579 | kallithea/public/codemirror/mode/sql/sql.js | |||
|
580 | kallithea/public/codemirror/mode/stex/ | |||
|
581 | kallithea/public/codemirror/mode/stex/stex.js | |||
|
582 | kallithea/public/codemirror/mode/tcl/ | |||
|
583 | kallithea/public/codemirror/mode/tcl/tcl.js | |||
|
584 | kallithea/public/codemirror/mode/textile/ | |||
|
585 | kallithea/public/codemirror/mode/textile/textile.js | |||
|
586 | kallithea/public/codemirror/mode/tiddlywiki/ | |||
|
587 | kallithea/public/codemirror/mode/tiddlywiki/tiddlywiki.css | |||
|
588 | kallithea/public/codemirror/mode/tiddlywiki/tiddlywiki.js | |||
|
589 | kallithea/public/codemirror/mode/tiki/ | |||
|
590 | kallithea/public/codemirror/mode/tiki/tiki.css | |||
|
591 | kallithea/public/codemirror/mode/tiki/tiki.js | |||
|
592 | kallithea/public/codemirror/mode/toml/ | |||
|
593 | kallithea/public/codemirror/mode/toml/toml.js | |||
|
594 | kallithea/public/codemirror/mode/tornado/ | |||
|
595 | kallithea/public/codemirror/mode/tornado/tornado.js | |||
|
596 | kallithea/public/codemirror/mode/turtle/ | |||
|
597 | kallithea/public/codemirror/mode/turtle/turtle.js | |||
|
598 | kallithea/public/codemirror/mode/vb/ | |||
|
599 | kallithea/public/codemirror/mode/vb/vb.js | |||
|
600 | kallithea/public/codemirror/mode/vbscript/ | |||
|
601 | kallithea/public/codemirror/mode/vbscript/vbscript.js | |||
|
602 | kallithea/public/codemirror/mode/velocity/ | |||
|
603 | kallithea/public/codemirror/mode/velocity/velocity.js | |||
|
604 | kallithea/public/codemirror/mode/verilog/ | |||
|
605 | kallithea/public/codemirror/mode/verilog/verilog.js | |||
|
606 | kallithea/public/codemirror/mode/xml/ | |||
|
607 | kallithea/public/codemirror/mode/xml/xml.js | |||
|
608 | kallithea/public/codemirror/mode/xquery/ | |||
|
609 | kallithea/public/codemirror/mode/xquery/xquery.js | |||
|
610 | kallithea/public/codemirror/mode/yaml/ | |||
|
611 | kallithea/public/codemirror/mode/yaml/yaml.js | |||
|
612 | kallithea/public/codemirror/mode/z80/ | |||
|
613 | kallithea/public/codemirror/mode/z80/z80.js | |||
|
614 | kallithea/public/css/ | |||
|
615 | kallithea/public/css/bootstrap.css | |||
|
616 | kallithea/public/css/contextbar.css | |||
|
617 | kallithea/public/css/mergely.css | |||
|
618 | kallithea/public/css/pygments.css | |||
|
619 | kallithea/public/css/style.css | |||
|
620 | kallithea/public/fontello/ | |||
|
621 | kallithea/public/fontello/README-kallithea.txt | |||
|
622 | kallithea/public/fontello/README.txt | |||
|
623 | kallithea/public/fontello/config.json | |||
|
624 | kallithea/public/fontello/css/ | |||
|
625 | kallithea/public/fontello/css/kallithea.css | |||
|
626 | kallithea/public/fontello/font/ | |||
|
627 | kallithea/public/fontello/font/kallithea.eot | |||
|
628 | kallithea/public/fontello/font/kallithea.svg | |||
|
629 | kallithea/public/fontello/font/kallithea.ttf | |||
|
630 | kallithea/public/fontello/font/kallithea.woff | |||
|
631 | kallithea/public/images/ | |||
|
632 | kallithea/public/images/background.png | |||
|
633 | kallithea/public/images/favicon.ico | |||
|
634 | kallithea/public/images/kallithea-logo.png | |||
|
635 | kallithea/public/images/kallithea-logo.svg | |||
|
636 | kallithea/public/images/pager.png | |||
|
637 | kallithea/public/images/pager_selected.png | |||
|
638 | kallithea/public/js/ | |||
|
639 | kallithea/public/js/base.js | |||
|
640 | kallithea/public/js/bootstrap.js | |||
|
641 | kallithea/public/js/codemirror_loadmode.js | |||
|
642 | kallithea/public/js/graph.js | |||
|
643 | kallithea/public/js/jquery-1.11.1.min.js | |||
|
644 | kallithea/public/js/mergely.js | |||
|
645 | kallithea/public/js/mousetrap.js | |||
|
646 | kallithea/public/js/native.history.js | |||
|
647 | kallithea/public/js/select2/ | |||
|
648 | kallithea/public/js/select2/select2-bootstrap.css | |||
|
649 | kallithea/public/js/select2/select2-spinner.gif | |||
|
650 | kallithea/public/js/select2/select2.css | |||
|
651 | kallithea/public/js/select2/select2.js | |||
|
652 | kallithea/public/js/select2/select2.png | |||
|
653 | kallithea/public/js/select2/select2x2.png | |||
|
654 | kallithea/public/js/yui.2.9.js | |||
|
655 | kallithea/public/js/yui.flot.js | |||
|
656 | kallithea/templates/ | |||
|
657 | kallithea/templates/about.html | |||
|
658 | kallithea/templates/admin/ | |||
|
659 | kallithea/templates/admin/admin.html | |||
|
660 | kallithea/templates/admin/admin_log.html | |||
|
661 | kallithea/templates/admin/auth/ | |||
|
662 | kallithea/templates/admin/auth/auth_settings.html | |||
|
663 | kallithea/templates/admin/defaults/ | |||
|
664 | kallithea/templates/admin/defaults/defaults.html | |||
|
665 | kallithea/templates/admin/gists/ | |||
|
666 | kallithea/templates/admin/gists/edit.html | |||
|
667 | kallithea/templates/admin/gists/index.html | |||
|
668 | kallithea/templates/admin/gists/new.html | |||
|
669 | kallithea/templates/admin/gists/show.html | |||
|
670 | kallithea/templates/admin/my_account/ | |||
|
671 | kallithea/templates/admin/my_account/my_account.html | |||
|
672 | kallithea/templates/admin/my_account/my_account_api_keys.html | |||
|
673 | kallithea/templates/admin/my_account/my_account_emails.html | |||
|
674 | kallithea/templates/admin/my_account/my_account_password.html | |||
|
675 | kallithea/templates/admin/my_account/my_account_perms.html | |||
|
676 | kallithea/templates/admin/my_account/my_account_profile.html | |||
|
677 | kallithea/templates/admin/my_account/my_account_repos.html | |||
|
678 | kallithea/templates/admin/my_account/my_account_watched.html | |||
|
679 | kallithea/templates/admin/notifications/ | |||
|
680 | kallithea/templates/admin/notifications/notifications.html | |||
|
681 | kallithea/templates/admin/notifications/notifications_data.html | |||
|
682 | kallithea/templates/admin/notifications/show_notification.html | |||
|
683 | kallithea/templates/admin/permissions/ | |||
|
684 | kallithea/templates/admin/permissions/permissions.html | |||
|
685 | kallithea/templates/admin/permissions/permissions_globals.html | |||
|
686 | kallithea/templates/admin/permissions/permissions_ips.html | |||
|
687 | kallithea/templates/admin/permissions/permissions_perms.html | |||
|
688 | kallithea/templates/admin/repo_groups/ | |||
|
689 | kallithea/templates/admin/repo_groups/repo_group_add.html | |||
|
690 | kallithea/templates/admin/repo_groups/repo_group_edit.html | |||
|
691 | kallithea/templates/admin/repo_groups/repo_group_edit_advanced.html | |||
|
692 | kallithea/templates/admin/repo_groups/repo_group_edit_perms.html | |||
|
693 | kallithea/templates/admin/repo_groups/repo_group_edit_settings.html | |||
|
694 | kallithea/templates/admin/repo_groups/repo_group_show.html | |||
|
695 | kallithea/templates/admin/repo_groups/repo_groups.html | |||
|
696 | kallithea/templates/admin/repos/ | |||
|
697 | kallithea/templates/admin/repos/repo_add.html | |||
|
698 | kallithea/templates/admin/repos/repo_add_base.html | |||
|
699 | kallithea/templates/admin/repos/repo_creating.html | |||
|
700 | kallithea/templates/admin/repos/repo_edit.html | |||
|
701 | kallithea/templates/admin/repos/repo_edit_advanced.html | |||
|
702 | kallithea/templates/admin/repos/repo_edit_caches.html | |||
|
703 | kallithea/templates/admin/repos/repo_edit_fields.html | |||
|
704 | kallithea/templates/admin/repos/repo_edit_fork.html | |||
|
705 | kallithea/templates/admin/repos/repo_edit_permissions.html | |||
|
706 | kallithea/templates/admin/repos/repo_edit_remote.html | |||
|
707 | kallithea/templates/admin/repos/repo_edit_settings.html | |||
|
708 | kallithea/templates/admin/repos/repo_edit_statistics.html | |||
|
709 | kallithea/templates/admin/repos/repos.html | |||
|
710 | kallithea/templates/admin/settings/ | |||
|
711 | kallithea/templates/admin/settings/settings.html | |||
|
712 | kallithea/templates/admin/settings/settings_email.html | |||
|
713 | kallithea/templates/admin/settings/settings_global.html | |||
|
714 | kallithea/templates/admin/settings/settings_hooks.html | |||
|
715 | kallithea/templates/admin/settings/settings_mapping.html | |||
|
716 | kallithea/templates/admin/settings/settings_search.html | |||
|
717 | kallithea/templates/admin/settings/settings_system.html | |||
|
718 | kallithea/templates/admin/settings/settings_system_update.html | |||
|
719 | kallithea/templates/admin/settings/settings_vcs.html | |||
|
720 | kallithea/templates/admin/settings/settings_visual.html | |||
|
721 | kallithea/templates/admin/user_groups/ | |||
|
722 | kallithea/templates/admin/user_groups/user_group_add.html | |||
|
723 | kallithea/templates/admin/user_groups/user_group_edit.html | |||
|
724 | kallithea/templates/admin/user_groups/user_group_edit_advanced.html | |||
|
725 | kallithea/templates/admin/user_groups/user_group_edit_default_perms.html | |||
|
726 | kallithea/templates/admin/user_groups/user_group_edit_members.html | |||
|
727 | kallithea/templates/admin/user_groups/user_group_edit_perms.html | |||
|
728 | kallithea/templates/admin/user_groups/user_group_edit_settings.html | |||
|
729 | kallithea/templates/admin/user_groups/user_groups.html | |||
|
730 | kallithea/templates/admin/users/ | |||
|
731 | kallithea/templates/admin/users/user_add.html | |||
|
732 | kallithea/templates/admin/users/user_edit.html | |||
|
733 | kallithea/templates/admin/users/user_edit_advanced.html | |||
|
734 | kallithea/templates/admin/users/user_edit_api_keys.html | |||
|
735 | kallithea/templates/admin/users/user_edit_emails.html | |||
|
736 | kallithea/templates/admin/users/user_edit_ips.html | |||
|
737 | kallithea/templates/admin/users/user_edit_perms.html | |||
|
738 | kallithea/templates/admin/users/user_edit_profile.html | |||
|
739 | kallithea/templates/admin/users/users.html | |||
|
740 | kallithea/templates/base/ | |||
|
741 | kallithea/templates/base/base.html | |||
|
742 | kallithea/templates/base/default_perms_box.html | |||
|
743 | kallithea/templates/base/flash_msg.html | |||
|
744 | kallithea/templates/base/perms_summary.html | |||
|
745 | kallithea/templates/base/root.html | |||
|
746 | kallithea/templates/bookmarks/ | |||
|
747 | kallithea/templates/bookmarks/bookmarks.html | |||
|
748 | kallithea/templates/bookmarks/bookmarks_data.html | |||
|
749 | kallithea/templates/branches/ | |||
|
750 | kallithea/templates/branches/branches.html | |||
|
751 | kallithea/templates/branches/branches_data.html | |||
|
752 | kallithea/templates/changelog/ | |||
|
753 | kallithea/templates/changelog/changelog.html | |||
|
754 | kallithea/templates/changelog/changelog_details.html | |||
|
755 | kallithea/templates/changelog/changelog_summary_data.html | |||
|
756 | kallithea/templates/changeset/ | |||
|
757 | kallithea/templates/changeset/changeset.html | |||
|
758 | kallithea/templates/changeset/changeset_comment_block.html | |||
|
759 | kallithea/templates/changeset/changeset_file_comment.html | |||
|
760 | kallithea/templates/changeset/changeset_range.html | |||
|
761 | kallithea/templates/changeset/diff_block.html | |||
|
762 | kallithea/templates/changeset/patch_changeset.html | |||
|
763 | kallithea/templates/compare/ | |||
|
764 | kallithea/templates/compare/compare_cs.html | |||
|
765 | kallithea/templates/compare/compare_diff.html | |||
|
766 | kallithea/templates/data_table/ | |||
|
767 | kallithea/templates/data_table/_dt_elements.html | |||
|
768 | kallithea/templates/email_templates/ | |||
|
769 | kallithea/templates/email_templates/changeset_comment.html | |||
|
770 | kallithea/templates/email_templates/changeset_comment.txt | |||
|
771 | kallithea/templates/email_templates/default.html | |||
|
772 | kallithea/templates/email_templates/default.txt | |||
|
773 | kallithea/templates/email_templates/main.html | |||
|
774 | kallithea/templates/email_templates/main.txt | |||
|
775 | kallithea/templates/email_templates/password_reset.html | |||
|
776 | kallithea/templates/email_templates/password_reset.txt | |||
|
777 | kallithea/templates/email_templates/pull_request.html | |||
|
778 | kallithea/templates/email_templates/pull_request.txt | |||
|
779 | kallithea/templates/email_templates/pull_request_comment.html | |||
|
780 | kallithea/templates/email_templates/pull_request_comment.txt | |||
|
781 | kallithea/templates/email_templates/registration.html | |||
|
782 | kallithea/templates/email_templates/registration.txt | |||
|
783 | kallithea/templates/errors/ | |||
|
784 | kallithea/templates/errors/error_document.html | |||
|
785 | kallithea/templates/files/ | |||
|
786 | kallithea/templates/files/diff_2way.html | |||
|
787 | kallithea/templates/files/file_diff.html | |||
|
788 | kallithea/templates/files/files.html | |||
|
789 | kallithea/templates/files/files_add.html | |||
|
790 | kallithea/templates/files/files_browser.html | |||
|
791 | kallithea/templates/files/files_delete.html | |||
|
792 | kallithea/templates/files/files_edit.html | |||
|
793 | kallithea/templates/files/files_history_box.html | |||
|
794 | kallithea/templates/files/files_source.html | |||
|
795 | kallithea/templates/files/files_ypjax.html | |||
|
796 | kallithea/templates/followers/ | |||
|
797 | kallithea/templates/followers/followers.html | |||
|
798 | kallithea/templates/followers/followers_data.html | |||
|
799 | kallithea/templates/forks/ | |||
|
800 | kallithea/templates/forks/fork.html | |||
|
801 | kallithea/templates/forks/forks.html | |||
|
802 | kallithea/templates/forks/forks_data.html | |||
|
803 | kallithea/templates/index.html | |||
|
804 | kallithea/templates/index_base.html | |||
|
805 | kallithea/templates/journal/ | |||
|
806 | kallithea/templates/journal/journal.html | |||
|
807 | kallithea/templates/journal/journal_data.html | |||
|
808 | kallithea/templates/journal/public_journal.html | |||
|
809 | kallithea/templates/login.html | |||
|
810 | kallithea/templates/password_reset.html | |||
|
811 | kallithea/templates/password_reset_confirmation.html | |||
|
812 | kallithea/templates/pullrequests/ | |||
|
813 | kallithea/templates/pullrequests/pullrequest.html | |||
|
814 | kallithea/templates/pullrequests/pullrequest_data.html | |||
|
815 | kallithea/templates/pullrequests/pullrequest_show.html | |||
|
816 | kallithea/templates/pullrequests/pullrequest_show_all.html | |||
|
817 | kallithea/templates/pullrequests/pullrequest_show_my.html | |||
|
818 | kallithea/templates/register.html | |||
|
819 | kallithea/templates/search/ | |||
|
820 | kallithea/templates/search/search.html | |||
|
821 | kallithea/templates/search/search_commit.html | |||
|
822 | kallithea/templates/search/search_content.html | |||
|
823 | kallithea/templates/search/search_path.html | |||
|
824 | kallithea/templates/search/search_repository.html | |||
|
825 | kallithea/templates/summary/ | |||
|
826 | kallithea/templates/summary/statistics.html | |||
|
827 | kallithea/templates/summary/summary.html | |||
|
828 | kallithea/templates/switch_to_list.html | |||
|
829 | kallithea/templates/tags/ | |||
|
830 | kallithea/templates/tags/tags.html | |||
|
831 | kallithea/templates/tags/tags_data.html | |||
|
832 | kallithea/tests/ | |||
|
833 | kallithea/tests/__init__.py | |||
|
834 | kallithea/tests/api/ | |||
|
835 | kallithea/tests/api/__init__.py | |||
|
836 | kallithea/tests/api/api_base.py | |||
|
837 | kallithea/tests/api/test_api_git.py | |||
|
838 | kallithea/tests/api/test_api_hg.py | |||
|
839 | kallithea/tests/conftest.py | |||
|
840 | kallithea/tests/fixture.py | |||
|
841 | kallithea/tests/fixtures/ | |||
|
842 | kallithea/tests/fixtures/diff_with_diff_data.diff | |||
|
843 | kallithea/tests/fixtures/git_diff_binary_and_normal.diff | |||
|
844 | kallithea/tests/fixtures/git_diff_chmod.diff | |||
|
845 | kallithea/tests/fixtures/git_diff_mod_single_binary_file.diff | |||
|
846 | kallithea/tests/fixtures/git_diff_modify_binary_file.diff | |||
|
847 | kallithea/tests/fixtures/git_diff_rename_file.diff | |||
|
848 | kallithea/tests/fixtures/git_node_history_response.json | |||
|
849 | kallithea/tests/fixtures/hg_diff_add_single_binary_file.diff | |||
|
850 | kallithea/tests/fixtures/hg_diff_binary_and_normal.diff | |||
|
851 | kallithea/tests/fixtures/hg_diff_chmod.diff | |||
|
852 | kallithea/tests/fixtures/hg_diff_chmod_and_mod_single_binary_file.diff | |||
|
853 | kallithea/tests/fixtures/hg_diff_copy_and_chmod_file.diff | |||
|
854 | kallithea/tests/fixtures/hg_diff_copy_and_modify_file.diff | |||
|
855 | kallithea/tests/fixtures/hg_diff_copy_chmod_and_edit_file.diff | |||
|
856 | kallithea/tests/fixtures/hg_diff_copy_file.diff | |||
|
857 | kallithea/tests/fixtures/hg_diff_del_single_binary_file.diff | |||
|
858 | kallithea/tests/fixtures/hg_diff_mod_file_and_rename.diff | |||
|
859 | kallithea/tests/fixtures/hg_diff_mod_single_binary_file.diff | |||
|
860 | kallithea/tests/fixtures/hg_diff_mod_single_file_and_rename_and_chmod.diff | |||
|
861 | kallithea/tests/fixtures/hg_diff_rename_and_chmod_file.diff | |||
|
862 | kallithea/tests/fixtures/hg_diff_rename_file.diff | |||
|
863 | kallithea/tests/fixtures/hg_diff_rename_space_cr.diff | |||
|
864 | kallithea/tests/fixtures/hg_node_history_response.json | |||
|
865 | kallithea/tests/fixtures/journal_dump.csv | |||
|
866 | kallithea/tests/fixtures/markuptest.diff | |||
|
867 | kallithea/tests/fixtures/vcs_test_git.tar.gz | |||
|
868 | kallithea/tests/fixtures/vcs_test_hg.tar.gz | |||
|
869 | kallithea/tests/functional/ | |||
|
870 | kallithea/tests/functional/__init__.py | |||
|
871 | kallithea/tests/functional/test_admin.py | |||
|
872 | kallithea/tests/functional/test_admin_auth_settings.py | |||
|
873 | kallithea/tests/functional/test_admin_defaults.py | |||
|
874 | kallithea/tests/functional/test_admin_gists.py | |||
|
875 | kallithea/tests/functional/test_admin_notifications.py | |||
|
876 | kallithea/tests/functional/test_admin_permissions.py | |||
|
877 | kallithea/tests/functional/test_admin_repo_groups.py | |||
|
878 | kallithea/tests/functional/test_admin_repos.py | |||
|
879 | kallithea/tests/functional/test_admin_settings.py | |||
|
880 | kallithea/tests/functional/test_admin_user_groups.py | |||
|
881 | kallithea/tests/functional/test_admin_users.py | |||
|
882 | kallithea/tests/functional/test_branches.py | |||
|
883 | kallithea/tests/functional/test_changelog.py | |||
|
884 | kallithea/tests/functional/test_changeset.py | |||
|
885 | kallithea/tests/functional/test_changeset_comments.py | |||
|
886 | kallithea/tests/functional/test_compare.py | |||
|
887 | kallithea/tests/functional/test_compare_local.py | |||
|
888 | kallithea/tests/functional/test_feed.py | |||
|
889 | kallithea/tests/functional/test_files.py | |||
|
890 | kallithea/tests/functional/test_followers.py | |||
|
891 | kallithea/tests/functional/test_forks.py | |||
|
892 | kallithea/tests/functional/test_home.py | |||
|
893 | kallithea/tests/functional/test_journal.py | |||
|
894 | kallithea/tests/functional/test_login.py | |||
|
895 | kallithea/tests/functional/test_my_account.py | |||
|
896 | kallithea/tests/functional/test_pullrequests.py | |||
|
897 | kallithea/tests/functional/test_repo_groups.py | |||
|
898 | kallithea/tests/functional/test_search.py | |||
|
899 | kallithea/tests/functional/test_summary.py | |||
|
900 | kallithea/tests/functional/test_tags.py | |||
|
901 | kallithea/tests/models/ | |||
|
902 | kallithea/tests/models/__init__.py | |||
|
903 | kallithea/tests/models/common.py | |||
|
904 | kallithea/tests/models/test_changeset_status.py | |||
|
905 | kallithea/tests/models/test_diff_parsers.py | |||
|
906 | kallithea/tests/models/test_notifications.py | |||
|
907 | kallithea/tests/models/test_permissions.py | |||
|
908 | kallithea/tests/models/test_repo_groups.py | |||
|
909 | kallithea/tests/models/test_repos.py | |||
|
910 | kallithea/tests/models/test_user_group_permissions_on_repo_groups.py | |||
|
911 | kallithea/tests/models/test_user_groups.py | |||
|
912 | kallithea/tests/models/test_user_permissions_on_repo_groups.py | |||
|
913 | kallithea/tests/models/test_user_permissions_on_repos.py | |||
|
914 | kallithea/tests/models/test_users.py | |||
|
915 | kallithea/tests/other/ | |||
|
916 | kallithea/tests/other/__init__.py | |||
|
917 | kallithea/tests/other/manual_test_vcs_operations.py | |||
|
918 | kallithea/tests/other/test_libs.py | |||
|
919 | kallithea/tests/other/test_mail.py | |||
|
920 | kallithea/tests/other/test_validators.py | |||
|
921 | kallithea/tests/parameterized.py | |||
|
922 | kallithea/tests/scripts/ | |||
|
923 | kallithea/tests/scripts/create_rc.sh | |||
|
924 | kallithea/tests/scripts/manual_test_concurrency.py | |||
|
925 | kallithea/tests/scripts/manual_test_crawler.py | |||
|
926 | kallithea/tests/scripts/mem_watch | |||
|
927 | kallithea/tests/test.ini | |||
|
928 | kallithea/tests/vcs/ | |||
|
929 | kallithea/tests/vcs/__init__.py | |||
|
930 | kallithea/tests/vcs/aconfig | |||
|
931 | kallithea/tests/vcs/base.py | |||
|
932 | kallithea/tests/vcs/conf.py | |||
|
933 | kallithea/tests/vcs/test_archives.py | |||
|
934 | kallithea/tests/vcs/test_branches.py | |||
|
935 | kallithea/tests/vcs/test_changesets.py | |||
|
936 | kallithea/tests/vcs/test_filenodes_unicode_path.py | |||
|
937 | kallithea/tests/vcs/test_getitem.py | |||
|
938 | kallithea/tests/vcs/test_getslice.py | |||
|
939 | kallithea/tests/vcs/test_git.py | |||
|
940 | kallithea/tests/vcs/test_hg.py | |||
|
941 | kallithea/tests/vcs/test_inmemchangesets.py | |||
|
942 | kallithea/tests/vcs/test_nodes.py | |||
|
943 | kallithea/tests/vcs/test_repository.py | |||
|
944 | kallithea/tests/vcs/test_tags.py | |||
|
945 | kallithea/tests/vcs/test_utils.py | |||
|
946 | kallithea/tests/vcs/test_utils_filesize.py | |||
|
947 | kallithea/tests/vcs/test_vcs.py | |||
|
948 | kallithea/tests/vcs/test_workdirs.py | |||
|
949 | kallithea/tests/vcs/utils.py | |||
|
950 | kallithea/websetup.py | |||
|
951 | setup.cfg | |||
|
952 | setup.py |
General Comments 0
You need to be logged in to leave comments.
Login now