diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-05 12:03:00 +0000 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-05 12:03:00 +0000 |
commit | 2565efd18ce95275c2eb1027d34df45054f70b56 (patch) | |
tree | 6b3c4d235e96a2209b400968e1bb48f246fa4981 /update/plugin/wordpress/trunk | |
parent | 7fbab89f7ef5f15216de1dbb1667bac5b7fd1b0c (diff) | |
download | instadisc-2565efd18ce95275c2eb1027d34df45054f70b56.tar.gz instadisc-2565efd18ce95275c2eb1027d34df45054f70b56.tar.bz2 instadisc-2565efd18ce95275c2eb1027d34df45054f70b56.zip |
Update: Created Subscription Files
Currently, a seperate php file generates the subscription files. This is a bad scheme as it requires the subscription URL (as in, the URL you use to subscribe, the URL to the Subscription File) is long and winds down the Wordpress plugin directory. Hopefully, an alternate to this method will be found. Refs #6.
Diffstat (limited to 'update/plugin/wordpress/trunk')
-rw-r--r-- | update/plugin/wordpress/trunk/instadisc/instadisc.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/update/plugin/wordpress/trunk/instadisc/instadisc.php b/update/plugin/wordpress/trunk/instadisc/instadisc.php index a5fe06a..c5eae1f 100644 --- a/update/plugin/wordpress/trunk/instadisc/instadisc.php +++ b/update/plugin/wordpress/trunk/instadisc/instadisc.php | |||
@@ -51,6 +51,13 @@ function id_settings_page() | |||
51 | <H3>Blog Posts Subscription</H3> | 51 | <H3>Blog Posts Subscription</H3> |
52 | <TABLE CLASS="form-table"> | 52 | <TABLE CLASS="form-table"> |
53 | <TR VALIGN="top"> | 53 | <TR VALIGN="top"> |
54 | <TH SCOPE="row"><LABEL>Subscription File URL</LABEL> | ||
55 | <TD> | ||
56 | <INPUT TYPE="text" NAME="instaDisc_blogPost_sfurl" VALUE="<?php echo(get_option('siteurl') . '/wp-content/plugins/instadisc/subscription.php'); ?>" SIZE="40"> | ||
57 | <BR>This is the URL that you advertise, the URL people use to subscribe to your subscription. | ||
58 | </TD> | ||
59 | </TR> | ||
60 | <TR VALIGN="top"> | ||
54 | <TH SCOPE="row"><LABEL>Central Server Activation Key</LABEL> | 61 | <TH SCOPE="row"><LABEL>Central Server Activation Key</LABEL> |
55 | <TD> | 62 | <TD> |
56 | <INPUT TYPE="text" NAME="instaDisc_blogPost_centralServer_activationKey" VALUE="<?php echo(get_option('instaDisc_blogPost_centralServer_activationKey')); ?>" SIZE="40"> | 63 | <INPUT TYPE="text" NAME="instaDisc_blogPost_centralServer_activationKey" VALUE="<?php echo(get_option('instaDisc_blogPost_centralServer_activationKey')); ?>" SIZE="40"> |
@@ -68,6 +75,13 @@ function id_settings_page() | |||
68 | <H3>Comments Subscription</H3> | 75 | <H3>Comments Subscription</H3> |
69 | <TABLE CLASS="form-table"> | 76 | <TABLE CLASS="form-table"> |
70 | <TR VALIGN="top"> | 77 | <TR VALIGN="top"> |
78 | <TH SCOPE="row"><LABEL>Subscription File URL</LABEL> | ||
79 | <TD> | ||
80 | <INPUT TYPE="text" NAME="instaDisc_comment_sfurl" VALUE="<?php echo(get_option('siteurl') . '/wp-content/plugins/instadisc/subscription.php?comment='); ?>" SIZE="40"> | ||
81 | <BR>This is the URL that you advertise, the URL people use to subscribe to your subscription. | ||
82 | </TD> | ||
83 | </TR> | ||
84 | <TR VALIGN="top"> | ||
71 | <TH SCOPE="row"><LABEL>Central Server Activation Key</LABEL> | 85 | <TH SCOPE="row"><LABEL>Central Server Activation Key</LABEL> |
72 | <TD> | 86 | <TD> |
73 | <INPUT TYPE="text" NAME="instaDisc_comment_centralServer_activationKey" VALUE="<?php echo(get_option('instaDisc_comment_centralServer_activationKey')); ?>" SIZE="40"> | 87 | <INPUT TYPE="text" NAME="instaDisc_comment_centralServer_activationKey" VALUE="<?php echo(get_option('instaDisc_comment_centralServer_activationKey')); ?>" SIZE="40"> |