Mercurial > hg
annotate TODO @ 598:f8d44a2e6928
[PATCH 4/5]: cleaning the template parent management in hgweb
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
[PATCH 4/5]: cleaning the template parent management in hgweb
From: Goffredo Baroncelli <kreijack@libero.it>
Now the patch remove every use of the tag p1/p2/p1rev/p2rev from the
code ( even+the ones not used ), replacing everywhere with the tag
parent ( even where the previous +tag are not use ), so the
information to the templates is still given.
manifest hash: ede1f299e9201fdad2ecf48e63314350acbb047e
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCyEqxywK+sNU5EO8RAjc5AJ9o8AU6/YRuERblO/0kgWwDN4rqQQCgkVj/
UBtzW5x0yD65mK6rb4f+bQk=
=07yG
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Sun, 03 Jul 2005 12:29:37 -0800 |
parents | 62a7b679a9ca |
children | a55048b2ae3a |
rev | line source |
---|---|
368 | 1 General: |
2 - Better documentation | |
3 - More regression tests | |
4 - More specific try/except. | |
5 - less code duplication, more code in the right places | |
6 - python 2.2 support | |
7 - better import support | |
8 - export to git | |
389 | 9 - Code cleanup: apply http://python.org/peps/pep-0008.html |
368 | 10 |
11 Core: | |
379 | 12 - difflib creating/removing files (fixed except dates: should be epoch) |
13 - directory foo.d or foo.i with existing file foo (use some quoting?) | |
14 - get various options from hgrc (e.g. history always -v, tip always -q) | |
447 | 15 - better push support (hack exists) |
543 | 16 - hg over ssh:// and https:// and rsync:// |
17 - hooks for new changesets getting pulled/imported etc. | |
493
30752b14f759
Make show_changeset show added/deleted files only in debug mode.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
490
diff
changeset
|
18 - make showing removed files (in history etc.) faster. |
368 | 19 |
20 Commands: | |
520 | 21 - hg add <directory> should work |
368 | 22 - hg status <filename>: file rev, changeset rev, changed, added, |
23 deleted, sha-1 | |
24 - select to pull a subset of the heads | |
25 - commands.py: number of args too much magic (e.g. in patch()) | |
26 - automatic pull fallback to old-http:// | |
379 | 27 - optionally only show merges (two parents or parent != changeset-1, etc.) |
368 | 28 |
29 Web: | |
379 | 30 - optionally only show merges (two parents or parent != changeset-1, etc.) |
368 | 31 - one hgweb with many repos (another script) |
32 - hgweb tip link too verbose | |
379 | 33 - hgweb: deliver static files (e.g. favicon, stylesheets) |
368 | 34 - hgweb personalization: timezone (display/change), display of |
35 features | |
36 - hg export 240 shows -tkmerge (good), hgweb does not (bad). | |
379 | 37 - some web servers think hgweb.cgi.[di] is a CGI script with old-http:// |
38 (use quoting (see foo.d in Core) or document server configurations?) | |
39 - link children in hgweb |