All Projects → skx → chronicle2

skx / chronicle2

Licence: other
Chronicle is a simple blog compiler, written in Perl with minimal dependencies.

Programming Languages

perl
6916 projects
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to chronicle2

gatsby-reactstrap
Adding Bootstrap 4 to an Gatsby React App and serve generated the static site with Express.js
Stars: ✭ 25 (+31.58%)
Mutual labels:  static-site-generator
awesome-astro
Curated resources on building sites with Astro, a brand new way to build static and server rendered sites, with cross-framework components, styling and reactive store support.
Stars: ✭ 210 (+1005.26%)
Mutual labels:  static-site-generator
dendron-site
Getting started with Dendron
Stars: ✭ 99 (+421.05%)
Mutual labels:  static-site-generator
bookmarks
A PySide2 based file and asset manager for animation and CG productions.
Stars: ✭ 33 (+73.68%)
Mutual labels:  cgi
persian-hugo
Persian is a box design personal blog theme based on Bootstrap and powered by Hugo. It is very responsive and perfectly fits on any sized screen device.
Stars: ✭ 32 (+68.42%)
Mutual labels:  static-site-generator
trailing-slash-guide
Understand and fix your static website trailing slash issues!
Stars: ✭ 255 (+1242.11%)
Mutual labels:  static-site-generator
hugofy-vscode
Hugofy is a plugin for Visual Studio Code to make life easier to use Hugo static site generator
Stars: ✭ 27 (+42.11%)
Mutual labels:  static-site-generator
contentful-export
Extract Contentful to Hugo
Stars: ✭ 22 (+15.79%)
Mutual labels:  static-site-generator
bymattlee-11ty-starter
A starter boilerplate powered by 11ty, Sanity, Gulp, Tailwind CSS, rollup.js, Alpine.js and Highway.
Stars: ✭ 27 (+42.11%)
Mutual labels:  static-site-generator
sutanlab.id
☕️ My Personal Homepage & Blog site with NextJS. 🇺🇸 🇮🇩
Stars: ✭ 39 (+105.26%)
Mutual labels:  static-site-generator
front-matter-manipulator
A utility for parsing and manipulating documents with Front Matter
Stars: ✭ 25 (+31.58%)
Mutual labels:  static-site-generator
Blended
The Most Versatile Static HTML Site Generator
Stars: ✭ 22 (+15.79%)
Mutual labels:  static-site-generator
parcel-plugin-prerender
No description or website provided.
Stars: ✭ 42 (+121.05%)
Mutual labels:  static-site-generator
diecast
static site generator infrastructure for Rust
Stars: ✭ 12 (-36.84%)
Mutual labels:  static-site-generator
wordpress-scaffold
The scaffold for GRRR's WordPress Pro setup.
Stars: ✭ 16 (-15.79%)
Mutual labels:  static-site-generator
internetguzeldir
Source code of https://internetguzeldir.com. Static site generator that takes a Google spreadsheet and builds dmoz like website from it. Written with Python3.
Stars: ✭ 33 (+73.68%)
Mutual labels:  static-site-generator
directus-metalsmith-snipcart
Lookbook web app with Directus' open source headless CMS, Metalsmith, Vue.js & Snipcart
Stars: ✭ 14 (-26.32%)
Mutual labels:  static-site-generator
timer-hugo
Timer is a personal portfolio theme powered by Hugo. It also can be use as a landing page theme.
Stars: ✭ 123 (+547.37%)
Mutual labels:  static-site-generator
bulbo
🍹 Generate your static site with gulp plugins!
Stars: ✭ 14 (-26.32%)
Mutual labels:  static-site-generator
ssr-web
A fast, simple & powerful blog framework, powered by Node.js and Vue.
Stars: ✭ 19 (+0%)
Mutual labels:  static-site-generator

Project: Obsolete

NOTE this project is currently unmaintained, it was replaced by a golang-based application which has complete feature-parity:

chronicle

Chronicle is a tool which will convert a directory of simple text files into a static HTML weblog, (or blog if you prefer).

This repository contains a from-scratch rewrite of the Chronicle static blog compiler, which represents a significant upgrade in terms of both speed and flexibility.

The system is intentionally simple, but it does support:

  • Template based output.
  • Support for RSS feeds.
  • Support for tagged entries.
  • Optional support for comments.

This implementation is significantly faster at page generation than previous releases, primarily because posts are parsed and inserted into an SQLite database, rather than having each post read into RAM.

Once the blog posts have been populated in the SQLite database they are inserted into a series of templates, which ultimately generates the output.

Although we assume you keep the SQLite database around it doesn't matter if you delete it. The act of parsing all your entries is still a very quick process.

