Changeset 96

Show
Ignore:
Timestamp:
01/22/07 14:52:29 (2 years ago)
Author:
ingy
Message:
doolittle tweaks
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/doc/pod/HomePage

    r95 r96  
    1 = Welcome to Doolittle -- The Kwiki Documentation Wiki 
     1= Welcome to Doolittle 
    22 
    33Doolittle is a documentation wiki with a twist. All the pages in this wiki are actually the files distributed with Kwiki. Kwiki is made up of Perl modules. Perl modules are documented with POD. So learn POD and help document Kwiki today! 
     
    55== Installation Documents 
    66 
     7* Kwiki-Installation - ... 
     8* Kwiki-Configuration - ... 
     9 
    710== Plugin Documents 
     11 
     12* Kwiki-Weather - ... 
    813 
    914=== Kwiki Theme Plugins 
    1015 
    11 | Kwiki-Theme-Sonia | The Theme currently used by http://2.kwiki.org | 
    12 | Kwiki-Theme-Aqua | ... | 
     16* Kwiki-Theme-Sonia - The Theme currently used by http://2.kwiki.org 
     17* Kwiki-Theme-Aqua - ... 
    1318 
    1419=== Kwiki Widget Plugins 
    1520 
     21* Kwiki-Favorites - ... 
     22 
    1623== Development Documents 
     24 
     25* Kwiki-Howto-Plugin - How to write a Kwiki plugin 
  • trunk/src/plugins/ingy/Kwiki-Doolittle/lib/Kwiki/Doolittle/Formatter.pm

    r95 r96  
    1717package Kwiki::Formatter::WikiLink; 
    1818our $pattern = 
    19     qr/[$UPPER\-](?=[$WORD\-]*[$UPPER\-])(?=[$WORD\-]*[$LOWER\-])[$WORD\-]+/; 
     19    qr/[$UPPER](?=[$WORD\-]*[$UPPER])(?=[$WORD\-]*[$LOWER])[$WORD\-]+/; 
    2020sub pattern_start { qr/$pattern|!$pattern/ }