Changeset 90063 in spip-zone for _plugins_/pgn4spip
- Timestamp:
- Jun 9, 2015, 7:05:10 PM (6 years ago)
- Location:
- _plugins_/pgn4spip/trunk
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/pgn4spip/trunk/boardLive.html
r66136 r90063 26 26 <!-- was <link href="pgn4web/live-compact.css" type="text/css" rel="stylesheet" /> --> 27 27 <style type="text/css"> 28 @import url("pgn4web/fonts/pgn4web-font-LiberationSans.css"); 29 @import url("pgn4web/fonts/pgn4web-font-ChessSansPiratf.css"); 28 <!-- @import url("pgn4web/fonts/pgn4web-font-LiberationSans.css"); 29 @import url("pgn4web/fonts/pgn4web-font-ChessSansPiratf.css"); --> 30 @import url ("#CHEMIN{pgn4web/fonts/pgn4web-font-LiberationSans.css}") 31 @import url ("#CHEMIN{pgn4web/fonts/pgn4web-font-ChessSansPiratf.css}") 30 32 31 33 html, … … 168 170 </style> 169 171 170 <link rel="shortcut icon" href=" pgn4web/pawn.ico" />171 <script src=" pgn4web/pgn4web.js" type="text/javascript"></script>172 <script src=" pgn4web/fide-lookup.js" type="text/javascript"></script>172 <link rel="shortcut icon" href="#CHEMIN{pgn4web/pawn.ico}" /> 173 <script src="#CHEMIN{pgn4web/pgn4web.js}" type="text/javascript"></script> 174 <script src="#CHEMIN{pgn4web/fide-lookup.js}" type="text/javascript"></script> 173 175 <script type="text/javascript"> 174 176 … … 267 269 } 268 270 else 269 pieceFontRoot = " pgn4web/";271 pieceFontRoot = "('find_in_path(lib/pgn4web/)"; 270 272 271 273 SetImagePath("" + pieceFontRoot + pieceFont + "/" + pieceSize); -
_plugins_/pgn4spip/trunk/paquet.xml
r86051 r90063 2 2 prefix="pgn4spip" 3 3 categorie="divers" 4 version="2.61. 1"5 etat=" stable"6 compatibilite="[ 2.0.0;3.1.*]"4 version="2.61.2" 5 etat="test" 6 compatibilite="[3.0.0;3.1.*]" 7 7 logo="pgn4spip.png" 8 8 documentation="http://contrib.spip.net/pgn4spip" … … 15 15 <credit lien="http://pgn4web.casaschi.net">Paolo Casaschi's pgn4web 2.61</credit> 16 16 17 <lib nom="pgn4web" lien="http://test.jack31.org/IMG/zip/pgn4web.zip" /> 18 17 19 <pipeline nom="pre_propre" action="prepropre" inclure="pgn4spip_fonctions.php" /> 18 20 <pipeline nom="post_propre" action="postpropre" inclure="pgn4spip_postpropre.php" /> -
_plugins_/pgn4spip/trunk/pgn4spip_fonctions.php
r66136 r90063 38 38 define('PLUGIN_Name', "pgn4spip"); 39 39 define('PATH_Conf', PLUGIN_Name . '/' . PLUGIN_Name . '_conf.php'); 40 if (!function_exists('ReadCurrentConfiguration')) require _DIR_ PLUGINS. PATH_Conf;40 if (!function_exists('ReadCurrentConfiguration')) require _DIR_LIB_PGN4WEB . PATH_Conf; 41 41 42 42 define('TAG_pgn', "[pP][gG][nN]"); // pgn or PGN 43 define('PATH_board', PLUGIN_Name . "/pgn4web/board.html");43 define('PATH_board',_DIR_RACINE . 'lib/pgn4web/board.html'); 44 44 define('PATH_live', PLUGIN_Name . "/boardLive.html"); 45 45 define('indFullPattern', 0); -
_plugins_/pgn4spip/trunk/pgn4spip_options.php
r66136 r90063 12 12 **********************************************************************************/ 13 13 define('PLUGIN_Name', "pgn4spip"); 14 define('PATH_Conf', PLUGIN_Name . '/' . PLUGIN_Name . '_conf.php'); 15 if (!function_exists('ReadCurrentConfiguration')) require _DIR_PLUGINS . PATH_Conf; 14 define('_DIR_LIB_PGN4WEB', _DIR_RACINE . 'lib/pgn4web/'); 15 16 define('find_in_path(pgn4spip/pgn4spip_conf.php)', 'pgn4spip_conf.php'); 17 if (!function_exists('ReadCurrentConfiguration')) require 'pgn4spip_conf.php'; 16 18 17 19 // Init $optValue with default values of options overriden with the current configuration 18 20 ReadCurrentConfiguration($optValue); // read from the config form 19 ?>
Note: See TracChangeset
for help on using the changeset viewer.