about summary refs log tree commit diff stats
path: root/update/plugin
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-08-21 14:39:56 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-08-21 14:39:56 +0000
commitc7cfdc1c65dfb4a554c47a9b241cb14c07c21a96 (patch)
tree3a55c3caffd12ef20057a08a5dedcd5d773ab997 /update/plugin
parentff063bc7eb37a6af42a75c216f647db15cb858fe (diff)
downloadinstadisc-c7cfdc1c65dfb4a554c47a9b241cb14c07c21a96.tar.gz
instadisc-c7cfdc1c65dfb4a554c47a9b241cb14c07c21a96.tar.bz2
instadisc-c7cfdc1c65dfb4a554c47a9b241cb14c07c21a96.zip
Update: Added encryption fields to admin panel
Refs #38
Diffstat (limited to 'update/plugin')
-rw-r--r--update/plugin/wordpress/trunk/instadisc/instadisc.php16
1 files changed, 15 insertions, 1 deletions
diff --git a/update/plugin/wordpress/trunk/instadisc/instadisc.php b/update/plugin/wordpress/trunk/instadisc/instadisc.php index a92c726..01e76b6 100644 --- a/update/plugin/wordpress/trunk/instadisc/instadisc.php +++ b/update/plugin/wordpress/trunk/instadisc/instadisc.php
@@ -89,6 +89,13 @@ function id_settings_page()
89 <BR>Both after registration and after activation, the Central Server you are using should tell you it's XML-RPC URL (usually a URL containing the string "xmlrpc.php"). Copy that URL into this field. 89 <BR>Both after registration and after activation, the Central Server you are using should tell you it's XML-RPC URL (usually a URL containing the string "xmlrpc.php"). Copy that URL into this field.
90 </TD> 90 </TD>
91</TR> 91</TR>
92<TR VALIGN="top">
93 <TH SCOPE="row"><LABEL>Encryption Password</LABEL>
94 <TD>
95 <INPUT TYPE="text" NAME="instaDisc_blogPost_password" VALUE="<?php echo(get_option('instaDisc_blogPost_password')); ?>" SIZE="40">
96 <BR>If you would like to password-protect your feed, enter a password into this box. That password will need to be known by anyone allowed to view your subscription. If you don't want to password protect this feed, leave this field blank.
97 </TD>
98</TR>
92</TABLE> 99</TABLE>
93<H3>Comments Subscription</H3> 100<H3>Comments Subscription</H3>
94<TABLE CLASS="form-table"> 101<TABLE CLASS="form-table">
@@ -127,9 +134,16 @@ function id_settings_page()
127 <BR>Both after registration and after activation, the Central Server you are using should tell you it's XML-RPC URL (usually a URL containing the string "xmlrpc.php"). Copy that URL into this field. 134 <BR>Both after registration and after activation, the Central Server you are using should tell you it's XML-RPC URL (usually a URL containing the string "xmlrpc.php"). Copy that URL into this field.
128 </TD> 135 </TD>
129</TR> 136</TR>
137<TR VALIGN="top">
138 <TH SCOPE="row"><LABEL>Encryption Password</LABEL>
139 <TD>
140 <INPUT TYPE="text" NAME="instaDisc_comment_password" VALUE="<?php echo(get_option('instaDisc_comment_password')); ?>" SIZE="40">
141 <BR>If you would like to password-protect your feed, enter a password into this box. That password will need to be known by anyone allowed to view your subscription. If you don't want to password protect this feed, leave this field blank.
142 </TD>
143</TR>
130</TABLE> 144</TABLE>
131<INPUT TYPE="hidden" NAME="action" VALUE="update"> 145<INPUT TYPE="hidden" NAME="action" VALUE="update">
132<INPUT TYPE="hidden" NAME="page_options" VALUE="instaDisc_subscription_title,instadisc_blogPost_centralServer_activationKey,instaDisc_blogPost_centralServer,instaDisc_comment_centralServer_activationKey,instaDisc_comment_centralServer,instaDisc_blogPost_centralServer_username,instaDisc_blogPost_centralServer_password,instaDisc_comment_centralServer_username,instaDisc_comment_centralServer_password"> 146<INPUT TYPE="hidden" NAME="page_options" VALUE="instaDisc_subscription_title,instadisc_blogPost_centralServer_activationKey,instaDisc_blogPost_centralServer,instaDisc_comment_centralServer_activationKey,instaDisc_comment_centralServer,instaDisc_blogPost_centralServer_username,instaDisc_blogPost_centralServer_password,instaDisc_comment_centralServer_username,instaDisc_comment_centralServer_password,instaDisc_blogPost_password,instaDisc_comment_password">
133<P CLASS="submit"><INPUT TYPE="submit" NAME="Submit" VALUE="<?php _e('Save Changes') ?>"></P> 147<P CLASS="submit"><INPUT TYPE="submit" NAME="Submit" VALUE="<?php _e('Save Changes') ?>"></P>
134</FORM></DIV><?php 148</FORM></DIV><?php
135} 149}