Show More
@@ -4,7 +4,6 b' General:' | |||||
4 | - More specific try/except. |
|
4 | - More specific try/except. | |
5 | - less code duplication, more code in the right places |
|
5 | - less code duplication, more code in the right places | |
6 | - python 2.2 support |
|
6 | - python 2.2 support | |
7 | - better import support |
|
|||
8 | - export to git |
|
7 | - export to git | |
9 | - Code cleanup: apply http://python.org/peps/pep-0008.html |
|
8 | - Code cleanup: apply http://python.org/peps/pep-0008.html | |
10 |
|
9 | |||
@@ -12,27 +11,43 b' Core:' | |||||
12 | - difflib creating/removing files (fixed except dates: should be epoch) |
|
11 | - difflib creating/removing files (fixed except dates: should be epoch) | |
13 | - directory foo.d or foo.i with existing file foo (use some quoting?) |
|
12 | - 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) |
|
13 | - get various options from hgrc (e.g. history always -v, tip always -q) | |
15 | - better push support (hack exists) |
|
14 | - hg over https:// and rsync:// | |
16 | - hg over ssh:// and https:// and rsync:// |
|
|||
17 | - hooks for new changesets getting pulled/imported etc. |
|
15 | - hooks for new changesets getting pulled/imported etc. | |
18 | - make showing removed files (in history etc.) faster. |
|
16 | - make showing removed files (in history etc.) faster. | |
|
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 | |||
19 |
|
20 | |||
20 | Commands: |
|
21 | Commands: | |
21 | - hg add <directory> should work |
|
22 | - hg add <directory> should work (currently only: hg add -I <dir>) | |
22 | - hg status <filename>: file rev, changeset rev, changed, added, |
|
23 | - hg status <filename>: file rev, changeset rev, changed, added, | |
23 | deleted, sha-1 |
|
24 | deleted, sha-1 | |
24 | - select to pull a subset of the heads |
|
25 | - select to pull a subset of the heads | |
25 |
- commands.py: number of args too much magic (e.g. in |
|
26 | - commands.py: number of args too much magic (e.g. in import_()) | |
|
27 | - optionally only show merges (two parents) | |||
26 | - automatic pull fallback to old-http:// |
|
28 | - automatic pull fallback to old-http:// | |
27 | - optionally only show merges (two parents or parent != changeset-1, etc.) |
|
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 | |||
28 |
|
40 | |||
29 | Web: |
|
41 | Web: | |
30 |
- optionally only show merges (two parents |
|
42 | - optionally only show merges (two parents) | |
31 | - one hgweb with many repos (another script) |
|
43 | - one hgweb with many repos (another script) | |
32 | - hgweb tip link too verbose |
|
44 | - hgweb tip link too long (URL?cmd=changelog;rev=) | |
|
45 | - hgweb: shorter links (e.g. cs=... instead of cmd=changeset;node=...?) | |||
33 | - hgweb: deliver static files (e.g. favicon, stylesheets) |
|
46 | - hgweb: deliver static files (e.g. favicon, stylesheets) | |
34 | - hgweb personalization: timezone (display/change), display of |
|
47 | - hgweb personalization: timezone (display/change), display of | |
35 | features |
|
48 | features, number of entries per page | |
36 | - some web servers think hgweb.cgi.[di] is a CGI script with old-http:// |
|
49 | - some web servers think hgweb.cgi.[di] is a CGI script with old-http:// | |
37 | (use quoting (see foo.d in Core) or document server configurations?) |
|
50 | (use quoting (see foo.d in Core) or document server configurations?) | |
38 | - link children in hgweb |
|
51 | - link children in hgweb | |
|
52 | - allow verbose mode | |||
|
53 | - hide trivial parent (like in show_changeset) |
General Comments 0
You need to be logged in to leave comments.
Login now