]> code.citadel.org Git - citadel.git/blobdiff - webcit/inetconf.c
* don't translate citadel commands!
[citadel.git] / webcit / inetconf.c
index 3bfde9d7c1625b62931fa1efced8d288df420628..bee9bc2a82d2e19ebd6e963a5dd47bc0c2ee9a80 100644 (file)
@@ -1,14 +1,17 @@
 /* 
  * $Id$
- *
- * Functions which handle Internet domain configuration etc.
- *
  */
-
+/**
+ * \defgroup InetCfg Functions which handle Internet domain configuration etc.
+ * \ingroup CitadelConfig
+ */
+/*@{*/
 #include "webcit.h"
 
 
-
+/**
+ * \brief display the inet config dialog 
+ */
 void display_inetconf(void)
 {
        char buf[SIZ];
@@ -32,12 +35,13 @@ void display_inetconf(void)
        char *ic_boxtitle[ic_max];
        char *ic_desc[ic_max];
 
-       ic_keyword[0] = _("localhost");
-       ic_keyword[1] = _("directory");
-       ic_keyword[2] = _("gatewaydomain");
-       ic_keyword[3] = _("smarthost");
-       ic_keyword[4] = _("rbl");
-       ic_keyword[5] = _("spamassassin");
+       /* DON'T NEVER EVER AGAIN TRANSLATE CITADEL COMMANDS! */
+       ic_keyword[0] = "localhost";
+       ic_keyword[1] = "directory";
+       ic_keyword[2] = "gatewaydomain";
+       ic_keyword[3] = "smarthost";
+       ic_keyword[4] = "rbl";
+       ic_keyword[5] = "spamassassin";
 
        ic_boxtitle[0] = _("Local host aliases");
        ic_boxtitle[1] = _("Directory domains");
@@ -93,7 +97,7 @@ void display_inetconf(void)
        wprintf("</TD></TR></TABLE>\n");
        wprintf("</div>\n<div id=\"content\">\n");
 
-       wprintf("<div id=\"fix_scrollbar_bug\">"
+       wprintf("<div class=\"fix_scrollbar_bug\">"
                "<table border=0 width=100%%><tr><td valign=top>\n");
        for (which=0; which<ic_max; ++which) {
                if (which == (ic_max / 2)) {
@@ -140,6 +144,9 @@ void display_inetconf(void)
 }
 
 
+/**
+ * \brief save changes to the inet config
+ */
 void save_inetconf(void) {
        char *buf;
        char *ename;
@@ -158,7 +165,7 @@ void save_inetconf(void) {
                extract_token(ename, buf, 0, '|', SIZ);
                extract_token(etype, buf, 1, '|', SIZ);
                if (strlen(buf) == 0) {
-                       /* skip blank lines */
+                       /** skip blank lines */
                }
                else if ((!strcasecmp(ename, bstr("ename")))
                   &&   (!strcasecmp(etype, bstr("etype")))
@@ -190,3 +197,7 @@ void save_inetconf(void) {
        free(etype);
        free(newconfig);
 }
+
+
+
+/*@}*/