Plugin Directory

Changeset 653024


Ignore:
Timestamp:
01/15/2013 03:14:06 PM (13 years ago)
Author:
andrearufo
Message:

Ver. 1.1

Location:
linear-tag-cloud
Files:
3 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • linear-tag-cloud/tags/1/index.php

    r652970 r653024  
    55Description: A tag clob with bars and not dimensions.
    66Author: Andrea Rufo
    7 Version: 1.0
     7Version: 1.1
    88Author URI: http://www.orangedropdesign.com/
    99
     
    3535        <p>
    3636        <label for="<?php echo $this->get_field_id( 'number' ); ?>">Max number of tags:</label>
    37         <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo $instance['number']; ?>" />   
     37        <input class="widefat" type="number" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo $instance['number']; ?>" request /> 
    3838        </p>
    3939       
    4040        <p>
    4141        <label for="<?php echo $this->get_field_id( 'border' ); ?>">Border color:</label>
    42         <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'border' ); ?>" name="<?php echo $this->get_field_name( 'border' ); ?>" value="<?php echo $instance['border']; ?>" />   
     42        <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'border' ); ?>" name="<?php echo $this->get_field_name( 'border' ); ?>" value="<?php echo $instance['border']; ?>" />   
    4343        </p>
    4444       
    4545        <p>
    4646        <label for="<?php echo $this->get_field_id( 'background' ); ?>">Background color:</label>
    47         <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'background' ); ?>" name="<?php echo $this->get_field_name( 'background' ); ?>" value="<?php echo $instance['background']; ?>" />   
     47        <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'background' ); ?>" name="<?php echo $this->get_field_name( 'background' ); ?>" value="<?php echo $instance['background']; ?>" />   
    4848        </p>
    4949       
    5050        <p>
    51         <label for="<?php echo $this->get_field_id( 'color' ); ?>">Text color:</label>
    52         <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" value="<?php echo $instance['color']; ?>" />   
     51        <label for="<?php echo $this->get_field_id( 'color' ); ?>">Text color (applied on a tag):</label>
     52        <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" value="<?php echo $instance['color']; ?>" /> 
    5353        </p>
    5454           
  • linear-tag-cloud/tags/1/readme.txt

    r652834 r653024  
    11=== Linear Tag Cloud ===
    22Contributors: andrearufo
    3 Donate link: www.orangedropdesign.com
    4 Tags: bar chart, tag cloud, percentage, responsive, chart
     3Donate link: http://www.orangedropdesign.com
     4Tags: bar chart, tag-cloud, responsive, widget, alternative tag
    55Requires at least: 3
    66Tested up to: 3.5
     
    20202. Upload the folder `linear-tag-cloud` to the `/wp-content/plugins/` directory
    21213. Activate the plugin through the 'Plugins' menu in WordPress
    22 4. Add the widget in the sidebar areas and configure it
     224. Add the widget in the sidebar areas and configure it whit max tag number, border color, bars color, link color
    23235. Done!
    2424
    2525== Frequently asked questions ==
    2626
    27 1. Is it possibile to configure it?
     27= Is it possibile to configure it? =
    2828Yes, you can configure max number of tags; background, text and border color of the bars
     29
     30= Can I change the style? =
     31You can apply whatever CSS rules to the elements of the widget. The main class of the `div` contain the tag cloud is `.linear-tag-cloud`.
    2932
    3033== Screenshots ==
    3134
    32351. The control panel in the widget page on Wordpress admin panel
    33 2. An example of the application
    34 3. An example of the application in the Twenty Twelve default Wordpress Theme
     362. An example of the application as widget in a custom theme
     373. An example of the application in the Twenty Twelve default Wordpress theme
    3538
    3639== Changelog ==
    3740
    38 = 0.1 =
    39 * First release
     41= 1.1 =
     42* Some fix
     43* Add HTML5 tags to admin panel
     44
     45= 1.0 =
    4046* Max numbero of tags configurable
    4147* Background and border color configurable for bars
    4248* Text color configurable for link in the bars
    4349
     50= 0.1 =
     51* First release
     52
    4453== Upgrade notice ==
    4554
  • linear-tag-cloud/trunk/index.php

    r652970 r653024  
    55Description: A tag clob with bars and not dimensions.
    66Author: Andrea Rufo
    7 Version: 1.0
     7Version: 1.1
    88Author URI: http://www.orangedropdesign.com/
    99
     
    3535        <p>
    3636        <label for="<?php echo $this->get_field_id( 'number' ); ?>">Max number of tags:</label>
    37         <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo $instance['number']; ?>" />   
     37        <input class="widefat" type="number" id="<?php echo $this->get_field_id( 'number' ); ?>" name="<?php echo $this->get_field_name( 'number' ); ?>" value="<?php echo $instance['number']; ?>" request /> 
    3838        </p>
    3939       
    4040        <p>
    4141        <label for="<?php echo $this->get_field_id( 'border' ); ?>">Border color:</label>
    42         <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'border' ); ?>" name="<?php echo $this->get_field_name( 'border' ); ?>" value="<?php echo $instance['border']; ?>" />   
     42        <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'border' ); ?>" name="<?php echo $this->get_field_name( 'border' ); ?>" value="<?php echo $instance['border']; ?>" />   
    4343        </p>
    4444       
    4545        <p>
    4646        <label for="<?php echo $this->get_field_id( 'background' ); ?>">Background color:</label>
    47         <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'background' ); ?>" name="<?php echo $this->get_field_name( 'background' ); ?>" value="<?php echo $instance['background']; ?>" />   
     47        <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'background' ); ?>" name="<?php echo $this->get_field_name( 'background' ); ?>" value="<?php echo $instance['background']; ?>" />   
    4848        </p>
    4949       
    5050        <p>
    51         <label for="<?php echo $this->get_field_id( 'color' ); ?>">Text color:</label>
    52         <input class="widefat" type="text" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" value="<?php echo $instance['color']; ?>" />   
     51        <label for="<?php echo $this->get_field_id( 'color' ); ?>">Text color (applied on a tag):</label>
     52        <input class="widefat" type="color" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" value="<?php echo $instance['color']; ?>" /> 
    5353        </p>
    5454           
  • linear-tag-cloud/trunk/readme.txt

    r652970 r653024  
    11=== Linear Tag Cloud ===
    22Contributors: andrearufo
    3 Donate link: www.orangedropdesign.com
    4 Tags: bar chart, tag cloud, percentage, responsive, chart
     3Donate link: http://www.orangedropdesign.com
     4Tags: bar chart, tag-cloud, responsive, widget, alternative tag
    55Requires at least: 3
    66Tested up to: 3.5
     
    20202. Upload the folder `linear-tag-cloud` to the `/wp-content/plugins/` directory
    21213. Activate the plugin through the 'Plugins' menu in WordPress
    22 4. Add the widget in the sidebar areas and configure it
     224. Add the widget in the sidebar areas and configure it whit max tag number, border color, bars color, link color
    23235. Done!
    2424
     
    2828Yes, you can configure max number of tags; background, text and border color of the bars
    2929
     30= Can I change the style? =
     31You can apply whatever CSS rules to the elements of the widget. The main class of the `div` contain the tag cloud is `.linear-tag-cloud`.
     32
    3033== Screenshots ==
    3134
    32351. The control panel in the widget page on Wordpress admin panel
    33 2. An example of the application
    34 3. An example of the application in the Twenty Twelve default Wordpress Theme
     362. An example of the application as widget in a custom theme
     373. An example of the application in the Twenty Twelve default Wordpress theme
    3538
    3639== Changelog ==
    3740
    38 = 0.1 =
    39 * First release
     41= 1.1 =
     42* Some fix
     43* Add HTML5 tags to admin panel
     44
     45= 1.0 =
    4046* Max numbero of tags configurable
    4147* Background and border color configurable for bars
    4248* Text color configurable for link in the bars
    4349
     50= 0.1 =
     51* First release
     52
    4453== Upgrade notice ==
    4554
Note: See TracChangeset for help on using the changeset viewer.