Changeset 4376


Ignore:
Timestamp:
Nov 28, 2009, 11:29:03 AM (14 years ago)
Author:
Gotcha
Message:

[extension] piwishack - v0.2
bug:1293

Location:
extensions/piwishack
Files:
5 added
3 edited

Legend:

Unmodified
Added
Removed
  • extensions/piwishack/doc/Quoi de neuf.txt

    r4354 r4376  
    1818// +-----------------------------------------------------------------------+
    1919
    20 Version 0.1 [23-11-2009]:
    21   Ajout:                Premier
    22   Corrections:  -
     20v0.1 Disponible le 23-11-2009
     21    [Bugtracker, bug 1271, open] Add an administrator panel
     22    [Bugtracker, bug 1268, open] Count of visit which increments.
     23    [Bugtracker, bug 1265, fixed] Verify comportement in a lot of picture
     24    [Bugtracker, bug 1269, fixed] Verrify compatibility with HotBlocker plugin
     25    [Bugtracker, bug 1266, fixed] Header and LLBGO
     26    [Bugtracker, bug 1281, fixed] Title of page need more visibility
     27    [Bugtracker, bug 1280, fixed] Language error on FR
     28    [Bugtracker, bug 1272, fixed] Error in category page
     29    [Bugtracker, bug 1279, fixed] Convert in UTF-8 without BOM
     30    [Bugtracker, bug 1274, fixed] HTML 4.0
     31    [Bugtracker, bug 1275, fixed] A good formatage
     32    [Bugtracker, bug 1276, fixed] Ascensors
     33    [Bugtracker, bug 1264, fixed] Conflit with other plugin
     34    [Bugtracker, bug 1261, fixed] Add description.txt
     35    [Bugtracker, bug 1267, fixed] Change icons set
     36    [Bugtracker, bug 1263, fixed] Language not ok
     37    [Bugtracker, bug 1270, fixed] Formating documents in UNIX format
     38    [Bugtracker, bug 1262, fixed] Add multi-language
     39
     40v0.2 Disponible le 28-11-2009
     41    [Bugtracker, bug 1284, open] Change the pop-up for an other solution
     42    [Bugtracker, bug 1293, fixed] Thumbnail link open in new page
  • extensions/piwishack/include/class.inc.php

    r4360 r4376  
    111111           Affichage de la miniature sur des sites. Cliquable.
    112112           EXEMPLE
    113            <a href="{$ROOT_WAY}{$current.U_IMG}"><img src="{$ROOT_WAY}{$current.THUMB_SRC|@replace:'./':''}" /></a>
     113           <a href="{$ROOT_WAY}{$current.U_IMG}" target=_blank><img src="{$ROOT_WAY}{$current.THUMB_SRC|@replace:'./':''}" /></a>
    114114           */
    115115            $S .= '<a href=\"'.
     
    118118              'image_id' => $row['id'],
    119119              'image_file' => $row['file'],
    120               )).'\"><img src=\"'.
     120              )).'\" target=_blank><img src=\"'.
    121121                  str_replace('/./', '/', get_thumbnail_url($row)).'\" /></a>';
    122122            $S .= '\n\n';
     
    267267           Affichage de la vue normale sur des sites. Non cliquable.
    268268           EXEMPLE
    269            <a href="{$ROOT_WAY}{$current.U_IMG}"><img src="{$ROOT_WAY}{$SRC_IMG|@replace:'./':''}" /></a>
     269           <a href="{$ROOT_WAY}{$current.U_IMG}" target=_blank><img src="{$ROOT_WAY}{$SRC_IMG|@replace:'./':''}" /></a>
    270270           */
    271271            $S .= '<a href=\"'.
     
    274274              'image_id' => $row['id'],
    275275              'image_file' => $row['file'],
    276               )).'\"><img src=\"'.get_absolute_root_url().
     276              )).'\" target=_blank><img src=\"'.get_absolute_root_url().
    277277                  str_replace('/./', '/', get_image_url($row)).'\" /></a>';
    278278                $S .= '\n\n';
  • extensions/piwishack/main.inc.php

    r4358 r4376  
    2121/*
    2222Plugin Name: Piwishack
    23 Version: 0.1
     23Version: 0.2
    2424Description: Affichage d'une liste de liens formatés pour afficher vos images sur des sites/blogs/forums.
    2525Plugin URI: http://piwigo.org/ext/extension_view.php?eid=324
Note: See TracChangeset for help on using the changeset viewer.