wiki2xhtml 3.2.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News wiki2xhtml 3.2.1 (Default branch)
# 1  
Old 02-17-2008
wiki2xhtml 3.2.1 (Default branch)

Imagewiki2xhtml can create complete Web pages and usesa clean XHTML syntax. It can insert galleries, amenu, a footer, and nearly all elements you knowfrom the Wikipedia. The pages are formatted withCSS. All designs can be adjusted by hand, andcustom ones can be used as well. wiki2xhtmlgenerates the HTML pages from simple text files inthe MediaWiki syntax. You can also use own (X)HTMLcode or other script languages inside; there areno restrictions. The GUI is composed of a CodePaste Window where you can insert wiki code thatwill be generated live. A click into the result,the XHTML code, copies it into the clipboard.License: GNU Lesser General Public License (LGPL)Changes:
This version is multi-lingual. It supports splitpages and redirects, exports .sh and .bat scripts,and has an adjusted GUI. Some parts have beenrewritten (the comments system, lists, headings,and tables) and now work better, and some bugswith links have been fixed.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
WWW::Wikipedia::Entry(3pm)				User Contributed Perl Documentation				WWW::Wikipedia::Entry(3pm)

NAME
WWW::Wikipedia::Entry - A class for representing a Wikipedia Entry SYNOPSIS
my $wiki = WWW::Wikipedia->new(); my $entry = $wiki->search( 'Perl' ); print $entry->text(); my $entry_es = $entry->language( 'es' ); print $entry_es->text(); DESCRIPTION
WWW::Wikipedia::Entry objects are usually created using the search() method on a WWW::Wikipedia object to search for a term. Once you've got an entry object you can then extract pieces of information from the entry using the following methods. METHODS
new() You probably won't use this one, it's the constructor that is called behind the scenes with the correct arguments by WWW::Wikipedia::search(). text() The brief text for the entry. This will provide the first paragraph of text; basically everything up to the first heading. Ordinarily this will be what you want to use. When there doesn't appear to be summary text you will be returned the fulltext instead. If text() returns nothing then you probably are looking at a disambiguation entry, and should use related() to lookup more specific entries. text_basic() The same as "text()", but not run through Text::Autoformat. fulltext() Returns the full text for the entry, which can be extensive. fulltext_basic() The same as "fulltext()", but not run through Text::Autoformat. title() Returns a title of the entry. related() Returns a list of terms in the wikipedia that are mentioned in the entry text. categories() Returns a list of categories which the entry is part of. So Perl is part of the Programming languages category. headings() Returns a list of headings used in the entry. raw() Returns the raw wikitext for the entry. language() With no parameters, it will return the current language of the entry. By specifying a two-letter language code, it will return the same entry in that language, if available. languages() Returns an array of two letter language codes denoting the languages in which this entry is available. AUTHORS
Ed Summers <ehs@pobox.com> Brian Cassidy <bricas@cpan.org> COPYRIGHT AND LICENSE
Copyright 2003-2011 by Ed Summers This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2011-02-16 WWW::Wikipedia::Entry(3pm)