author | mpm@selenic.com |
Thu, 30 Jun 2005 09:22:11 -0800 | |
changeset 533 | b8404005d6d5 |
parent 530 | c5b8ed036433 |
child 540 | 53872e2be33a |
child 542 | eda4c32c167a |
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) |
483 | 18 |
- hg over ssh:// and https:// |
368 | 19 |
- commit mailinglist/trigger/hooks |
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 diff Makefile should avoid walking the tree |
24 |
- hg add <directory> should work |
|
368 | 25 |
- hg status <filename>: file rev, changeset rev, changed, added, |
26 |
deleted, sha-1 |
|
27 |
- select to pull a subset of the heads |
|
28 |
- commands.py: number of args too much magic (e.g. in patch()) |
|
29 |
- automatic pull fallback to old-http:// |
|
30 |
- hg init|pull http://example.com doesn't say that no repo was found |
|
31 |
- hg annotate -u and hgweb annotate with long $EMAIL |
|
379 | 32 |
- hg pull default in a subdir doesn't work, if it is a relative path |
33 |
- optionally only show merges (two parents or parent != changeset-1, etc.) |
|
368 | 34 |
|
35 |
Web: |
|
379 | 36 |
- show tags in hgweb |
368 | 37 |
- show parent changeset number in hgweb |
379 | 38 |
- optionally only show merges (two parents or parent != changeset-1, etc.) |
368 | 39 |
- one hgweb with many repos (another script) |
40 |
- hgweb tip link too verbose |
|
379 | 41 |
- hgweb: deliver static files (e.g. favicon, stylesheets) |
368 | 42 |
- hgweb personalization: timezone (display/change), display of |
43 |
features |
|
44 |
- hg export 240 shows -tkmerge (good), hgweb does not (bad). |
|
379 | 45 |
- some web servers think hgweb.cgi.[di] is a CGI script with old-http:// |
46 |
(use quoting (see foo.d in Core) or document server configurations?) |
|
47 |
- link children in hgweb |
|
483 | 48 |
- search field searching in descriptions, file names, what else? |