Mercurial > hg
annotate TODO @ 586:11578820b5d7
[PATCH] Tags template cleanup
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
[PATCH] Tags template cleanup
From: Edouard Gomez <edouard.gomez@gmail.com>
Tags template cleanup
This page lists all tags, thus using divs doesn't structure well
the information. Better use a list (ul). Each tag becomes a li
element. The li element also carries the parity information.
As font style tags are highly deprecated in newer HTML variants
get rid of the tt element, relaced by a simple span that gets
a CSS class that mimics tt default style (monospaced text)
Added CSS classes required to match old style.
manifest hash: f8943b8270e20966a04111e7205deefedd8b7075
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCx1ijywK+sNU5EO8RAjaAAJoCVaD37YUC6DueL6Kd5D9aoCF8bQCfSWw0
xFVkpEtnr6ST4eyJjR8K17U=
=nphb
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Sat, 02 Jul 2005 19:16:51 -0800 |
parents | 87f37e61d0db |
children | 62a7b679a9ca |
rev | line source |
---|---|
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) |
543 | 18 - hg over ssh:// and https:// and rsync:// |
19 - 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
|
20 - make showing removed files (in history etc.) faster. |
368 | 21 |
22 Commands: | |
520 | 23 - hg add <directory> should work |
368 | 24 - hg status <filename>: file rev, changeset rev, changed, added, |
25 deleted, sha-1 | |
26 - select to pull a subset of the heads | |
27 - commands.py: number of args too much magic (e.g. in patch()) | |
28 - automatic pull fallback to old-http:// | |
379 | 29 - hg pull default in a subdir doesn't work, if it is a relative path |
30 - optionally only show merges (two parents or parent != changeset-1, etc.) | |
368 | 31 |
32 Web: | |
379 | 33 - show tags in hgweb |
34 - optionally only show merges (two parents or parent != changeset-1, etc.) | |
368 | 35 - one hgweb with many repos (another script) |
36 - hgweb tip link too verbose | |
379 | 37 - hgweb: deliver static files (e.g. favicon, stylesheets) |
368 | 38 - hgweb personalization: timezone (display/change), display of |
39 features | |
40 - hg export 240 shows -tkmerge (good), hgweb does not (bad). | |
379 | 41 - some web servers think hgweb.cgi.[di] is a CGI script with old-http:// |
42 (use quoting (see foo.d in Core) or document server configurations?) | |
43 - link children in hgweb |