Change granter.sh to give permissions to user specified on command line
[hcoop/zz_old/portal.git] / pref.mlt
index ebba9ab..e86826f 100644 (file)
--- a/pref.mlt
+++ b/pref.mlt
@@ -15,25 +15,33 @@ if $"cmd" = "mod" then
                        Pref.subscribe ("hcoop-discuss", youremail)
                    else
                        Pref.unsubscribe ("hcoop-discuss", youremail)) then
-               %><h3><b>Error setting <tt>hcoop-discuss</tt> status</b></h3><%
+               %><h3>Error setting <tt>hcoop-discuss</tt> status</h3><%
        end;
 
        if not (iff $"misc" = "on" then
                        Pref.subscribe ("hcoop-misc", youremail)
                    else
                        Pref.unsubscribe ("hcoop-misc", youremail)) then
-               %><h3><b>Error setting <tt>hcoop-misc</tt> status</b></h3><%
+               %><h3>Error setting <tt>hcoop-misc</tt> status</h3><%
        end;
 
-       %><h3><b>Preferences updated</b></h3><%
+       if not (iff $"sysadmin" = "on" then
+                       Pref.subscribe ("hcoop-sysadmin", youremail)
+                   else
+                       Pref.unsubscribe ("hcoop-sysadmin", youremail)) then
+               %><h3>Error setting <tt>hcoop-sysadmin</tt> status</h3><%
+       end;
+
+       %><h3>Preferences updated</h3><%
 end %>
 
 <form action="pref" method="post">
 <input type="hidden" name="cmd" value="mod">
-<table>
-<tr> <td align="right"><input type="checkbox" name="dir"<% if Pref.hasDirectory you then %> checked<% end %>></td> <td>Include me in the public member directory.</td> </tr>
-<tr> <td align="right"><input type="checkbox" name="discuss"<% if Pref.subscribed ("hcoop-discuss", youremail) then %> checked<% end %>></td> <td>Include me on the <tt>hcoop-discuss</tt> mailing list. <i>(On-topic discussion and sporadically high volume)</i></td> </tr>
-<tr> <td align="right"><input type="checkbox" name="misc"<% if Pref.subscribed ("hcoop-misc", youremail) then %> checked<% end %>></td> <td>Include me on the <tt>hcoop-misc</tt> mailing list. <i>(Off-topic)</i></td> </tr>
+<table class="blanks">
+<tr> <td><input type="checkbox" name="dir"<% if Pref.hasDirectory you then %> checked<% end %>></td> <td>Include me in the public member directory.</td> </tr>
+<tr> <td><input type="checkbox" name="discuss"<% if Pref.subscribed ("hcoop-discuss", youremail) then %> checked<% end %>></td> <td>Include me on the <tt>hcoop-discuss</tt> mailing list. <i>(On-topic discussion and sporadically high volume)</i></td> </tr>
+<tr> <td><input type="checkbox" name="sysadmin"<% if Pref.subscribed ("hcoop-sysadmin", youremail) then %> checked<% end %>></td> <td>Include me on the <tt>hcoop-sysadmin</tt> mailing list. <i>(Discussion about technical adminstrative planning and related issues, not dealing directly with member support requests)</i></td> </tr>
+<tr> <td><input type="checkbox" name="misc"<% if Pref.subscribed ("hcoop-misc", youremail) then %> checked<% end %>></td> <td>Include me on the <tt>hcoop-misc</tt> mailing list. <i>(Off-topic)</i></td> </tr>
 <tr> <td><input type="submit" value="Save"></td> </tr>
 </table>