TODO
author mpm@selenic.com
Wed, 15 Jun 2005 21:23:07 -0800
changeset 380 c72ccad3e3b8
parent 368 4b1cec05f3eb
parent 379 c8bd9793446d
child 389 ef8ff43f9c11
permissions -rw-r--r--
Merge with TAH -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Merge with TAH manifest hash: 18cf61cc2b6611d74ffc490b6b733537b879d69e -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCsQy7ywK+sNU5EO8RAoi/AKCC0XbK73oemLr52KOQWEK4WlE9pgCgkk/8 C/m6MZJqlOKhIT4jazPwngU= =ECGy -----END PGP SIGNATURE-----
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
368
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
     1
General:
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
     2
- Better documentation
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
     3
- More regression tests
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
     4
- More specific try/except.
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
     5
- less code duplication, more code in the right places
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
     6
- python 2.2 support
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
     7
- better import support
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
     8
- export to git
379
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
     9
- Add standard files: AUTHORS, CREDITS, COPYING. ChangeLog? What else?
368
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    10
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    11
Core:
379
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    12
- difflib creating/removing files (fixed except dates: should be epoch)
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    13
- directory foo.d or foo.i with existing file foo (use some quoting?)
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    14
- get various options from hgrc (e.g. history always -v, tip always -q)
368
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    15
- allow full decimal (part of) hash
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    16
  hg export 5005048662 -> OverflowError: long int too large to convert
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    17
  to int
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    18
- push support (hack exists)
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    19
- hg over ssh://
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    20
- commit mailinglist/trigger/hooks
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    21
- fast diff extension
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    22
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    23
Commands:
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    24
- hg status <filename>: file rev, changeset rev, changed, added,
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    25
  deleted, sha-1
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    26
- select to pull a subset of the heads
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    27
- commands.py: number of args too much magic (e.g. in patch())
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    28
- adding a tag with "hg tag foobar"
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    29
- automatic pull fallback to old-http://
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    30
- hg init|pull http://example.com doesn't say that no repo was found
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    31
- hg annotate -u and hgweb annotate with long $EMAIL
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    32
- hg -v history doesn't show tkmerge as modified (removed).
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    33
- hg import vs. hg patch in help etc. (import is a reserved python
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    34
  word)
379
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    35
- version reporting (hg --version / version.py / setup.py etc.)
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    36
- hg pull default in a subdir doesn't work, if it is a relative path
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    37
- show tags in hg history
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    38
- optionally only show merges (two parents or parent != changeset-1, etc.)
368
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    39
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    40
Web:
379
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    41
- show tags in hgweb
368
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    42
- show parent changeset number in hgweb
379
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    43
- optionally only show merges (two parents or parent != changeset-1, etc.)
368
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    44
- one hgweb with many repos (another script)
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    45
- hgweb tip link too verbose
379
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    46
- hgweb: deliver static files (e.g. favicon, stylesheets)
368
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    47
- hgweb personalization: timezone (display/change), display of
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    48
  features
4b1cec05f3eb Add a TODO list
mpm@selenic.com
parents:
diff changeset
    49
- hg export 240 shows -tkmerge (good), hgweb does not (bad).
379
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    50
- some web servers think hgweb.cgi.[di] is a CGI script with old-http://
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    51
  (use quoting (see foo.d in Core) or document server configurations?)
c8bd9793446d Updated TODO
Thomas Arendsen Hein <thomas@intevation.de>
parents: 368
diff changeset
    52
- link children in hgweb