Skip to content

MulleWeb/mulle-scion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

mulle-scion

๐ŸŒฑ A modern template engine for Objective C

(written in an oldfashioned way)

This is the command-line tool for the MulleScion library. It also provides the documentation for the project in a self-contained webserver. It can use JSON, Plist, XML files, even multiples and mixes, as a datasource for the template variables.

Usage

Usage:
   mulle-scion [options] <input> [datasource] [output] [arguments]

   The Objective-C Template processor
   See: https://github.com/mulle-kybernetik/MulleScion

Options:
   -v[vv]   : increase verbosity
   -I       : set ':' style search path for {% includes ... %} statements
   -w       : start webserver for dox
   -z       : write compressed archive to outputfile
   -Z       : write compressed keyed archive to outputfile (for IOS)

Input:
   -        : Read template from stdin
   template : a MulleScion template path or URL

Datasource:
   -        : Read data from stdin (only if input is not stdin already)
   args     : use arguments as datasource (see below)
   bundle   : a NSBundle. Its NSPrincipalClass will be the datasource
   plist    : plist files or URLs separated by ':' merged into a datasource
   none     : empty datasource

Output:
   -        : Write result to stdout
   file     : Write result to file

Arguments:
   key=value: key/value pairs to be used as __ARGV__ contents
              (unless args as datasource was specified)

Examples:
   echo '***{{ VALUE }}***' | mulle-scion - args - VALUE="VfL Bochum 1848"
   echo '***{{ __ARGV__[ 0]}}***' | mulle-scion - none - "VfL Bochum 1848"

Example

Create informational text from a typical package.json file with the following template:

package.txt.scion:

This is the {{ name }} project version {{ version }}, which resides
on {{ repository.url }}.

{% if dependencies %}
It has the following dependencies:
{% for dep in dependencies %}
{{ dep }} at {{ dependencies[ dep] }}
{% endfor %}
{% endif %}

and the mulle-scion package.json, somewhat trimmed for readability:

package.json:

{
   "name" : "mulle-scion",
   "version" : "1859.1.9",
   "description" : "๐ŸŒฑ A modern template engine for Objective C",
   "homepage" : "https://github.com/MulleWeb/mulle-scion",
   "dependencies" : {
      "Foundation" : "git://github.com/MulleFoundation/Foundation",
      "MulleFoundation" : "git://github.com/MulleFoundation/MulleFoundation",
      "MulleWebServer" : "git://github.com/MulleWeb/MulleWebServer",
      "MulleCivetWeb" : "git://github.com/MulleWeb/MulleCivetWeb"
   }
}

See the output with:

mulle-scion package.txt.scion package.json

Fork

This is a fork of mulle-kybernetik/MulleScion tailored for use in mulle-sde projects. It's usually fresher than mulle-kybernetik/MulleScion and features get backported only on demand, or when I need them.

You are here

Overview

Add

Use mulle-sde to add mulle-scion to your project:

mulle-sde add github:MulleWeb/mulle-scion

Install

Install with mulle-sde

Use mulle-sde to build and install mulle-scion and all dependencies:

mulle-sde install --prefix /usr/local \
   https://github.com//mulle-scion/archive/latest.tar.gz

Manual Installation

Install the requirements:

Requirements Description
Foundation ๐Ÿ’ MulleFoundation with improved compatibility and legacy support
Foundation-startup โ–ถ๏ธ Startup code for the Foundation (mulle-objc)
MulleHoedown ๐Ÿ’ƒ๐Ÿผ Markdown support for mulle-objc
MulleWebServer ๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ Web Server based on civetweb for mulle-objc
MulleScion ๐ŸŒฑ A modern template engine for Objective C
MulleBashStringExpansion ๐Ÿคฏ Bash like string expansion

Download the latest tar or zip archive and unpack it.

Install mulle-scion into /usr/local with cmake:

cmake -B build \
      -DCMAKE_INSTALL_PREFIX=/usr/local \
      -DCMAKE_PREFIX_PATH=/usr/local \
      -DCMAKE_BUILD_TYPE=Release &&
cmake --build build --config Release &&
cmake --install build --config Release

Platforms and Compilers

All platforms and compilers supported by mulle-c11.

Author

Nat! for Mulle kybernetiK