]> granicus.if.org Git - neomutt/commitdiff
doxy: tidy pages
authorRichard Russon <rich@flatcap.org>
Sun, 29 Jul 2018 14:19:08 +0000 (15:19 +0100)
committerRichard Russon <rich@flatcap.org>
Sun, 29 Jul 2018 14:19:08 +0000 (15:19 +0100)
14 files changed:
config/lib.h
conn/conn.h
email/email.h
email/email_globals.c
email/url.c
hcache/hcache.h
imap/imap.h
maildir/maildir.h
mbox/mbox.h
mutt/mutt.h
ncrypt/ncrypt.h
nntp/nntp.h
notmuch/mutt_notmuch.h
pop/pop.h

index 56052fd91edb9ac44e712e177a981096458e3911..e30b8deb5d35a6b4c9649355774a17e576ab838c 100644 (file)
  */
 
 /**
- * @page config Flexible handling of config items
+ * @page config CONFIG: Flexible handling of config items
  *
  * User configurable variables.
  *
- * -# @subpage config-set
- * -# @subpage config-dump
- * -# @subpage config-address
- * -# @subpage config-bool
- * -# @subpage config-magic
- * -# @subpage config-mbtable
- * -# @subpage config-number
- * -# @subpage config-path
- * -# @subpage config-quad
- * -# @subpage config-regex
- * -# @subpage config-sort
- * -# @subpage config-string
+ * | File             | Description             |
+ * | :--------------- | :---------------------- |
+ * | config/address.c | @subpage config-address |
+ * | config/bool.c    | @subpage config-bool    |
+ * | config/command.c | @subpage config-command |
+ * | config/dump.c    | @subpage config-dump    |
+ * | config/long.c    | @subpage config-long    |
+ * | config/magic.c   | @subpage config-magic   |
+ * | config/mbtable.c | @subpage config-mbtable |
+ * | config/number.c  | @subpage config-number  |
+ * | config/path.c    | @subpage config-path    |
+ * | config/quad.c    | @subpage config-quad    |
+ * | config/regex.c   | @subpage config-regex   |
+ * | config/set.c     | @subpage config-set     |
+ * | config/sort.c    | @subpage config-sort    |
+ * | config/string.c  | @subpage config-string  |
  */
 
 #ifndef _CONFIG_CONFIG_H
index a4d0163b914d437a38ffe5a8fd9eb68d9cb075cd..1e4a022571c85fadb4be9c6bb22cbc787f533c64 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 /**
- * @page conn Network connections and their encryption
+ * @page conn CONN: Network connections and their encryption
  *
  * Manage external connections.
  *
index 4f26f8e76a0fd6813ccf1c7973a3ffe8533c5f7c..0c71e6a7082bc2a9e3b897fab30470dc5a8f0d97 100644 (file)
  */
 
 /**
- * @page email Structs that make up an email
+ * @page email EMAIL: Structs that make up an email
  *
  * Structs that make up an email
  *
- * | File              | Description              |
- * | :---------------- | :----------------------- |
- * | email/address.c   | @subpage email_address   |
- * | email/attach.c    | @subpage email_attach    |
- * | email/body.c      | @subpage email_body      |
- * | email/envelope.c  | @subpage email_envelope  |
- * | email/from.c      | @subpage email_from      |
- * | email/header.c    | @subpage email_header    |
- * | email/idna.c      | @subpage email_idna      |
- * | email/parameter.c | @subpage email_parameter |
- * | email/mime.c      | @subpage email_mime      |
- * | email/parse.c     | @subpage email_parse     |
- * | email/rfc2047.c   | @subpage email_rfc2047   |
- * | email/rfc2231.c   | @subpage email_rfc2231   |
- * | email/tags.c      | @subpage email_tags      |
- * | email/thread.c    | @subpage email_thread    |
- * | email/url.c       | @subpage email_url       |
+ * | File                   | Description              |
+ * | :--------------------- | :----------------------- |
+ * | email/address.c        | @subpage email_address   |
+ * | email/attach.c         | @subpage email_attach    |
+ * | email/body.c           | @subpage email_body      |
+ * | email/email_globals.c  | @subpage email_globals   |
+ * | email/envelope.c       | @subpage email_envelope  |
+ * | email/from.c           | @subpage email_from      |
+ * | email/header.c         | @subpage email_header    |
+ * | email/idna.c           | @subpage email_idna      |
+ * | email/mime.c           | @subpage email_mime      |
+ * | email/parameter.c      | @subpage email_parameter |
+ * | email/parse.c          | @subpage email_parse     |
+ * | email/rfc2047.c        | @subpage email_rfc2047   |
+ * | email/rfc2231.c        | @subpage email_rfc2231   |
+ * | email/tags.c           | @subpage email_tags      |
+ * | email/thread.c         | @subpage email_thread    |
+ * | email/url.c            | @subpage email_url       |
+ *
+ * @image html libemail.svg
  */
 
 #ifndef _EMAIL_EMAIL_H
