davepagurek / Trestle

A light, extensible Perl CMS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trestle

![Trestle logo](https://github.com/pahgawk/Trestle/blob/master/admin/img/trestle.png?raw=true)

A light, extensible Perl CMS by Dave Pagurek

Screenshots

Admin interface: ![Admin interface](http://davepagurek.com/content/images/2015/2/trestle-admin.jpg)

Features

  • Write posts including some HTML
  • Make categories from the directory hierarchy
  • Store metadata in JSON a comment at the top of of each post
  • Automatically resize images
  • Cache generated pages to reduce server load

Setup

Installation

Using cpanm, run: ``` cpanm --installdeps . ```

This requires libgd to work. If it is not already installed install it:

#OSX
brew install libgd

#Ubuntu
sudo apt-get -y install libgd2-xpm-dev build-essential

Install dependencies with cpanm again after libgd is installed.

Trestle config

Here is an example `index.fcgi`:
use Trestle;
use Trestle::Theme::Pahgawks;
use Trestle::Plugin::CodePrettify;
use Trestle::Plugin::GoogleAnalytics;
use Trestle::Plugin::YouTube;
use Trestle::Plugin::DisqusComments;
use Trestle::Plugin::ImageCaption;

my $site = Trestle->new({
    dev => 1,
    root => "http://localhost/Trestle",
    theme => Trestle::Theme::Pahgawks->new(),
    plugins => [
        Trestle::Plugin::CodePrettify->new("tomorrow-night"),
        Trestle::Plugin::GoogleAnalytics->new("UA-8777691-3"),
        Trestle::Plugin::YouTube->new(),
        Trestle::Plugin::ImageCaption->new()
    ],
    cacheLife => 0
});

$site->run();

If dev is enabled, CGI::Carp will send warnings and fatal errors to the browser.

cacheLife is the number of hours before a cached page is set to be rerendered.

Apache config

In `.htaccess`, uncomment the respective line based on your system setup: ``` #Use this if your Apache setup supports mod_fcgid #AddHandler fcgid-script .fcgi

#Use this if you want to run Trestle as normal cgi AddHandler cgi-script .fcgi


<h2>Writing</h2>
Here is an example page to demonstrate page structure. 

```html

<!--
{
    "title": "Hooked on a Feeling",
    "thumbnail": "%root%/content/images/hasselhoff-thumbnail.jpg",
    "date": "2014-08-27",
    "youtube": "PJQVlVHsFF8"
}
-->

I made this song to represent the juxtaposition of societal norms and the microcosm of cultural phenomena exhibited through the greenscreen. It is very meaningful and artistic.

The boat part is actually for real though.

Metadata is written as a JSON object in an HTML comment at the top of the page.

%root% will be replaced by the root directory as defined in index.fcgi

Inline YouTube video urls will be replaced with an embedded player thanks to Trestle::Plugin::YouTube

Images in the form <img src="img" full="img-full" caption="Caption"> will be replaced by a captioned image thanks to Trestle::Plugin::YouTube

Plugins

Here is the structure of an example plugin: ```perl package Trestle::Plugin::Example;

sub new { my $class = shift; my $self = {};

$self->{pages} = 1;
$self->{categories} = 1;
$self->{archives} = 1;
$self->{index} = 1;
$self->{error} = 1;

bless $self, $class;
return $self;

}

sub content { my ($self, $content, $page) = @_;

$content =~ s/foo/bar/ig;

return $content;

}

1;


Set `$self->{pagetype}` in `sub new` to register the plugin for that type of content.

In the `content` sub, you can do what you want with the `$content` variable and then return the new page content.

<h2>Themes</h2>
Here is the basic structure of a theme:
```perl
package Trestle::Theme::Example;

use strict;

use lib "../..";
use Trestle::Theme;

sub new {
    my $class = shift;
    my $self = {
        dir => "Trestle/Theme/Example",
        theme => Trestle::Theme->new()
    };

    bless $self, $class;
    return $self;
}

sub content {
    my ($self, $page) = @_;

    return $self->{theme}->render("$self->{dir}/template/content.tmpl", {
        themeDir => $self->{dir},
        title => $page->meta("title"),
        category => $page->meta("category"),
        content => $page->content
    });
}

sub dir {
    my ($self, $category) = @_;

    return $self->{theme}->render("$self->{dir}/template/dir.tmpl", {
        themeDir => $self->{dir},
        title => $category->info("name"),
        name => $category->info("name"),
        pages => $category->info("pages")
    });
}

sub archives {
    my ($self, $root, @cats) = @_;
    my $source = "";

    return $self->{theme}->render("$self->{dir}/template/archives.tmpl", {
        themeDir => $self->{dir},
        title => "Portfolio",
        categories => \@cats
    });

}

sub error {
    my ($self, $error, $root) = @_;

    return $self->{theme}->render("$self->{dir}/template/error.tmpl", {
        themeDir => $self->{dir},
        title => "Page Not Found",
        error => $error
    });
}

sub main {
    my ($self, $page) = @_;

    return $self->{theme}->render("$self->{dir}/template/content.tmpl", {
        themeDir => $self->{dir},
        title => $page->meta("title"),
        content => $page->content
    });
}

1;

A theme uses HTML::Template-style templates for .tmpl pages. Read the documentation to see how to write templates.

Themes have subs for each of the types of pages that potentially need to be rendered.

About

A light, extensible Perl CMS


Languages

Language:Perl 56.6%Language:CSS 28.8%Language:HTML 9.1%Language:JavaScript 4.9%Language:ApacheConf 0.6%