Mon, 08 Jun 2009 20:02:44 +0200 mq: eliminate warning on qpush with empty series
Adrian Buehlmann <adrian@cadifra.com> [Mon, 08 Jun 2009 20:02:44 +0200] rev 8795
mq: eliminate warning on qpush with empty series Warning was "DeprecationWarning: use lock.release instead of del lock"
Sat, 23 May 2009 20:38:08 +0900 inotify: repowatcher: don't use a watches attribute to count watches
Nicolas Dumazet <nicdumz.commits@gmail.com> [Sat, 23 May 2009 20:38:08 +0900] rev 8794
inotify: repowatcher: don't use a watches attribute to count watches The encapsulated watcher alread has a __len__ method for this purpose. Also, repowatcher.watches was never decremented on watch deletions.
Thu, 21 May 2009 23:51:54 +0900 inotify: put the "while True: poll()" loop in pollable class
Nicolas Dumazet <nicdumz.commits@gmail.com> [Thu, 21 May 2009 23:51:54 +0900] rev 8793
inotify: put the "while True: poll()" loop in pollable class
Thu, 21 May 2009 20:15:00 +0900 inotify: refactor (un)register methods into pollable object
Nicolas Dumazet <nicdumz.commits@gmail.com> [Thu, 21 May 2009 20:15:00 +0900] rev 8792
inotify: refactor (un)register methods into pollable object repowatcher.master becomes unnecessary
Sat, 13 Jun 2009 18:41:28 +0200 inotify.server: the decorator eventaction() shouldn't be a method of repowatcher
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sat, 13 Jun 2009 18:41:28 +0200] rev 8791
inotify.server: the decorator eventaction() shouldn't be a method of repowatcher
Sat, 13 Jun 2009 18:14:50 +0200 inotify: add log config option redirect inotify server output to a file
Nicolas Dumazet <nicdumz.commits@gmail.com> [Sat, 13 Jun 2009 18:14:50 +0200] rev 8790
inotify: add log config option redirect inotify server output to a file
Mon, 25 May 2009 18:14:32 +0900 cmdutil: service: logfile option to redirect stdout & stderr in a file
Nicolas Dumazet <nicdumz.commits@gmail.com> [Mon, 25 May 2009 18:14:32 +0900] rev 8789
cmdutil: service: logfile option to redirect stdout & stderr in a file
Sat, 13 Jun 2009 17:39:01 +0200 inotify: raise QueryFailed when the server crash
Nicolas Dumazet <nicdumz.commits@gmail.com> [Sat, 13 Jun 2009 17:39:01 +0200] rev 8788
inotify: raise QueryFailed when the server crash When the server crashes, it does not write back on the socket. The message which is then read from the socket is '', which raises a TypeError. Catching TypeError to raise QueryFailed instead.
Wed, 27 May 2009 00:29:11 +0900 inotify: server: move split() out of server
Nicolas Dumazet <nicdumz.commits@gmail.com> [Wed, 27 May 2009 00:29:11 +0900] rev 8787
inotify: server: move split() out of server split() has nothing to do with the server logic, it does not need to be in the class. Move it on top, next to join() which does the opposite.
Sat, 13 Jun 2009 17:23:08 +0200 inotify: remove unused variables
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sat, 13 Jun 2009 17:23:08 +0200] rev 8786
inotify: remove unused variables
Sat, 13 Jun 2009 13:14:02 +0200 atomictempfile: fix exception in __del__ if mktempcopy fails (self._fp is None)
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Sat, 13 Jun 2009 13:14:02 +0200] rev 8785
atomictempfile: fix exception in __del__ if mktempcopy fails (self._fp is None) Make what is going on more obvious by explicitely getting the 'closed' attribute from _fp, instead of from the gettatr proxy.
Thu, 11 Jun 2009 12:23:08 -0700 Merge with crew-stable
Brendan Cully <brendan@kublai.com> [Thu, 11 Jun 2009 12:23:08 -0700] rev 8784
Merge with crew-stable
Thu, 11 Jun 2009 12:18:40 -0700 bzr convert: restore paths to source encoding. Closes issue1692.
Brendan Cully <brendan@kublai.com> [Thu, 11 Jun 2009 12:18:40 -0700] rev 8783
bzr convert: restore paths to source encoding. Closes issue1692.
Thu, 11 Jun 2009 17:29:14 +0200 doc: wrap man pages after fixing quoting
Martin Geisler <mg@lazybytes.net> [Thu, 11 Jun 2009 17:29:14 +0200] rev 8782
doc: wrap man pages after fixing quoting
Thu, 11 Jun 2009 17:19:48 +0200 hgrc.5: fix quoting of literal strings
Martin Geisler <mg@lazybytes.net> [Thu, 11 Jun 2009 17:19:48 +0200] rev 8781
hgrc.5: fix quoting of literal strings The quotes would go wrong in many places due to differences between asciidoc version 8.2.7 used by Benoit and 8.4.5 used by me. Between those versions asciidoc stopped interpreting the content of `quoted strings`, and so `*` would start bold text in the old version, but do nothing in the new version. To complicate things further, `\*` would escape the bold tag in the old version, but in the new version the backslash was inserted literally into the output (because the backtick quotes it). I've now replaced backticks with non-quoting plusses and escaped backslashes as appropriate.
Thu, 11 Jun 2009 17:16:04 +0200 hgignore.5: remove extra quotes
Martin Geisler <mg@lazybytes.net> [Thu, 11 Jun 2009 17:16:04 +0200] rev 8780
hgignore.5: remove extra quotes The so-called "unconstrained quotes" didn't really work, so I reverted them to normal quotes. Tested with asciidoc version 8.2.7 and 8.4.5.
Tue, 09 Jun 2009 21:51:34 -0400 Improve English for help text of many core hg commands.
timeless <timeless@gmail.com> [Tue, 09 Jun 2009 21:51:34 -0400] rev 8779
Improve English for help text of many core hg commands. co-author: Greg Ward <greg-hg@gerg.ca>
Wed, 10 Jun 2009 15:10:21 +0200 use new style classes
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 10 Jun 2009 15:10:21 +0200] rev 8778
use new style classes
Wed, 10 Jun 2009 03:20:20 +0200 doc: correctly escape *
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 10 Jun 2009 03:20:20 +0200] rev 8777
doc: correctly escape *
Wed, 10 Jun 2009 03:10:46 +0200 doc: correctly escape *
Benoit Boissinot <benoit.boissinot@ens-lyon.org> [Wed, 10 Jun 2009 03:10:46 +0200] rev 8776
doc: correctly escape *
Wed, 10 Jun 2009 01:14:16 +0200 hg.1: highlight references to commands and man pages
Martin Geisler <mg@lazybytes.net> [Wed, 10 Jun 2009 01:14:16 +0200] rev 8775
hg.1: highlight references to commands and man pages
Wed, 10 Jun 2009 01:09:21 +0200 hg.1: simplify synopsis
Martin Geisler <mg@lazybytes.net> [Wed, 10 Jun 2009 01:09:21 +0200] rev 8774
hg.1: simplify synopsis Now that arguments can be mixed with options we can simplify the synopsis considerably. Also, highlighting the command name in bold (instead of italics) seem to be the standard convention.
Wed, 10 Jun 2009 00:55:57 +0200 hgrc.5: spell check
Martin Geisler <mg@lazybytes.net> [Wed, 10 Jun 2009 00:55:57 +0200] rev 8773
hgrc.5: spell check
Wed, 10 Jun 2009 00:46:30 +0200 man pages: add meta data
Martin Geisler <mg@lazybytes.net> [Wed, 10 Jun 2009 00:46:30 +0200] rev 8772
man pages: add meta data This removes the fixme's that were otherwise inserted.
Wed, 10 Jun 2009 00:13:08 +0200 man pages: updated copyright years
Martin Geisler <mg@lazybytes.net> [Wed, 10 Jun 2009 00:13:08 +0200] rev 8771
man pages: updated copyright years
Wed, 10 Jun 2009 00:11:24 +0200 hgrc.5: use NOTE admonition paragraph
Martin Geisler <mg@lazybytes.net> [Wed, 10 Jun 2009 00:11:24 +0200] rev 8770
hgrc.5: use NOTE admonition paragraph
Wed, 10 Jun 2009 00:06:20 +0200 hgrc.5: reformatted to avoid big chunks of monospaced text
Martin Geisler <mg@lazybytes.net> [Wed, 10 Jun 2009 00:06:20 +0200] rev 8769
hgrc.5: reformatted to avoid big chunks of monospaced text The man page used to have lines longer than 80 characters, even though all lines in the hgrc.5.txt file were wrapped nicely. The problem turned out to be that the indented paragraphs started literal blocks instead of normal paragraphs. The literal blocks were of course not wrapped when displayed by man. In short, the asciidoc rules require lists to be formatted like this: foo:: Some description of foo. + Another paragraph in the description of foo. It *must* start flush left and the plus is necessary to indicate that this is a list item continuation. Lists with nested lists can be formatted correctly using something called "open blocks". These blocks are used to group the list items and are marked by a line above and below with two dashes. See the asciidoc user guide for the gory details...
Tue, 09 Jun 2009 23:26:16 +0200 hgrc.5: mark filename patterns as monospaced text
Martin Geisler <mg@lazybytes.net> [Tue, 09 Jun 2009 23:26:16 +0200] rev 8768
hgrc.5: mark filename patterns as monospaced text
Tue, 09 Jun 2009 23:24:43 +0200 hgrc.5: single quotes means italic in asciidoc
Martin Geisler <mg@lazybytes.net> [Tue, 09 Jun 2009 23:24:43 +0200] rev 8767
hgrc.5: single quotes means italic in asciidoc Use double quotes instead and mark the * as monospaced text.
Tue, 09 Jun 2009 23:08:55 +0200 man pages: mark filenames and env vars as fixed text
Martin Geisler <mg@lazybytes.net> [Tue, 09 Jun 2009 23:08:55 +0200] rev 8766
man pages: mark filenames and env vars as fixed text
(0) -3000 -1000 -300 -100 -50 -30 +30 +50 +100 +300 +1000 +3000 +10000 +30000 tip