Contentteller 1.0.0 RC2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Contentteller 1.0.0 RC2 (Default branch)
# 1  
Old 08-21-2008
Contentteller 1.0.0 RC2 (Default branch)

Image Contentteller is a content management system designed for sites of all sizes and types. It is powerful but simple to use, and search engine friendly out of the box. It has support for multiple Web sites, caching for high traffic Web sites, the ability to import and update everything from RSS feeds, POP3 email accounts, news servers, PAD, CompatDB XML files, a powerful template and style system, integration with 3rd party applications such as vBulletin, UBB.threads, phpBB 3.0, MyBB, SMF, and IP.Board 2.x, and an optional Windows installer to install Contentteller without the need of a FTP client. It is fully extensible with modules. License: GNU General Public License v3 Changes:
The entire admin subsession security system was rewritten to store hashes in the database rather than using sessions. An edit option was added for site_header/site_footer in the instant style editor. Support for language files was added in the module installer. Multiple small issues were fixed in the download module.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Dist::Zilla::Plugin::GenerateFile(3pm)			User Contributed Perl Documentation		    Dist::Zilla::Plugin::GenerateFile(3pm)

NAME
Dist::Zilla::Plugin::GenerateFile - build a custom file from only the plugin configuration VERSION
version 4.300020 SYNOPSIS
In your dist.ini: [GenerateFile] filename = todo/master-plan.txt is_template = 1 content = # Outlines the plan for world domination by {{$dist->name}} content = content = Item 1: Think of an idea! content = Item 2: ? content = Item 3: Profit! DESCRIPTION
This plugin adds a file to the distribution. You can specify the content, as a sequence of lines, in your configuration. The specified content might be literal, or might be a Text::Template template. Templating of the content If you provide a "is_template" parameter of "1", The content will also be run through Text::Template. The variables $plugin and $dist will be provided, set to the GenerateFile plugin and the Dist::Zilla object respectively. ATTRIBUTES
filename This attribute names the file you want to generate. It is required. content The "content" attribute is an arrayref of lines that will be joined together with newlines to form the file content. is_template This attribute is a bool indicating whether or not the content should be treated as a Text::Template template. By default, it is false. AUTHOR
Ricardo SIGNES <rjbs@cpan.org> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ricardo SIGNES. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-21 Dist::Zilla::Plugin::GenerateFile(3pm)