aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-07-15 07:32:04 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-07-15 07:32:04 +0800
commitda95cb001269e87eb4830227db6fa362909e712f (patch)
tree97d947612e21c8b03fed8b79b6568d0bb048a046 /camel
parent6746c025d5cdb4cd8f49b7bc3e339aa956b3d7c9 (diff)
downloadgsoc2013-evolution-da95cb001269e87eb4830227db6fa362909e712f.tar.gz
gsoc2013-evolution-da95cb001269e87eb4830227db6fa362909e712f.tar.zst
gsoc2013-evolution-da95cb001269e87eb4830227db6fa362909e712f.zip
New convenience function to unquote a string if it's encapsulated by "'s
2000-07-14 Jeffrey Stedfast <fejj@helixcode.com> * string-utils.c (string_unquote): New convenience function to unquote a string if it's encapsulated by "'s * providers/imap/camel-imap-folder.c: * providers/imap/camel-imap-store.c: Made the necessary changes to stop using hard coded directory separators. svn path=/trunk/; revision=4170
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog9
-rw-r--r--camel/providers/imap/camel-imap-folder.c43
-rw-r--r--camel/providers/imap/camel-imap-store.c93
-rw-r--r--camel/providers/imap/camel-imap-store.h4
-rw-r--r--camel/string-utils.c14
-rw-r--r--camel/string-utils.h2
6 files changed, 138 insertions, 27 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 0a0893bdcf..9bf96f3c48 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,12 @@
+2000-07-14 Jeffrey Stedfast <fejj@helixcode.com>
+
+ * string-utils.c (string_unquote): New convenience function
+ to unquote a string if it's encapsulated by "'s
+
+ * providers/imap/camel-imap-folder.c:
+ * providers/imap/camel-imap-store.c: Made the necessary changes
+ to stop using hard coded directory separators.
+
2000-07-13 Dan Winship <danw@helixcode.com>
* providers/mbox/camel-mbox-summary.c (camel_mbox_summary_load):
diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c
index f1e2365dcb..f52134585b 100644
--- a/camel/providers/imap/camel-imap-folder.c
+++ b/camel/providers/imap/camel-imap-folder.c
@@ -224,7 +224,7 @@ imap_init (CamelFolder *folder, CamelStore *parent_store, CamelFolder *parent_fo
CamelStore *store = CAMEL_STORE (parent_store);
CamelURL *url = CAMEL_SERVICE (store)->url;
int status;
- char *result, *folder_path;
+ char *result, *folder_path, *dir_sep;
/* call parent method */
parent_class->init (folder, parent_store, parent_folder, name, separator, path_begins_with_sep, ex);
@@ -253,8 +253,10 @@ imap_init (CamelFolder *folder, CamelStore *parent_store, CamelFolder *parent_fo
imap_folder->summary = NULL;
/* SELECT the IMAP mail spool */
+ dir_sep = CAMEL_IMAP_STORE (folder->parent_store)->dir_sep;
+
if (url && url->path && *(url->path + 1) && strcmp (folder->full_name, "INBOX"))
- folder_path = g_strdup_printf ("%s/%s", url->path + 1, folder->full_name);
+ folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, folder->full_name);
else
folder_path = g_strdup (folder->full_name);
@@ -409,7 +411,7 @@ imap_get_message_count (CamelFolder *folder, CamelException *ex)
CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder);
CamelStore *store = CAMEL_STORE (folder->parent_store);
CamelURL *url = CAMEL_SERVICE (store)->url;
- gchar *result, *msg_count, *folder_path;
+ gchar *result, *msg_count, *folder_path, *dir_sep;
gint status;
g_return_val_if_fail (folder != NULL, -1);
@@ -418,8 +420,10 @@ imap_get_message_count (CamelFolder *folder, CamelException *ex)
if (imap_folder->count != -1)
return imap_folder->count;
+ dir_sep = CAMEL_IMAP_STORE (folder->parent_store)->dir_sep;
+
if (url && url->path && *(url->path + 1) && strcmp (folder->full_name, "INBOX"))
- folder_path = g_strdup_printf ("%s/%s", url->path + 1, folder->full_name);
+ folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, folder->full_name);
else
folder_path = g_strdup (folder->full_name);
@@ -486,7 +490,7 @@ imap_append_message (CamelFolder *folder, CamelMimeMessage *message, guint32 fla
CamelStore *store = CAMEL_STORE (folder->parent_store);
CamelURL *url = CAMEL_SERVICE (store)->url;
CamelStreamMem *mem;
- gchar *result, *folder_path, *flagstr = NULL;
+ gchar *result, *folder_path, *dir_sep, *flagstr = NULL;
gint status;
g_return_if_fail (folder != NULL);
@@ -505,9 +509,11 @@ imap_append_message (CamelFolder *folder, CamelMimeMessage *message, guint32 fla
}
mem->buffer = g_byte_array_append (mem->buffer, g_strdup ("\r\n"), 3);
+
+ dir_sep = CAMEL_IMAP_STORE (folder->parent_store)->dir_sep;
if (url && url->path && *(url->path + 1) && strcmp (folder->full_name, "INBOX"))
- folder_path = g_strdup_printf ("%s/%s", url->path + 1, folder->full_name);
+ folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, folder->full_name);
else
folder_path = g_strdup (folder->full_name);
@@ -552,11 +558,13 @@ imap_copy_message_to (CamelFolder *source, const char *uid, CamelFolder *destina
{
CamelStore *store = CAMEL_STORE (source->parent_store);
CamelURL *url = CAMEL_SERVICE (store)->url;
- char *result, *folder_path;
+ char *result, *folder_path, *dir_sep;
int status;
+
+ dir_sep = CAMEL_IMAP_STORE (source->parent_folder)->dir_sep;
if (url && url->path && *(url->path + 1) && strcmp (destination->full_name, "INBOX"))
- folder_path = g_strdup_printf ("%s/%s", url->path + 1, destination->full_name);
+ folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, destination->full_name);
else
folder_path = g_strdup (destination->full_name);
@@ -588,11 +596,13 @@ imap_move_message_to (CamelFolder *source, const char *uid, CamelFolder *destina
CamelStore *store = CAMEL_STORE (source->parent_store);
CamelURL *url = CAMEL_SERVICE (store)->url;
CamelMessageInfo *info;
- char *result, *folder_path;
+ char *result, *folder_path, *dir_sep;
int status;
+
+ dir_sep = CAMEL_IMAP_STORE (source->parent_store)->dir_sep;
if (url && url->path && *(url->path + 1) && strcmp (destination->full_name, "INBOX"))
- folder_path = g_strdup_printf ("%s/%s", url->path + 1, destination->full_name);
+ folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, destination->full_name);
else
folder_path = g_strdup (destination->full_name);
@@ -685,6 +695,7 @@ imap_parse_subfolder_line (gchar *buf, gchar **flags, gchar **sep, gchar **folde
ptr = eptr + 1;
*folder = g_strdup (ptr);
g_strstrip (*folder);
+ string_unquote (*folder); /* unquote the mailbox if it's quoted */
return TRUE;
}
@@ -697,25 +708,27 @@ imap_get_subfolder_names (CamelFolder *folder, CamelException *ex)
CamelURL *url = CAMEL_SERVICE (store)->url;
GPtrArray *listing;
gint status;
- gchar *result, *folder_path;
+ gchar *result, *folder_path, *dir_sep;
- g_return_val_if_fail (folder != NULL, g_ptr_array_new());
+ g_return_val_if_fail (folder != NULL, g_ptr_array_new ());
if (imap_folder->count != -1)
return g_ptr_array_new ();
+ dir_sep = CAMEL_IMAP_STORE (folder->parent_store)->dir_sep;
+
if (url && url->path) {
if (!strcmp (folder->full_name, "INBOX"))
folder_path = g_strdup (url->path + 1);
else
- folder_path = g_strdup_printf ("%s/%s", url->path + 1, folder->full_name);
+ folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, folder->full_name);
} else {
folder_path = g_strdup (folder->full_name);
}
status = camel_imap_command_extended (CAMEL_IMAP_STORE (folder->parent_store), folder,
- &result, "LIST \"\" \"%s%s\"", folder_path,
- *folder_path ? "/*" : "*");
+ &result, "LIST \"\" \"%s%s*\"", folder_path,
+ *folder_path ? dir_sep : "");
if (status != CAMEL_IMAP_OK) {
CamelService *service = CAMEL_SERVICE (folder->parent_store);
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index cd22095287..4705cb8e53 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -104,6 +104,7 @@ camel_imap_store_init (gpointer object, gpointer klass)
CAMEL_SERVICE_URL_ALLOW_PATH);
store->folders = g_hash_table_new (g_str_hash, g_str_equal);
+ CAMEL_IMAP_STORE (store)->dir_sep = NULL;
}
GtkType
@@ -225,6 +226,39 @@ get_name (CamelService *service, gboolean brief)
}
static gboolean
+parse_list_response (gchar *buf, gchar **sep)
+{
+ gchar *ptr, *eptr;
+
+ *sep = NULL;
+
+ if (strncasecmp (buf, "* LIST", 6))
+ return FALSE;
+
+ ptr = strstr (buf + 6, "(");
+ if (!ptr)
+ return FALSE;
+
+ ptr++;
+ eptr = strstr (ptr, ")");
+ if (!eptr)
+ return FALSE;
+
+ ptr = strstr (eptr, "\"");
+ if (!ptr)
+ return FALSE;
+
+ ptr++;
+ eptr = strstr (ptr, "\"");
+ if (!eptr)
+ return FALSE;
+
+ *sep = g_strndup (ptr, (gint)(eptr - ptr));
+
+ return TRUE;
+}
+
+static gboolean
imap_connect (CamelService *service, CamelException *ex)
{
CamelImapStore *store = CAMEL_IMAP_STORE (service);
@@ -262,9 +296,10 @@ imap_connect (CamelService *service, CamelException *ex)
}
store->ostream = camel_stream_fs_new_with_fd (fd);
- store->istream = camel_stream_buffer_new (store->ostream,
- CAMEL_STREAM_BUFFER_READ);
+ store->istream = camel_stream_buffer_new (store->ostream, CAMEL_STREAM_BUFFER_READ);
store->command = 0;
+ g_free (store->dir_sep);
+ store->dir_sep = g_strdup ("/"); /* default dir sep */
/* Read the greeting, if any. */
buf = camel_stream_buffer_read_line (CAMEL_STREAM_BUFFER (store->istream));
@@ -327,6 +362,7 @@ imap_connect (CamelService *service, CamelException *ex)
status = camel_imap_command_extended (store, NULL, &result, "CAPABILITY");
if (status != CAMEL_IMAP_OK) {
+ /* Non-fatal error, but we should still warn the user... */
CamelService *service = CAMEL_SERVICE (store);
camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
@@ -345,6 +381,34 @@ imap_connect (CamelService *service, CamelException *ex)
d(fprintf (stderr, "IMAP provider does%shave SEARCH support\n", store->has_search_capability ? " " : "n't "));
+ /* FIXME: We now need to find out which directory separator this daemon uses */
+ status = camel_imap_command_extended (store, NULL, &result, "LIST \"\" \"\"");
+
+ if (status != CAMEL_IMAP_OK) {
+ /* Again, this is non-fatal */
+ CamelService *service = CAMEL_SERVICE (store);
+
+ camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
+ "Could not get directory separator on IMAP server %s: %s.",
+ service->url->host,
+ status != CAMEL_IMAP_FAIL && result ? result :
+ "Unknown error");
+ } else {
+ if (!strncasecmp (result, "* LIST", 6)) {
+ char *sep;
+
+ if (parse_list_response (result, &sep)) {
+ if (*sep) {
+ g_free (store->dir_sep);
+ store->dir_sep = g_strdup (sep);
+ }
+
+ g_free (sep);
+ }
+ }
+ }
+
+ /* parent class conect initialization */
service_class->connect (service, ex);
return TRUE;
@@ -365,6 +429,8 @@ imap_disconnect (CamelService *service, CamelException *ex)
gtk_object_unref (GTK_OBJECT (store->istream));
store->ostream = NULL;
store->istream = NULL;
+ g_free (store->dir_sep);
+ store->dir_sep = NULL;
return TRUE;
}
@@ -383,11 +449,13 @@ imap_folder_exists (CamelFolder *folder)
{
CamelStore *store = CAMEL_STORE (folder->parent_store);
CamelURL *url = CAMEL_SERVICE (store)->url;
- gchar *result, *folder_path;
+ gchar *result, *folder_path, *dir_sep;
gint status;
+ dir_sep = CAMEL_IMAP_STORE (folder->parent_store)->dir_sep;
+
if (url && url->path && *(url->path + 1) && strcmp (folder->full_name, "INBOX"))
- folder_path = g_strdup_printf ("%s/%s", url->path + 1, folder->full_name);
+ folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, folder->full_name);
else
folder_path = g_strdup (folder->full_name);
@@ -411,7 +479,7 @@ imap_create (CamelFolder *folder, CamelException *ex)
{
CamelStore *store = CAMEL_STORE (folder->parent_store);
CamelURL *url = CAMEL_SERVICE (store)->url;
- gchar *result, *folder_path;
+ gchar *result, *folder_path, *dir_sep;
gint status;
g_return_val_if_fail (folder != NULL, FALSE);
@@ -429,8 +497,10 @@ imap_create (CamelFolder *folder, CamelException *ex)
return TRUE;
/* create the directory for the subfolder */
+ dir_sep = CAMEL_IMAP_STORE (folder->parent_store)->dir_sep;
+
if (url && url->path && *(url->path + 1) && strcmp (folder->full_name, "INBOX"))
- folder_path = g_strdup_printf ("%s/%s", url->path + 1, folder->full_name);
+ folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, folder->full_name);
else
folder_path = g_strdup (folder->full_name);
@@ -536,11 +606,12 @@ camel_imap_command (CamelImapStore *store, CamelFolder *folder, char **ret, char
if (folder && store->current_folder != folder && strncmp (fmt, "CREATE", 5)) {
/* We need to select the correct mailbox first */
- char *r, *folder_path;
+ char *r, *folder_path, *dir_sep;
int s;
+ dir_sep = store->dir_sep;
if (url && url->path && *(url->path + 1) && strcmp (folder->full_name, "INBOX"))
- folder_path = g_strdup_printf ("%s/%s", url->path + 1, folder->full_name);
+ folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, folder->full_name);
else
folder_path = g_strdup (folder->full_name);
@@ -640,11 +711,13 @@ camel_imap_command_extended (CamelImapStore *store, CamelFolder *folder, char **
if (folder && store->current_folder != folder && strncmp (fmt, "SELECT", 6) &&
strncmp (fmt, "CREATE", 6)) {
/* We need to select the correct mailbox first */
- char *r, *folder_path;
+ char *r, *folder_path, *dir_sep;
int s;
+ dir_sep = store->dir_sep;
+
if (url && url->path && *(url->path + 1) && strcmp (folder->full_name, "INBOX"))
- folder_path = g_strdup_printf ("%s/%s", url->path + 1, folder->full_name);
+ folder_path = g_strdup_printf ("%s%s%s", url->path + 1, dir_sep, folder->full_name);
else
folder_path = g_strdup (folder->full_name);
diff --git a/camel/providers/imap/camel-imap-store.h b/camel/providers/imap/camel-imap-store.h
index 09dd2be148..b38ed769c9 100644
--- a/camel/providers/imap/camel-imap-store.h
+++ b/camel/providers/imap/camel-imap-store.h
@@ -50,6 +50,8 @@ typedef struct {
guint32 command;
gboolean has_search_capability;
+
+ gchar *dir_sep;
} CamelImapStore;
@@ -81,5 +83,3 @@ const gchar *camel_imap_store_get_toplevel_dir (CamelImapStore *store);
#endif /* __cplusplus */
#endif /* CAMEL_IMAP_STORE_H */
-
-
diff --git a/camel/string-utils.c b/camel/string-utils.c
index cdeebe8322..63e9eafabf 100644
--- a/camel/string-utils.c
+++ b/camel/string-utils.c
@@ -174,3 +174,17 @@ string_prefix (const gchar *s, const gchar *suffix, gboolean *suffix_found)
return result_string;
}
+
+void
+string_unquote (gchar *string)
+{
+ /* if the string is quoted, unquote it */
+
+ g_return_if_fail (string != NULL);
+
+ if (*string == '"' && *(string + strlen (string) - 1) == '"') {
+ *(string + strlen (string) - 1) = '\0';
+ if (*string)
+ memmove (string, string+1, strlen (string));
+ }
+}
diff --git a/camel/string-utils.h b/camel/string-utils.h
index 5595ad3247..4cfef5b746 100644
--- a/camel/string-utils.h
+++ b/camel/string-utils.h
@@ -56,6 +56,8 @@ void string_trim (gchar *string, const gchar *chars,
gchar *string_prefix (const gchar *s, const gchar *suffix, gboolean *suffix_found);
+void string_unquote (gchar *string);
+
#ifdef __cplusplus
}
#endif /* __cplusplus */
t/x11-wm?h=gstreamer0.10-removal&id=2f038c4f2f04ae105daf8aaf23b4372f8a138bff'>- Update to 1.0.11.001gahr2013-02-183-13/+16 * - Restore distinfo for fluxbook PDF documentationbeat2013-02-181-0/+2 * - Update to 1.3.5beat2013-02-153-5/+5 * Update to 1.1.6zeising2013-02-142-8/+6 * - Mark broken distfile mismatchmiwi2013-02-131-0/+2 * Update to 3.4.15garga2013-02-122-3/+3 * - Update to 20130209miwi2013-02-104-198/+8 * - Update to 0.95.4miwi2013-02-0813-52/+275 * - Fix breakage in the DYNAMIC-enabled ports triggered by the recentpgj2013-02-065-20/+21 * Fix build under 10-CURRENT.cy2013-02-051-0/+11 * - Fix WWW: line in port description: previous one was cybersquatted by somedanfe2013-02-032-30/+30 * update lang/sbcl to 1.1.4 and adjust dependent portsbf2013-02-031-1/+1 * Bump PORTREVISION after update of deskutils/orageolivierd2013-02-021-5/+2 * - Fix all cases of 'No newline at end of file' in ports treeak2013-02-011-1/+1 * - Update to 0.17.1gblach2013-02-013-8/+11 * Add herbstluftwm, a manual tiling window manager for X11 using Xlib and Glib.danfe2013-01-305-0/+116 * - Update to version 0.1.2pre3 [*]danfe2013-01-293-13/+12 * - Update to 1.3.7.rakuco2013-01-282-8/+4 * - Strip header at request of original creatortabthorpe2013-01-279-48/+9 * - cleanup headerdinoex2013-01-271-5/+1 * - whitespacesdinoex2013-01-261-1/+1 * - Fix build with clang [1]bdrewery2013-01-253-2/+34 * Bump PORTREVISION after DESKTOP_ENTRIES updatemakc2013-01-232-2/+2 * - Update DESKTOP_ENTRIES:makc2013-01-231-2/+2 * - over to new volunteerflo2013-01-181-6/+2 * - makefile cleanup and trim historical headerjgh2013-01-181-13/+10 * - Update EFL to 1.7.5gblach2013-01-161-1/+1 * Convert dhn's ports to the new options frameworkbapt2013-01-082-26/+18 * - Update DESKTOP_ENTRIES:makc2013-01-071-7/+2 * Bump PORTREVISION due to new name of Xfce's terminal.olivierd2013-01-071-1/+2 * update lang/sbcl to 1.1.3 and adjust dependent portsbf2013-01-051-4/+4 * Update to 3.4.14garga2013-01-042-5/+4 * - Update to 1.3.3beat2013-01-023-10/+10 * - update to 0.1.16bapt2012-12-313-15/+30 * - Update x11/libxdg-basedir to 1.2.0 [1]pawel2012-12-311-1/+1 * Bump PORTREVISION for Thunar related portsolivierd2012-12-311-1/+1 * Bump PORTREVISION for libexo-related portsolivierd2012-12-312-2/+2 * - Deprecate QT3, KDE3 and unmaintained ports depending on them. QT 3.3.8beat2012-12-302-0/+6 * Make NLS support an option.marius2012-12-302-64/+70 * - Update to version 0.4.9 [1]pawel2012-12-303-15/+14 * Add an explicit build dependency on pkgconfbapt2012-12-301-0/+1 * - update to 4.4bapt2012-12-303-45/+31 * - Remove unneeded patchesgblach2012-12-232-21/+0 * - Update Enlightenment to 0.17.0gblach2012-12-23116-566/+978 * - Fix case usage in the COMMENT linedanfe2012-12-213-37/+27 * - Add LICENSE.araujo2012-12-203-20/+78 * - Fix build.araujo2012-12-201-9/+3 * - Update The Glorious Glasgow Haskell Compiler to version 7.4.2pgj2012-12-204-15/+7 * - Trim Makefile header, NOPORTDOCS -> PORT_OPTIONS:MDOCSdanfe2012-12-172-13/+17 * - Convert to the new OPTIONS frameworkdanfe2012-12-172-30/+24 * - Trim the headers per new rulesdanfe2012-12-172-24/+21 * update sbcl to 1.1.2 and maxima to 5.29.1; adjust dependent portsbf2012-12-161-1/+1 * - Fix a typo which breaks building with bmakebeat2012-12-151-1/+1 * Bump PORTREVISION for Thunar related portsolivierd2012-12-151-1/+1 * Bump PORTREVISION for libexo-related portsolivierd2012-12-152-18/+12 * - introduce a USE_FUSE macroflo2012-12-141-2/+1 * Remove the header for ports I created.wxs2012-12-131-5/+0 * A a missing colon introduced on r308628garga2012-12-111-1/+1 * - Update xcb-util to 0.3.9garga2012-12-114-7/+10 * Revert Chris Petrik's ports to the pool. Thank you for all your work so far,...eadler2012-12-104-4/+4 * - Fix configure script to work with clanggahr2012-11-291-6/+2 * Update spectrwm to 2.1.1zeising2012-11-292-3/+3 * - Add chrome to the list of known browsers and while here remove unusedbeat2012-11-291-3/+3 * 2012-11-28 editors/glimmer: Depends on the expired gtkglarea through py-gtkbapt2012-11-286-90/+0 * - Update to 0.90.3bdrewery2012-11-282-8/+4 * Add missing semicolon, newline escapes, that sort of thing, toadamw2012-11-061-1/+1 * 2012-11-05 textproc/xerces-c: No more supported upstream, consider using xerc...bapt2012-11-0517-798/+0 * - Change my email address to gblach@FreeBSD.orggblach2012-11-0451-307/+102 * - Add optional Xft support [1]pawel2012-11-013-16/+41 * Update to 2.1.0zeising2012-10-312-3/+3 * Fix patch not being correctly applied on 8.3bapt2012-10-291-3/+3 * - Convert Makefile headers to new styleak2012-10-271-8/+4 * Update internal e16keyedit to 0.7 [1]bapt2012-10-264-60/+24 * Resurrect e16utils, public distfiles has been fixed during the deprecationbapt2012-10-267-0/+198 * Deprecate a bunch of ports that are either abandonware and/or for which no morebapt2012-10-261-5/+4 * 2012-10-20 x11-wm/wmcp: No more public distfilesbapt2012-10-2645-1005/+0 * Convert to OptionsNGeadler2012-10-201-1/+1 * Follow-up to r305690: convert the OPTIONS line to OptionsNG as well.rakuco2012-10-131-1/+2 * Convert to OptionsNG.rakuco2012-10-111-2/+2 * - Update to 0.14gahr2012-10-106-85/+81 * - Update to 1.0.11gahr2012-10-102-13/+12 * Throw my ports back in the pool, and make my intentions clear for thedougb2012-10-082-7/+1 * - Update to 0.95.3madpilot2012-10-086-133/+32 * Convert to new options frameworkbapt2012-10-072-24/+17 * Set SBCL on by default as it used to be before conversion to optionsngbapt2012-10-071-0/+1 * Trim the headers in the ports I maintain.eadler2012-10-061-5/+1 * Development of waimea ceased long agobapt2012-10-063-0/+9 * - Convert to optionsngbeat2012-10-051-30/+23 * Change headers of all ports maintained by me to new formatgarga2012-10-051-5/+1