Fornax-Platform
Forum

oaw-m2-plugin configuration

View: New views
6 Messages — Rating Filter:   Alert me  

oaw-m2-plugin configuration

by polly.c.chang :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

Thank you for creating the oaw-m2-plugin and updating it to work with both TMF and OAW!  I have a couple of questions about configuring this plugin:

1.  On the oaw-m2-plugin wiki page, the documentation says that it should be possible to "execute the generation phase without  the execution of the generator":

http://fornax.itemis.de/confluence/display/fornax/Configuration+(TOM)#Configuration(TOM)-Omittingtheexecutionofthegenerator

Is this still supported?  I don't see any mention of the "fornax.generator.ommit.execution" system property in the source code.  I only see the "fornax.generator.force.execution" property mentioned.

2.  Also, is it possible to configure new outlets?  Not modify existing ones.  I would like to add new ones.

Thanks!
--Polly

Re: oaw-m2-plugin configuration

by Karsten Thoms :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Polly!

The

"fornax.generator.force.execution"

is still supported. I think you have just overseen it, I did not change
something here.
if ("true".equalsIgnoreCase(
         System.getProperty("fornax.generator.force.execution"))) {
     getLog().info("Forced workflow execution");
     File timeStampFile = getTimeStampFile();
     if (timeStampFile != null){
         timeStampFile.delete();
     }
}

Additional Outlets cannot be added at the moment. Created a ticket:
http://fornax.itemis.de/jira/browse/TOM-23

~Karsten

On 19.05.09 18:18, polly.c.chang wrote:

> Hi,
>
> Thank you for creating the oaw-m2-plugin and updating it to work with both
> TMF and OAW!  I have a couple of questions about configuring this plugin:
>
> 1.  On the oaw-m2-plugin wiki page, the documentation says that it should be
> possible to "execute the generation phase without  the execution of the
> generator":
>
> http://fornax.itemis.de/confluence/display/fornax/Configuration+(TOM)#Configuration(TOM)-Omittingtheexecutionofthegenerator
>
> Is this still supported?  I don't see any mention of the
> "fornax.generator.ommit.execution" system property in the source code.  I
> only see the "fornax.generator.force.execution" property mentioned.
>
> 2.  Also, is it possible to configure new outlets?  Not modify existing
> ones.  I would like to add new ones.
>
> Thanks!
> --Polly
>    


[karsten_thoms.vcf]

begin:vcard
fn:Karsten Thoms
n:Thoms;Karsten
org:itemis AG
adr:;;Am Brambusch 22;Luenen;;44536;Germany
email;internet:karsten.thoms@...
title:Softwarearchitekt
tel;work:+49 231 9860 202
tel;fax:+49 231 9860 211
tel;cell:+49 151 17396721
url:http://www.itemis.de
version:2.1
end:vcard



------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables
unlimited royalty-free distribution of the report engine
for externally facing server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Fornax-developer mailing list
Fornax-developer@...
https://lists.sourceforge.net/lists/listinfo/fornax-developer

Re: oaw-m2-plugin configuration

by polly.c.chang :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Karten,

Thanks for the quick reply.  I saw the variable for "force.execution", but what about for *omitting* execution?  The web page says that variable is "fornax.generator.ommit.execution".  This "ommit" variable is the one that I didn't see.

Thanks for creating the ticket about adding outlets!

Thanks,
Polly


Karsten Thoms wrote:
Hi Polly!

The

"fornax.generator.force.execution"

is still supported. I think you have just overseen it, I did not change
something here.
if ("true".equalsIgnoreCase(
         System.getProperty("fornax.generator.force.execution"))) {
     getLog().info("Forced workflow execution");
     File timeStampFile = getTimeStampFile();
     if (timeStampFile != null){
         timeStampFile.delete();
     }
}

Additional Outlets cannot be added at the moment. Created a ticket:
http://fornax.itemis.de/jira/browse/TOM-23

~Karsten

