<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp">
    <title>gmane.comp.text.fmpp</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/160"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/159"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/158"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/157"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/156"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/155"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/154"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/153"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/152"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/151"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/150"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/149"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/148"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/147"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/146"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/145"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/144"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/143"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/142"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.text.fmpp/141"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/160">
    <title>Re: How to use nested directives?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/160</link>
    <description>&lt;pre&gt;

This is correct so far, although &amp;lt;#if outFile?cotains(m.item.link)&amp;gt;
would be nicer.


(It is an error since ${Expression} only makes sense put directly into
static text or into a string literal. Elsewhere you can you just use
Expression as is.)


(I assume there will be something else next to the "item" key in that
map, or else that whole map could be eliminated, of course.)


Just like you did. Furthermore your above example works for me. So,
some of the items has no "link" in it or it's null. That's what the
error message means.


&lt;/pre&gt;</description>
    <dc:creator>Daniel Dekany</dc:creator>
    <dc:date>2012-05-22T21:27:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/159">
    <title>How to use nested directives?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/159</link>
    <description>&lt;pre&gt;Hi fmpplers,

I try to generate my menus dynamically and to activate the current menu item. So I use one directive
inside another but I do not know how to do it right. The following is taken from the example below:

    &amp;lt;#if outFile?index_of(m.item.link) != -1&amp;gt;  &amp;lt;!-- m.item.link is undefined --&amp;gt;
    &amp;lt;#if outFile?index_of(${m.item.link}) != -1&amp;gt;  &amp;lt;!-- syntax error --&amp;gt;

Complete example:

    &amp;lt;#assign menus = [
        {"item": {"name": "Motive", "link": "motive.html"}},
        {"item": {"name": "Action", "link": "action.html"}},
    ]&amp;gt;
    &amp;lt;#if currentLanguage == "es"&amp;gt;
        &amp;lt;#assign menus = [
            {"item": {"name": "Motivos", "link": "es/motive.html"}},
            {"item": {"name": "Acción", "link": "es/action.html"}},
        ]&amp;gt;
    &amp;lt;/#if&amp;gt;
    &amp;lt;ul class="nav"&amp;gt;
        &amp;lt;#list menus as m&amp;gt;
            &amp;lt;li &amp;lt;#if outFile?index_of(m.item.link) != -1&amp;gt;class="active"&amp;lt;/#if&amp;gt;&amp;gt;
                &amp;lt;a href="${m.item.link}"&amp;gt;${m.item.name}&amp;lt;/a&amp;gt;
            &amp;lt;/li&amp;gt;
        &amp;lt;/#list&amp;gt; 
    &amp;lt;/ul&amp;gt;

How can I access the variab&lt;/pre&gt;</description>
    <dc:creator>Stefan Undorf</dc:creator>
    <dc:date>2012-05-22T14:50:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/158">
    <title>Re: Parsing TDD Files</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/158</link>
    <description>&lt;pre&gt;I ended up getting it to work with:


String propStr = Interpreter.loadTdd(in, "ISO-8859-1");

Map propMap = Interpreter.evalAsHash(propStr);


-Ryan

From: "Shelley, Ryan" &amp;lt;Ryan.Shelley&amp;lt; at &amp;gt;disney.com&amp;lt;mailto:Ryan.Shelley&amp;lt; at &amp;gt;disney.com&amp;gt;&amp;gt;
Reply-To: FMPP open discussion &amp;lt;fmpp-open&amp;lt; at &amp;gt;lists.sourceforge.net&amp;lt;mailto:fmpp-open&amp;lt; at &amp;gt;lists.sourceforge.net&amp;gt;&amp;gt;
Date: Wed, 11 Apr 2012 16:32:10 -0700
To: "fmpp-open&amp;lt; at &amp;gt;lists.sourceforge.net&amp;lt;mailto:fmpp-open&amp;lt; at &amp;gt;lists.sourceforge.net&amp;gt;" &amp;lt;fmpp-open&amp;lt; at &amp;gt;lists.sourceforge.net&amp;lt;mailto:fmpp-open&amp;lt; at &amp;gt;lists.sourceforge.net&amp;gt;&amp;gt;
Subject: [FMPP] Parsing TDD Files

