Version Description
Download this release
Release Info
Developer | radgeek |
Plugin | FeedWordPress |
Version | 2008.1101 |
Comparing to | |
See all releases |
Code changes from version 2008.1030 to 2008.1101
- ChangeLog.text +8 -0
- feedwordpress.php +3 -3
- readme.txt +1 -1
- syndication.php +14 -17
ChangeLog.text
CHANGED
@@ -1,6 +1,14 @@
|
|
1 |
FeedWordPress Change Log
|
2 |
========================
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
Changes from 0.993 to 2008.1030
|
5 |
-------------------------------
|
6 |
|
1 |
FeedWordPress Change Log
|
2 |
========================
|
3 |
|
4 |
+
Changes from 2008.1030 to 2008.1101
|
5 |
+
-----------------------------------
|
6 |
+
|
7 |
+
* INTERFACE BUG THAT PREVENTED ADDING NEW SITES FIXED: The UI reforms in
|
8 |
+
FWP 2008.1030 unintentionally introduced a bug that prevents clean
|
9 |
+
installations of FeedWordPress from providing an input box for adding
|
10 |
+
new feeds to the list of syndicated feeds. This bug has been fixed.
|
11 |
+
|
12 |
Changes from 0.993 to 2008.1030
|
13 |
-------------------------------
|
14 |
|
feedwordpress.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
Plugin Name: FeedWordPress
|
4 |
Plugin URI: http://projects.radgeek.com/feedwordpress
|
5 |
Description: simple and flexible Atom/RSS syndication for WordPress
|
6 |
-
Version: 2008.
|
7 |
Author: Charles Johnson
|
8 |
Author URI: http://radgeek.com/
|
9 |
License: GPL
|
10 |
-
Last modified: 2008-
|
11 |
*/
|
12 |
|
13 |
# This uses code derived from:
|
@@ -27,7 +27,7 @@ Last modified: 2008-10-30 4:14pm PDT
|
|
27 |
|
28 |
# -- Don't change these unless you know what you're doing...
|
29 |
|
30 |
-
define ('FEEDWORDPRESS_VERSION', '2008.
|
31 |
define ('FEEDWORDPRESS_AUTHOR_CONTACT', 'http://radgeek.com/contact');
|
32 |
define ('DEFAULT_SYNDICATION_CATEGORY', 'Contributors');
|
33 |
|
3 |
Plugin Name: FeedWordPress
|
4 |
Plugin URI: http://projects.radgeek.com/feedwordpress
|
5 |
Description: simple and flexible Atom/RSS syndication for WordPress
|
6 |
+
Version: 2008.1101
|
7 |
Author: Charles Johnson
|
8 |
Author URI: http://radgeek.com/
|
9 |
License: GPL
|
10 |
+
Last modified: 2008-11-01 1:13pm PDT
|
11 |
*/
|
12 |
|
13 |
# This uses code derived from:
|
27 |
|
28 |
# -- Don't change these unless you know what you're doing...
|
29 |
|
30 |
+
define ('FEEDWORDPRESS_VERSION', '2008.1101');
|
31 |
define ('FEEDWORDPRESS_AUTHOR_CONTACT', 'http://radgeek.com/contact');
|
32 |
define ('DEFAULT_SYNDICATION_CATEGORY', 'Contributors');
|
33 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://projects.radgeek.com/feedwordpress/
|
|
4 |
Tags: syndication, aggregation, feed, atom, rss
|
5 |
Requires at least: 1.5
|
6 |
Tested up to: 2.6.3
|
7 |
-
Stable tag: 2008.
|
8 |
|
9 |
FeedWordPress syndicates content from feeds you choose into your WordPress weblog.
|
10 |
|
4 |
Tags: syndication, aggregation, feed, atom, rss
|
5 |
Requires at least: 1.5
|
6 |
Tested up to: 2.6.3
|
7 |
+
Stable tag: 2008.1101
|
8 |
|
9 |
FeedWordPress syndicates content from feeds you choose into your WordPress weblog.
|
10 |
|
syndication.php
CHANGED
@@ -159,8 +159,7 @@ if ($cont):
|
|
159 |
<div class="wrap">
|
160 |
<form id="syndicated-links" action="admin.php?page=<?php print $GLOBALS['fwp_path']; ?>/<?php echo basename(__FILE__); ?>" method="post">
|
161 |
<h2>Syndicated Sites</h2>
|
162 |
-
<?php $alt_row = true;
|
163 |
-
if ($links): ?>
|
164 |
|
165 |
<?php if (fwp_test_wp_version(FWP_SCHEMA_25)) : ?>
|
166 |
<div class="tablenav">
|
@@ -187,10 +186,12 @@ jQuery(document).ready( function () {
|
|
187 |
<input type="hidden" name="action" value="feedfinder" />
|
188 |
<input type="submit" class="button-secondary" name="action" value="<?php print FWP_SYNDICATE_NEW; ?>" /></div>
|
189 |
|
|
|
190 |
<div class="alignleft">
|
191 |
<input class="button-secondary" type="submit" name="action" value="<?php print FWP_UPDATE_CHECKED; ?>" />
|
192 |
<input class="button-secondary delete" type="submit" class="delete" name="action" value="<?php print FWP_UNSUB_CHECKED; ?>" />
|
193 |
</div>
|
|
|
194 |
|
195 |
<br class="clear" />
|
196 |
</div>
|
@@ -213,7 +214,7 @@ jQuery(document).ready( function () {
|
|
213 |
</thead>
|
214 |
|
215 |
<tbody>
|
216 |
-
<?php foreach ($links as $link):
|
217 |
$alt_row = !$alt_row; ?>
|
218 |
<tr<?php echo ($alt_row?' class="alternate"':''); ?>>
|
219 |
<?php if (fwp_test_wp_version(FWP_SCHEMA_25)) : ?>
|
@@ -254,24 +255,20 @@ jQuery(document).ready( function () {
|
|
254 |
endif;
|
255 |
echo "\n\t</tr>";
|
256 |
endforeach;
|
|
|
257 |
?>
|
258 |
-
|
259 |
-
</table>
|
260 |
-
|
261 |
-
<?php if (fwp_test_wp_version(0, FWP_SCHEMA_25)) : ?>
|
262 |
-
<br/><hr/>
|
263 |
-
<div class="submit"><input type="submit" class="delete" name="action" value="<?php print FWP_UNSUB_CHECKED; ?>" />
|
264 |
-
<input type="submit" name="action" value="<?php print FWP_UPDATE_CHECKED; ?>" /></div>
|
265 |
-
<?php endif; ?>
|
266 |
-
|
267 |
-
|
268 |
<?php
|
269 |
-
|
270 |
?>
|
|
|
|
|
271 |
|
272 |
-
|
273 |
-
|
274 |
-
<?php
|
|
|
|
|
275 |
|
276 |
</form>
|
277 |
|
159 |
<div class="wrap">
|
160 |
<form id="syndicated-links" action="admin.php?page=<?php print $GLOBALS['fwp_path']; ?>/<?php echo basename(__FILE__); ?>" method="post">
|
161 |
<h2>Syndicated Sites</h2>
|
162 |
+
<?php $alt_row = true; ?>
|
|
|
163 |
|
164 |
<?php if (fwp_test_wp_version(FWP_SCHEMA_25)) : ?>
|
165 |
<div class="tablenav">
|
186 |
<input type="hidden" name="action" value="feedfinder" />
|
187 |
<input type="submit" class="button-secondary" name="action" value="<?php print FWP_SYNDICATE_NEW; ?>" /></div>
|
188 |
|
189 |
+
<?php if (count($links) > 0) : ?>
|
190 |
<div class="alignleft">
|
191 |
<input class="button-secondary" type="submit" name="action" value="<?php print FWP_UPDATE_CHECKED; ?>" />
|
192 |
<input class="button-secondary delete" type="submit" class="delete" name="action" value="<?php print FWP_UNSUB_CHECKED; ?>" />
|
193 |
</div>
|
194 |
+
<?php endif; ?>
|
195 |
|
196 |
<br class="clear" />
|
197 |
</div>
|
214 |
</thead>
|
215 |
|
216 |
<tbody>
|
217 |
+
<?php if (count($links) > 0): foreach ($links as $link):
|
218 |
$alt_row = !$alt_row; ?>
|
219 |
<tr<?php echo ($alt_row?' class="alternate"':''); ?>>
|
220 |
<?php if (fwp_test_wp_version(FWP_SCHEMA_25)) : ?>
|
255 |
endif;
|
256 |
echo "\n\t</tr>";
|
257 |
endforeach;
|
258 |
+
else :
|
259 |
?>
|
260 |
+
<tr><td colspan="<?php print $span+2; ?>"><p>There are no websites currently listed for syndication.</p></td></tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
<?php
|
262 |
+
endif;
|
263 |
?>
|
264 |
+
</tbody>
|
265 |
+
</table>
|
266 |
|
267 |
+
<?php if (count($links) > 0 and fwp_test_wp_version(0, FWP_SCHEMA_25)) : ?>
|
268 |
+
<br/><hr/>
|
269 |
+
<div class="submit"><input type="submit" class="delete" name="action" value="<?php print FWP_UNSUB_CHECKED; ?>" />
|
270 |
+
<input type="submit" name="action" value="<?php print FWP_UPDATE_CHECKED; ?>" /></div>
|
271 |
+
<?php endif; ?>
|
272 |
|
273 |
</form>
|
274 |
|