On 19.05.09 18:18, polly.c.chang wrote:
> Hi,
>
> Thank you for creating the oaw-m2-plugin and updating it to work with both
> TMF and OAW!  I have a couple of questions about configuring this plugin:
>
> 1.  On the oaw-m2-plugin wiki page, the documentation says that it should be
> possible to "execute the generation phase without  the execution of the
> generator":
>
> http://fornax.itemis.de/confluence/display/fornax/Configuration+(TOM)#Configuration(TOM)-Omittingtheexecutionofthegenerator
>
> Is this still supported?  I don't see any mention of the
> "fornax.generator.ommit.execution" system property in the source code.  I
> only see the "fornax.generator.force.execution" property mentioned.
>
> 2.  Also, is it possible to configure new outlets?  Not modify existing
> ones.  I would like to add new ones.
>
> Thanks!
> --Polly
>    



begin:vcard
fn:Karsten Thoms
n:Thoms;Karsten
org:itemis AG
adr:;;Am Brambusch 22;Luenen;;44536;Germany
email;internet:karsten.thoms@itemis.de
title:Softwarearchitekt
tel;work:+49 231 9860 202
tel;fax:+49 231 9860 211
tel;cell:+49 151 17396721
url:http://www.itemis.de
version:2.1
end:vcard


------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables
unlimited royalty-free distribution of the report engine
for externally facing server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Fornax-developer mailing list
Fornax-developer@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fornax-developer

Re: oaw-m2-plugin configuration

by Karsten Thoms :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Polly,

you are right. I was so sure that this feature is there that I did not
read the source correctly, should have seen that #-) I think this
feature was there once (did not check that yet) and I could add it
again. Seems that I should create a bug fix release soon.
http://fornax.itemis.de/jira/browse/TOM-24

~Karsten

On 20.05.09 16:30, polly.c.chang wrote:

> Hi Karten,
>
> Thanks for the quick reply.  I saw the variable for "force.execution", but
> what about for *omitting* execution?  The web page says that variable is
> "fornax.generator.ommit.execution".  This "ommit" variable is the one that I
> didn't see.
>
> Thanks for creating the ticket about adding outlets!
>
> Thanks,
> Polly
>
>
>
> Karsten Thoms wrote:
>    
>> Hi Polly!
>>
>> The
>>
>> "fornax.generator.force.execution"
>>
>> is still supported. I think you have just overseen it, I did not change
>> something here.
>> if ("true".equalsIgnoreCase(
>>           System.getProperty("fornax.generator.force.execution"))) {
>>       getLog().info("Forced workflow execution");
>>       File timeStampFile = getTimeStampFile();
>>       if (timeStampFile != null){
>>           timeStampFile.delete();
>>       }
>> }
>>
>> Additional Outlets cannot be added at the moment. Created a ticket:
>> http://fornax.itemis.de/jira/browse/TOM-23
>>
>> ~Karsten
>>
>> On 19.05.09 18:18, polly.c.chang wrote:
>>      
>>> Hi,
>>>
>>> Thank you for creating the oaw-m2-plugin and updating it to work with
>>> both
>>> TMF and OAW!  I have a couple of questions about configuring this plugin:
>>>
>>> 1.  On the oaw-m2-plugin wiki page, the documentation says that it should
>>> be
>>> possible to "execute the generation phase without  the execution of the
>>> generator":
>>>
>>> http://fornax.itemis.de/confluence/display/fornax/Configuration+(TOM)#Configuration(TOM)-Omittingtheexecutionofthegenerator
>>>
>>> Is this still supported?  I don't see any mention of the
>>> "fornax.generator.ommit.execution" system property in the source code.  I
>>> only see the "fornax.generator.force.execution" property mentioned.
>>>
>>> 2.  Also, is it possible to configure new outlets?  Not modify existing
>>> ones.  I would like to add new ones.
>>>
>>> Thanks!
>>> --Polly
>>>
>>>        
>>
>>
>> begin:vcard
>> fn:Karsten Thoms
>> n:Thoms;Karsten
>> org:itemis AG
>> adr:;;Am Brambusch 22;Luenen;;44536;Germany
>> email;internet:karsten.thoms@...
>> title:Softwarearchitekt
>> tel;work:+49 231 9860 202
>> tel;fax:+49 231 9860 211
>> tel;cell:+49 151 17396721
>> url:http://www.itemis.de
>> version:2.1
>> end:vcard
>>
>>
>> ------------------------------------------------------------------------------
>> Crystal Reports - New Free Runtime and 30 Day Trial
>> Check out the new simplified licensing option that enables
>> unlimited royalty-free distribution of the report engine
>> for externally facing server and web deployment.
>> http://p.sf.net/sfu/businessobjects
>> _______________________________________________
>> Fornax-developer mailing list
>> Fornax-developer@...
>> https://lists.sourceforge.net/lists/listinfo/fornax-developer
>>
>>      

