The above created with:
{SNARF(url=>http://www.livejournal.com/users/rlpowell/2418.html,regex=>/.*<!-- Content -->.*?<td>(.*?)<\/td>.*?<\/div>(.*?)<hr.*?<!-- \/Content -->.*/s,regexres=><p>$1</p>$2)}[http://www.livejournal.com/users/rlpowell/2418.html]{SNARF}End of SNARF
Still other testing:
Release 1.9
Codename Sirius
The 1.9 version is the one after 1.8. As we begin to separate stable from devel versions, that 1.9 is intended to become a development branch.
Here is a tarball with latest CVS code updated every 6 hours: http://tikiwiki.org/tikiball.tar.bz2
Important
CVS branching has occured here. Note the new cvs checkout requirements!
If you commit on your current checkout you will commit to Tiki 1.10!
Update through cvs with
cvs -z5 up -dP -r BRANCH-1-9
Priorities
Documentation of linked pages : RestoreHelp project
Translation of tikiwiki and of documentation
new multilingual feature is what we need !
tw.o is upgraded, now we can translate some important pages in different languages, and the ,naming cnvention is to use a ,xx suffix where xx is the lang code. For exampl Home is linked to Home,fr
New "My Workflow" tab in "My Tiki". Shows the processes a user started + user activities. Needs sorting + pagination to be added halon
Charset/encoding + language in the mail sent to the user are function of his preferences sylvie + correct utf8 mail header encoding
Code can be used to display lines of preformatted code in wiki pages.
Using CODE tag
Wthout parameters
{CODE()} <?php function foo($foo) { print($foo); }?> {CODE}
<?php function foo($foo) { print($foo); }?>
Line numbering : ln
{CODE(ln=>1)}some code
line numbered
{CODE}
some code
line numbered
(1.8) Syntax coloring : colors
Only php color is available for now. more are expected.
{CODE(colors=>php)}<?php function foo($foo) { print($foo); }?>{CODE}
<?php function foo($foo) { print($foo); }?>
(1.9) caption insert : caption
{CODE(caption=>Caption)}some text{CODE}
some text
(1.7.1.1) If you see confusing output like "&amp;quot;" or so (actually double-processed html special characters), try to check "Allow HTML" option.
Source
You can edit the plugin if you need to change the look and feel of the output. There is only one file to deal with.
{CVS()}lib/wiki-plugins/wikiplugin_code.php{CVS}