Changeset 1319823
- Timestamp:
- 01/02/2016 08:52:43 AM (10 years ago)
- Location:
- generalstats/trunk
- Files:
-
- 2 edited
-
generalstats.php (modified) (9 diffs)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
generalstats/trunk/generalstats.php
r1210896 r1319823 6 6 Description: Counts the number of users, categories, posts, comments, pages, links, tags, link-categories, words in posts, words in comments and words in pages. 7 7 Author: Dr. Bernhard Riedl 8 Version: 3.3 08 Version: 3.31 9 9 Author URI: http://www.bernhard-riedl.com/ 10 10 */ … … 1730 1730 1731 1731 function head_meta() { 1732 echo("<meta name=\"".$this->get_nicename()."\" content=\"3.3 0\"/>\n");1732 echo("<meta name=\"".$this->get_nicename()."\" content=\"3.31\"/>\n"); 1733 1733 } 1734 1734 … … 3302 3302 */ 3303 3303 3304 jQuery('#<?php echo($this->get_prefix().'form_settings'); ?> input:text'). keyup(function (e) {3304 jQuery('#<?php echo($this->get_prefix().'form_settings'); ?> input:text').on('input', function (e) { 3305 3305 var submit_elements=jQuery('#<?php echo($this->get_prefix().'form_settings'); ?> :submit'); 3306 3306 … … 3526 3526 <li>You can activate an optional ".$this->get_section_link($this->options_page_sections, 'ajax_refresh', 'Ajax refresh for automatical updates')." of your stats-output.</li> 3527 3527 3528 <li>Don't forget to ad opt the ".$this->get_section_link($this->options_page_sections, 'performance', 'caching and performance options')." to your server environment.</li>3528 <li>Don't forget to adapt the ".$this->get_section_link($this->options_page_sections, 'performance', 'caching and performance options')." to your server environment.</li> 3529 3529 3530 3530 <li>Before you publish the results you can use the ".$this->get_section_link($this->options_page_sections, 'preview', 'Preview Section').".</li> … … 3551 3551 <li>You can add available stats or remove selected stats by moving them between the lists. This can be done either by using drag and drop or clicking on the double-arrow<div class="dashicons dashicons-leftright"></div>.</li> 3552 3552 3553 <li>To customize the descriptions of a stat click on it and edit the output name in the form which appears either on the right or below the lists. After clicking <strong>Change</strong> the selected stat's name will be ad opted.</li>3553 <li>To customize the descriptions of a stat click on it and edit the output name in the form which appears either on the right or below the lists. After clicking <strong>Change</strong> the selected stat's name will be adapted.</li> 3554 3554 3555 3555 <li>To re-order the stats within a list either use drag and drop or click on the arrows<div class="dashicons dashicons-arrow-up"></div><div class="dashicons dashicons-arrow-down"></div>on the left side of the particular stat.</li> … … 3764 3764 3765 3765 function callback_settings_manual_selection() { ?> 3766 In this section you can ad opt your stats-selection 'by hand'. Changes you make here are only reflected in the <?php echo($this->get_section_link($this->options_page_sections, 'selection_gui', 'Selection GUI Section')); ?> after clicking on <strong>Save Changes</strong>.3766 In this section you can adapt your stats-selection 'by hand'. Changes you make here are only reflected in the <?php echo($this->get_section_link($this->options_page_sections, 'selection_gui', 'Selection GUI Section')); ?> after clicking on <strong>Save Changes</strong>. 3767 3767 <?php } 3768 3768 … … 3897 3897 3898 3898 function setting_ajax_refresh_time($params=array()) { 3899 $this->setting_textfield('ajax_refresh_time', 'options', 4, 'on keyup="'.$this->get_prefix().'check_integer(jQuery(this), 1, 3600);"');3899 $this->setting_textfield('ajax_refresh_time', 'options', 4, 'oninput="'.$this->get_prefix().'check_integer(jQuery(this), 1, 3600);"'); 3900 3900 } 3901 3901 function setting_renew_nonce($params=array()) { … … 3922 3922 3923 3923 function setting_cache_time($params=array()) { 3924 $this->setting_textfield('cache_time', 'options', 5, 'on keyup="'.$this->get_prefix().'check_integer(jQuery(this), 0, 86400);"');3924 $this->setting_textfield('cache_time', 'options', 5, 'oninput="'.$this->get_prefix().'check_integer(jQuery(this), 0, 86400);"'); 3925 3925 } 3926 3926 … … 3930 3930 3931 3931 function setting_rows_at_once($params=array()) { 3932 $this->setting_textfield('rows_at_once', 'options', 5, 'on keyup="'.$this->get_prefix().'check_integer(jQuery(this), 1, 10000);"');3932 $this->setting_textfield('rows_at_once', 'options', 5, 'oninput="'.$this->get_prefix().'check_integer(jQuery(this), 1, 10000);"'); 3933 3933 } 3934 3934 -
generalstats/trunk/readme.txt
r1290562 r1319823 230 230 == Changelog == 231 231 232 = 3.31 = 233 234 * adapted trigger of error-messages on settings-page to work with copy & paste 235 * fixed some typos 236 232 237 = 3.30 = 233 238 … … 248 253 249 254 * made settings-page retina/hdpi-display ready 250 * ad opted settings-page to be fully touch-display enabled255 * adapted settings-page to be fully touch-display enabled 251 256 * renamed settings-page sections 252 257 * added "Auto-Submitted: auto-generated" to mail-headers … … 279 284 * removed PHP closing tag before EOF 280 285 * removed reference sign on function calls 281 * ad opted plugin-links to the new structure of wordpress.org286 * adapted plugin-links to the new structure of wordpress.org 282 287 * cleaned-up code 283 288 … … 288 293 = 2.34 = 289 294 290 * ad opted 'Defaults'-string to use WordPress internal i18n295 * adapted 'Defaults'-string to use WordPress internal i18n 291 296 * updated support section 292 297 * updated project-information … … 295 300 296 301 * changed handling of contextual help for WordPress 3.3 297 * ad opted handling of default settings302 * adapted handling of default settings 298 303 * external files are now registered in init-hook 299 304
Note: See TracChangeset
for help on using the changeset viewer.