##// END OF EJS Templates
[PATCH] use <arpa/inet.h> instead of <netinet/in.h> for ntohl/htonl...
[PATCH] use <arpa/inet.h> instead of <netinet/in.h> for ntohl/htonl -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [PATCH] use <arpa/inet.h> instead of <netinet/in.h> for ntohl/htonl From: Jed Davis <jdev@panix.com> This fixes the Mac OS X build problem; hopefully it won't break any other OSes, especially since SUSv3 says arpa/inet is the right header. ( http://www.opengroup.org/onlinepubs/009695399/functions/ntohl.html ) manifest hash: 2f06ff0cffefdb35e794131afcd1f34f9fdfa5cf -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCyEoFywK+sNU5EO8RAk6WAJ9v/pnr07zUXKM9EBQQGaKSZAlhxACdHrwS XTLSL6pPGAwaRfExGF2A3DQ= =Rtv9 -----END PGP SIGNATURE-----

File last commit:

r586:11578820 default
r597:e530637e default
Show More
map
35 lines | 2.4 KiB | text/plain | TextLexer
mpm@selenic.com
Prettify the web interface...
r142 header = header.tmpl
footer = footer.tmpl
mpm@selenic.com
Add multiple keyword search to hgweb...
r538 search = search.tmpl
mpm@selenic.com
Revamped templated hgweb
r138 changelog = changelog.tmpl
mpm@selenic.com
hgweb: make navigation of changesets a bit nicer
r173 naventry = "<a href="?cmd=changelog;rev=#rev#">#label#</a> "
mpm@selenic.com
Revamped templated hgweb
r138 filedifflink = "<a href="?cmd=filediff;node=#node#;file=#file#">#file#</a> "
filenodelink = "<a href="?cmd=file;filenode=#filenode#;file=#file#">#file#</a> "
fileellipses = "..."
changelogentry = changelogentry.tmpl
mpm@selenic.com
Add multiple keyword search to hgweb...
r538 searchentry = searchentry.tmpl
mpm@selenic.com
Revamped templated hgweb
r138 changeset = changeset.tmpl
manifest = manifest.tmpl
mpm@selenic.com
hgweb: add file permissions...
r359 manifestdirentry = "<tr class="parity#parity#"><td><tt>drwxr-xr-x</tt>&nbsp;<td><a href="?cmd=manifest;manifest=#manifest#;path=#path#">#basename#/</a>"
manifestfileentry = "<tr class="parity#parity#"><td><tt>#permissions|permissions#</tt>&nbsp;<td><a href="?cmd=file;filenode=#filenode#;file=#file#">#basename#</a>"
mpm@selenic.com
Revamped templated hgweb
r138 filerevision = filerevision.tmpl
fileannotate = fileannotate.tmpl
filediff = filediff.tmpl
filelog = filelog.tmpl
mpm@selenic.com
hgweb: add template filters, template style maps, and raw pages...
r201 fileline = "<div class="parity#parity#"><span class="lineno">#linenumber# </span>#line|escape#</div>"
mpm@selenic.com
Revamped templated hgweb
r138 filelogentry = filelogentry.tmpl
Thomas Arendsen Hein
Obfuscate author in all HTML templates.
r235 annotateline = "<tr class="parity#parity#"><td class="annotate"><a href="?cmd=changeset;node=#node#">#author|obfuscate#@#rev#</a></td><td><pre>#line|escape#</pre></td></tr>"
mpm@selenic.com
hgweb: add template filters, template style maps, and raw pages...
r201 difflineplus = "<span class="plusline">#line|escape#</span>"
difflineminus = "<span class="minusline">#line|escape#</span>"
difflineat = "<span class="atline">#line|escape#</span>"
diffline = "#line|escape#"
mpm@selenic.com
[PATCH] Changelogentry template cleanup...
r585 changelogparent = "<tr><th class="parent">parent #rev#:</th><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>"
mpm@selenic.com
Add parent revision numbers back to hgweb...
r567 changesetparent = "<tr><td class="metatag">parent #rev#:</td><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>"
mpm@selenic.com
Show nice short hashes in hgweb...
r375 filerevparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=file;file=#file#;filenode=#node#">#node|short#</a></td></tr>"
fileannotateparent = "<tr><td class="metatag">parent:</td><td><a href="?cmd=annotate;file=#file#;filenode=#node#">#node|short#</a></td></tr>"
mpm@selenic.com
hgweb: add tags links and manifest links...
r168 tags = tags.tmpl
mpm@selenic.com
[PATCH] Tags template cleanup...
r586 tagentry = "<li class="tagEntry parity#parity#"><span class="node">#node#</span> <a href="?cmd=changeset;node=#node#">#tag#</a></li>"
Thomas Arendsen Hein
Obfuscate author in all HTML templates.
r235 diffblock = "<div class="parity#parity#">#lines#</div>"
mpm@selenic.com
[PATCH] Add tags to hgweb...
r568 changelogtag = "<tr><td align="right">tag:&nbsp;</td><td>#tag#</td></tr>"
changesettag = "<tr><td class="metatag">tag:&nbsp;</td><td>#tag#</td></tr>"
mpm@selenic.com
[PATCH 3/5]: cleaning the template parent management in hgweb...
r571 filediffparent = "<tr><td class="metatag">parent #rev#:</td><td><a href="?cmd=changeset;node=#node#">#node|short#</a></td></tr>"