Warning, /sdk/kdesdk-kio/perldoc/README is written in an unsupported language. File is not indexed.
0001 kio_perldoc - A KIO worker interface to the embedded Perl documentation. 0002 0003 It requires Perl 5.10 and the perl standard perldoc program to be installed. 0004 0005 Also required is the Switch module (emulates the Perl 6 switch feature in Perl 6). It 0006 looks to me like it's also included with Perl 5.8, but if this doesn't work, try that 0007 first. 0008 0009 It uses a stripped-down version of the Pod::HtmlEasy module from CPAN, by M. P. 0010 Graciliano and Geoffrey Leach. (Specifically, the 0.9 version) 0011 0012 Installing: 0013 This KIO worker is for KF KIO 5, and it requires CMake to build. Installing is 0014 about as easy as: 0015 0016 $ cmake . -DCMAKE_INSTALL_PREFIX=/opt/kf5 (Replace /opt/kf5 with your KF5 prefix) 0017 $ make && make install (or sudo make install as appropriate) 0018 0019 Usage: 0020 In konq: perldoc:/functions/foo to get the perldoc info for the given perl function 0021 (as if you ran perldoc -f foo). 0022 0023 or, perldoc:/faq/search_terms to search perlfaq* for the given search terms, and display 0024 all the matches. (like perldoc -q foo) 0025 0026 Finally, perldoc:/foo will show the perldoc results just as if you ran perldoc foo. 0027 Both module names (i.e. Test::More) and pod pages (i.e. perl58delta) work. 0028 0029 TODO: 0030 * If a faq or function is not found you currently just get a very empty page. 0031 * Probably not quite up to par for translators. :( 0032 * Looks like perl.com, it should look like kde.org, however the CSS can be changed 0033 fairly easily so this may be easy to fix. 0034 0035 - Michael Pyne <michael.pyne@kdemail.net>