I'd like to use the TDD parsing functionality for reading properties files for my application. I've used FMPP for generating configuration files from templates, but I'd like to skip the generation stage, and use a TDD as the data source for run-time settings. Is this possible, or can I use a particular sub-library of FMPP to accomplish this?  Thanks!

-Ryan
------------------------------------------------------------------------------
For Developers, A Lot C&lt;/pre&gt;</description>
    <dc:creator>Shelley, Ryan</dc:creator>
    <dc:date>2012-04-12T01:00:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/157">
    <title>Parsing TDD Files</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/157</link>
    <description>&lt;pre&gt;I'd like to use the TDD parsing functionality for reading properties files for my application. I've used FMPP for generating configuration files from templates, but I'd like to skip the generation stage, and use a TDD as the data source for run-time settings. Is this possible, or can I use a particular sub-library of FMPP to accomplish this?  Thanks!

-Ryan
------------------------------------------------------------------------------
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev_______________________________________________
fmpp-open mailing list
fmpp-open&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fmpp-open
&lt;/pre&gt;</description>
    <dc:creator>Shelley, Ryan</dc:creator>
    <dc:date>2012-04-11T23:32:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/156">
    <title>Re: newbie problem</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/156</link>
    <description>&lt;pre&gt;I'm not sure what do you expect and what's the difference compared to
that. Some questions:

- Why would you put templates into the "data" directory?

- What's in Actions.xml? Is there any FreeMarker
  directives/interpolations in it? Or is it plain XML that you want to
  transform with the template?

- You don't use the "include" variable anywhere

Thursday, October 28, 2010, 3:05:44 PM, CsPéter wrote:



&lt;/pre&gt;</description>
    <dc:creator>Daniel Dekany</dc:creator>
    <dc:date>2010-10-28T18:21:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/155">
    <title>newbie problem</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/155</link>
    <description>&lt;pre&gt; 
Hi!
I'm newbie to fmpp and I couldn't make a front-end application work so far. I hope someone can help me.The ant build.xml looks like this (and works) :
&amp;amp;lt;!--freemarker--&amp;amp;gt;&amp;amp;lt;target name="freemarker" description="Freemarker test" depends=""&amp;amp;gt;&amp;amp;lt;taskdef name="freemarker" classname="freemarker.ext.ant.FreemarkerXmlTask"&amp;amp;gt;&amp;amp;lt;classpath&amp;amp;gt;&amp;amp;lt;pathelement location="freemarker.jar" /&amp;amp;gt;&amp;amp;lt;/classpath&amp;amp;gt;&amp;amp;lt;/taskdef&amp;amp;gt;&amp;amp;lt;mkdir dir="sql" /&amp;amp;gt;&amp;amp;lt;freemarker basedir="${xml.dir}" destdir="${sql.dir}" includes="Actions.xml" template="${templates.dir}/test2.ftl" /&amp;amp;gt;  &amp;amp;lt;!--freemarker basedir="${xml.dir}" destdir="${html.dir}" includes="**/*.xml" template="${templates.dir}/test2.ftl" /--&amp;amp;gt;  &amp;amp;lt;/target&amp;amp;gt;
My own ant task is this:&amp;amp;lt;!--excelgen--&amp;amp;gt;&amp;amp;lt;target name="excelgen" description="Generates things" depends="jar"&amp;amp;gt;        &amp;amp;lt;taskdef name="excelgen" classname="ExcelGen" classpath="${classpath}"/&amp;amp;gt;&amp;amp;lt;excelgen excels="excel1, excel2" ftls="elso.ftl" outputs="ht&lt;/pre&gt;</description>
    <dc:creator>CsPéter</dc:creator>
    <dc:date>2010-10-28T13:05:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/154">
    <title>Re: Freemarker with YAML Files</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/154</link>
    <description>&lt;pre&gt;I don't know anything concrete about this mater, but as far as I see,