Installation

Clone the repository then install as you would any CPAN module:

perl Makefile.PL
make test
su - make install

Blog Format

The blog format is very simple, and the following file is a sample:

title: The title of my post
date: 12 August 2007
tags: foo, bar, baz

The text of the actual entry goes here.

However much there is of it.

The entry is prefixed by a small header, consisting of several pseudo-header fields. The header MUST be separated from the body by at least one empty line.

Header values which are unknown are ignored, and no part of the header is included in the output which is generated.

The following header values are recognized:

  • Title:
    • This holds the name of the post. ("Subject:" may be used as a synonym.) If neither "Title" or "Subject" are present the filename itself is used.
  • Date:
    • The date this entry was created. If not present the creation time of the file is used.
  • Tags:
    • If any tags are present they will be used to categorize the entry.
  • Format:
    • This allows you to specify if you're writing in markdown, or textile. If you are then the blog-body will be processed correctly.

Additional headers may be inserted, which will be ignored by default, for access by particular plugins. For example the Chronicle::Plugin::SkipDrafts plugin will ensure that blog entries are ignored if they are still drafts - and include a draft:1 header. Similarly there is a plugin called PostSpooler which will ignore posts until their due data, and that uses the special publish header - rather than the default date.

Simple Usage

Assuming you have a directory containing a number of blog posts you should be able to generate your blog like so:

chronicle --input=path/to/input --output=/path/to/output \
   --theme=blog.steve.org.uk

This will read path/to/input/*.txt and generate the blog beneath the directory /path/to/output/ creating that directory if missing.

The SQLite database will be created at ./blog.db by default, and if it is deleted it will be regenerated.

Advanced Usage

The previous example showed the basic usage, one obvious change most users would prefer would be to set the title of the blog, and the subtitle:

chronicle --title="Steve Kemp's Blog" --sub-title="Writings about cake" ..

If you start setting multiple values you might prefer to use a configuration file instead. Chronicle will read /etc/chronicle/config, and ~/.chronicle/config prior to starting. Failing that you can specify a configuration file of your own via --config=/path/to/conf.

The configuration file matches the command line arguments exactly, so given "--foo=bar" the configuration file would allow the same thing to be set via:

foo = bar

As we've previously noted the blog-generation largely occurs via a series of plugins. For example the sidebar might show the list of all tags, which can get unwieldy quickly. If you wished to disable that you could do so via:

chronicle --exclude-plugins=AllTags,RecentPosts --force ..

NOTE: The plugins which generate output pages are located beneath the Chronicle::Plugin::Generate name-space. The plugins which generate snippets available to all pages are located beneath the Chronicle::Plugin::Snippets name-space.

NOTE: Because the snippets are included in every page, in the default themes, we've added --force to ensure that the output pages are updated.

User-Visible Changes

In an ideal would you should be able to migrate from previous Chronicle releases directly to this codebase, as the purpose and main operation is identical:

  • Blog entries are are still read from data/, unless you specify a different path via "--input".
  • We still assume *.txt are the blog entries, unless you specify "--pattern=*.blog".
  • Blog entries are still built up of a header and the entry.
  • Entries are still parsed in HTML, Markdown, and Textile formats.

However there are changes, and these largely relate to the templates, along with the implementation differences.

As of Chronicle 5 the main script parses any command-line arguments, and reads the blog posts, but the actual generation of your site is entirely plugin-based. The plugins are standard Perl modules located beneath the Chronicle::Plugin name-space, and although you don't need to know any of the details they can be ordered thanks to the use of Module::Pluggable::Ordered class.

The template changes are a little more significant than I'd like, but happily these changes largely consist of new locations for things, and additional pages.

Extending

As mentioned the core code is pretty minimal and all output functionality is carried out by plugins.

The core will call the following methods if present in plugins:

  • on_db_create
    • This is called if the SQLite database does not exist, and can be used to add new columns, or tables.
  • on_db_open
    • This is called when the database is opened, and we use it to set memory/sync options. It could be used to do more.
  • on_insert
    • This method is invoked as a blog entry is read to disk before it is inserted into the database for the first time - or when the item on disk has been changed and the database must be refreshed.
    • This method is designed to handle Markdown/Textile conversion, etc.
  • on_initiate
    • This is called prior to any processing, with a reference to the configuration options and the database handle used for storage.
    • This is a good place to call code that generates common snippets, or populates global-variables.
  • on_generate
    • This is called to generate the actual output pages. There is no logical difference between this method and on_initiate except that the former plugin methods are guaranteed to have been called prior to on_generate being invoked.
    • This is where pages are output.

Steve

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].