Version Description
Download this release
Release Info
Developer | SEO Design Solutions |
Plugin | SEO Ultimate |
Version | 3.6 |
Comparing to | |
See all releases |
Code changes from version 3.5 to 3.6
- includes/jlfunctions/str.php +3 -2
- modules/404s/fofs-log.php +6 -16
- modules/404s/fofs-settings.php +12 -0
- modules/404s/{fofs-log.css → fofs.css} +4 -0
- modules/class.su-module.php +1 -1
- modules/documentation.txt +4 -0
- plugin/class.seo-ultimate.php +1 -0
- plugin/global.css +4 -1
- readme.txt +11 -5
- seo-ultimate.php +4 -4
- seo-ultimate.pot +39 -35
includes/jlfunctions/str.php
CHANGED
@@ -156,8 +156,9 @@ class sustr {
|
|
156 |
}
|
157 |
|
158 |
function preg_escape($str, $delim='%') {
|
159 |
-
$chars = "
|
160 |
-
|
|
|
161 |
$str = str_replace($char, '\\'.$char, $str);
|
162 |
return $str;
|
163 |
}
|
156 |
}
|
157 |
|
158 |
function preg_escape($str, $delim='%') {
|
159 |
+
$chars = "\ ^ . $ | ( ) [ ] * + ? { } , ".$delim;
|
160 |
+
$chars = explode(' ', $chars);
|
161 |
+
foreach ($chars as $char)
|
162 |
$str = str_replace($char, '\\'.$char, $str);
|
163 |
return $str;
|
164 |
}
|
modules/404s/fofs-log.php
CHANGED
@@ -30,17 +30,6 @@ class SU_FofsLog extends SU_Module {
|
|
30 |
return $new;
|
31 |
}
|
32 |
|
33 |
-
function get_default_settings() {
|
34 |
-
return array(
|
35 |
-
'exceptions' => "*/favicon.ico\n*/apple-touch-icon.png\n*/pingserver.php\n*/xmlrpc.php"
|
36 |
-
, 'max_log_size' => 100
|
37 |
-
, 'log_enabled' => $this->flush_setting('log_hits', true, 'settings')
|
38 |
-
, 'restrict_logging' => true
|
39 |
-
, 'log_spiders' => true
|
40 |
-
, 'log_errors_with_referers' => true
|
41 |
-
);
|
42 |
-
}
|
43 |
-
|
44 |
function init() {
|
45 |
add_action('admin_enqueue_scripts', array(&$this, 'queue_admin_scripts'));
|
46 |
add_action('su_save_hit', array(&$this, 'log_hit'));
|
@@ -92,7 +81,8 @@ class SU_FofsLog extends SU_Module {
|
|
92 |
}
|
93 |
|
94 |
$l = $this->get_setting('log', array());
|
95 |
-
|
|
|
96 |
|
97 |
$u = $hit['url'];
|
98 |
if (!isset($l[$u])) {
|
@@ -198,8 +188,8 @@ class SU_FofsLog extends SU_Module {
|
|
198 |
, date_i18n(get_option('date_format'), $data['last_hit_time'])
|
199 |
, date_i18n(get_option('time_format'), $data['last_hit_time'])
|
200 |
)
|
201 |
-
, 'referers' => number_format_i18n(count($data['referers'])) . (count($data['referers']) ? " <a href='#' onclick=\"su_toggle_blind('su-404s-hit-$md5url-referers')\";'><img src='{$this->module_dir_url}hit-details.png' title='".__('View list of referring URLs', 'seo-ultimate')."' /></a>" : '')
|
202 |
-
, 'user-agents' => number_format_i18n(count($data['user_agents'])) . (count($data['user_agents']) ? " <a href='#' onclick=\"su_toggle_blind('su-404s-hit-$md5url-user-agents')\";'><img src='{$this->module_dir_url}hit-details.png' title='".__('View list of user agents', 'seo-ultimate')."' /></a>" : '')
|
203 |
));
|
204 |
|
205 |
echo "\t</tr>\n";
|
@@ -210,7 +200,7 @@ class SU_FofsLog extends SU_Module {
|
|
210 |
|
211 |
echo "<div id='su-404s-hit-$md5url-referers' style='display: none;'>\n";
|
212 |
echo "\t\t\t<div><strong>".__('Referring URLs', 'seo-ultimate')."</strong> — ";
|
213 |
-
echo "<a href='#' onclick=\"Effect.BlindUp('su-404s-hit-$md5url-referers')
|
214 |
echo "</div>\n";
|
215 |
echo "\t\t\t<ul>\n";
|
216 |
|
@@ -231,7 +221,7 @@ class SU_FofsLog extends SU_Module {
|
|
231 |
if (count($data['user_agents'])) {
|
232 |
echo "<div id='su-404s-hit-$md5url-user-agents' style='display: none;'>\n";
|
233 |
echo "\t\t\t<div><strong>".__('User Agents', 'seo-ultimate')."</strong> — ";
|
234 |
-
echo "<a href='#' onclick=\"Effect.BlindUp('su-404s-hit-$md5url-user-agents')
|
235 |
echo "</div>\n";
|
236 |
echo "\t\t\t<ul>\n";
|
237 |
|
30 |
return $new;
|
31 |
}
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
function init() {
|
34 |
add_action('admin_enqueue_scripts', array(&$this, 'queue_admin_scripts'));
|
35 |
add_action('su_save_hit', array(&$this, 'log_hit'));
|
81 |
}
|
82 |
|
83 |
$l = $this->get_setting('log', array());
|
84 |
+
$max_log_size = absint(sustr::preg_filter('0-9', strval($this->get_setting('max_log_size', 100))));
|
85 |
+
while (count($l) >= $max_log_size) array_pop($l);
|
86 |
|
87 |
$u = $hit['url'];
|
88 |
if (!isset($l[$u])) {
|
188 |
, date_i18n(get_option('date_format'), $data['last_hit_time'])
|
189 |
, date_i18n(get_option('time_format'), $data['last_hit_time'])
|
190 |
)
|
191 |
+
, 'referers' => number_format_i18n(count($data['referers'])) . (count($data['referers']) ? " <a href='#' onclick=\"return su_toggle_blind('su-404s-hit-$md5url-referers')\";'><img src='{$this->module_dir_url}hit-details.png' title='".__('View list of referring URLs', 'seo-ultimate')."' /></a>" : '')
|
192 |
+
, 'user-agents' => number_format_i18n(count($data['user_agents'])) . (count($data['user_agents']) ? " <a href='#' onclick=\"return su_toggle_blind('su-404s-hit-$md5url-user-agents')\";'><img src='{$this->module_dir_url}hit-details.png' title='".__('View list of user agents', 'seo-ultimate')."' /></a>" : '')
|
193 |
));
|
194 |
|
195 |
echo "\t</tr>\n";
|
200 |
|
201 |
echo "<div id='su-404s-hit-$md5url-referers' style='display: none;'>\n";
|
202 |
echo "\t\t\t<div><strong>".__('Referring URLs', 'seo-ultimate')."</strong> — ";
|
203 |
+
echo "<a href='#' onclick=\"Effect.BlindUp('su-404s-hit-$md5url-referers'); return false;\">".__('Hide list', 'seo-ultimate')."</a>";
|
204 |
echo "</div>\n";
|
205 |
echo "\t\t\t<ul>\n";
|
206 |
|
221 |
if (count($data['user_agents'])) {
|
222 |
echo "<div id='su-404s-hit-$md5url-user-agents' style='display: none;'>\n";
|
223 |
echo "\t\t\t<div><strong>".__('User Agents', 'seo-ultimate')."</strong> — ";
|
224 |
+
echo "<a href='#' onclick=\"Effect.BlindUp('su-404s-hit-$md5url-user-agents'); return false;\">".__('Hide list', 'seo-ultimate')."</a>";
|
225 |
echo "</div>\n";
|
226 |
echo "\t\t\t<ul>\n";
|
227 |
|
modules/404s/fofs-settings.php
CHANGED
@@ -17,6 +17,17 @@ class SU_FofsSettings extends SU_Module {
|
|
17 |
function get_module_subtitle() { return __('Settings', 'seo-ultimate'); }
|
18 |
function get_settings_key() { return '404s'; }
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
function admin_page_contents() {
|
21 |
$this->admin_form_start();
|
22 |
$this->checkbox('log_enabled', __('Continue monitoring for new 404 errors', 'seo-ultimate'), __('Monitoring Settings', 'seo-ultimate'));
|
@@ -25,6 +36,7 @@ class SU_FofsSettings extends SU_Module {
|
|
25 |
, 'log_spiders' => array('description' => __('404s generated by search engine spiders', 'seo-ultimate'), 'indent' => true)
|
26 |
, 'log_errors_with_referers' => array('description' => __('404s with referring URLs', 'seo-ultimate'), 'indent' => true)
|
27 |
), __('Log Restrictions', 'seo-ultimate'));
|
|
|
28 |
$this->textarea('exceptions', __('URLs to Ignore', 'seo-ultimate') . '<br /><small><em>' . __('(Use * as wildcard)', 'seo-ultimate') . '</em></small>');
|
29 |
$this->admin_form_end();
|
30 |
}
|
17 |
function get_module_subtitle() { return __('Settings', 'seo-ultimate'); }
|
18 |
function get_settings_key() { return '404s'; }
|
19 |
|
20 |
+
function get_default_settings() {
|
21 |
+
return array(
|
22 |
+
'exceptions' => "*/favicon.ico\n*/apple-touch-icon.png\n*/pingserver.php\n*/xmlrpc.php"
|
23 |
+
, 'max_log_size' => 100
|
24 |
+
, 'log_enabled' => $this->flush_setting('log_hits', true, 'settings')
|
25 |
+
, 'restrict_logging' => true
|
26 |
+
, 'log_spiders' => true
|
27 |
+
, 'log_errors_with_referers' => true
|
28 |
+
);
|
29 |
+
}
|
30 |
+
|
31 |
function admin_page_contents() {
|
32 |
$this->admin_form_start();
|
33 |
$this->checkbox('log_enabled', __('Continue monitoring for new 404 errors', 'seo-ultimate'), __('Monitoring Settings', 'seo-ultimate'));
|
36 |
, 'log_spiders' => array('description' => __('404s generated by search engine spiders', 'seo-ultimate'), 'indent' => true)
|
37 |
, 'log_errors_with_referers' => array('description' => __('404s with referring URLs', 'seo-ultimate'), 'indent' => true)
|
38 |
), __('Log Restrictions', 'seo-ultimate'));
|
39 |
+
$this->textbox('max_log_size', __('Maximum Log Entries', 'seo-ultimate'), $this->get_default_setting('max_log_size'));
|
40 |
$this->textarea('exceptions', __('URLs to Ignore', 'seo-ultimate') . '<br /><small><em>' . __('(Use * as wildcard)', 'seo-ultimate') . '</em></small>');
|
41 |
$this->admin_form_end();
|
42 |
}
|
modules/404s/{fofs-log.css → fofs.css}
RENAMED
@@ -24,4 +24,8 @@
|
|
24 |
|
25 |
#su-fofs .su-404s-clear-log {
|
26 |
float: right;
|
|
|
|
|
|
|
|
|
27 |
}
|
24 |
|
25 |
#su-fofs .su-404s-clear-log {
|
26 |
float: right;
|
27 |
+
}
|
28 |
+
|
29 |
+
#su-fofs .form-table input#max_log_size {
|
30 |
+
width: 5em;
|
31 |
}
|
modules/class.su-module.php
CHANGED
@@ -2166,7 +2166,7 @@ class SU_Module {
|
|
2166 |
if ($current === '') $current = array_shift(array_keys($options));
|
2167 |
$name = "_su_".su_esc_attr($name);
|
2168 |
|
2169 |
-
$html = "<tr class='dropdown' valign='middle'>\n<th scope='row'>$grouptext</th>\n<td><fieldset><legend class='hidden'>$grouptext</legend>\n";
|
2170 |
$html .= "<select name='$name' id='$name' onchange='javascript:su_toggle_select_children(this)'>";
|
2171 |
$html .= suhtml::option_tags($options, $current);
|
2172 |
$html .= "</select>\n";
|
2166 |
if ($current === '') $current = array_shift(array_keys($options));
|
2167 |
$name = "_su_".su_esc_attr($name);
|
2168 |
|
2169 |
+
$html = "<tr class='dropdown' valign='middle'>\n<th scope='row'><label for='$name'>$grouptext</label></th>\n<td><fieldset><legend class='hidden'>$grouptext</legend>\n";
|
2170 |
$html .= "<select name='$name' id='$name' onchange='javascript:su_toggle_select_children(this)'>";
|
2171 |
$html .= suhtml::option_tags($options, $current);
|
2172 |
$html .= "</select>\n";
|
modules/documentation.txt
CHANGED
@@ -22,6 +22,8 @@ You can perform the following actions on each entry in the log:
|
|
22 |
|
23 |
= Settings Help =
|
24 |
|
|
|
|
|
25 |
* **Monitoring Settings**
|
26 |
|
27 |
* **Continue monitoring for new 404 errors** -- If disabled, 404 Monitor will keep existing 404 errors in the log but won't add any new ones.
|
@@ -33,6 +35,8 @@ You can perform the following actions on each entry in the log:
|
|
33 |
* **404s generated by search engine spiders** -- When logging restriction is enabled, this option will make an exception for 404 errors generated by one of the top search engines (Google, Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).
|
34 |
* **404s with referring URLs** -- When logging restriction is enabled, this option will make an exception for 404 errors generated by users who click a link on your site or another site first before ending up at a 404 page on your site.
|
35 |
|
|
|
|
|
36 |
* **URLs to Ignore** -- URLs entered here will be ignored whenever they generate 404 errors in the future. You can use astericks (*) as wildcards.
|
37 |
|
38 |
= Troubleshooting =
|
22 |
|
23 |
= Settings Help =
|
24 |
|
25 |
+
The following options are available on the Settings tab:
|
26 |
+
|
27 |
* **Monitoring Settings**
|
28 |
|
29 |
* **Continue monitoring for new 404 errors** -- If disabled, 404 Monitor will keep existing 404 errors in the log but won't add any new ones.
|
35 |
* **404s generated by search engine spiders** -- When logging restriction is enabled, this option will make an exception for 404 errors generated by one of the top search engines (Google, Yahoo, Baidu, Bing, Yandex, Soso, Ask.com, Sogou, or AltaVista).
|
36 |
* **404s with referring URLs** -- When logging restriction is enabled, this option will make an exception for 404 errors generated by users who click a link on your site or another site first before ending up at a 404 page on your site.
|
37 |
|
38 |
+
* **Maximum Log Entries** -- Here you can set the maximum number of log entries that 404 Monitor will keep at a time. Setting this to a reasonable number will help keep database usage under control. If you change this setting, it will take effect the next time a 404 is logged.
|
39 |
+
|
40 |
* **URLs to Ignore** -- URLs entered here will be ignored whenever they generate 404 errors in the future. You can use astericks (*) as wildcards.
|
41 |
|
42 |
= Troubleshooting =
|
plugin/class.seo-ultimate.php
CHANGED
@@ -1346,6 +1346,7 @@ class SEO_Ultimate {
|
|
1346 |
*
|
1347 |
* @since 0.1
|
1348 |
* @uses $modules
|
|
|
1349 |
*
|
1350 |
* @param string $screen The admin screen currently being viewed (post, page). Defaults to post. Optional.
|
1351 |
* @return string Concatenated <tr>(field)</tr> strings.
|
1346 |
*
|
1347 |
* @since 0.1
|
1348 |
* @uses $modules
|
1349 |
+
* @uses get_postmeta_array();
|
1350 |
*
|
1351 |
* @param string $screen The admin screen currently being viewed (post, page). Defaults to post. Optional.
|
1352 |
* @return string Concatenated <tr>(field)</tr> strings.
|
plugin/global.css
CHANGED
@@ -126,12 +126,15 @@ div.su-help h6 {
|
|
126 |
}
|
127 |
|
128 |
#su-postmeta-box table,
|
129 |
-
#su-postmeta-box table td,
|
130 |
#su-postmeta-box table td input.regular-text,
|
131 |
#su-postmeta-box table td textarea {
|
132 |
width: 100%;
|
133 |
}
|
134 |
|
|
|
|
|
|
|
|
|
135 |
/* PLUGIN NOTICES */
|
136 |
|
137 |
#wpwrap .su-plugin-notice .update-message, #wpwrap .su-plugin-update-info {
|
126 |
}
|
127 |
|
128 |
#su-postmeta-box table,
|
|
|
129 |
#su-postmeta-box table td input.regular-text,
|
130 |
#su-postmeta-box table td textarea {
|
131 |
width: 100%;
|
132 |
}
|
133 |
|
134 |
+
#su-postmeta-box table th {
|
135 |
+
width: 12em;
|
136 |
+
}
|
137 |
+
|
138 |
/* PLUGIN NOTICES */
|
139 |
|
140 |
#wpwrap .su-plugin-notice .update-message, #wpwrap .su-plugin-update-info {
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
-
Stable tag: 3.
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over titles, noindex/nofollow, meta tags, slugs, canonical tags, "more" links, 404 errors, rich snippets, and more.
|
9 |
|
@@ -11,11 +11,11 @@ This all-in-one SEO plugin gives you control over titles, noindex/nofollow, meta
|
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
|
|
14 |
* Version 3.5 adds the Sharing Facilitator module
|
15 |
* Version 3.4 adds the option to ignore 404s from specific URLs or wildcard URL patterns
|
16 |
* Version 3.3 adds the option to only log 404s from search engines and/or referrers
|
17 |
* Version 3.2 adds CSV import/export for Deeplink Juggernaut
|
18 |
-
* Version 3.1 adds more Deeplink Juggernaut features
|
19 |
|
20 |
= Features =
|
21 |
|
@@ -43,7 +43,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
43 |
* Go beyond the basic canonical tag functionality of WordPress 2.9+ with SEO Ultimate's support for category/tag/date/author archives.
|
44 |
* Redirect requests for non-existent pagination with a simple checkbox.
|
45 |
|
46 |
-
* **404 Monitor** -- UPDATED in Version 3.
|
47 |
* Improve the visiting experience of users and spiders by keeping tabs on "page not found" errors. (Use a redirection plugin to point dead-end URLs to your content.)
|
48 |
* Find out what URLs are referring visitors to 404 errors.
|
49 |
* The default settings hone in on the most important errors by only logging 404s that either have a referring URL or are generated by a search engine spider.
|
@@ -88,7 +88,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
88 |
* Use to add Google Analytics, Feedburner FeedFlare, Google AdSense section targeting, and other SEO/SEM-enhancing code snippets.
|
89 |
* Code remains even when switching themes.
|
90 |
|
91 |
-
* **Rich Snippet Creator**
|
92 |
* Easily add rich snippet code to your review posts.
|
93 |
* Attract more search traffic with eye-catching supplementary SERP data.
|
94 |
* Can add code to old review posts automatically.
|
@@ -118,7 +118,6 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
|
|
118 |
* **Features Coming Soon**
|
119 |
* Automatic XHTML validation checking
|
120 |
* Nofollow options
|
121 |
-
* Title rewriting for attachments and custom post types
|
122 |
* ...And much, much more! Install SEO Ultimate today and use WordPress's automatic plugin updater to get new features as they're released.
|
123 |
|
124 |
[**Download**](http://downloads.wordpress.org/plugin/seo-ultimate.zip) **your free copy of SEO Ultimate today.**
|
@@ -205,6 +204,13 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
205 |
|
206 |
== Changelog ==
|
207 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
= Version 3.5 (June 26, 2010) =
|
209 |
* Feature: Added the Sharing Facilitator module
|
210 |
* Feature: Rich Snippet Creator now supports half-star ratings (0.5, 1.5, 2.5, etc) for reviews
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
+
Stable tag: 3.6
|
7 |
|
8 |
This all-in-one SEO plugin gives you control over titles, noindex/nofollow, meta tags, slugs, canonical tags, "more" links, 404 errors, rich snippets, and more.
|
9 |
|
11 |
|
12 |
= Recent Releases =
|
13 |
|
14 |
+
* Version 3.6 adds a maximum log size option to 404 Monitor
|
15 |
* Version 3.5 adds the Sharing Facilitator module
|
16 |
* Version 3.4 adds the option to ignore 404s from specific URLs or wildcard URL patterns
|
17 |
* Version 3.3 adds the option to only log 404s from search engines and/or referrers
|
18 |
* Version 3.2 adds CSV import/export for Deeplink Juggernaut
|
|
|
19 |
|
20 |
= Features =
|
21 |
|
43 |
* Go beyond the basic canonical tag functionality of WordPress 2.9+ with SEO Ultimate's support for category/tag/date/author archives.
|
44 |
* Redirect requests for non-existent pagination with a simple checkbox.
|
45 |
|
46 |
+
* **404 Monitor** -- UPDATED in Version 3.6
|
47 |
* Improve the visiting experience of users and spiders by keeping tabs on "page not found" errors. (Use a redirection plugin to point dead-end URLs to your content.)
|
48 |
* Find out what URLs are referring visitors to 404 errors.
|
49 |
* The default settings hone in on the most important errors by only logging 404s that either have a referring URL or are generated by a search engine spider.
|
88 |
* Use to add Google Analytics, Feedburner FeedFlare, Google AdSense section targeting, and other SEO/SEM-enhancing code snippets.
|
89 |
* Code remains even when switching themes.
|
90 |
|
91 |
+
* **Rich Snippet Creator**
|
92 |
* Easily add rich snippet code to your review posts.
|
93 |
* Attract more search traffic with eye-catching supplementary SERP data.
|
94 |
* Can add code to old review posts automatically.
|
118 |
* **Features Coming Soon**
|
119 |
* Automatic XHTML validation checking
|
120 |
* Nofollow options
|
|
|
121 |
* ...And much, much more! Install SEO Ultimate today and use WordPress's automatic plugin updater to get new features as they're released.
|
122 |
|
123 |
[**Download**](http://downloads.wordpress.org/plugin/seo-ultimate.zip) **your free copy of SEO Ultimate today.**
|
204 |
|
205 |
== Changelog ==
|
206 |
|
207 |
+
= Version 3.6 (June 28, 2010) =
|
208 |
+
* Feature: Users can now set the maximum number of log entries that 404 Monitor will keep at a time
|
209 |
+
* Improvement: Fixed aesthetic issue that appeared in SEO Settings box under certain configurations
|
210 |
+
* Bugfix: Browsers will no longer jump to the top of the screen when expanding/collapsing the Referer/User Agent lists in 404 Monitor
|
211 |
+
* Bugfix: Fixed invalid HTML in 404 Monitor
|
212 |
+
* Bugfix: Fixed PHP4 error by removing usage of PHP5-only str_split function
|
213 |
+
|
214 |
= Version 3.5 (June 26, 2010) =
|
215 |
* Feature: Added the Sharing Facilitator module
|
216 |
* Feature: Rich Snippet Creator now supports half-star ratings (0.5, 1.5, 2.5, etc) for reviews
|
seo-ultimate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, "more" links, 404 errors, rich snippets, and more.
|
6 |
-
Version: 3.
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
|
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
-
* @version 3.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '2.8');
|
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define("SU_PLUGIN_NAME", "SEO Ultimate");
|
49 |
define("SU_PLUGIN_URI", "http://www.seodesignsolutions.com/wordpress-seo/");
|
50 |
-
define("SU_VERSION", "3.
|
51 |
define("SU_AUTHOR", "SEO Design Solutions");
|
52 |
define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
|
53 |
-
define("SU_USER_AGENT", "SeoUltimate/3.
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
3 |
Plugin Name: SEO Ultimate
|
4 |
Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
|
5 |
Description: This all-in-one SEO plugin gives you control over title tags, noindex/nofollow, meta tags, rich snippets, slugs, canonical tags, "more" links, 404 errors, rich snippets, and more.
|
6 |
+
Version: 3.6
|
7 |
Author: SEO Design Solutions
|
8 |
Author URI: http://www.seodesignsolutions.com/
|
9 |
Text Domain: seo-ultimate
|
12 |
/**
|
13 |
* The main SEO Ultimate plugin file.
|
14 |
* @package SeoUltimate
|
15 |
+
* @version 3.6
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
47 |
//Reading plugin info from constants is faster than trying to parse it from the header above.
|
48 |
define("SU_PLUGIN_NAME", "SEO Ultimate");
|
49 |
define("SU_PLUGIN_URI", "http://www.seodesignsolutions.com/wordpress-seo/");
|
50 |
+
define("SU_VERSION", "3.6");
|
51 |
define("SU_AUTHOR", "SEO Design Solutions");
|
52 |
define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
|
53 |
+
define("SU_USER_AGENT", "SeoUltimate/3.6");
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|
seo-ultimate.pot
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Translation of the WordPress plugin SEO Ultimate 3.
|
2 |
# Copyright (C) 2010 SEO Design Solutions
|
3 |
# This file is distributed under the same license as the SEO Ultimate package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
@@ -6,9 +6,9 @@
|
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version: SEO Ultimate 3.
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
11 |
-
"POT-Creation-Date: 2010-06-
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -43,90 +43,90 @@ msgstr ""
|
|
43 |
msgid "Log"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: modules/404s/fofs-log.php:
|
47 |
msgid "Actions"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: modules/404s/fofs-log.php:
|
51 |
msgid "Hits"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: modules/404s/fofs-log.php:
|
55 |
msgid "URL with 404 Error"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: modules/404s/fofs-log.php:
|
59 |
msgid "Date of Most Recent Hit"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: modules/404s/fofs-log.php:
|
63 |
msgid "Referers"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: modules/404s/fofs-log.php:
|
67 |
msgid "User Agents"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: modules/404s/fofs-log.php:
|
71 |
msgid ""
|
72 |
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
73 |
"Settings tab."
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: modules/404s/fofs-log.php:
|
77 |
msgid "The log entry was successfully deleted."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: modules/404s/fofs-log.php:
|
81 |
msgid "This log entry has already been deleted."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: modules/404s/fofs-log.php:
|
85 |
msgid "The log was successfully cleared."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: modules/404s/fofs-log.php:
|
89 |
msgid "No 404 errors in the log."
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: modules/404s/fofs-log.php:
|
93 |
msgid "Open URL in new window (will not be logged)"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: modules/404s/fofs-log.php:
|
97 |
msgid "Query Google for cached version of URL (opens in new window)"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: modules/404s/fofs-log.php:
|
101 |
msgid "Remove this URL from the log"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: modules/404s/fofs-log.php:
|
105 |
#, php-format
|
106 |
msgid "%s at %s"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: modules/404s/fofs-log.php:
|
110 |
msgid "View list of referring URLs"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: modules/404s/fofs-log.php:
|
114 |
msgid "View list of user agents"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: modules/404s/fofs-log.php:
|
118 |
msgid "Referring URLs"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: modules/404s/fofs-log.php:
|
122 |
msgid "Hide list"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: modules/404s/fofs-log.php:
|
126 |
msgid "Are you sure you want to delete all 404 log entries?"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: modules/404s/fofs-log.php:
|
130 |
msgid "Clear Log"
|
131 |
msgstr ""
|
132 |
|
@@ -138,35 +138,39 @@ msgstr ""
|
|
138 |
msgid "Settings"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: modules/404s/fofs-settings.php:
|
142 |
msgid "Continue monitoring for new 404 errors"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: modules/404s/fofs-settings.php:
|
146 |
msgid "Monitoring Settings"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: modules/404s/fofs-settings.php:
|
150 |
msgid "Only log these types of 404 errors:"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: modules/404s/fofs-settings.php:
|
154 |
msgid "404s generated by search engine spiders"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: modules/404s/fofs-settings.php:
|
158 |
msgid "404s with referring URLs"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: modules/404s/fofs-settings.php:
|
162 |
msgid "Log Restrictions"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: modules/404s/fofs-settings.php:
|
|
|
|
|
|
|
|
|
166 |
msgid "URLs to Ignore"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: modules/404s/fofs-settings.php:
|
170 |
msgid "(Use * as wildcard)"
|
171 |
msgstr ""
|
172 |
|
@@ -1022,7 +1026,7 @@ msgstr ""
|
|
1022 |
msgid "SEO Design Solutions Whitepapers"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 3.
|
1026 |
#. Author of the plugin/theme
|
1027 |
#: modules/sds-blog/sds-blog.php:49
|
1028 |
msgid "SEO Design Solutions"
|
@@ -1328,7 +1332,7 @@ msgstr ""
|
|
1328 |
msgid "SEO Ultimate Plugin Settings"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#. #-#-#-#-# plugin.pot (SEO Ultimate 3.
|
1332 |
#. Plugin Name of the plugin/theme
|
1333 |
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:724
|
1334 |
msgid "SEO Ultimate"
|
@@ -1667,7 +1671,7 @@ msgid ""
|
|
1667 |
"to everyone."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: plugin/class.seo-ultimate.php:
|
1671 |
msgid "SEO Settings"
|
1672 |
msgstr ""
|
1673 |
|
1 |
+
# Translation of the WordPress plugin SEO Ultimate 3.6 by SEO Design Solutions.
|
2 |
# Copyright (C) 2010 SEO Design Solutions
|
3 |
# This file is distributed under the same license as the SEO Ultimate package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: SEO Ultimate 3.6\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/seo-ultimate\n"
|
11 |
+
"POT-Creation-Date: 2010-06-28 13:48+0000\n"
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
43 |
msgid "Log"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: modules/404s/fofs-log.php:115 modules/class.su-module.php:1183
|
47 |
msgid "Actions"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: modules/404s/fofs-log.php:116
|
51 |
msgid "Hits"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: modules/404s/fofs-log.php:117
|
55 |
msgid "URL with 404 Error"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: modules/404s/fofs-log.php:118
|
59 |
msgid "Date of Most Recent Hit"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: modules/404s/fofs-log.php:119
|
63 |
msgid "Referers"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: modules/404s/fofs-log.php:120 modules/404s/fofs-log.php:223
|
67 |
msgid "User Agents"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: modules/404s/fofs-log.php:136
|
71 |
msgid ""
|
72 |
"New 404 errors will not be recorded because 404 logging is disabled on the "
|
73 |
"Settings tab."
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: modules/404s/fofs-log.php:143
|
77 |
msgid "The log entry was successfully deleted."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: modules/404s/fofs-log.php:145
|
81 |
msgid "This log entry has already been deleted."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: modules/404s/fofs-log.php:154
|
85 |
msgid "The log was successfully cleared."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: modules/404s/fofs-log.php:158
|
89 |
msgid "No 404 errors in the log."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: modules/404s/fofs-log.php:182
|
93 |
msgid "Open URL in new window (will not be logged)"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: modules/404s/fofs-log.php:183
|
97 |
msgid "Query Google for cached version of URL (opens in new window)"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: modules/404s/fofs-log.php:184
|
101 |
msgid "Remove this URL from the log"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: modules/404s/fofs-log.php:187
|
105 |
#, php-format
|
106 |
msgid "%s at %s"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: modules/404s/fofs-log.php:191
|
110 |
msgid "View list of referring URLs"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: modules/404s/fofs-log.php:192
|
114 |
msgid "View list of user agents"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: modules/404s/fofs-log.php:202
|
118 |
msgid "Referring URLs"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: modules/404s/fofs-log.php:203 modules/404s/fofs-log.php:224
|
122 |
msgid "Hide list"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: modules/404s/fofs-log.php:254
|
126 |
msgid "Are you sure you want to delete all 404 log entries?"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: modules/404s/fofs-log.php:256
|
130 |
msgid "Clear Log"
|
131 |
msgstr ""
|
132 |
|
138 |
msgid "Settings"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: modules/404s/fofs-settings.php:33
|
142 |
msgid "Continue monitoring for new 404 errors"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: modules/404s/fofs-settings.php:33
|
146 |
msgid "Monitoring Settings"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: modules/404s/fofs-settings.php:35
|
150 |
msgid "Only log these types of 404 errors:"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: modules/404s/fofs-settings.php:36
|
154 |
msgid "404s generated by search engine spiders"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: modules/404s/fofs-settings.php:37
|
158 |
msgid "404s with referring URLs"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: modules/404s/fofs-settings.php:38
|
162 |
msgid "Log Restrictions"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: modules/404s/fofs-settings.php:39
|
166 |
+
msgid "Maximum Log Entries"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: modules/404s/fofs-settings.php:40
|
170 |
msgid "URLs to Ignore"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: modules/404s/fofs-settings.php:40
|
174 |
msgid "(Use * as wildcard)"
|
175 |
msgstr ""
|
176 |
|
1026 |
msgid "SEO Design Solutions Whitepapers"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 3.6) #-#-#-#-#
|
1030 |
#. Author of the plugin/theme
|
1031 |
#: modules/sds-blog/sds-blog.php:49
|
1032 |
msgid "SEO Design Solutions"
|
1332 |
msgid "SEO Ultimate Plugin Settings"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#. #-#-#-#-# plugin.pot (SEO Ultimate 3.6) #-#-#-#-#
|
1336 |
#. Plugin Name of the plugin/theme
|
1337 |
#: modules/settings/settings.php:14 plugin/class.seo-ultimate.php:724
|
1338 |
msgid "SEO Ultimate"
|
1671 |
"to everyone."
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: plugin/class.seo-ultimate.php:1399
|
1675 |
msgid "SEO Settings"
|
1676 |
msgstr ""
|
1677 |
|