[karsten_thoms.vcf]

begin:vcard
fn:Karsten Thoms
n:Thoms;Karsten
org:itemis AG
adr:;;Am Brambusch 22;Luenen;;44536;Germany
email;internet:karsten.thoms@...
title:Softwarearchitekt
tel;work:+49 231 9860 202
tel;fax:+49 231 9860 211
tel;cell:+49 151 17396721
url:http://www.itemis.de
version:2.1
end:vcard



------------------------------------------------------------------------------
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers & brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing, &
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA, & Big Spaceship. http://www.creativitycat.com 
_______________________________________________
Fornax-developer mailing list
Fornax-developer@...
https://lists.sourceforge.net/lists/listinfo/fornax-developer

Re: oaw-m2-plugin configuration

by Karsten Thoms :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Polly,

just released version 3.0.1. It has now this feature (again?). I renamed
the property since "ommit" is a typo. Use
    mvn -Dfornax.generator.omit.execution=true clean install
to skip workflow execution.

~Karsten

On 21.05.09 11:18, Karsten Thoms wrote:

> Hi Polly,
>
> you are right. I was so sure that this feature is there that I did not
> read the source correctly, should have seen that #-) I think this
> feature was there once (did not check that yet) and I could add it
> again. Seems that I should create a bug fix release soon.
> http://fornax.itemis.de/jira/browse/TOM-24
>
> ~Karsten
>
> On 20.05.09 16:30, polly.c.chang wrote:
>> Hi Karten,
>>
>> Thanks for the quick reply.  I saw the variable for
>> "force.execution", but
>> what about for *omitting* execution?  The web page says that variable is
>> "fornax.generator.ommit.execution".  This "ommit" variable is the one
>> that I
>> didn't see.
>>
>> Thanks for creating the ticket about adding outlets!
>>
>> Thanks,
>> Polly
>>
>>
>>
>> Karsten Thoms wrote:
>>> Hi Polly!
>>>
>>> The
>>>
>>> "fornax.generator.force.execution"
>>>
>>> is still supported. I think you have just overseen it, I did not change
>>> something here.
>>> if ("true".equalsIgnoreCase(
>>>           System.getProperty("fornax.generator.force.execution"))) {
>>>       getLog().info("Forced workflow execution");
>>>       File timeStampFile = getTimeStampFile();
>>>       if (timeStampFile != null){
>>>           timeStampFile.delete();
>>>       }
>>> }
>>>
>>> Additional Outlets cannot be added at the moment. Created a ticket:
>>> http://fornax.itemis.de/jira/browse/TOM-23
>>>
>>> ~Karsten
>>>
>>> On 19.05.09 18:18, polly.c.chang wrote:
>>>> Hi,
>>>>
>>>> Thank you for creating the oaw-m2-plugin and updating it to work with
>>>> both
>>>> TMF and OAW!  I have a couple of questions about configuring this
>>>> plugin:
>>>>
>>>> 1.  On the oaw-m2-plugin wiki page, the documentation says that it
>>>> should
>>>> be
>>>> possible to "execute the generation phase without  the execution of
>>>> the
>>>> generator":
>>>>
>>>> http://fornax.itemis.de/confluence/display/fornax/Configuration+(TOM)#Configuration(TOM)-Omittingtheexecutionofthegenerator 
>>>>
>>>>
>>>> Is this still supported?  I don't see any mention of the
>>>> "fornax.generator.ommit.execution" system property in the source
>>>> code.  I
>>>> only see the "fornax.generator.force.execution" property mentioned.
>>>>
>>>> 2.  Also, is it possible to configure new outlets?  Not modify
>>>> existing
>>>> ones.  I would like to add new ones.
>>>>
>>>> Thanks!
>>>> --Polly
>>>>

