X-Git-Url: https://git.llucax.com/software/mutt-debian.git/blobdiff_plain/3dba9e5c9fc1d796291f92d6bf08ed88ef540637..fe66e2b32214dc0b461d5e60db9acf39f6c2f7be:/debian/patches/mutt-patched/sidebar diff --git a/debian/patches/mutt-patched/sidebar b/debian/patches/mutt-patched/sidebar index 1792d1f..be531bc 100644 --- a/debian/patches/mutt-patched/sidebar +++ b/debian/patches/mutt-patched/sidebar @@ -1,3 +1,34 @@ +This is the sidebar patch. + +When enabled, mutt will show a list of mailboxes with (new) message counts in a +separate column on the left side of the screen. + +As this feature is still considered to be unstable, this patch is only applied +in the "mutt-patched" package. + +* Configuration variables: + + sidebar_delim (string, default "|") + + This specifies the delimiter between the sidebar (if visible) and + other screens. + + sidebar_visible (boolean, default no) + + This specifies whether or not to show sidebar (left-side list of folders). + + sidebar_width (integer, default 0) +- + The width of the sidebar. + +* Patch source: + - http://www.lunar-linux.org/index.php?page=mutt-sidebar + - http://lunar-linux.org/~tchan/mutt/patch-1.5.19.sidebar.20090522.txt + +* Changes made: + - 2008-08-02 myon: Refreshed patch using quilt push -f to remove hunks we do + not need (Makefile.in). + --- a/buffy.c +++ b/buffy.c @@ -261,7 +261,7 @@ @@ -508,36 +539,6 @@ nodist_mutt_SOURCES = $(BUILT_SOURCES) ---- a/Makefile.in -+++ b/Makefile.in -@@ -84,7 +84,7 @@ - thread.$(OBJEXT) charset.$(OBJEXT) history.$(OBJEXT) \ - lib.$(OBJEXT) muttlib.$(OBJEXT) editmsg.$(OBJEXT) \ - mbyte.$(OBJEXT) url.$(OBJEXT) ascii.$(OBJEXT) \ -- crypt-mod.$(OBJEXT) -+ crypt-mod.$(OBJEXT) sidebar.$(OBJEXT) - am__objects_1 = patchlist.$(OBJEXT) - nodist_mutt_OBJECTS = $(am__objects_1) - mutt_OBJECTS = $(am_mutt_OBJECTS) $(nodist_mutt_OBJECTS) -@@ -310,7 +310,8 @@ - score.c send.c sendlib.c signal.c sort.c \ - status.c system.c thread.c charset.c history.c lib.c \ - muttlib.c editmsg.c mbyte.c \ -- url.c ascii.c crypt-mod.c crypt-mod.h -+ url.c ascii.c crypt-mod.c crypt-mod.h \ -+ sidebar.c - - nodist_mutt_SOURCES = $(BUILT_SOURCES) - mutt_LDADD = @MUTT_LIB_OBJECTS@ @LIBOBJS@ $(LIBIMAP) $(MUTTLIBS) \ -@@ -342,7 +343,7 @@ - README.SSL smime.h \ - muttbug pgppacket.h depcomp ascii.h BEWARE PATCHES patchlist.sh \ - ChangeLog mkchangelog.sh mutt_idna.h \ -- snprintf.c regex.c crypt-gpgme.h hcachever.sh.in -+ snprintf.c regex.c crypt-gpgme.h sidebar.h hcachever.sh.in - - EXTRA_SCRIPTS = smime_keys - mutt_dotlock_SOURCES = mutt_dotlock.c --- a/mbox.c +++ b/mbox.c @@ -104,6 +104,7 @@ @@ -933,13 +934,6 @@ default: ch = -1; break; ---- a/PATCHES -+++ b/PATCHES -@@ -1,3 +1,4 @@ -+patch-1.5.19.sidebar.20090522.txt - patch-1.5.18.rr.compressed.1 - patch-1.5.4.vk.pgp_verbose_mime - patch-1.5.13.cd.purge_message.3.4 --- /dev/null +++ b/sidebar.c @@ -0,0 +1,333 @@ @@ -1371,3 +1365,7 @@ FREE (&value); return; } +--- a/PATCHES ++++ b/PATCHES +@@ -0,0 +1 @@ ++patch-1.5.19.sidebar.20090522.txt