Projects tagged ‘generation’ and ‘template’


[10 total ]

2 Users

YARD is a complete Ruby documentation tool which obsoletes and replaces RDoc with feature enhancements and a better system design for plugin modularity. YARD targets documentation writers as well as ... [More] code analysts to provide a huge amount of introspection both to documentation and code. [Less]
Created 9 months ago.

0 Users

A simple code generation tool written in C# that uses syntax similar to Microsoft ASP.Net.
Created 12 months ago.

0 Users

FxMarker is a templating engine similar with the Freemarker java library. It generates text output based on templates and context objects provided as input.
Created 8 months ago.

0 Users

A simple, light weight template engine which is designed to be embedded in a larger program. The template language is very simple, yet highly flexible. It can be used to generate C#, VB.Net, HTML ... [More] , XML and pretty much any other kind of text based output. [Less]
Created 10 months ago.

0 Users

Templates for generation of CSLA classes.
Created 19 days ago.

0 Users

This is a (relatively) small piece of perl code that is used to generate configuration file templates for an ISP.
Created 12 months ago.

0 Users

iCodeGenerator is an Open Source template based generator. It is very easy to use because it's own simple sintax. It can generate Data Access code for any programming language, like C#, Java, SQL ... [More] , PHP, Perl to name a few, from any supported database (SQL Server and MySQL, Postgres and Oracle). It is being develop with C#. [Less]
Created 12 months ago.

0 Users

IDE for AjGenesis Code Generation.
Created 10 months ago.

0 Users

Introduction This project implements a simple templating system in C# using the Django style {{ varName }}, double curly notation. The class was implemented specifically for templatizing ... [More] html/javascript but can be used with any file type. The templates only do replacements. Unlike Django, there are no conditional statements, for loops etc.. This can all be accomplished within C# itself and keeps layout nicely separated from logic. Points of Interest Unlike StringTemplate from www.stringtemplate.org (which seems to be the best open source template engine written in c#) this template engine indexes the variable locations within the template instead of breaking the template into multiple chunks and putting them back together for output. The indexing occurs only once when the template is first used. It's then stored in a global dictionary with the filename as its key. The reason for indexing is the same reason you would use a StringBuilder rather than concatenation operators i.e. ("asdf" + "ghjk") to build strings. It keeps everything in one string, lowering the copy time and memory use associated with separating the template into many different strings and putting it back together for output. The only trade-off here is that you have to recalculate the indicies above an inserted variable by adding the length of the value inserted. I assumed this trade-off would be well worth it. These templates are currently in use on SpyFu.com. Background The real driver for me to create this was the frustration that came from trying to replicate the same ASP.NET user control several times on a page. While this can be done, I've only got it to work by putting all the code in markup and pasting the same markup (user control) over and over, or by putting all the code in code-behind files and creating all the HTML elements in C#...uck. While the first option is probably the best since the HTML is actually editable in its native format and the need for pagination usually means a limited number of controls, I knew that templates, after using Google App Engine and Django, would offer a more elegant solution. Note The tests included run within Visual Studio itself and to my knowledge are a new feature in Visual Studio 2008. Please download the source using the link on the right. There are tests as well as an example website to show you how to use templates. [Less]
Created 7 months ago.

0 Users

code generation application in .net by Luis Molina. FAQ
Created 11 months ago.