Changeset 279

Show
Ignore:
Timestamp:
10/11/06 22:12:05 (2 years ago)
Author:
laurentj
Message:

intégration de wikirenderer, accessible via la classe jWiki, ou un plugin 'modifier' de template : 'wiki'

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build/manifests/jelix-lib.mn

    r278 r279  
    145145  modifier.strip_tags.php 
    146146  modifier.truncate.php 
     147  modifier.wiki.php 
    147148  modifier.wordwrap.php 
    148149 
     
    169170cd lib/jelix/utils/ 
    170171  jClasses.class.php 
     172  jCmdUtils.class.php 
     173  jDatatype.class.php 
    171174  jDateTime.class.php 
    172175  jFile.class.php 
     176  jIniFile.class.php 
    173177  jJsonRpc.class.php 
    174178  jLog.class.php 
     179  jWiki.class.php 
    175180  jXmlRpc.class.php 
     181  jZipCreator.class.php 
    176182  jZone.class.php 
    177   jDatatype.class.php 
    178   jCmdUtils.class.php 
    179   jZipCreator.class.php 
    180   jIniFile.class.php 
    181183 
    182184cd lib/json 
     
    336338  diffhtml.php 
    337339  README 
     340 
     341cd lib/wikirenderer 
     342  CHANGELOG 
     343  CREDITS 
     344  LICENCE 
     345  WikiRenderer.lib.php 
     346 
     347cd lib/wikirenderer/rules 
     348  wr3_to_xhtml.php 
     349  classicwr_to_text.php 
     350  classicwr_to_xhtml.php 
     351  classicwr_to_wr3.php 
     352  wr3_to_text.php 
  • trunk/build/mkmanifest.php

    r271 r279  
    1111*/ 
    1212 
    13 // arguments :  repertoire1 [repertoire2] fichier.mn 
     13// arguments :  repertoire1 [repertoire2] 
    1414// repertoire1 : le chemin du repertoire duquel on veut la liste 
    1515// repertoire2 : si on veut une base de chemin diff�nte de repertoire1 dans le fichier de sortie 
     
    1717 
    1818if($_SERVER['argc'] < 2){ 
    19    echo "too few arguments\n   repertoire1 [repertoire2] fichier.mn"; 
     19   echo "too few arguments\n   repertoire1 [repertoire2]\n"; 
    2020   exit(1); 
    2121} 
  • trunk/lib/jelix/forms/jFormsDatasource.class.php

    r248 r279  
    5858      $result=array(); 
    5959      foreach($found as $obj){ 
    60           $result[$obj->${$this->daovalue}] = $obj->${$this->daolabel} 
     60          $result[$obj->${$this->daovalue}] = $obj->${$this->daolabel}; 
    6161      } 
    6262      return $result; 
  • trunk/lib/jelix/tpl/plugins/html/function.diff.php

    r278 r279  
    2020 * @param string $nodiffmsg message quand il n'y a pas de diff�nce 
    2121 */ 
    22 function jtpl_function_diff($tpl, $str1,$str2, $nodiffmsg='Pas de diff�nce';
     22function jtpl_function_diff($tpl, $str1,$str2, $nodiffmsg='Pas de diff�nce'
    2323{ 
    2424    $diff = new Diff(explode("\n",$str1),explode("\n",$str2)); 
Download in other formats: Unified Diff Zip Archive