about summary refs log tree commit diff
path: root/archive.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-13 14:58:53 -0400
committerJune McEnroe <june@causal.agency>2020-04-13 14:58:53 -0400
commit9032566beb37bc907ed21cf0446ee427a82bdcb0 (patch)
treeea42d3f62f344f696551cee811028748422116b5 /archive.h
parentDo not escape > in XML/HTML (diff)
downloadbubger-9032566beb37bc907ed21cf0446ee427a82bdcb0.tar.gz
bubger-9032566beb37bc907ed21cf0446ee427a82bdcb0.zip
Export content to Atom
Temporarily disabling HTML output...
Diffstat (limited to 'archive.h')
-rw-r--r--archive.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/archive.h b/archive.h
index 9ea15f4..749ab1b 100644
--- a/archive.h
+++ b/archive.h
@@ -180,6 +180,13 @@ int mboxFrom(FILE *file);
 int mboxHeader(FILE *file, const char *header);
 int mboxBody(FILE *file, const char *body);
 
+int atomEntryOpen(FILE *file, const struct Envelope *envelope);
+int atomContentOpen(FILE *file);
+int atomContentClose(FILE *file);
+int atomEntryClose(FILE *file);
+int atomFeedOpen(FILE *file, const struct Envelope *envelope);
+int atomFeedClose(FILE *file);
+
 int htmlMessageHead(FILE *file, const struct Envelope *envelope);
 int htmlMessageTail(FILE *file);
 int htmlThreadHead(FILE *file, const struct Envelope *envelope);
@@ -187,8 +194,3 @@ int htmlThreadHeader(FILE *file, const struct Envelope *envelope);
 int htmlThreadOpen(FILE *file);
 int htmlThreadClose(FILE *file);
 int htmlThreadTail(FILE *file);
-
-int atomEntryOpen(FILE *file, const struct Envelope *envelope);
-int atomEntryClose(FILE *file);
-int atomFeedOpen(FILE *file, const struct Envelope *envelope);
-int atomFeedClose(FILE *file);