Plugin Directory

Changeset 839608


Ignore:
Timestamp:
01/16/2014 11:10:01 AM (12 years ago)
Author:
niccolo_tapparo
Message:

Version 1.2.4 - fanbox widget

Location:
wordpress-social-ring
Files:
16 added
6 edited

Legend:

Unmodified
Added
Removed
  • wordpress-social-ring/trunk/includes/library.php

    r748850 r839608  
    199199   
    200200    function google_plus_one_html() {
    201         $google_html = '<div class="g-plusone" ';
     201        $google_html = '<div class="g-plusone" data-href="' . $this->post_url . '" ';
    202202        if($this->options['button_counter'] == "horizontal") {
    203203            $google_html .= 'data-size="medium" ';
     
    334334    ?>
    335335        <!-- Social Ring JS Start -->
    336     <div id="fb-root"></div><script src="http://connect.facebook.net/<?php echo $this->options['facebook_language']; ?>/all.js#xfbml=1"></script>
     336    <div id="fb-root"></div>
     337<script>(function(d, s, id) {
     338  var js, fjs = d.getElementsByTagName(s)[0];
     339  if (d.getElementById(id)) return;
     340  js = d.createElement(s); js.id = id;
     341  js.src = "//connect.facebook.net/<?php echo $this->options['facebook_language']; ?>/all.js#xfbml=1&appId=265615193468551";
     342  fjs.parentNode.insertBefore(js, fjs);
     343}(document, 'script', 'facebook-jssdk'));</script>
     344
    337345    <script type="text/javascript">
    338346        window.___gcfg = {
  • wordpress-social-ring/trunk/includes/widgets.php

    r618456 r839608  
    44function SocialRing_Widget_loader() {
    55    register_widget('SocialRing_Widget');
     6}
     7
     8add_action('widgets_init', 'SocialRing_Fanbox_Widget_loader');
     9function SocialRing_Fanbox_Widget_loader() {
     10    register_widget('SocialRing_Fanbox_Widget');
    611}
    712
     
    150155}
    151156
     157
     158// SOCIALRING FANBOX FACEBOOK
     159
     160
     161class SocialRing_Fanbox_Widget extends WP_Widget {
     162    function SocialRing_Fanbox_Widget() {
     163        /* Widget settings. */
     164        $widget_ops = array('classname' => 'SocialRing_Fanbox_Widget', 'description' => __('Use this widget to add the Facebook fanbox to your sidebar', WP_SOCIAL_RING));
     165
     166        /* Widget control settings. */
     167        $control_ops = array('id_base' => 'social_ring_fanbox_widget');
     168
     169        /* Create the widget. */
     170        $this->WP_Widget('social_ring_fanbox_widget', __('Social Ring Fanbox Widget', WP_SOCIAL_RING), $widget_ops, $control_ops );
     171    }
     172
     173function form($instance) {
     174       
     175        $defaults = array(
     176                'widget_title' => __('Follow ', WP_SOCIAL_RING).get_bloginfo('name'),
     177                'data-href' => '',
     178                'data-color-scheme' => 'light',
     179                'data-show-faces' => 'true',
     180                'data-header' => 'true',
     181                'data-stream' => 'false',
     182                'data-show-border' => 'true',
     183                'border_color' => 'D0D0D0',
     184                'box_padding' => 20,
     185                'button_margin' => 8
     186            );
     187       
     188        $instance = wp_parse_args( (array) $instance, $defaults );
     189       
     190       
     191        ?>
     192        <p><i><?php _e('This widget needs a sidebar of 300 pixels or more to display properly',WP_SOCIAL_RING); ?></i></p> 
     193           <p>
     194            <ul>
     195                <?php // WIDGET TITLE ?>
     196                <li>
     197                <input id="<?php echo $this->get_field_id('widget_title'); ?>" name="<?php echo $this->get_field_name('widget_title'); ?>" type="text" value="<?php echo $instance['widget_title']; ?>" />
     198                <label><?php _e('Widget Title',WP_SOCIAL_RING); ?></label>
     199                </li>
     200               
     201                <?php // FB PAGE URL ?>
     202                <li>
     203                <input id="<?php echo $this->get_field_id('data-href'); ?>" name="<?php echo $this->get_field_name('data-href'); ?>" type="text" value="<?php echo $instance['data-href']; ?>" />
     204                <label><?php _e('FB Page URL',WP_SOCIAL_RING); ?></label>
     205                </li>
     206               
     207                <?php // COLORSCHEME ?>
     208                <li>
     209                <select id="<?php echo $this->get_field_id('data-color-scheme'); ?>" name="<?php echo $this->get_field_name('data-color-scheme'); ?>" >
     210                    <option <?php if($instance['data-color-scheme'] == 'light') { echo 'selected="selected"'; } ?> value="light" >Light</option>
     211                    <option <?php if($instance['data-color-scheme'] == 'dark') { echo 'selected="selected"'; } ?> value="dark" >Dark</option>
     212                </select>
     213                <label><?php _e('Colorscheme',WP_SOCIAL_RING); ?></label>
     214                </li>
     215               
     216                <?php // SHOW FACES ?>
     217                <li>
     218                <select id="<?php echo $this->get_field_id('data-show-faces'); ?>" name="<?php echo $this->get_field_name('data-show-faces'); ?>" >
     219                    <option <?php if($instance['data-show-faces'] == 'true') { echo 'selected="selected"'; } ?> value="true" >True</option>
     220                    <option <?php if($instance['data-show-faces'] == 'false') { echo 'selected="selected"'; } ?> value="false" >False</option>
     221                </select>                               
     222                <label><?php _e('Show Faces',WP_SOCIAL_RING); ?></label>
     223                </li>
     224               
     225                <?php // HEADER ?>
     226                <li>
     227                <select id="<?php echo $this->get_field_id('data-header'); ?>" name="<?php echo $this->get_field_name('data-header'); ?>" >
     228                    <option <?php if($instance['data-header'] == 'true') { echo 'selected="selected"'; } ?> value="true" >True</option>
     229                    <option <?php if($instance['data-header'] == 'false') { echo 'selected="selected"'; } ?> value="false" >False</option>
     230                </select>                               
     231                <label><?php _e('Header',WP_SOCIAL_RING); ?></label>
     232                </li>
     233               
     234                <?php // STREAM ?>
     235                <li>
     236                <select id="<?php echo $this->get_field_id('data-stream'); ?>" name="<?php echo $this->get_field_name('data-stream'); ?>" >
     237                    <option <?php if($instance['data-stream'] == 'true') { echo 'selected="selected"'; } ?> value="true" >True</option>
     238                    <option <?php if($instance['data-stream'] == 'false') { echo 'selected="selected"'; } ?> value="false" >False</option>
     239                </select>                               
     240                <label><?php _e('Stream',WP_SOCIAL_RING); ?></label>
     241                </li>
     242               
     243                <?php // SHOW BORDER ?>
     244                <li>
     245                <select id="<?php echo $this->get_field_id('data-show-border'); ?>" name="<?php echo $this->get_field_name('data-show-border'); ?>" >
     246                    <option <?php if($instance['data-show-border'] == 'true') { echo 'selected="selected"'; } ?> value="true" >True</option>
     247                    <option <?php if($instance['data-show-border'] == 'false') { echo 'selected="selected"'; } ?> value="false" >False</option>
     248                </select>                               
     249                <label><?php _e('Show Border',WP_SOCIAL_RING); ?></label>
     250                </li>
     251            </ul>
     252           </p>
     253       
     254        <?php
     255       
     256    }
     257   
     258    function update($new_instance, $old_instance) {
     259        // processes widget options to be saved
     260        $instance = $old_instance;
     261        $instance['widget_title'] = strip_tags( $new_instance['widget_title'] );
     262        $instance['data-href'] = strip_tags( $new_instance['data-href'] );
     263        $instance['data-color-scheme'] = strip_tags( $new_instance['data-color-scheme'] );
     264        $instance['data-show-faces'] = strip_tags( $new_instance['data-show-faces'] );
     265        $instance['data-header'] = strip_tags( $new_instance['data-header'] );
     266        $instance['data-stream'] = strip_tags( $new_instance['data-stream'] );
     267        $instance['data-show-border'] = strip_tags( $new_instance['data-show-border'] );
     268        return $instance;
     269    }
     270
     271    // outputs the content of the widget
     272    function widget($args, $instance) {
     273    extract($args);
     274    echo $before_widget."\n";
     275    if ( isset($instance['widget_title']) ) {
     276        echo $before_title . $instance['widget_title'] . $after_title."\n";
     277    }
     278    $options = get_option(WP_SOCIAL_RING.'_fanbox_options');
     279    ?>
     280    <div class="fb-like-box" data-href="<?php echo $instance['data-href']; ?>" data-width="300" data-colorscheme="<?php echo $instance['data-color-scheme']; ?>" data-show-faces="<?php echo $instance['data-show-faces']; ?>" data-header="<?php echo $instance['data-header']; ?>" data-stream="<?php echo $instance['data-stream']; ?>" data-show-border="<?php echo $instance['data-show-border']; ?>"></div>
     281
     282<?php
     283    echo $after_widget."\n";
     284    }
     285}
     286
    152287?>
  • wordpress-social-ring/trunk/langs/wp_social_ring-it_IT.po

    r618456 r839608  
    33"Project-Id-Version: WordPress Social Ring\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2012-10-29 00:08+0100\n"
    6 "PO-Revision-Date: 2012-10-29 00:12+0100\n"
    7 "Last-Translator: Niccolo Tapparo\n"
     5"POT-Creation-Date: 2014-01-15 18:13+0100\n"
     6"PO-Revision-Date: 2014-01-16 12:06+0100\n"
     7"Last-Translator: Niccolo Tapparo <[email protected]>\n"
    88"Language-Team: AlterVista\n"
     9"Language: it_IT\n"
    910"MIME-Version: 1.0\n"
    1011"Content-Type: text/plain; charset=UTF-8\n"
     
    1213"X-Poedit-KeywordsList: __;_e;esc_attr__;esc_attr_e\n"
    1314"X-Poedit-Basepath: ../\n"
     15"X-Generator: Poedit 1.6.3\n"
    1416"X-Poedit-SearchPath-0: .\n"
    1517
    16 #: admin/admin.php:168
     18#: admin/admin.php:184
    1719msgid "Social Sharing"
    1820msgstr "Condivisione Social Network"
    1921
    20 #: admin/admin.php:176
     22#: admin/admin.php:192
    2123msgid "Social Network Settings"
    2224msgstr "Impostazioni Condivisione Social Network"
    2325
    24 #: admin/admin.php:185
     26#: admin/admin.php:201
    2527msgid "Extra"
    2628msgstr "Extra"
    2729
    28 #: admin/admin.php:188
     30#: admin/admin.php:204
    2931msgid "<b>Custom position</b>"
    3032msgstr "<b>Posizione personalizzata</b>"
    3133
    32 #: admin/admin.php:191
    33 msgid "You can give Social buttons a custom position by calling this function in your theme."
    34 msgstr "I bottoni social possono essere posizionati a piacere inserendo nel tema il seguente codice:"
    35 
    36 #: admin/admin.php:195
     34#: admin/admin.php:207
     35msgid ""
     36"You can give Social buttons a custom position by calling this function in "
     37"your theme."
     38msgstr ""
     39"I bottoni social possono essere posizionati a piacere inserendo nel tema il "
     40"seguente codice:"
     41
     42#: admin/admin.php:211
    3743msgid "Pay Attention: it must called <b>inside the loop</b> to work properly!"
    38 msgstr "Attenzione: deve essere utilizzato <b>all'interno del loop</b> per funzionare correttamente."
    39 
    40 #: admin/admin.php:198
     44msgstr ""
     45"Attenzione: deve essere utilizzato <b>all'interno del loop</b> per "
     46"funzionare correttamente."
     47
     48#: admin/admin.php:214
    4149msgid "<b>Shortcode</b>"
    4250msgstr "<b>Shortcode</b>"
    4351
    44 #: admin/admin.php:201
    45 msgid "You can also place social buttons inside your posts by using the shortcode:"
    46 msgstr "I bottoni social possono essere anche inseriti all'interno dei post utilizzando il seguente shortcode:"
    47 
    48 #: admin/admin.php:206
     52#: admin/admin.php:217
     53msgid ""
     54"You can also place social buttons inside your posts by using the shortcode:"
     55msgstr ""
     56"I bottoni social possono essere anche inseriti all'interno dei post "
     57"utilizzando il seguente shortcode:"
     58
     59#: admin/admin.php:222
    4960msgid "Save Changes"
    5061msgstr "Salva Impostazioni"
    5162
    52 #: admin/admin.php:211
     63#: admin/admin.php:227
    5364msgid "Help"
    5465msgstr "Aiuto"
    5566
    56 #: admin/admin.php:218
     67#: admin/admin.php:234
    5768msgid "News"
    5869msgstr "News"
    5970
    60 #: admin/admin.php:236
     71#: admin/admin.php:254
    6172msgid "http://en.altervista.org/create-free-blog.html?ref=socialring"
    6273msgstr "http://it.altervista.org/crea-blog-gratis.php?ref=socialring"
    6374
    64 #: admin/admin.php:237
     75#: admin/admin.php:255
    6576msgid "Create your free blog!"
    6677msgstr "Crea il tuo blog gratis!"
    6778
    68 #: admin/admin.php:266
     79#: admin/admin.php:284
    6980msgid "General Settings"
    7081msgstr "Impostazioni Generali"
    7182
    72 #: admin/admin.php:272
     83#: admin/admin.php:290
    7384msgid "Buttons"
    7485msgstr "Pulsanti"
    7586
    76 #: admin/admin.php:279
     87#: admin/admin.php:297
    7788msgid "Position"
    7889msgstr "Posizione"
    7990
    80 #: admin/admin.php:286
     91#: admin/admin.php:304
    8192msgid "Show on"
    8293msgstr "Mostra su"
    8394
    84 #: admin/admin.php:293
     95#: admin/admin.php:311
    8596msgid "Counter"
    8697msgstr "Contatore"
    8798
    88 #: admin/admin.php:300
     99#: admin/admin.php:318
    89100msgid "Buttons Language"
    90101msgstr "Lingua dei Bottoni"
    91102
    92 #: admin/admin.php:309
     103#: admin/admin.php:327
    93104msgid "Choose sharing buttons position and behavior"
    94 msgstr "Scegli la posizione e il comportamento dei pulsanti di condivisione sui social network"
    95 
    96 #: admin/admin.php:317
     105msgstr ""
     106"Scegli la posizione e il comportamento dei pulsanti di condivisione sui "
     107"social network"
     108
     109#: admin/admin.php:335
    97110msgid "Horizontal"
    98111msgstr "Orizzontale"
    99112
    100 #: admin/admin.php:321
     113#: admin/admin.php:339
    101114msgid "Vertical"
    102115msgstr "Verticale"
    103116
    104 #: admin/admin.php:325
     117#: admin/admin.php:343
    105118msgid "None"
    106119msgstr "Nessuno"
    107120
    108 #: admin/admin.php:335
     121#: admin/admin.php:353
    109122msgid "Before content"
    110123msgstr "Prima del contenuto"
    111124
    112 #: admin/admin.php:339
     125#: admin/admin.php:357
    113126msgid "After content"
    114127msgstr "Dopo il contenuto"
    115128
    116 #: admin/admin.php:350
     129#: admin/admin.php:368
    117130msgid "Facebook Like"
    118131msgstr "Facebook Mi Piace"
    119132
    120 #: admin/admin.php:355
     133#: admin/admin.php:373
    121134msgid "Facebook Send"
    122135msgstr "Facebook Invia"
    123136
    124 #: admin/admin.php:361
     137#: admin/admin.php:379
    125138msgid "Facebook Share"
    126139msgstr "Facebook Condividi"
    127140
    128 #: admin/admin.php:366
     141#: admin/admin.php:384
    129142msgid "Twitter"
    130143msgstr "Twitter"
    131144
    132 #: admin/admin.php:367
     145#: admin/admin.php:385
    133146msgid "I use WordPress Social Ring on my blog"
    134147msgstr "Io uso WordPress Social Ring sul mio blog"
    135148
    136 #: admin/admin.php:371
     149#: admin/admin.php:389
    137150msgid "Google +1"
    138151msgstr "Google +1"
    139152
    140 #: admin/admin.php:372
    141 #: admin/admin.php:384
     153#: admin/admin.php:390 admin/admin.php:407
    142154msgid "http://wordpress.altervista.org/"
    143155msgstr "http://wordpress.altervista.org/"
    144156
    145 #: admin/admin.php:377
     157#: admin/admin.php:400
    146158msgid "LinkedIn"
    147159msgstr "LinkedIn"
    148160
    149 #: admin/admin.php:383
     161#: admin/admin.php:406
    150162msgid "Pin it"
    151163msgstr "Pin it"
    152164
    153 #: admin/admin.php:384
     165#: admin/admin.php:407
    154166msgid "WordPress tutorials, plugin and themes."
    155167msgstr "Tutorial WordPress, temi e plugin."
    156168
    157 #: admin/admin.php:388
     169#: admin/admin.php:411
    158170msgid "StumbleUpon"
    159171msgstr "StumbleUpon"
    160172
    161 #: admin/admin.php:400
     173#: admin/admin.php:423
    162174msgid "Home"
    163175msgstr "Home"
    164176
    165 #: admin/admin.php:404
     177#: admin/admin.php:427
    166178msgid "Pages"
    167179msgstr "Pagine"
    168180
    169 #: admin/admin.php:408
     181#: admin/admin.php:431
    170182msgid "Posts"
    171183msgstr "Post"
    172184
    173 #: admin/admin.php:412
     185#: admin/admin.php:435
    174186msgid "Categories"
    175187msgstr "Categorie"
    176188
    177 #: admin/admin.php:416
     189#: admin/admin.php:439
    178190msgid "Archive"
    179191msgstr "Archivi"
    180192
    181 #: admin/admin.php:429
     193#: admin/admin.php:452
    182194msgid "LinkedIn, Pin It and StumbleUpon don't support localization"
    183195msgstr "LinkedIn, Pin It e StumbleUpon non supportano la traduzione"
    184196
    185 #: includes/widgets.php:11
    186 msgid "Use this widget to add Tweet, Facebook Like and Google Plus One to your sidebar"
    187 msgstr "Usa questo widget per aggiungere il bottoni Tweet, Google +1 e Facebook like alla sidebar"
    188 
    189 #: includes/widgets.php:17
     197#: includes/widgets.php:16
     198msgid ""
     199"Use this widget to add Tweet, Facebook Like and Google Plus One to your "
     200"sidebar"
     201msgstr ""
     202"Usa questo widget per aggiungere il bottoni Tweet, Google +1 e Facebook like "
     203"alla sidebar"
     204
     205#: includes/widgets.php:22
    190206msgid "Social Ring Widget"
    191207msgstr "Widget Social Ring"
    192208
    193 #: includes/widgets.php:23
     209#: includes/widgets.php:28 includes/widgets.php:176
    194210msgid "Follow "
    195211msgstr "Segui "
    196212
    197 #: includes/widgets.php:40
     213#: includes/widgets.php:45
    198214msgid "This widget needs a sidebar of 200 pixels or more to display properly"
    199 msgstr "Il widget ha bisogno di una sidebar di almeno 200 pixel per essere visualizzato correttamente"
    200 
    201 #: includes/widgets.php:44
     215msgstr ""
     216"Il widget ha bisogno di una sidebar di almeno 200 pixel per essere "
     217"visualizzato correttamente"
     218
     219#: includes/widgets.php:49 includes/widgets.php:198
    202220msgid "Widget Title"
    203221msgstr "Titolo Widget"
    204222
    205 #: includes/widgets.php:46
     223#: includes/widgets.php:51
    206224msgid "Facebook Like Options"
    207225msgstr "Impostazioni Facebook Like"
    208226
    209 #: includes/widgets.php:50
    210 #: includes/widgets.php:57
    211 #: includes/widgets.php:64
     227#: includes/widgets.php:55 includes/widgets.php:62 includes/widgets.php:69
    212228msgid "Url"
    213229msgstr "Url"
    214230
    215 #: includes/widgets.php:53
     231#: includes/widgets.php:58
    216232msgid "Google Plus One Options"
    217233msgstr "Impostazioni Google +1"
    218234
    219 #: includes/widgets.php:60
     235#: includes/widgets.php:65
    220236msgid "Twitter Options"
    221237msgstr "Impostazioni Twitter"
    222238
    223 #: includes/widgets.php:68
     239#: includes/widgets.php:73
    224240msgid "Text"
    225241msgstr "Testo"
    226242
    227 #: includes/widgets.php:72
    228 #: includes/widgets.php:79
     243#: includes/widgets.php:77 includes/widgets.php:84
    229244msgid "Account"
    230245msgstr "Account"
    231246
    232 #: includes/widgets.php:75
    233 msgid "Recommend a Twitter account for users to follow after they share content from your website"
     247#: includes/widgets.php:80
     248msgid ""
     249"Recommend a Twitter account for users to follow after they share content "
     250"from your website"
    234251msgstr "Dopo la condivisione, consiglia un account Twitter da seguire"
    235252
    236 #: includes/widgets.php:83
     253#: includes/widgets.php:88
    237254msgid "Description"
    238255msgstr "Descrizione"
    239256
    240 #: includes/widgets.php:86
     257#: includes/widgets.php:91
    241258msgid "Style Options"
    242259msgstr "Impostazioni Grafiche"
    243260
    244 #: includes/widgets.php:90
     261#: includes/widgets.php:95
    245262msgid "Button Margin"
    246263msgstr "Margine bottoni"
    247264
    248 #: includes/widgets.php:94
     265#: includes/widgets.php:99
    249266msgid "Widget Padding"
    250267msgstr "Padding Widget"
    251268
    252 #: includes/widgets.php:98
     269#: includes/widgets.php:103
    253270msgid "Border Color"
    254271msgstr "Colore Bordo"
     272
     273#: includes/widgets.php:164
     274msgid "Use this widget to add the Facebook fanbox to your sidebar"
     275msgstr "Usa questo widget per aggiungere la fanbox di Facebook alla sidebar"
     276
     277#: includes/widgets.php:170
     278msgid "Social Ring Fanbox Widget"
     279msgstr "Social Ring Fanbox Widget"
     280
     281#: includes/widgets.php:192
     282msgid "This widget needs a sidebar of 300 pixels or more to display properly"
     283msgstr ""
     284"Il widget ha bisogno di una sidebar di almeno 300 pixel per essere "
     285"visualizzato correttamente"
     286
     287#: includes/widgets.php:204
     288msgid "FB Page URL"
     289msgstr "Indirizzo Pagina"
     290
     291#: includes/widgets.php:213
     292msgid "Colorscheme"
     293msgstr "Colore"
     294
     295#: includes/widgets.php:222
     296msgid "Show Faces"
     297msgstr "Mostra Visi"
     298
     299#: includes/widgets.php:231
     300msgid "Header"
     301msgstr "Intestazione"
     302
     303#: includes/widgets.php:240
     304msgid "Stream"
     305msgstr "Stream"
     306
     307#: includes/widgets.php:249
     308msgid "Show Border"
     309msgstr "Mostra bordi"
    255310
    256311#~ msgid "WordPress Social Ring Settings"
  • wordpress-social-ring/trunk/readme.txt

    r748850 r839608  
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=niccolo%2etapparo%40gmail%2ecom&lc=IT&item_name=Niccolo%20Tapparo&item_number=1&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted
    44Tags: Google +1, Facebook, Facebook Like, Facebook Share, Open Graph Meta Tag, Twitter, Retweet, Google+, Social Network, Linkedin
    5 Requires at least: 3.5
    6 Tested up to: 3.6
    7 Version: 1.2.3
    8 Stable tag: 1.2.3
     5Requires at least: 3.7
     6Tested up to: 3.8
     7Version: 1.2.4
     8Stable tag: 1.2.4
    99
    1010WordPress Social Ring adds sharing buttons for Facebook, Twitter, Google+, Pinteres, LinkedIn and StumbleUpon.
     
    3434
    3535== Changelog ==
     36
     37= 1.2.4 =
     38
     39* Bugfix: Google+ button - fixed sharing post in homepage
     40* Added Facebook Like Box Widget
    3641
    3742= 1.2.2 =
  • wordpress-social-ring/trunk/wp-social-ring.php

    r748850 r839608  
    44Description: Let visitors share posts/pages on Social Networks.
    55Author: Niccol&ograve; Tapparo
    6 Version: 1.2.3
     6Version: 1.2.4
    77Author URI: http://wordpress.altervista.org/
    88Plugin URI: http://wordpress.altervista.org/wordpress-social-ring/
Note: See TracChangeset for help on using the changeset viewer.