Subversion Repositories prayer-err

Compare Revisions

Ignore whitespace Rev 21 → Rev 20

/trunk/debian/changelog
1,11 → 1,3
prayer (1.2.0-1) unstable; urgency=low
 
* New upstream release featuring a major code reorganisation and a new
template system.
- Drop obsolete folder_list_cosmetics.patch and includes.patch.
 
-- Magnus Holmgren <holmgren@debian.org> Thu, 29 May 2008 19:56:41 +0200
 
prayer (1.1.0-2) unstable; urgency=low
 
* Define LDAP_DEPRECATED so that the deprecated LDAP interfaces can be
/trunk/debian/patches/series
1,0 → 0,0
folder_list_cosmetics.patch
includes.patch
makefile_install_config.patch
/trunk/debian/patches/folder_list_cosmetics.patch
0,0 → 1,30
--- a/prayer/cmd_folders.c
+++ b/prayer/cmd_folders.c
@@ -45,10 +45,10 @@ generate_folder_line(struct session *ses
html_session_bprintf(session, b, "<a href=\"", "\">",
"folders/toggle/%s", name);
if (fi->expanded)
- html_icon(session, b, "down.gif", "[Collapse]");
+ html_icon(session, b, "down.gif", "[-]&nbsp;");
else
- html_icon(session, b, "right.gif", "[Expand]");
- bputs(b, "</a>&nbsp;");
+ html_icon(session, b, "right.gif", "[+]&nbsp;");
+ bputs(b, "</a>");
} else
html_icon(session, b, "blank.gif", "&nbsp;&nbsp;&nbsp;&nbsp;");
--- a/prayer/cmd_favourites.c
+++ b/prayer/cmd_favourites.c
@@ -77,9 +77,9 @@ generate_folder_line(struct session *ses
html_session_bprintf(session, b, "<a href=\"", "\">",
"favourites/toggle/%s", name);
if (fi->expanded)
- html_icon(session, b, "down.gif", "[Collapse]");
+ html_icon(session, b, "down.gif", "[-]&nbsp;");
else
- html_icon(session, b, "right.gif", "[Expand]");
+ html_icon(session, b, "right.gif", "[+]&nbsp;");
bputs(b, "</a>");
} else
html_icon(session, b, "blank.gif", "&nbsp;&nbsp;&nbsp;&nbsp;");
/trunk/debian/patches/includes.patch
0,0 → 1,22
--- prayer-1.1.0.orig/prayer/prayer_session.h
+++ prayer-1.1.0/prayer/prayer_session.h
@@ -27,7 +27,7 @@
extern int errno; /* just in case */
-#include "c-client.h"
+#include <c-client.h>
#define PRAYER_FULL_HDRS
#include "prayer_shared.h"
--- prayer-1.1.0.orig/prayer/cdb.c
+++ prayer-1.1.0/prayer/cdb.c
@@ -63,7 +63,7 @@
#include <unistd.h>
#include <sys/stat.h>
-#include "mail.h"
+#include "common.h"
#include "cdb.h"
#define CDB_HASH_SPLIT 256 /* num pieces the hash table is split into */