author | mpm@selenic.com |
Sat, 23 Jul 2005 10:08:40 -0500 | |
changeset 769 | 0c033ef053ab |
parent 759 | d2c52a502473 |
child 847 | f1555f48f884 |
child 871 | c2e77581bc84 |
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 |
- export to git |
|
389 | 8 |
- Code cleanup: apply http://python.org/peps/pep-0008.html |
368 | 9 |
|
10 |
Core: |
|
379 | 11 |
- difflib creating/removing files (fixed except dates: should be epoch) |
12 |
- directory foo.d or foo.i with existing file foo (use some quoting?) |
|
13 |
- get various options from hgrc (e.g. history always -v, tip always -q) |
|
759 | 14 |
- hg over https:// and rsync:// |
543 | 15 |
- 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
|
16 |
- make showing removed files (in history etc.) faster. |
759 | 17 |
- hgmerge error: merge should abort nicely and running it again should work |
18 |
- if hardlinking fails, pull should be used |
|
19 |
- .hgignore should use new patterns |
|
368 | 20 |
|
21 |
Commands: |
|
759 | 22 |
- hg add <directory> should work (currently only: hg add -I <dir>) |
368 | 23 |
- hg status <filename>: file rev, changeset rev, changed, added, |
24 |
deleted, sha-1 |
|
25 |
- select to pull a subset of the heads |
|
759 | 26 |
- commands.py: number of args too much magic (e.g. in import_()) |
27 |
- optionally only show merges (two parents) |
|
368 | 28 |
- automatic pull fallback to old-http:// |
759 | 29 |
- hg pull http://foo tries hostname |
30 |
'foo?cmd=changegroup&roots=0000000000000000000000000000000000000000' |
|
31 |
- pass options to ssh (debug/verbose/remote hg command etc.) |
|
32 |
- create a commented .hg/hgrc on init/clone |
|
33 |
- hg pull default in a subdir doesn't work, if it is a relative path |
|
34 |
- hg clone should store corrected relative paths, so moving a directory |
|
35 |
containing related repositories works again |
|
36 |
- mention synonyms (co, ci, ...) in help |
|
37 |
- show global options in help |
|
38 |
- if everyone knows 'hg clone': hg init [DIR] |
|
39 |
- if everyone knows 'hg update -m': remove -t |
|
368 | 40 |
|
41 |
Web: |
|
759 | 42 |
- optionally only show merges (two parents) |
368 | 43 |
- one hgweb with many repos (another script) |
759 | 44 |
- hgweb tip link too long (URL?cmd=changelog;rev=) |
45 |
- hgweb: shorter links (e.g. cs=... instead of cmd=changeset;node=...?) |
|
379 | 46 |
- hgweb: deliver static files (e.g. favicon, stylesheets) |
368 | 47 |
- hgweb personalization: timezone (display/change), display of |
759 | 48 |
features, number of entries per page |
379 | 49 |
- some web servers think hgweb.cgi.[di] is a CGI script with old-http:// |
50 |
(use quoting (see foo.d in Core) or document server configurations?) |
|
51 |
- link children in hgweb |
|
759 | 52 |
- allow verbose mode |
53 |
- hide trivial parent (like in show_changeset) |