some YAML libraries expose YAML as JavaBeans, in which case FreeMarker
marker can access them right now, and you don't need anything
YAML-specific.

If YAML is turned into some kind of YAML-specific nodes/entires (maybe
JvYAML does that, I don't know) instead, just like W3C DOM nodes are
wrapped, those could be too, but then someone needs to write the
wrapper first... (Yes, that was what you were looking for.)


Tuesday, August 10, 2010, 8:34:33 AM, Chris wrote:


&lt;/pre&gt;</description>
    <dc:creator>Daniel Dekany</dc:creator>
    <dc:date>2010-08-10T07:25:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/153">
    <title>Freemarker with YAML Files</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/153</link>
    <description>&lt;pre&gt;
Hello,

i'd like to use the freemarker tool in my RubyOnRails Application. 

In the App i have much YAML Files with Properties.

Is there any way to use them with freemarker (or the cli version fmpp) ?!?

I have used the fmpp tool in different projekt but only with properties
files.... and my google search give me no results to "yaml and freemarker"
:-)

Thank you very much for your help!!

lg
Chris
&lt;/pre&gt;</description>
    <dc:creator>Chris</dc:creator>
    <dc:date>2010-08-10T06:34:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/152">
    <title>Re: freemarker in struts2 application</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/152</link>
    <description>&lt;pre&gt;

Note that this is the FMPP mailing-list, not the FreeMarker
mailing-list.


The above line should be just:

  &amp;lt;#if parameters.cssStyle == "vertical"&amp;gt;

Does the same but cleaner and faster...

Also, the two #if could be united as

  &amp;lt;#if parameters.cssStyle?exists and parameters.cssStyle == "vertical"&amp;gt;

which furthermore can be reduced to:

  &amp;lt;#if parameters.cssStyle!'' == "vertical"&amp;gt;


That's a HTML question, and so it has nothing to do wit FreeMarker.
But you could use a HTML table, or div-s with fixed width and CSS
floating.

&lt;/pre&gt;</description>
    <dc:creator>Daniel Dekany</dc:creator>
    <dc:date>2010-07-19T13:35:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/151">
    <title>freemarker in struts2 application</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/151</link>
    <description>&lt;pre&gt;

I have a struts2 application ,where in the jsp page i have struts2 tag
checkbacklist ,which displays the list of checkboxes in a row ,i want to
display it in the column form , for that i have made changes in the
checkboxlist.flt file as 

&amp;lt;#if parameters.cssStyle?exists&amp;gt;
&amp;lt;#if "${parameters.cssStyle?html}" == "vertical"&amp;gt;
&amp;lt;#if itemCount%2==0&amp;gt;
&amp;lt;br&amp;gt;&amp;lt;#rt/&amp;gt;
&amp;lt;#else&amp;gt;&amp;amp;nbsp;
&amp;lt;/#if&amp;gt;
&amp;lt;/#if&amp;gt;
&amp;lt;/#if&amp;gt;

In this i can display the way i want to display the checkboxes in 2 columns
,but the problem is the checkboxes starting from the 2nd column are not in
the line 
something like this

  1 chkbox     2 chkbox
  3 chkbox        4 chkbox
  5 chkbox    5 chkbox 

 i want it to be as 
  1 chkbox            2 chkbox
  3 chkbox            4 chkbox
  5 chkbox            5 chkbox 

What do i do for the above code 




&lt;/pre&gt;</description>
    <dc:creator>jyothisree</dc:creator>
    <dc:date>2010-07-19T11:18:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/150">
    <title>Re: How to include java code into freemarker's data model infmpp?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/150</link>
    <description>&lt;pre&gt;Well, I tried to specify maven classpath and it looks like maven