[karsten_thoms.vcf]

begin:vcard
fn:Karsten Thoms
n:Thoms;Karsten
org:itemis AG
adr:;;Am Brambusch 22;Luenen;;44536;Germany
email;internet:karsten.thoms@...
title:Softwarearchitekt
tel;work:+49 231 9860 202
tel;fax:+49 231 9860 211
tel;cell:+49 151 17396721
url:http://www.itemis.de
version:2.1
end:vcard



------------------------------------------------------------------------------
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers & brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing, &
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA, & Big Spaceship. http://www.creativitycat.com 
_______________________________________________
Fornax-developer mailing list
Fornax-developer@...
https://lists.sourceforge.net/lists/listinfo/fornax-developer

Re: oaw-m2-plugin configuration

by polly.c.chang :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

awesome!  Thank you for putting in this feature and fixing the typo.  :)

--Polly


On Fri, May 22, 2009 at 3:29 AM, Karsten Thoms <karsten.thoms@...> wrote:
Hi Polly,

just released version 3.0.1. It has now this feature (again?). I renamed the property since "ommit" is a typo. Use
  mvn -Dfornax.generator.omit.execution=true clean install
to skip workflow execution.

~Karsten


On 21.05.09 11:18, Karsten Thoms wrote:
Hi Polly,

you are right. I was so sure that this feature is there that I did not read the source correctly, should have seen that #-) I think this feature was there once (did not check that yet) and I could add it again. Seems that I should create a bug fix release soon.
http://fornax.itemis.de/jira/browse/TOM-24

~Karsten

On 20.05.09 16:30, polly.c.chang wrote:
Hi Karten,

Thanks for the quick reply.  I saw the variable for "force.execution", but
what about for *omitting* execution?  The web page says that variable is
"fornax.generator.ommit.execution".  This "ommit" variable is the one that I
didn't see.

Thanks for creating the ticket about adding outlets!

Thanks,
Polly



Karsten Thoms wrote:
Hi Polly!

The

"fornax.generator.force.execution"

is still supported. I think you have just overseen it, I did not change
something here.
if ("true".equalsIgnoreCase(
         System.getProperty("fornax.generator.force.execution"))) {
     getLog().info("Forced workflow execution");
     File timeStampFile = getTimeStampFile();
     if (timeStampFile != null){
         timeStampFile.delete();
     }
}

Additional Outlets cannot be added at the moment. Created a ticket:
http://fornax.itemis.de/jira/browse/TOM-23

~Karsten

On 19.05.09 18:18, polly.c.chang wrote:
Hi,

Thank you for creating the oaw-m2-plugin and updating it to work with
both
TMF and OAW!  I have a couple of questions about configuring this plugin:

1.  On the oaw-m2-plugin wiki page, the documentation says that it should
be
possible to "execute the generation phase without  the execution of the
generator":

http://fornax.itemis.de/confluence/display/fornax/Configuration+(TOM)#Configuration(TOM)-Omittingtheexecutionofthegenerator

Is this still supported?  I don't see any mention of the
"fornax.generator.ommit.execution" system property in the source code.  I
only see the "fornax.generator.force.execution" property mentioned.

2.  Also, is it possible to configure new outlets?  Not modify existing
ones.  I would like to add new ones.

Thanks!
--Polly



------------------------------------------------------------------------------
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers & brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing, &
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA, & Big Spaceship. http://www.creativitycat.com
_______________________________________________
Fornax-developer mailing list
Fornax-developer@...
https://lists.sourceforge.net/lists/listinfo/fornax-developer



------------------------------------------------------------------------------
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT
is a gathering of tech-side developers & brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing, &
iPhoneDevCamp asthey present alongside digital heavyweights like Barbarian
Group, R/GA, & Big Spaceship. http://www.creativitycat.com 
_______________________________________________
Fornax-developer mailing list
Fornax-developer@...
https://lists.sourceforge.net/lists/listinfo/fornax-developer