Plugin Directory

Changeset 599752


Ignore:
Timestamp:
09/16/2012 05:53:29 PM (14 years ago)
Author:
phd38
Message:
 
Location:
wp-mediatagger
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-mediatagger/tags/3.2/readme.txt

    r563578 r599752  
    11=== WP MediaTagger ===
    2 Contributors: phd
     2Contributors: phd38
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WY6KNNHATBS5Q
    44Tags: widget, plugin, media, library, images, audio, video, mpeg, mp3, pdf, rtf, txt, taxonomy, photos, tags, gallery, photoblog, search, engine, classification, database, cleanup
     
    2222- Group wpit options in one string to streamline options table usage (no usability impact)
    2323- Plugin internationalization : the `mediatagger.pot` file, required to translate the package to any other language, is provided for volunteers with the plugin files (contact me to make sure the *.pot file part of the package is up-to-date). If you are interested in internationalizing this plugin, I would certainly welcome your help. Simply [let me know](http://www.photos-dauphine.com/ecrire "Any volunteer to push the WP MediaTagger internationalization ?") so that I can push your translation to the repository. If needed I can provide you the methodology, many tools are available to ease this task.
     24
     25
     26= 3.2.1 =
     27
     28- In the list view, you can select the first photo to be listed on the page by typing 'start:xxx' in the seach field, xxx being the index of the first photo to be listed on the page. The newer the photo, the higher the index.
    2429
    2530
  • wp-mediatagger/trunk/mediatagger-admin.php

    r486535 r599752  
    454454<?php if ($view == 'list_view') { // ===================================================== List view =====================================================
    455455    $num_img_per_page = 100;
     456    $list_view_search_tab = explode(':', $list_view_search);
     457    if ($list_view_search_tab[0] == 'start') {
     458        $start_img_num = $list_view_search_tab[1];
     459        $list_view_search = "";
     460    } else
     461        $start_img_num = $list_image_start_page;
     462    //phdbg($start_img_num);
    456463    $img_list = imgt_match_keyword($list_type, $list_view_search);
    457464    //print_ro($img_list);
     465
    458466    $num_img = count($img_list);
    459     $start_img_num = $list_image_start_page;
    460467    $stop_img_num = $start_img_num + $num_img_per_page;
    461468    if ($stop_img_num > $num_img)
     
    471478<input type="hidden" name="list_img_id" value="">
    472479
    473 <p style="padding:0px 0px 20px 0px;margin:0;font-size:0.9em"><em><?php _e('Displaying medias', 'mediatagger') ?> :</em> <?php echo ($list_type != 'tagged_images' ? '<a href="" title="' . __('Display tagged medias', 'mediatagger') . '" onClick="post_submit(' . "'list_type', 'tagged_images');return false" . '">' : '') . __('tagged', 'mediatagger') .  ($list_type != 'tagged_images' ? '</a>' : '') . '&nbsp; ' . ($list_type != 'untagged_images' ? '<a href="" title="' . __('Display untagged medias', 'mediatagger') . '" onClick="post_submit(' . "'list_type', 'untagged_images');return false" . '">' : '') . __('untagged', 'mediatagger') . ($list_type != 'utagged_images' ? '</a>' : '') . '&nbsp; ' . ($list_type != 'all_images' ? '<a href="" title="' . __('Display all medias', 'mediatagger') . '" onClick="post_submit(' . "'list_type', 'all_images');return false" . '">' : '') . __('all', 'mediatagger') . ($list_type != 'all_images' ? '</a>' : '') ?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input type="text" name="list_view_search" value="<? echo $list_view_search ?>" size="40" title="<?php _e('The search currently supports single keyword pattern - Search will be done on media title and hosting post or page title', 'mediatagger') ?>"></p>
     480<p style="padding:0px 0px 20px 0px;margin:0;font-size:0.9em"><em><?php _e('Displaying medias', 'mediatagger') ?> :</em> <?php echo ($list_type != 'tagged_images' ? '<a href="" title="' . __('Display tagged medias', 'mediatagger') . '" onClick="post_submit(' . "'list_type', 'tagged_images');return false" . '">' : '') . __('tagged', 'mediatagger') .  ($list_type != 'tagged_images' ? '</a>' : '') . '&nbsp; ' . ($list_type != 'untagged_images' ? '<a href="" title="' . __('Display untagged medias', 'mediatagger') . '" onClick="post_submit(' . "'list_type', 'untagged_images');return false" . '">' : '') . __('untagged', 'mediatagger') . ($list_type != 'utagged_images' ? '</a>' : '') . '&nbsp; ' . ($list_type != 'all_images' ? '<a href="" title="' . __('Display all medias', 'mediatagger') . '" onClick="post_submit(' . "'list_type', 'all_images');return false" . '">' : '') . __('all', 'mediatagger') . ($list_type != 'all_images' ? '</a>' : '') ?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input type="text" name="list_view_search" value="<?php echo $list_view_search ?>" size="40" title="<?php _e('The search currently supports single keyword pattern - Search will be done on media title and hosting post or page title', 'mediatagger') ?>"></p>
    474481
    475482<?php
     
    812819<div class="submit" style="padding-top:5px"><input type="submit" name="Submit" value="<?php _e('Update Options', 'mediatagger' ) ?> &raquo;" /></div>
    813820
    814 <? } // end if ($display_options)
     821<?php } // end if ($display_options)
    815822else if ($_POST['preview']) {
    816823
  • wp-mediatagger/trunk/mediatagger.php

    r486544 r599752  
    55Description: This extensively configurable plugin comes packed with a bunch of features enabling media tagging, including search and media taxonomy.
    66Author: www.photos-dauphine.com
    7 Version: 3.1.1
    8 Stable tag: 3.1.1
     7Version: 3.2
     8Stable tag: 3.2
    99Author URI: http://www.photos-dauphine.com/
    1010*/
     
    684684//
    685685function imgt_img_caption_shortcode($attr, $content = null) {
    686    
     686       
    687687    // Allow plugins/themes to override the default caption template.
    688688    $output = apply_filters('img_caption_shortcode', '', $attr, $content);
     
    723723 }
    724724 
    725 add_shortcode('wp_caption', 'imgt_img_caption_shortcode');
    726 add_shortcode('caption', 'imgt_img_caption_shortcode');
     725//add_shortcode('wp_caption', 'imgt_img_caption_shortcode');
     726//add_shortcode('caption', 'imgt_img_caption_shortcode');
    727727
    728728
  • wp-mediatagger/trunk/readme.txt

    r563578 r599752  
    11=== WP MediaTagger ===
    2 Contributors: phd
     2Contributors: phd38
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WY6KNNHATBS5Q
    44Tags: widget, plugin, media, library, images, audio, video, mpeg, mp3, pdf, rtf, txt, taxonomy, photos, tags, gallery, photoblog, search, engine, classification, database, cleanup
     
    2222- Group wpit options in one string to streamline options table usage (no usability impact)
    2323- Plugin internationalization : the `mediatagger.pot` file, required to translate the package to any other language, is provided for volunteers with the plugin files (contact me to make sure the *.pot file part of the package is up-to-date). If you are interested in internationalizing this plugin, I would certainly welcome your help. Simply [let me know](http://www.photos-dauphine.com/ecrire "Any volunteer to push the WP MediaTagger internationalization ?") so that I can push your translation to the repository. If needed I can provide you the methodology, many tools are available to ease this task.
     24
     25
     26= 3.2.1 =
     27
     28- In the list view, you can select the first photo to be listed on the page by typing 'start:xxx' in the seach field, xxx being the index of the first photo to be listed on the page. The newer the photo, the higher the index.
    2429
    2530
Note: See TracChangeset for help on using the changeset viewer.