| 1 |
wakaba |
1.1 |
=head1 NAME |
| 2 |
|
|
|
| 3 |
|
|
SuikaWiki::DB::FileSystem::LeafFileP - LeafFile Database ammended by Pescaped |
| 4 |
|
|
|
| 5 |
|
|
=head1 DESCRIPTION |
| 6 |
|
|
|
| 7 |
|
|
C<SuikaWiki::DB::FileSystem::LeafFileP> provides same functionality with |
| 8 |
|
|
C<SuikaWiki::DB::FileSystem::LeafFile> with exception that |
| 9 |
|
|
C<SuikaWiki::DB::FileSystem::LeafFileP> encodes key names |
| 10 |
|
|
(files and directories names) by "PLUS SIGN escape." See |
| 11 |
|
|
C<SuikaWiki::DB::FileSystem::Pescaped> for more information for |
| 12 |
|
|
"PLUS SIGN escape." |
| 13 |
|
|
|
| 14 |
|
|
This module is part of SuikaWiki. |
| 15 |
|
|
|
| 16 |
|
|
=cut |
| 17 |
|
|
|
| 18 |
|
|
package SuikaWiki::DB::FileSystem::LeafFileP; |
| 19 |
|
|
use strict; |
| 20 |
|
|
our $VERSION=do{my @r=(q$Revision: 1.2 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r}; |
| 21 |
|
|
|
| 22 |
|
|
require SuikaWiki::DB::FileSystem::Pescaped; |
| 23 |
|
|
require SuikaWiki::DB::FileSystem::LeafFile; |
| 24 |
|
|
push our @ISA, qw(SuikaWiki::DB::FileSystem::Pescaped |
| 25 |
|
|
SuikaWiki::DB::FileSystem::LeafFile); |
| 26 |
|
|
|
| 27 |
|
|
=head1 SEE ALSO |
| 28 |
|
|
|
| 29 |
|
|
C<SuikaWiki::DB::FileSystem::LeafFile>, |
| 30 |
|
|
C<SuikaWiki::DB::FileSystem::Pescaped>. |
| 31 |
|
|
|
| 32 |
|
|
=head1 LICENSE |
| 33 |
|
|
|
| 34 |
|
|
Copyright 2004 Wakaba <[email protected]>. All rights reserved. |
| 35 |
|
|
|
| 36 |
|
|
This program is free software; you can redistribute it and/or |
| 37 |
|
|
modify it under the same terms as Perl itself. |
| 38 |
|
|
|
| 39 |
|
|
1; # $Date:$ |
| 40 |
|
|
|