classpath includes my custom code, but FMPP still can not see it.
While running maven build, ant-run prints it classpath and classes I
need to have in FMPP are included. But Freemarker instance used by
FMPP can't see them. I used Freemarker's new() modifier to create an
object, like:
&amp;lt;#assign AA="my.functionObject.full.ClassName"?new()&amp;gt;
and got build error like:
     [fmpp] Task aborted: FMPP processing session failed.
     [fmpp] Caused by: freemarker.template.TemplateException:
java.lang.ClassNotFoundException: my.functionObject.full.ClassName
     [fmpp] Caused by: java.lang.ClassNotFoundException:
my.functionObject.full.ClassName

In general, I wanted to add some custom complex logic into template
environment. This time only as custom freemarker function, but if this
strategy will work, then more logic will be possible to add.
Constructing that object in beanshell also failed with
ClassNotFoundException. It seems that FMPP freemarker instan&lt;/pre&gt;</description>
    <dc:creator>alebu</dc:creator>
    <dc:date>2010-01-09T12:38:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/149">
    <title>Re: How to include java code into freemarker's data model infmpp?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/149</link>
    <description>&lt;pre&gt;Defininion of custom ant tasks in maven-ant-run plugin is described
here: http://maven.apache.org/plugins/maven-antrun-plugin/examples/customTasks.html
In general, configuration looks like &amp;lt;taskdef name="myTask"
classname="com.acme.MyTask" classpathref="maven.plugin.classpath"/&amp;gt;
This 'maven.plugin.classpath' is defined by maven and is plugin
classpath. Perhaps I need to play with it to get what I want. At least
it worth to try. Thanks for hint!


On Tue, Jan 5, 2010 at 3:11 PM, Daniel Dekany &amp;lt;ddekany&amp;lt; at &amp;gt;freemail.hu&amp;gt; wrote:

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev &lt;/pre&gt;</description>
    <dc:creator>alebu</dc:creator>
    <dc:date>2010-01-05T13:22:17</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/148">
    <title>Re: How to include java code into freemarker's data model infmpp?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/148</link>
    <description>&lt;pre&gt;

How did you define the fmpp task? Because it wouldn't work unless you
have put it into the "Ant classpath" somehow. Can't you add your
classes to the "Ant classpath" one the same way? (The Ant "taskdef"
element has optional "classpath" and "classpathref" attributes, also I
believe it supports nested "classpath" element too.)



&lt;/pre&gt;</description>
    <dc:creator>Daniel Dekany</dc:creator>
    <dc:date>2010-01-05T13:11:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/147">
    <title>Re: How to include java code into freemarker's data model infmpp?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/147</link>
    <description>&lt;pre&gt;I think that under Ant. Maven-ant-run plugin allows to pass maven
