Projects tagged ‘java’, ‘python’, and ‘template’


Jump to tag:

Projects tagged ‘java’, ‘python’, and ‘template’

Filtered by Project Tags java python template

Refine results Project Tags tcl (1) dicom (1) image (1) registration (1) image_transformation (1) c++ (1) json (1) imaging (1) php (1) segmentation (1) csharp (1) toolkit (1)

[4 total ]

21 Users
   

Insight Segmentation and Registration Toolkit (ITK) is an open-source software system to support the Visible Human Project. Currently under active development, ITK employs leading-edge segmentation ... [More] and registration algorithms in two, three, and more dimensions. [Less]
Created over 3 years ago.

2 Users

StringTemplate is a java template engine (with ports for C# and Python) for generating source code, web pages, emails, or any other formatted text output. StringTemplate is particularly good at ... [More] multi-targeted code generators, multiple site skins, and internationalization/localization [Less]
Created 5 months ago.

0 Users

See Introducing JSON Template for an overview, and the Wiki for more docs. To use it, simply copy the Python file or the JavaScript file into your project. Neither has any external dependencies. ... [More] News3/31/09 - The Wiki has been updated with MoreDocumentation, and a few other pages. 4/4/09 - On Design Minimalism, or why JSON Template Doesn't Need an Include Statement -- An article with a detailed exposition of both specific examples and general design principles. Two live examples. 4/5/09 - Thanks to William Shallum, we now have a first cut of a Java implementation! Please try it out and send feedback to the mailing list. 4/26/09 - Thanks to Miguel Ibero, we now have a first cut of a PHP implementation! Please try it out and send feedback to the mailing list. 7/12/09 - Preview of JSON Pattern. Mailing list has an introduction to this project. 9/5/09 - pyb is a minimal version of Protocol Buffers. It could be hooked up to JSON Template, since Protocol Buffers and JSON have basically the same data model. 9/27/09 - Switched our repository to Mercurial. DevelopingJsonTemplate has been updated. [Less]
Created 8 months ago.

0 Users

Proton is a simple, "code-less" engine for xml/xhtml templates. Code-less, because it uses 3 types of ID (attribute) in a template file, rather than snippets of code — this moves the complexity out ... [More] of the template and into the application. There are currently implementations available in Python (Py3K) and Java. A simple Proton template looks like this: PAGE TITLE PAGE TITLE LINK ITEM LIST ITEMS And to render this template, you might do something like this: tmp = Templates()['test.xhtml'] tmp.setelement('title', 'An Xhtml Page', '*') tmp.setelement('link', 'This is a link to Google') tmp.setattribute('link', 'href', 'http://www.google.com') tmp.repeat('list-item', 5) for x in range(0, 5): tmp.setelement('list-item', 'test%s' % x, x) print(str(tmp)) [Less]
Created 4 months ago.