0.1.4 • Published 10 years ago

gjut v0.1.4

Weekly downloads
16
License
-
Repository
-
Last release
10 years ago

gjut.js

Ask any old unix beard how much preprocessor code is a dignified amount and they will likely tell you as little as possible. In fact, since C++, no new major programming languange has used a preprocessor and that for good reason.

Except HTML templating that is. For some reason we still gladly suffer 1950's style development tools when we generate HTML. Why is that?

Gjut is a semantic templating language. This means unlike ordinary templating systems like rhtml or velocity, it cares whether you produce proper html.

So far Gjut is merely an experiment to make a point.

Requirements

Usage

Gjut comes with an example command line compiler.

$ ./bin/gjutc example/index.html

Macros

@import

Imports a javascript module.

@import dir.file

Loads dir/file.js

@insert

Inserts an html file.

@insert header.html
Variables

Assuming the module modulename returns

return {
    foobar: 'Hello, world!'
}

the variable @modulename.foobar can be inserted as an element content and will render Hello, world!.

The call to gjut.render_html() also takes an object of local variables from the user. Assuming passing something like

gjut.render_local(template, {'local': 'My local var'}, context)

The variable @local will be replaced.

Element functions

Assuming your module returns:

return {
    func: function(element) {
        element.attributes['id'] = ['syntheticId'];
    }
}

The input

<div @modulename.func()></div>

will render as:

<div id="syntheticId"></div>
@foreach

Assuming your module returns:

return {
  listItem: function listItem(element, i) {
    element.content.push({
      type: 'text',
      content: '=== ' + i + " ==="
    });
  }
  array: ['foo', 'bar', 'baz']
}

and your html contains

<li @foreach(@variables.listItem() in @variables.array)></li>

the output will be

<li>
  === foo ===
</li>
<li>
  === bar ===
</li>
<li>
  === baz ===
</li>

Verification

The structural nature of a compiled template means that verification can be performed on the static template before rendering. In theory dynamic verification after code execution is also possible but at at performance cost. This is not implemented.

Has child
@verify .foo -> .bar

Implies that if there is an element with class foo there must also be somewhere in it tree of subelements an element with class bar. Normal css selectors apply so #foo looks for id="foo" and div means any element div.

Has parent
@verify .foo <- .bar

Means any element with class bar must have in its parent chain an element with class foo.

Exists
@verify exist #canvas

Will fail unless there in the compiled template is an element with id canvas. sub-templates from the use of the @insert macro will also be checked.

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago