summaryrefslogtreecommitdiff
path: root/source3/web/swat.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-03-17 11:44:16 +0000
committerAndrew Tridgell <tridge@samba.org>1998-03-17 11:44:16 +0000
commit59d7006b05bb301e36f786b047b90ab9ef5be122 (patch)
tree3569000d0fcf26e29da9f0801c492cf6fe45b8a7 /source3/web/swat.c
parent7a60caa1186dc84d6e590b968e072cdb448b6335 (diff)
downloadsamba-59d7006b05bb301e36f786b047b90ab9ef5be122.tar.gz
samba-59d7006b05bb301e36f786b047b90ab9ef5be122.tar.bz2
samba-59d7006b05bb301e36f786b047b90ab9ef5be122.zip
- added "Full View"/"Normal View" on the "view config" page
- added the ability to auto-refresh the status page. There is a problem with this (it can kill inetd!). Hopefully we can fix that. (This used to be commit 4488d8932fa072bf8a3ae236ab666618051b5e83)
Diffstat (limited to 'source3/web/swat.c')
-rw-r--r--source3/web/swat.c35
1 files changed, 28 insertions, 7 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c
index 1a12d99ffd..a41249a9ee 100644
--- a/source3/web/swat.c
+++ b/source3/web/swat.c
@@ -168,6 +168,16 @@ static void show_parameters(int snum, int allparameters, int advanced, int print
}
+/* write a config file */
+static void write_config(FILE *f, BOOL show_defaults)
+{
+ fprintf(f, "# Samba config file created using SWAT\n");
+ fprintf(f, "# Date: %s\n\n", timestring());
+
+ lp_dump(f, show_defaults);
+}
+
+
/* save and reoad the smb.conf config file */
static int save_reload(void)
{
@@ -179,11 +189,7 @@ static int save_reload(void)
return 0;
}
- fprintf(f, "# Samba config file created using SWAT\n");
- fprintf(f, "# Date: %s\n\n", timestring());
-
- lp_dump(f);
-
+ write_config(f, False);
fclose(f);
lp_killunused(NULL);
@@ -282,10 +288,25 @@ static void welcome_page(void)
/* display the current smb.conf */
static void viewconfig_page(void)
{
+ int full_view=0;
+
+ if (cgi_variable("full_view")) {
+ full_view = 1;
+ }
+
printf("<H2>Current Config</H2>\n");
- printf("<pre>");
- include_html(servicesf);
+ printf("<form method=post>\n");
+
+ if (full_view) {
+ printf("<input type=submit name=\"normal_view\" value=\"Normal View\">\n");
+ } else {
+ printf("<input type=submit name=\"full_view\" value=\"Full View\">\n");
+ }
+
+ printf("<p><pre>");
+ write_config(stdout, !full_view);
printf("</pre>");
+ printf("</form>\n");
}