Changeset 3200313
- Timestamp:
- 12/01/2024 05:36:18 PM (16 months ago)
- Location:
- rss-llama
- Files:
-
- 25 added
- 14 edited
-
tags/2.0.1 (added)
-
tags/2.0.1/class-rssllama.php (added)
-
tags/2.0.1/includes (added)
-
tags/2.0.1/includes/classes (added)
-
tags/2.0.1/includes/classes/class-rssllama-admin.php (added)
-
tags/2.0.1/includes/classes/class-rssllama-backup.php (added)
-
tags/2.0.1/includes/css (added)
-
tags/2.0.1/includes/css/index.php (added)
-
tags/2.0.1/includes/css/rss-llama-admin.css (added)
-
tags/2.0.1/includes/css/rss-llama-style.css (added)
-
tags/2.0.1/includes/index.php (added)
-
tags/2.0.1/includes/js (added)
-
tags/2.0.1/includes/js/index.php (added)
-
tags/2.0.1/includes/js/rss-llama-functions.js (added)
-
tags/2.0.1/includes/js/rss-llama-rewrite-rules.js (added)
-
tags/2.0.1/includes/js/rss-llama-single.js (added)
-
tags/2.0.1/includes/js/rss-llama-summary.js (added)
-
tags/2.0.1/includes/js/rss-llama-wafer.js (added)
-
tags/2.0.1/includes/php (added)
-
tags/2.0.1/includes/php/export-csv.php (added)
-
tags/2.0.1/includes/php/export-json.php (added)
-
tags/2.0.1/includes/php/import.php (added)
-
tags/2.0.1/index.php (added)
-
tags/2.0.1/readme.txt (added)
-
tags/2.0.1/uninstall.php (added)
-
trunk/class-rssllama.php (modified) (6 diffs)
-
trunk/includes/classes/class-rssllama-admin.php (modified) (2 diffs)
-
trunk/includes/classes/class-rssllama-backup.php (modified) (3 diffs)
-
trunk/includes/css/index.php (modified) (1 diff)
-
trunk/includes/js/index.php (modified) (1 diff)
-
trunk/includes/js/rss-llama-functions.js (modified) (1 diff)
-
trunk/includes/js/rss-llama-rewrite-rules.js (modified) (1 diff)
-
trunk/includes/js/rss-llama-single.js (modified) (1 diff)
-
trunk/includes/js/rss-llama-summary.js (modified) (1 diff)
-
trunk/includes/js/rss-llama-wafer.js (modified) (1 diff)
-
trunk/includes/php/export-csv.php (modified) (1 diff)
-
trunk/includes/php/export-json.php (modified) (1 diff)
-
trunk/includes/php/import.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rss-llama/trunk/class-rssllama.php
r3155031 r3200313 1 1 <?php 2 2 /** 3 * Plugin Name: R ssllama4 * Plugin URI: http ://wordpress.org/plugins/rss-llama/5 * Version: 2.0. 03 * Plugin Name: RSS llama 4 * Plugin URI: https://oooorgle.com/plugins/wp/rss-llama/ 5 * Version: 2.0.1 6 6 * Description: Categorize your rss feeds into a useful page. 7 7 * Author: oooorgle 8 8 * Author URI: https://oooorgle.com/plugins/wp/rss-llama/ 9 9 * Text Domain: rss-llama 10 * Domain Path: /lang11 10 * 12 11 * @package rss-llama 13 * License: CopyHeart14 * License URI: https:// oooorgle.com/copyheart12 * License: GPLv3 13 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 15 14 */ 16 15 … … 28 27 29 28 // Plugin version. 30 defined( 'RL_PLUGIN_VERSION' ) || define( 'RL_PLUGIN_VERSION', '2.0. 0' );29 defined( 'RL_PLUGIN_VERSION' ) || define( 'RL_PLUGIN_VERSION', '2.0.1' ); 31 30 32 31 /** … … 732 731 733 732 if ( 'nonce' === $yaynay ) { 734 return '<div class="error rlmsg"><p>' . esc_html__( 'Security token mismatch, please reload the page and try again.', ' quotes-llama' ) . '</p></div>';733 return '<div class="error rlmsg"><p>' . esc_html__( 'Security token mismatch, please reload the page and try again.', 'rss-llama' ) . '</p></div>'; 735 734 } 736 735 } … … 871 870 $to, 872 871 $blog . ': ' . $subject, 873 esc_html__( 'Submitted by:' ) .872 esc_html__( 'Submitted by:', 'rss-llama' ) . 874 873 wp_kses_post( $ip . ' - ' . $agent ) . " \r\n" . 875 esc_html__( 'Referred Link:' ) .874 esc_html__( 'Referred Link:', 'rss-llama' ) . 876 875 wp_kses_post( $link ) . " \r\n" . 877 esc_html__( 'Submitted from:' ) .876 esc_html__( 'Submitted from:', 'rss-llama' ) . 878 877 wp_kses_post( $referer ) . " \r\n\r\n" . 879 esc_html__( 'Description:' ) .878 esc_html__( 'Description:', 'rss-llama' ) . 880 879 wp_kses_post( $message ), 881 880 implode( "\n", $headers ) … … 1365 1364 <?php echo wp_kses_post( $item_description ) . ' '; ?> 1366 1365 <a href = '<?php echo esc_url( $item_permalink ); ?>' 1367 title = '<?php esc_attr_e( 'View the Post: ' ); ?><?php echo esc_attr( $item_title ); ?>'1366 title = '<?php esc_attr_e( 'View the Post: ', 'rss-llama' ); ?><?php echo esc_attr( $item_title ); ?>' 1368 1367 target = '_blank'> 1369 1368 <span class = 'dashicons-before dashicons-admin-page'></span> … … 1441 1440 href = '<?php echo esc_url( $summary ); ?>' 1442 1441 target = '_blank'> 1443 <?php esc_html_e( '(Feed Error) - ' ); ?>1442 <?php esc_html_e( '(Feed Error) - ', 'rss-llama' ); ?> 1444 1443 <?php echo esc_html( $rss->get_error_message() ); ?> 1445 1444 <span> -
rss-llama/trunk/includes/classes/class-rssllama-admin.php
r3155031 r3200313 8 8 * @package rss-llama 9 9 * @since 2.0.0 10 * License: CopyHeart11 * License URI: https:// oooorgle.com/copyheart10 * License: GPLv3 11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 12 12 */ 13 13 … … 958 958 add_settings_field( 959 959 'rss_llama_refer_requesttext', 960 esc_html__( 'Submit Link Text' ),960 esc_html__( 'Submit Link Text', 'rss-llama' ), 961 961 array( $this, 'refer_requesttext_callback' ), 962 962 'rss-llama', -
rss-llama/trunk/includes/classes/class-rssllama-backup.php
r3155031 r3200313 8 8 * @package rss-llama 9 9 * @since 2.0.0 10 * License: CopyHeart11 * License URI: https:// oooorgle.com/copyheart10 * License: GPLv3 11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 12 12 */ 13 13 … … 259 259 // Validate has data. 260 260 if ( ! $json_data ) { 261 return esc_html__( 'Unable to import because the file is empty.' );261 return esc_html__( 'Unable to import because the file is empty.', 'rss-llama' ); 262 262 } 263 263 … … 403 403 } 404 404 } else { 405 return esc_html__( 'Security token mismatch, please reload the page and try again.', ' quotes-llama' );405 return esc_html__( 'Security token mismatch, please reload the page and try again.', 'rss-llama' ); 406 406 } 407 407 } -
rss-llama/trunk/includes/css/index.php
r3155031 r3200313 1 1 <?php 2 3 2 // Silence is golden. 4 5 3 ?> -
rss-llama/trunk/includes/js/index.php
r3155031 r3200313 1 1 <?php 2 3 4 2 // Silence is golden. 5 6 7 3 ?> -
rss-llama/trunk/includes/js/rss-llama-functions.js
r3155031 r3200313 7 7 * @package rss-llama 8 8 * @since 1.0 9 * License: CopyHeart10 * License URI: https:// oooorgle.com/copyheart9 * License: GPLv3 10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 11 */ 12 12 -
rss-llama/trunk/includes/js/rss-llama-rewrite-rules.js
r3155031 r3200313 7 7 * @package rss-llama 8 8 * @since 1.0 9 * License: CopyHeart10 * License URI: https:// oooorgle.com/copyheart9 * License: GPLv3 10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 11 */ 12 12 -
rss-llama/trunk/includes/js/rss-llama-single.js
r3155031 r3200313 7 7 * @package rss-llama 8 8 * @since 1.0 9 * License: CopyHeart10 * License URI: https:// oooorgle.com/copyheart9 * License: GPLv3 10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 11 */ 12 12 -
rss-llama/trunk/includes/js/rss-llama-summary.js
r3155031 r3200313 7 7 * @package rss-llama 8 8 * @since 1.0 9 * License: CopyHeart10 * License URI: https:// oooorgle.com/copyheart9 * License: GPLv3 10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 11 */ 12 12 -
rss-llama/trunk/includes/js/rss-llama-wafer.js
r3155031 r3200313 7 7 * @package rss-llama 8 8 * @since 1.0 9 * License: CopyHeart10 * License URI: https:// oooorgle.com/copyheart9 * License: GPLv3 10 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 11 */ 12 12 -
rss-llama/trunk/includes/php/export-csv.php
r3155031 r3200313 8 8 * @package rss-llama 9 9 * @since 2.0.0 10 * License: CopyHeart11 * License URI: https:// oooorgle.com/copyheart10 * License: GPLv3 11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 12 12 */ 13 13 -
rss-llama/trunk/includes/php/export-json.php
r3155031 r3200313 8 8 * @package rss-llama 9 9 * @since 2.0.0 10 * License: CopyHeart11 * License URI: https:// oooorgle.com/copyheart10 * License: GPLv3 11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 12 12 */ 13 13 -
rss-llama/trunk/includes/php/import.php
r3155031 r3200313 8 8 * @package rss-llama 9 9 * @since 2.0.0 10 * License: CopyHeart11 * License URI: https:// oooorgle.com/copyheart10 * License: GPLv3 11 * License URI: https://www.gnu.org/licenses/gpl-3.0.html 12 12 */ 13 13 -
rss-llama/trunk/readme.txt
r3155031 r3200313 4 4 Tags: rss, feed, reader, subscribe 5 5 Requires at least: 4.2.2 6 Tested up to: 6. 6.27 Stable tag: 2.0. 06 Tested up to: 6.7.1 7 Stable tag: 2.0.1 8 8 Requires PHP: 7.0 9 License: CopyHeart10 License URI: https:// oooorgle.com/copyheart9 License: GPLv3 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html 11 11 12 12 Categorize your rss feeds into a useful page. … … 40 40 == Frequently Asked Questions == 41 41 * "What is the Links Manager?" 42 * As of WordPress 3.5. The Links Manager is hidden by default. Learn more: [About Links Manager](https://codex.wordpress.org/Links_Manager)42 * As of WordPress 3.5. The Links Manager is hidden by default. Rss Llama should enable the link manager. If you encounte problems you can learn more: [About Links Manager](https://codex.wordpress.org/Links_Manager) 43 43 * "But I have a lot of links - I don't want feeds from them all. Is this all or nothing?" 44 44 * You can display all links or just links from a specific category. … … 76 76 == Changelog == 77 77 = Upgrade Notice = 78 * Some options have been added or changed... If you encounter difficulty, you may need to verify the option "Reset When Deactivating" is set and saved, then Disable/Enable the plugin. You can also check and Save the options by visiting each tab and clicking Save at the bottom.79 78 * [Version History](https://oooorgle.com/downloads/rss-llama/dev/versions.htm) 80 79
Note: See TracChangeset
for help on using the changeset viewer.