bug report: notmuch-hello 'All tags' view

2010-11-03 Thread Michal Sojka
On Tue, 02 Nov 2010 20:17:56 +, Darren McGuicken wrote: > Wow, that was probably the most secure bug report in history - this time > in plain for those of you who don't have access to Carl's private key! > > I've noticed since rebasing to 0.4 that I'm seeing an empty entry in the > 'All tags'

notmuch release 0.4 now available

2010-11-03 Thread Scott Henson
s in the src rpm I previously listed and I'll send a patch to the list tomorrow for the git version. -- Scott Henson -- next part -- An HTML attachment was scrubbed... URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20101103/c6785c23/attachment.htm>

bug report: notmuch-hello 'All tags' view

2010-11-03 Thread Darren McGuicken
ication/pgp-signature Size: 197 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20101103/d599ca72/attachment.pgp>

bug report: notmuch-hello 'All tags' view

2010-11-03 Thread Jameson Rollins
ed with the empty string or blank spaces, as did Darren? jamie. -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 835 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/201

Re: notmuch release 0.4 now available

2010-11-03 Thread Scott Henson
On Tue, Nov 2, 2010 at 5:49 PM, Carl Worth wrote: > > > I'll also likely be submitting it to Fedora proper as I have time. > Thanks > > everyone for all the work! > > I didn't mention it, but I've got the notmuch release process pushing > things directly into Debian. If there's anything I can do

Re: bug report: notmuch-hello 'All tags' view

2010-11-03 Thread Jameson Rollins
On Wed, 03 Nov 2010 22:57:55 +0100, Michal Sojka wrote: > I can confirm this with 0.4 debian package. notmuch search-tags outputs > first line as empty and emacs shows it in All tags view. Again, this is *not* what I am seeing. Michael, are you sure you don't also have messages tagged with the e

Re: bug report: notmuch-hello 'All tags' view

2010-11-03 Thread Michal Sojka
On Tue, 02 Nov 2010 20:17:56 +, Darren McGuicken wrote: > Wow, that was probably the most secure bug report in history - this time > in plain for those of you who don't have access to Carl's private key! > > I've noticed since rebasing to 0.4 that I'm seeing an empty entry in the > 'All tags

[PATCH 3/4] Add rules to build notmuch.1 and notmuch-help.h from the pod file.

2010-11-03 Thread David Bremner
On Wed, 3 Nov 2010 14:18:55 -0300, david at tethera.net wrote: > +notmuch_help_files= \ > + notmuch-setup-help.h\ > + notmuch-new-help.h \ > + notmuch-show-help.h \ > + notmuch-search-help.h \ > + notmuch-count-help.h\ > + notmuch-reply-help.h\ > +

[PATCH 4/4] notmuch.c: use help strings generated from notmuch.pod.

2010-11-03 Thread da...@tethera.net
From: David Bremner It is quite possible this could be more automagically generated; there is a certain amount of boilerplate in typing HELP_command_args, HELP_command_desc, HELP_command_text. But, this way is less error prone. --- notmuch.c | 388 +--

[PATCH 3/4] Add rules to build notmuch.1 and notmuch-help.h from the pod file.

2010-11-03 Thread da...@tethera.net
From: David Bremner Add generated files to CLEAN. Remove notmuch.1 from git because we auto generate it now. --- Makefile.local | 22 ++- notmuch.1 | 609 2 files changed, 21 insertions(+), 610 deletions(-) delete mode 100644 notm

[PATCH 2/4] Perl script to generate online help.

2010-11-03 Thread da...@tethera.net
From: David Bremner This is a bit more complicated than expected, mainly because it needs to split a chunk of the docs into 3 pieces corresponding to the strings currently filled into a struct command_t. To disable the ANSI escape codes, replace Pod::Text:Color with Pod::Text. It would not be th

[PATCH 1/4] notmuch.pod: pod version of documentation, converted by rman, massaged by hand.

2010-11-03 Thread da...@tethera.net
From: David Bremner Some places I deleted a bit of the continuity text introducing a command because I didn't see how to make it work with the slightly more structured layout. I also moved show in front of search, because it explains the output formats. Probably it would make sense to add a sep

generate help from pod.

2010-11-03 Thread da...@tethera.net
Hi Carl; Here is the generation. I hope you don't hate perl too much. I also hope the syntax in notmuch.pod is self-explanatory. For me, with perl 5.10.1, this only uses modules included with Perl.

Re: bug report: notmuch-hello 'All tags' view

2010-11-03 Thread Darren McGuicken
On Tue, 02 Nov 2010 17:33:08 -0400, Jameson Rollins wrote: > On Tue, 02 Nov 2010 21:03:55 +, Darren McGuicken > wrote: > > A call to 'notmuch search-tags' from the command line does indeed > > return an empty string as the first entry for me[1]. > > fwiw, I don't personally get any empty s

Re: [PATCH 3/4] Add rules to build notmuch.1 and notmuch-help.h from the pod file.

2010-11-03 Thread David Bremner
On Wed, 3 Nov 2010 14:18:55 -0300, da...@tethera.net wrote: > +notmuch_help_files= \ > + notmuch-setup-help.h\ > + notmuch-new-help.h \ > + notmuch-show-help.h \ > + notmuch-search-help.h \ > + notmuch-count-help.h\ > + notmuch-reply-help.h\ > + n

[PATCH 3/4] Add rules to build notmuch.1 and notmuch-help.h from the pod file.

2010-11-03 Thread david
From: David Bremner Add generated files to CLEAN. Remove notmuch.1 from git because we auto generate it now. --- Makefile.local | 22 ++- notmuch.1 | 609 2 files changed, 21 insertions(+), 610 deletions(-) delete mode 100644 notm

[PATCH 4/4] notmuch.c: use help strings generated from notmuch.pod.

2010-11-03 Thread david
From: David Bremner It is quite possible this could be more automagically generated; there is a certain amount of boilerplate in typing HELP_command_args, HELP_command_desc, HELP_command_text. But, this way is less error prone. --- notmuch.c | 388 +--

[PATCH 1/4] notmuch.pod: pod version of documentation, converted by rman, massaged by hand.

2010-11-03 Thread david
From: David Bremner Some places I deleted a bit of the continuity text introducing a command because I didn't see how to make it work with the slightly more structured layout. I also moved show in front of search, because it explains the output formats. Probably it would make sense to add a sep

[PATCH 2/4] Perl script to generate online help.

2010-11-03 Thread david
From: David Bremner This is a bit more complicated than expected, mainly because it needs to split a chunk of the docs into 3 pieces corresponding to the strings currently filled into a struct command_t. To disable the ANSI escape codes, replace Pod::Text:Color with Pod::Text. It would not be th

generate help from pod.

2010-11-03 Thread david
Hi Carl; Here is the generation. I hope you don't hate perl too much. I also hope the syntax in notmuch.pod is self-explanatory. For me, with perl 5.10.1, this only uses modules included with Perl. ___ notmuch mailing list notmuch@notmuchmail.org http