classpath to Ant. At least that is stated in documentation. But I
can't find how to specify any class path to FMPP it self from ant. And
that is the problem. I am thinking about possible maven FMPP plugin
but first I need to find some free time for it :(

On Tue, Jan 5, 2010 at 12:42 PM, Daniel Dekany &amp;lt;ddekany&amp;lt; at &amp;gt;freemail.hu&amp;gt; wrote:

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev &lt;/pre&gt;</description>
    <dc:creator>alebu</dc:creator>
    <dc:date>2010-01-05T11:06:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/146">
    <title>Re: How to include java code into freemarker's data model infmpp?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/146</link>
    <description>&lt;pre&gt;

This issue might not be FMPP-specific. Sounds like it's just about
setting up the "class path" under Maven (or maybe under Ant).


&lt;/pre&gt;</description>
    <dc:creator>Daniel Dekany</dc:creator>
    <dc:date>2010-01-05T10:42:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/145">
    <title>Re: How to include java code into freemarker's data model infmpp?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/145</link>
    <description>&lt;pre&gt;Thanks, I found this one be seeking discussion. Unfortunately, I am
not sure is it helpful, because I am running FMPP from Ant (actually
from maven using maven-ant-run plugin). So, I can't manipulate
classpath of fmpp, because I even have no installation of it, FMPP
code comes from maven repository. During the week, I will try to play
with it (now I am at work and have no access to code where I want to
apply such approach. In success I will write in this discussion.

On Tue, Jan 5, 2010 at 10:41 AM, Daniel Dekany &amp;lt;ddekany&amp;lt; at &amp;gt;freemail.hu&amp;gt; wrote:

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev &lt;/pre&gt;</description>
    <dc:creator>alebu</dc:creator>
    <dc:date>2010-01-05T08:47:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/144">
    <title>Re: How to include java code into freemarker's data model infmpp?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/144</link>
    <description>&lt;pre&gt;

Sorry, I mean this:
http://article.gmane.org/gmane.comp.text.fmpp/135


&lt;/pre&gt;</description>
    <dc:creator>Daniel Dekany</dc:creator>
    <dc:date>2010-01-05T08:41:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/143">
    <title>Re: How to include java code into freemarker's data model infmpp?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/143</link>
    <description>&lt;pre&gt;

This may helps:
http://thread.gmane.org/gmane.comp.text.fmpp/133/focus=138

&lt;/pre&gt;</description>
    <dc:creator>Daniel Dekany</dc:creator>
    <dc:date>2010-01-04T22:31:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/142">
    <title>How to include java code into freemarker's data model infmpp?</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/142</link>
    <description>&lt;pre&gt;Hi all,
How can I specify FMPP to include some compiled java code or jar files
in the freemarker classpath? I need it because I want to use some of
the functions written with java from freemarker templates and because
FMPP instanciates freemarker instance, I can't affect a classpath it
passes to it.

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
&lt;/pre&gt;</description>
    <dc:creator>alebu</dc:creator>
    <dc:date>2010-01-04T20:20:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/141">
    <title>Re: Using FMPP Output Tags separately</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/141</link>
    <description>&lt;pre&gt;Thanks for superior answer!
Maybe I will use FMPP as an example of those output tags implementation.


On Mon, Dec 7, 2009 at 8:04 PM, Daniel Dekany &amp;lt;ddekany&amp;lt; at &amp;gt;freemail.hu&amp;gt; wrote:

------------------------------------------------------------------------------
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing. 
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev
&lt;/pre&gt;</description>
    <dc:creator>alebu</dc:creator>
    <dc:date>2009-12-07T19:07:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.text.fmpp/140">
    <title>Re: Using FMPP Output Tags separately</title>
    <link>http://permalink.gmane.org/gmane.comp.text.fmpp/140</link>
    <description>&lt;pre&gt;

Sorry, I don't understant the question. Could you be more specific?
Responsible for the generation of... what?


Unfortunatelly that's not supported by FMPP... altough FreeMarker
itself can load template from classpath, but there is no public API in
FMPP to achieve that. Worst, it has a real reason that it hasn't: FMPP
directly uses java.io.File etc. to process the source directory (which
not only consist of templates, so I couldn't use FreeMarker's loader
anyway). Next time I write a preprocessor surely I will use some kind
of virtual file-system, but when I wrote FMPP, I just didn't need
that... and now, it would be quite a work to allow loading from non-fs
sources. Unless, you just want to #import/#include those
classloader-loaded templates, becaue via "freemarkerLinks" (see on
http://fmpp.sourceforge.net/settings.html) those templates can be
outside the source root directory. Currently even "freemarkerLinks"
only support plain files, but that wouldn't be a big deal to improve.


See above... FreeMarker&lt;/pre&gt;</description>
    <dc:creator>Daniel Dekany</dc:creator>
    <dc:date>2009-12-07T18:04:52</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.text.fmpp">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.text.fmpp</link>
  </textinput>
</rdf:RDF>
