convert wiki node para 0.05
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2048
Convert::Wiki::Node::Para 0.05
Convert::Wiki::Node::Para is a Perl module that represents a text paragraph node. more>>
Convert::Wiki::Node::Para is a Perl module that represents a text paragraph node.
SYNOPSIS
use Convert::Wiki::Node::Para;
my $para = Convert::Wiki::Node->new( txt => Foo is a foobar., type => para );
print $para->as_wiki();
A Convert::Wiki::Node::Para represents a normal text paragraph.
<<lessSYNOPSIS
use Convert::Wiki::Node::Para;
my $para = Convert::Wiki::Node->new( txt => Foo is a foobar., type => para );
print $para->as_wiki();
A Convert::Wiki::Node::Para represents a normal text paragraph.
Download (0.019MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
1159 downloads
Convert::Wiki::Node::Head 0.05
Convert::Wiki::Node::Head is a Perl module that represents a headline node. more>>
Convert::Wiki::Node::Head is a Perl module that represents a headline node.
SYNOPSIS
use Convert::Wiki::Node::Head;
my $head = Convert::Wiki::Node->new( txt => About Foo, type => head1 );
print $head->as_wiki();
A Convert::Wiki::Node::Head represents a headline node in a text.
<<lessSYNOPSIS
use Convert::Wiki::Node::Head;
my $head = Convert::Wiki::Node->new( txt => About Foo, type => head1 );
print $head->as_wiki();
A Convert::Wiki::Node::Head represents a headline node in a text.
Download (0.019MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
1159 downloads
Convert::Wiki::Node::Line 0.05
Convert::Wiki::Node::Line is a Perl module that represents a horizontal line (aka ruler). more>>
Convert::Wiki::Node::Line is a Perl module that represents a horizontal line (aka ruler).
SYNOPSIS
use Convert::Wiki::Node::Line;
my $hr = Convert::Wiki::Node::Line->new( );
print $hr->as_wiki();
A Convert::Wiki::Node::Line represents a horizontal line (aka ruler).
<<lessSYNOPSIS
use Convert::Wiki::Node::Line;
my $hr = Convert::Wiki::Node::Line->new( );
print $hr->as_wiki();
A Convert::Wiki::Node::Line represents a horizontal line (aka ruler).
Download (0.019MB)
Added: 2006-08-21 License: Perl Artistic License Price:
1159 downloads
Convert::Wiki::Node::Item 0.05
Convert::Wiki::Node::Item is a Perl module that represents an item in a list (aka < li > or *). more>>
Convert::Wiki::Node::Item is a Perl module that represents an item in a list (aka < li > or *).
SYNOPSIS
use Convert::Wiki::Node::Item;
my $para = Convert::Wiki::Node->new( txt => Foo is a foobar., type => item );
print $para->as_wiki(); # print something like "* Foo is a foorbarn"
A Convert::Wiki::Node::Item represents an item in a list (aka the equivalent of < li > or *.
<<lessSYNOPSIS
use Convert::Wiki::Node::Item;
my $para = Convert::Wiki::Node->new( txt => Foo is a foobar., type => item );
print $para->as_wiki(); # print something like "* Foo is a foorbarn"
A Convert::Wiki::Node::Item represents an item in a list (aka the equivalent of < li > or *.
Download (0.019MB)
Added: 2006-08-21 License: Perl Artistic License Price:
1159 downloads
Convert::Wiki 0.05
Convert::Wiki is a Perl module that can convert HTML/POD/txt from/to Wiki code. more>>
Convert::Wiki is a Perl module that can convert HTML/POD/txt from/to Wiki code.
SYNOPSIS
use Convert::Wiki;
my $wiki = Convert::Wiki->new();
$wiki->from_txt ( $txt );
die ("Error: " . $wiki->error()) if $wiki->error;
print $wiki->as_wiki();
$wiki->from_html ( $html );
die ("Error: " . $wiki->error()) if $wiki->error;
print $wiki->as_wiki();
# clear the object manually
$wiki->clear();
$wiki->add_txt ( $txt );
die ("Error: " . $wiki->error()) if $wiki->error;
print $wiki->as_wiki();
Convert::Wiki converts from various formats to various Wiki formats.
Input can come as HTML, POD or plain TXT (like it is written in many READMEs). The data will be converted to an internal, node based format and can then be converted to Wikicode as used by many wikis like the Wikipedia.
<<lessSYNOPSIS
use Convert::Wiki;
my $wiki = Convert::Wiki->new();
$wiki->from_txt ( $txt );
die ("Error: " . $wiki->error()) if $wiki->error;
print $wiki->as_wiki();
$wiki->from_html ( $html );
die ("Error: " . $wiki->error()) if $wiki->error;
print $wiki->as_wiki();
# clear the object manually
$wiki->clear();
$wiki->add_txt ( $txt );
die ("Error: " . $wiki->error()) if $wiki->error;
print $wiki->as_wiki();
Convert::Wiki converts from various formats to various Wiki formats.
Input can come as HTML, POD or plain TXT (like it is written in many READMEs). The data will be converted to an internal, node based format and can then be converted to Wikicode as used by many wikis like the Wikipedia.
Download (0.019MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1176 downloads
Convert::Bencode_XS 0.05
Convert::Bencode_XS is a Perl module for faster conversions to/from Bencode format. more>>
Convert::Bencode_XS is a Perl module for faster conversions to/from Bencode format.
SYNOPSIS
use Convert::Bencode_XS qw(bencode bdecode);
use Data::Dumper;
print "Serializing:n", bencode([123, [], "XXX"]), "nn";
print Dumper bdecode(d3:fool3:bar4:stube6:numberi123ee);
__END__
Serializing:
li123el0:e3:XXXe
$VAR1 = {
number => 123,
foo => [
bar,
stub
]
};
bencode($stuff)
Returns a bencoded string representing whats in $stuff. $stuff can be either a scalar, an array reference or a hash reference. Every nesting of these data structures is allowed, other ones will croak.
bdecode($bencoded)
Returns a Perl data structure: it could be either a scalar, array reference or hash reference depending on whats in $bencoded. Dictionaries are converted in hashes, lists in arrays, scalars in strings. If $COERCE (see below) is set to a false value then scalars encoded like integers will be cleanse() before being returned so that a re-serialization of the structure will give back exactly the same bencoded string.
Enhancements:
- Perl
<<lessSYNOPSIS
use Convert::Bencode_XS qw(bencode bdecode);
use Data::Dumper;
print "Serializing:n", bencode([123, [], "XXX"]), "nn";
print Dumper bdecode(d3:fool3:bar4:stube6:numberi123ee);
__END__
Serializing:
li123el0:e3:XXXe
$VAR1 = {
number => 123,
foo => [
bar,
stub
]
};
bencode($stuff)
Returns a bencoded string representing whats in $stuff. $stuff can be either a scalar, an array reference or a hash reference. Every nesting of these data structures is allowed, other ones will croak.
bdecode($bencoded)
Returns a Perl data structure: it could be either a scalar, array reference or hash reference depending on whats in $bencoded. Dictionaries are converted in hashes, lists in arrays, scalars in strings. If $COERCE (see below) is set to a false value then scalars encoded like integers will be cleanse() before being returned so that a re-serialization of the structure will give back exactly the same bencoded string.
Enhancements:
- Perl
Download (0.009MB)
Added: 2006-08-23 License: Perl Artistic License Price:
1158 downloads
Convert::Braille 0.05
Convert::Braille is a Perl module that can convert Between Braille Encodings. more>>
Convert::Braille is a Perl module that can convert Between Braille Encodings.
SYNOPSIS
use Convert::Braille;
print brailleAsciiToUnicode ( "HELLO" ), "n";
print brailleDotsToAscii ( "12515123123135" ), "n";
EXPORTS
brailleDotsToUnicode
brailleUnicodeToDots
brailleUnicodeToAscii
brailleAsciiToUnicode
brailleAsciiToDots
brailleDotsToAscii
<<lessSYNOPSIS
use Convert::Braille;
print brailleAsciiToUnicode ( "HELLO" ), "n";
print brailleDotsToAscii ( "12515123123135" ), "n";
EXPORTS
brailleDotsToUnicode
brailleUnicodeToDots
brailleUnicodeToAscii
brailleAsciiToUnicode
brailleAsciiToDots
brailleDotsToAscii
Download (0.008MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1177 downloads
ERFAN WIKI 1.0.0
ERFAN WIKI is powerful wiki engine without database supporting smart search, smart backup, wikipedia syntax, template. more>>
ERFAN WIKI is powerful wiki engine without database supporting smart search, smart backup, wikipedia syntax, template, nice printable version, language and multiuser. Plus an easy and secure installer.
Main features:
- Multi Language
- Template Support ( full CSS )
- WikiPedia Syntax Support
- Auto Thumbnail Generator
- Smart Search
- Smart Backup
- Printable Output
- User Management
- Database Free
- Easy Installer
<<lessMain features:
- Multi Language
- Template Support ( full CSS )
- WikiPedia Syntax Support
- Auto Thumbnail Generator
- Smart Search
- Smart Backup
- Printable Output
- User Management
- Database Free
- Easy Installer
Download (0.16MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1181 downloads
Time::Convert 0.5
Time::Convert is a Perl interface to converting unix seconds to years, days, hours and minutes. more>>
Time::Convert is a Perl interface to converting unix seconds to years, days, hours and minutes.
SYNOPSIS
use Time::Convert;
my $convert = new Time::Convert;
EXAMPLE
use Time::Convert;
my $convert = new Time::Convert;
$REPLY = $convert->ConvertSecs(time);
print($REPLY);
<<lessSYNOPSIS
use Time::Convert;
my $convert = new Time::Convert;
EXAMPLE
use Time::Convert;
my $convert = new Time::Convert;
$REPLY = $convert->ConvertSecs(time);
print($REPLY);
Download (0.002MB)
Added: 2006-08-10 License: Perl Artistic License Price:
1172 downloads
Convert::ASCII::Armor 1.4
Convert::ASCII::Armor is a Perl module that can convert binary octets into ASCII armoured messages. more>>
Convert::ASCII::Armor is a Perl module that can convert binary octets into ASCII armoured messages.
SYNOPSIS
See SYNOPSIS in Convert::ASCII::Armour.
Empty subclass of Convert::ASCII::Armour for American English speakers.
<<lessSYNOPSIS
See SYNOPSIS in Convert::ASCII::Armour.
Empty subclass of Convert::ASCII::Armour for American English speakers.
Download (0.006MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1182 downloads
Convert::Braille::English 0.05
Convert::Braille::English is a Perl module that can convert Between Braille Encodings. more>>
Convert::Braille::English is a Perl module that can convert Between Braille Encodings.
SYNOPSIS
use Convert::Braille;
print brailleAsciiToEnglish ( "HELLO" ), "n";
print brailleDotsToEnglish ( "12515123123135" ), "n";
EXPORTS
englishToBrailleUnicode
englishToBrailleAscii
englishToBrailleDots
brailleAsciiToEnglish
brailleDotsToEnglish
brailleUnicodeToEnglish
<<lessSYNOPSIS
use Convert::Braille;
print brailleAsciiToEnglish ( "HELLO" ), "n";
print brailleDotsToEnglish ( "12515123123135" ), "n";
EXPORTS
englishToBrailleUnicode
englishToBrailleAscii
englishToBrailleDots
brailleAsciiToEnglish
brailleDotsToEnglish
brailleUnicodeToEnglish
Download (0.008MB)
Added: 2006-08-04 License: Perl Artistic License Price:
1181 downloads
pHEAR WiKI .02
pHEAR WiKI provides a small wiki for a personal Website. more>>
pHEAR WiKI provides a small wiki for a personal Website.
Features include easy editing and creating of pages, the ability to assign keywords that are highlighted in other wiki pages, URL archiving, and a full range of administration abilities.
Main features:
- Administration abilities:
- easy backup and restore of Wiki data files
- database compacting
- page deletion
- page version control (restore old versions of pages),
- Easy to edit and create new pages (thats what its all about afterall)
- Keyword highlighting: assign keywords to a page that are highlighted in other pages
- Simple keyword searching
- URL Archiving
- Embedable commands for enhanced Wikiing
- Easy template system to fit wiki into your site
Enhancements:
- Added a check for conflicting page saves. A conflict occurs when two user are updating the same page at the same time. A merge is automatically performed in this case.
- Did a security audit of the code. Probably a necessary thing if I plan to give this out and expect people to use it. Should be okay now. If you haver version 01 I can think of another reason to call it phear wiki.
- Added check for wether or not a title was entered. If no title was entered then a default title is used.
- Changed the way saved entries are sent to the server
- this allows pages of virtually unlimited size to be edited and mantained.
<<lessFeatures include easy editing and creating of pages, the ability to assign keywords that are highlighted in other wiki pages, URL archiving, and a full range of administration abilities.
Main features:
- Administration abilities:
- easy backup and restore of Wiki data files
- database compacting
- page deletion
- page version control (restore old versions of pages),
- Easy to edit and create new pages (thats what its all about afterall)
- Keyword highlighting: assign keywords to a page that are highlighted in other pages
- Simple keyword searching
- URL Archiving
- Embedable commands for enhanced Wikiing
- Easy template system to fit wiki into your site
Enhancements:
- Added a check for conflicting page saves. A conflict occurs when two user are updating the same page at the same time. A merge is automatically performed in this case.
- Did a security audit of the code. Probably a necessary thing if I plan to give this out and expect people to use it. Should be okay now. If you haver version 01 I can think of another reason to call it phear wiki.
- Added check for wether or not a title was entered. If no title was entered then a default title is used.
- Changed the way saved entries are sent to the server
- this allows pages of virtually unlimited size to be edited and mantained.
Download (0.014MB)
Added: 2007-01-25 License: Artistic License Price:
1004 downloads
HTML::WikiConverter::MediaWiki 0.55
HTML::WikiConverter::MediaWiki is a Perl module used to convert HTML to MediaWiki markup. more>>
HTML::WikiConverter::MediaWiki is a Perl module used to convert HTML to MediaWiki markup.
SYNOPSIS
use HTML::WikiConverter;
my $wc = new HTML::WikiConverter( dialect => MediaWiki );
print $wc->html2wiki( $html );
This module contains rules for converting HTML into MediaWiki markup. See HTML::WikiConverter for additional usage details.
ATTRIBUTES
In addition to the regular set of attributes recognized by the HTML::WikiConverter constructor, this dialect also accepts the following attributes:
preserve_bold
Boolean indicating whether bold HTML elements should be preserved as HTML in the wiki output rather than being converted into MediaWiki markup.
By default, < b > and < strong > elements are converted to wiki markup identically. But sometimes you may wish tags in the HTML to be preserved in the resulting MediaWiki markup. This attribute allows this.
For example, if preserve_bold is enabled, HTML like
< ul >
< li > < b >Bold< /b >
< li > < strong >Strong< /strong >
< /ul >
will be converted to
* < b >Bold< /b >
* Strong
When disabled (the default), the preceding HTML markup would be converted into
* Bold
* Strong
preserve_italic
Boolean indicating whether italic HTML elements should be preserved as HTML in the wiki output rather than being converted into MediaWiki markup.
For example, if preserve_italic is enabled, HTML like
< ul >
< li > < i >Italic< /i >
< li > < em >Emphasized< /em >
< /ul >
will be converted to
* < i >Italic< /i >
* Emphasized
When disabled (the default), the preceding HTML markup would be converted into
* Italic
* Emphasized
preserve_templates
Boolean indicating whether {{template}} calls found in HTML should be preserved in the wiki markup. If disabled (the default), templates calls will be wrapped in < nowiki > tags.
preserve_nowiki
Boolean indicating whether tags found in HTML should be preserved in the wiki markup. If disabled (the default), nowiki tags will be replaced with their content.
pad_headings
Boolean indicating whether section headings should be padded with spaces (eg, "== Section ==" instead of "==Section=="). Default is to pad.
<<lessSYNOPSIS
use HTML::WikiConverter;
my $wc = new HTML::WikiConverter( dialect => MediaWiki );
print $wc->html2wiki( $html );
This module contains rules for converting HTML into MediaWiki markup. See HTML::WikiConverter for additional usage details.
ATTRIBUTES
In addition to the regular set of attributes recognized by the HTML::WikiConverter constructor, this dialect also accepts the following attributes:
preserve_bold
Boolean indicating whether bold HTML elements should be preserved as HTML in the wiki output rather than being converted into MediaWiki markup.
By default, < b > and < strong > elements are converted to wiki markup identically. But sometimes you may wish tags in the HTML to be preserved in the resulting MediaWiki markup. This attribute allows this.
For example, if preserve_bold is enabled, HTML like
< ul >
< li > < b >Bold< /b >
< li > < strong >Strong< /strong >
< /ul >
will be converted to
* < b >Bold< /b >
* Strong
When disabled (the default), the preceding HTML markup would be converted into
* Bold
* Strong
preserve_italic
Boolean indicating whether italic HTML elements should be preserved as HTML in the wiki output rather than being converted into MediaWiki markup.
For example, if preserve_italic is enabled, HTML like
< ul >
< li > < i >Italic< /i >
< li > < em >Emphasized< /em >
< /ul >
will be converted to
* < i >Italic< /i >
* Emphasized
When disabled (the default), the preceding HTML markup would be converted into
* Italic
* Emphasized
preserve_templates
Boolean indicating whether {{template}} calls found in HTML should be preserved in the wiki markup. If disabled (the default), templates calls will be wrapped in < nowiki > tags.
preserve_nowiki
Boolean indicating whether tags found in HTML should be preserved in the wiki markup. If disabled (the default), nowiki tags will be replaced with their content.
pad_headings
Boolean indicating whether section headings should be padded with spaces (eg, "== Section ==" instead of "==Section=="). Default is to pad.
Download (0.011MB)
Added: 2007-07-18 License: Perl Artistic License Price:
832 downloads
Convert::Braille::Ethiopic 0.05
Convert::Braille::Ethiopic is a Perl module that can convert Between Braille Encodings. more>>
Convert::Braille::Ethiopic is a Perl module that can convert Between Braille Encodings.
SYNOPSIS
use Convert::Braille::Ethiopic;
print brailleAsciiToEthiopic ( "S5LAM" ), "n";
print brailleDotsToEthiopic ( "234261231134" ), "n";
EXPORTS
ethiopicToBrailleUnicode
ethiopicToBrailleAscii
ethiopicToBrailleDots
brailleAsciiToEthiopic
brailleDotsToEthiopic
brailleUnicodeToEthiopic
<<lessSYNOPSIS
use Convert::Braille::Ethiopic;
print brailleAsciiToEthiopic ( "S5LAM" ), "n";
print brailleDotsToEthiopic ( "234261231134" ), "n";
EXPORTS
ethiopicToBrailleUnicode
ethiopicToBrailleAscii
ethiopicToBrailleDots
brailleAsciiToEthiopic
brailleDotsToEthiopic
brailleUnicodeToEthiopic
Download (0.008MB)
Added: 2006-08-03 License: Perl Artistic License Price:
1177 downloads
HTML::WikiConverter 0.61
HTML::WikiConverter is a Perl module that can convert HTML to wiki markup. more>>
HTML::WikiConverter is a Perl module that can convert HTML to wiki markup.
SYNOPSIS
use HTML::WikiConverter;
my $wc = new HTML::WikiConverter( dialect => MediaWiki );
# Provide HTML directly
print $wc->html2wiki( $html );
# ...which is the same as
print $wc->html2wiki( html => $html );
# Or fetch it from a file
print $wc->html2wiki( file => $path );
# ...slurp it all at once rather than parsing incrementally
print $wc->html2wiki( file => $path, slurp => 1 );
# Or from a URI
print $wc->html2wiki( uri => $uri );
# Get a list of installed dialects
my @dialects = HTML::WikiConverter->available_dialects;
HTML::WikiConverter is an HTML to wiki converter. It can convert HTML source into a variety of wiki markups, called wiki "dialects". The following dialects are supported:
DokuWiki
Kwiki
MediaWiki
MoinMoin
Oddmuse
PbWiki
PhpWiki
PmWiki
SlipSlap
TikiWiki
UseMod
WakkaWiki
WikkaWiki
Note that while dialects usually produce satisfactory wiki markup, not all features of all dialects are supported. Consult individual dialects documentation for details of supported features. Suggestions for improvements, especially in the form of patches, are very much appreciated.
<<lessSYNOPSIS
use HTML::WikiConverter;
my $wc = new HTML::WikiConverter( dialect => MediaWiki );
# Provide HTML directly
print $wc->html2wiki( $html );
# ...which is the same as
print $wc->html2wiki( html => $html );
# Or fetch it from a file
print $wc->html2wiki( file => $path );
# ...slurp it all at once rather than parsing incrementally
print $wc->html2wiki( file => $path, slurp => 1 );
# Or from a URI
print $wc->html2wiki( uri => $uri );
# Get a list of installed dialects
my @dialects = HTML::WikiConverter->available_dialects;
HTML::WikiConverter is an HTML to wiki converter. It can convert HTML source into a variety of wiki markups, called wiki "dialects". The following dialects are supported:
DokuWiki
Kwiki
MediaWiki
MoinMoin
Oddmuse
PbWiki
PhpWiki
PmWiki
SlipSlap
TikiWiki
UseMod
WakkaWiki
WikkaWiki
Note that while dialects usually produce satisfactory wiki markup, not all features of all dialects are supported. Consult individual dialects documentation for details of supported features. Suggestions for improvements, especially in the form of patches, are very much appreciated.
Download (0.034MB)
Added: 2006-08-15 License: Perl Artistic License Price:
1167 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above convert wiki node para 0.05 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed