Differences between revisions 1 and 19 (spanning 18 versions)
Revision 1 as of 2005-08-26 00:58:02
Size: 2344
Editor: waste
Comment:
Revision 19 as of 2005-10-04 18:45:33
Size: 2083
Editor: tonfa
Comment: diff uses epoch for add remove
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

(See also MissingFeatures)
Line 9: Line 7:
 * More specific try/except.
Line 12: Line 9:
 * Code cleanup: apply http://python.org/peps/pep-0008.html
Line 17: Line 13:
 * difflib creating/removing files (fixed except dates: should be epoch)  * add handling of rename on merge
 * make unidiff generation use bdiff
Line 19: Line 16:
 * hg over !rsync://, !ftp://, etc.  * hg over `rsync://`, `ftp://`, etc. (probably use bundle/unbundle)
Line 22: Line 19:
 * .hgignore should use new patterns

== Error Handling: ==

 * fix clone error on disk full
Line 23: Line 25:
 * .hgignore should use new patterns
Line 27: Line 28:
 * hg extras: files not managed by hg that it is also not ignoring
 * hg status <filename>:
file rev, changeset rev, changed, added, deleted, sha-1
 * hg log: optionally only show merges (two parents)
 *
automatic pull fallback to old-http://
 * create a commented .hg/hgrc on init/clone
 * command to display file rev, changeset rev, changed, added, deleted, sha-1
 * automatic pull fallback to `old-http://`
Line 33: Line 31:
 * hg clone should store corrected relative paths, so moving a directory containing related repositories works again
Line 37: Line 34:
''' hg clone: only link: changeset.i, changeset.d, manifest.i, manifest.d, data/''', localtags, ...
 * hg clone: fall back to pull if hardlink not possible.
 * "hg log not_existing" should yield an error message; add test for this.
 * "hg ci" removes files without requiring "hg rm"
 * bug: "hg ci" removes files without requiring "hg rm"
 * hg clone -r <rev> support, then clone can get a copy not include all the changeset.
 * hg clone -r <rev>:<rev> support, so clone can get a small repository
Line 48: Line 44:
 * hgweb personalization: timezone (display/change), display of features, number of entries per page
 * some web servers think hgweb.cgi.d/.i is a CGI script with old-http:// (use quoting (see foo.d in Core) or document server configurations?)
 * hgweb personalization: timezone (display/change), display of features
Line 53: Line 48:
 * download tarball via web interface  * deal with binary files in file view
 * deal with MIME types when showing files
 * show how far repositories have diverged

== Tools: ==

 * integrated gui with history, commit, push/pull, etc.
 * vi support
 * integration with other IDEs

== Portability: ==

 * fix hg import on Windows

(See also MissingFeatures)

The public version of the secret TODO list

General:

  • Better documentation
  • More regression tests
  • less code duplication, more code in the right places
  • export to git
  • generate man page from doc strings

Core:

  • add handling of rename on merge
  • make unidiff generation use bdiff
  • get various options from hgrc (e.g. history always -v, tip always -q)
  • hg over rsync://, ftp://, etc. (probably use bundle/unbundle)

  • more complete set of hooks
  • make showing removed files (in history etc.) faster.
  • .hgignore should use new patterns

Error Handling:

  • fix clone error on disk full
  • hgmerge error: merge should abort nicely and running it again should work

Commands:

  • command to display file rev, changeset rev, changed, added, deleted, sha-1
  • automatic pull fallback to old-http://

  • hg pull default in a subdir doesn't work, if it is a relative path
  • if everyone knows 'hg update -m': remove -t
  • hg revert does not forget added files, it probably should.
  • hg pull: select to pull a subset of the heads
  • bug: "hg ci" removes files without requiring "hg rm"
  • hg clone -r <rev> support, then clone can get a copy not include all the changeset.

  • hg clone -r <rev>:<rev> support, so clone can get a small repository

Web:

  • optionally only show merges (two parents)
  • hgweb tip link too long (URL?cmd=changelog;rev=)
  • hgweb: shorter links (e.g. cs=... instead of cmd=changeset;node=...?)
  • hgweb: deliver static files (e.g. favicon, stylesheets)
  • hgweb personalization: timezone (display/change), display of features
  • link children in hgweb
  • allow verbose mode
  • hide trivial parent (like in show_changeset)
  • deal with binary files in file view
  • deal with MIME types when showing files
  • show how far repositories have diverged

Tools:

  • integrated gui with history, commit, push/pull, etc.
  • vi support
  • integration with other IDEs

Portability:

  • fix hg import on Windows

(See also MissingFeatures)

ToDo (last edited 2010-10-21 23:27:09 by mpm)