author | mpm@selenic.com |
Fri, 01 Jul 2005 00:34:50 -0800 | |
changeset 556 | f6c6fa15ff70 |
parent 547 | 4fc63e22b1fe |
child 567 | 87f37e61d0db |
permissions | -rw-r--r-- |
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 |
|
520 | 9 |
- Add standard files: ChangeLog? What else? |
389 | 10 |
- Code cleanup: apply http://python.org/peps/pep-0008.html |
530 | 11 |
- Replace all remaining print statements with appropriate ui function |
368 | 12 |
|
13 |
Core: |
|
379 | 14 |
- difflib creating/removing files (fixed except dates: should be epoch) |
15 |
- directory foo.d or foo.i with existing file foo (use some quoting?) |
|
16 |
- get various options from hgrc (e.g. history always -v, tip always -q) |
|
447 | 17 |
- better push support (hack exists) |
543 | 18 |
- hg over ssh:// and https:// and rsync:// |
19 |
- 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
|
20 |
- make showing removed files (in history etc.) faster. |
368 | 21 |
|
22 |
Commands: |
|
520 | 23 |
- hg add <directory> should work |
368 | 24 |
- hg status <filename>: file rev, changeset rev, changed, added, |
25 |
deleted, sha-1 |
|
26 |
- select to pull a subset of the heads |
|
27 |
- commands.py: number of args too much magic (e.g. in patch()) |
|
28 |
- automatic pull fallback to old-http:// |
|
379 | 29 |
- hg pull default in a subdir doesn't work, if it is a relative path |
30 |
- optionally only show merges (two parents or parent != changeset-1, etc.) |
|
368 | 31 |
|
32 |
Web: |
|
379 | 33 |
- show tags in hgweb |
368 | 34 |
- show parent changeset number in hgweb |
379 | 35 |
- optionally only show merges (two parents or parent != changeset-1, etc.) |
368 | 36 |
- one hgweb with many repos (another script) |
37 |
- hgweb tip link too verbose |
|
379 | 38 |
- hgweb: deliver static files (e.g. favicon, stylesheets) |
368 | 39 |
- hgweb personalization: timezone (display/change), display of |
40 |
features |
|
41 |
- hg export 240 shows -tkmerge (good), hgweb does not (bad). |
|
379 | 42 |
- some web servers think hgweb.cgi.[di] is a CGI script with old-http:// |
43 |
(use quoting (see foo.d in Core) or document server configurations?) |
|
44 |
- link children in hgweb |