index 1f3a18ba588eb59682dd0e13037c133a9a148aaa..a407abebcc2f968acd45ef74f29f1a293508e3b8 100644 (file)
 #include "mutt/mutt.h"
 
 /* Config items */
-bool MarkOld = false;
-struct Regex *ReplyRegex = NULL;
-char *SendCharset = NULL;
-char *SpamSeparator = NULL;
-bool Weed = false;
+bool MarkOld = false;            /**< Config: If set, mark mail old when leaving mailbox */
+struct Regex *ReplyRegex = NULL; /**< Config: Regex to match reply marker "Re:" */
+char *SendCharset = NULL;        /**< Config: Character sets for outgoing mail */
+char *SpamSeparator = NULL;      /**< Config: Separator for multiple spam headers */
+bool Weed = false;               /**< Config: If set, filter the displayed email headers */
 
 /* Global variables */
 struct RegexList *NoSpamList = NULL;
index 39958c0bb4a44e457a7e2287a8eac3a1e2f439d5..92350b610e6add0a532c9625076010136041e372 100644 (file)
@@ -35,7 +35,7 @@
 #include "mime.h"
 
 /**
- * UrlMap - Constants for URL protocols, e.g. 'imap://'
+ * UrlMap - Constants for URL protocols
  */
 static const struct Mapping UrlMap[] = {
   { "file", U_FILE },   { "imap", U_IMAP },     { "imaps", U_IMAPS },
index 55258d2efc0b31f24b5f14f17213b06a255fc211..8aac251aba456e23138fb4497a1833027c147f13 100644 (file)
@@ -24,7 +24,7 @@
  */
 
 /**
- * @page hcache Header cache API
+ * @page hcache HCACHE: Header cache API
  *
  * This module defines the user-visible header cache API, which is used within
  * neomutt to cache and restore mail header data.
index 504c22fc5c585fc58653e29fad2fc81c6b6019bb..b4e04ec59875466a8ffc0318b6d3d822c48e5a62 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * @page imap IMAP Network Mailbox
+ * @page imap IMAP: Network Mailbox
  *
  * IMAP network mailbox
  *
index 48e7865d9fae3a8f6d9e07992706a1dd7dc8aa1c..25bd5adac63f2cba2041775c8ff9820f14c76e08 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 /**
- * @page maildir Maildir local mailbox type
+ * @page maildir MAILDIR: Local mailbox type
  *
  * Maildir local mailbox type
  *
index 49f48474c2a833df87f5d32e2071019778e6a9ed..a02570dbbf48e259dc1ed9f4e89dda098080f1ca 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 /**
- * @page mbox Mbox local mailbox type
+ * @page mbox MBOX: Local mailbox type
  *
  * Mbox local mailbox type
  *
index cdc31d4b3d0e7c810a59ae31d43ce7ebc17b7886..bd4425f00ea61791d242892d8cc65185ac3ca6f5 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 /**
- * @page mutt Shared code for handling strings, files, dates, etc
+ * @page mutt MUTT: Shared code for handling strings, files, dates, etc
  *
  * Each source file in the library provides a group of related functions.
  *
@@ -49,6 +49,8 @@
  *
  * @note The library is self-contained -- some files may depend on others in
  *       the library, but none depends on source from outside.
+ *
+ * @image html libmutt.svg
  */
 
 #ifndef _MUTT_MUTT_H
index 700450f4394aca65127f9fab10292eb8ea95702d..58dc7368facd1939edcefd140be5b5779cac408e 100644 (file)
@@ -22,7 +22,7 @@
  */
 
 /**
- * @page ncrypt Encrypt/decrypt/sign/verify emails
+ * @page ncrypt NCRYPT: Encrypt/decrypt/sign/verify emails
  *
  * Encrypt/decrypt/sign/verify emails
  *
index e06152f324dfc75ba37cdf52191603ed05439e22..7354e2429b70769bc28cdd8c57442897f3200aac 100644 (file)
@@ -23,7 +23,7 @@
  */
 
 /**
- * @page nntp Usenet network mailbox type; talk to an NNTP server
+ * @page nntp NNTP: Usenet network mailbox type; talk to an NNTP server
  *
  * Usenet network mailbox type; talk to an NNTP server
  *
index ac41d28f38b772ada32c69b995f124d2c8afbd21..f43faa70cbab77c84b866bd348b02796daff9431 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 /**
- * @page notmuch Notmuch virtual mailbox type
+ * @page notmuch NOTMUCH: Virtual mailbox type
  *
  * Notmuch virtual mailbox type
  *
index 2cb6ac654abd3944ee301e6be2b7388fc7827655..aeee4e5ba0a36738d108d82679968870bfed6a01 100644 (file)
--- a/pop/pop.h
+++ b/pop/pop.h
@@ -27,7 +27,7 @@
 #include "mx.h"
 
 /**
- * @page pop POP network mailbox
+ * @page pop POP: Network mailbox
  *
  * POP network mailbox
  *