Changeset 794183
- Timestamp:
- 10/26/2013 05:10:34 PM (12 years ago)
- Location:
- jquery-vertical-scroller
- Files:
-
- 17 added
- 3 edited
-
tags/2.3 (added)
-
tags/2.3/assets (added)
-
tags/2.3/assets/screenshot-1.png (added)
-
tags/2.3/assets/screenshot-2.png (added)
-
tags/2.3/assets/screenshot-3.png (added)
-
tags/2.3/assets/screenshot-4.png (added)
-
tags/2.3/languages (added)
-
tags/2.3/languages/it.mo (added)
-
tags/2.3/languages/it.po (added)
-
tags/2.3/languages/sg-jqvs-it_IT.mo (added)
-
tags/2.3/languages/sg-jqvs-it_IT.po (added)
-
tags/2.3/license.txt (added)
-
tags/2.3/readme.txt (added)
-
tags/2.3/scripts (added)
-
tags/2.3/scripts/jquery-scroller-v1.min.js (added)
-
tags/2.3/sg-jqvs-widget-plugin.php (added)
-
tags/2.3/sgjvs_stylesheet.css (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/sg-jqvs-widget-plugin.php (modified) (10 diffs)
-
trunk/sgjvs_stylesheet.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jquery-vertical-scroller/trunk/readme.txt
r747969 r794183 1 === jQuery Vertical Scroller ===1 === jQuery Vertical Scroller === 2 2 Contributors: vamsitech, sirisgraphics 3 3 Tags: widget, jQuery, vertical slider, velocity, direction, post scroller, Free scrolling news wordpress plugin, News plugin WordPress, Scrolling posts WordPress, Vertical posts, Vertical scrolling posts, WordPress dynamic posts, scroller, ticker, widget, Recent Posts scroller 4 4 Requires at least: 3.4 5 Tested up to: 3. 5.26 Stable tag: 2. 35 Tested up to: 3.7 6 Stable tag: 2.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 114 114 == Changelog == 115 115 116 = 2.3 = 117 * Added option to hide titles from scroll when using as widget and shortcode 118 * Added option to customize date formats for widget and shortcode 119 * Added functionality to manage element layout through css3 (basic functionality only) 120 116 121 = 2.2 = 117 122 * Added full content support in shortcode … … 142 147 == Upgrade Notice == 143 148 144 = 2.3 = 145 * Added option to hide titles from scroll when using as widget and shortcode 146 * Added option to customize date formats for widget and shortcode 147 * Added functionality to manage element layout through css3 (basic functionality only) 149 = 2.4 = 150 * Tested with Wordpress Version 3.7 148 151 * As usual, if you any hiccups, email us at info@sirisgraphics.com -
jquery-vertical-scroller/trunk/sg-jqvs-widget-plugin.php
r747964 r794183 4 4 Plugin URI: http://sirisgraphics.com/development/jquery-vertical-scroller-2-0 5 5 Description: A plugin to add a widget to scroll posts in your sidebar or footer widgets for WordPress powered by jQuery 6 Version: 2. 36 Version: 2.4 7 7 Author: Vamsi Pulavarthi 8 8 Author URI: http://sirisgraphics.com/ … … 54 54 55 55 //Setup the default values for the widget 56 $defaults = array( 'title' => $default_title, 56 $defaults = array( 'title' => $default_title, 57 57 'mywidth' => '100', 58 58 'myheight' => '200', 59 'mycategory' => '1', 60 'mycount' => '5', 61 'mydirection' => 'bottom', 62 'myvelocity' => '50', 63 'myposttype' => 'post', 59 'mycategory' => '1', 60 'mycount' => '5', 61 'mydirection' => 'bottom', 62 'myvelocity' => '50', 63 'myposttype' => 'post', 64 64 'myincludecontent' => 'no', 65 65 'myshowdate' => 'false', … … 67 67 'myshowdateformat' => 'F, Y', 68 68 'myreadmoretext' => $default_readmore ); 69 69 70 70 //Assign the default values or original settings to current widget 71 71 $instance = wp_parse_args( (array) $instance, $defaults ); … … 120 120 <p> 121 121 <?php _e( 'Direction:', 'sg-jqvs' ); ?><br /> 122 <input type="radio" 123 name="<?php echo $this->get_field_name( 'mydirection' ); ?>" 122 <input type="radio" 123 name="<?php echo $this->get_field_name( 'mydirection' ); ?>" 124 124 value="top" <?php checked( $mydirection, 'top' ); ?> ><?php _e( 'Top-to-Bottom', 'sg-jqvs' ); ?> 125 125 <br /> 126 <input type="radio" 127 name="<?php echo $this->get_field_name( 'mydirection' ); ?>" 126 <input type="radio" 127 name="<?php echo $this->get_field_name( 'mydirection' ); ?>" 128 128 value="bottom" <?php checked( $mydirection, 'bottom' ); ?> ><?php _e( 'Bottom-to-Top', 'sg-jqvs' ); ?> 129 129 </p> … … 152 152 <?php _e( 'Include Content:', 'sg-jqvs' ); ?> 153 153 <br /> 154 <input type="radio" 155 name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>" 154 <input type="radio" 155 name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>" 156 156 value="no" <?php checked( $myincludecontent, 'no' ); ?> ><?php _e( 'No', 'sg-jqvs' ); ?> 157 157 <br /> 158 <input type="radio" 159 name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>" 158 <input type="radio" 159 name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>" 160 160 value="content" <?php checked( $myincludecontent, 'content' ); ?> ><?php _e( 'Full Content', 'sg-jqvs' ); ?> 161 161 <br /> 162 <input type="radio" 163 name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>" 162 <input type="radio" 163 name="<?php echo $this->get_field_name( 'myincludecontent' ); ?>" 164 164 value="excerpt" <?php checked( $myincludecontent, 'excerpt' ); ?> ><?php _e( 'Excerpt only', 'sg-jqvs' ); ?> 165 165 </p> 166 166 <p> 167 167 <?php _e( 'Show Title:', 'sg-jqvs' ); ?><br /> 168 <input type="radio" 169 name="<?php echo $this->get_field_name( 'myshowtitle' ); ?>" 168 <input type="radio" 169 name="<?php echo $this->get_field_name( 'myshowtitle' ); ?>" 170 170 value="true" <?php checked( $myshowtitle, 'true' ); ?> ><?php _e( 'True', 'sg-jqvs' ); ?> 171 171 <br /> 172 <input type="radio" 173 name="<?php echo $this->get_field_name( 'myshowtitle' ); ?>" 172 <input type="radio" 173 name="<?php echo $this->get_field_name( 'myshowtitle' ); ?>" 174 174 value="false" <?php checked( $myshowtitle, 'false' ); ?> ><?php _e( 'False', 'sg-jqvs' ); ?> 175 175 </p> 176 176 <p> 177 177 <?php _e( 'Show Date:', 'sg-jqvs' ); ?><br /> 178 <input type="radio" 179 name="<?php echo $this->get_field_name( 'myshowdate' ); ?>" 178 <input type="radio" 179 name="<?php echo $this->get_field_name( 'myshowdate' ); ?>" 180 180 value="true" <?php checked( $myshowdate, 'true' ); ?> ><?php _e( 'True', 'sg-jqvs' ); ?> 181 181 <br /> 182 <input type="radio" 183 name="<?php echo $this->get_field_name( 'myshowdate' ); ?>" 182 <input type="radio" 183 name="<?php echo $this->get_field_name( 'myshowdate' ); ?>" 184 184 value="false" <?php checked( $myshowdate, 'false' ); ?> ><?php _e( 'False', 'sg-jqvs' ); ?> 185 185 </p> 186 186 <p> 187 187 <?php _e( 'Date format:', 'sg-jqvs' ); ?><br /> 188 <input type="radio" 189 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 188 <input type="radio" 189 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 190 190 value="d/m/Y" <?php checked( $myshowdateformat, 'd/m/y' ); ?> ><?php _e( '01/01/2013', 'sg-jqvs' ); ?> 191 191 <br /> 192 <input type="radio" 193 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 192 <input type="radio" 193 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 194 194 value="F, Y" <?php checked( $myshowdateformat, 'F, Y' ); ?> ><?php _e( 'January, 2013', 'sg-jqvs' ); ?> 195 195 <br /> 196 <input type="radio" 197 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 196 <input type="radio" 197 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 198 198 value="F d, Y" <?php checked( $myshowdateformat, 'F d, Y' ); ?> ><?php _e( 'January 01, 2013', 'sg-jqvs' ); ?> 199 199 <br /> 200 <input type="radio" 201 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 200 <input type="radio" 201 name="<?php echo $this->get_field_name( 'myshowdateformat' ); ?>" 202 202 value="l, F d, Y" <?php checked( $myshowdateformat, 'l, F j, Y' ); ?> ><?php _e( 'Friday, January 01, 2013', 'sg-jqvs' ); ?> 203 203 <br /> … … 317 317 <?php if ( $myshowdate == 'true' ) { ?> 318 318 <p class="sgjvs_widget_date"> 319 <?php 319 <?php 320 320 $pfx_date = get_the_date( $myshowdateformat ); 321 echo $pfx_date; 321 echo $pfx_date; 322 322 ?> 323 323 </p> … … 325 325 <?php if ( $myincludecontent == 'content' ) { ?> 326 326 <p class="sgjvs_widget_content"> 327 <?php 328 $mysgjvscontent = get_the_content(); 327 <?php 328 $mysgjvscontent = get_the_content(); 329 329 echo $mysgjvscontent; 330 330 ?> … … 333 333 <p class="sgjvs_widget_excerpt"> 334 334 <?php 335 $mysgjvsexcerpt = get_the_excerpt(); 335 $mysgjvsexcerpt = get_the_excerpt(); 336 336 echo $mysgjvsexcerpt; 337 337 ?> … … 377 377 "showdate" => 'false', 378 378 "showdateformat" => 'l, F j, Y', 379 "showtitle" => 'true' 379 "showtitle" => 'true' 380 380 ), $atts ) ); 381 381 … … 434 434 } 435 435 .scrollingtext ul { 436 text-indent: none; 436 text-indent: none; 437 437 } 438 438 .scrollingtext ul li { -
jquery-vertical-scroller/trunk/sgjvs_stylesheet.css
r747964 r794183 3 3 Plugin URI: http://sirisgraphics.com/development/jquery-vertical-scroller-2-0 4 4 Description: A plugin to add a widget to scroll posts in your sidebar or footer widgets for WordPress powered by jQuery 5 Version: 2. 35 Version: 2.4 6 6 Author: Vamsi Pulavarthi 7 7 Author URI: http://sirisgraphics.com/
Note: See TracChangeset
for help on using the changeset viewer.