Re: maven site into Trac?

2006-08-21 Thread Valerio Schiavoni

Hi Andrew,
thanks for the release.
I successfully added the maventrac plugin. the first issue i encounted was
releated to the multi-module nature of my project. Although the parent
project website is correctly shown, links on the modules (those added by
menu ref=modules / on the parent site descriptor) are simply wrong.

In my trac.ini i added the following:
[maven]
site-path = /var/www/maven-site/myproject/

which points to the deploy directory for the parent project. Links shown
inside maven-trac site look like:
http://IP_REMOTE_SERVER/trac/maven-site/myproject-submodule/index.html

problem is: submodules are not deployed there. what is superflous is the
'trac'. the corrected one should be:
http://IP_REMOTE_SERVER/maven-site/myproject-submodule/index.html

Any quickfix available ?

On 7/31/06, Andrew Williams [EMAIL PROTECTED] wrote:


OK, OK so here it is - you can grab MavenTrac, the Trac plugin for Maven
sites here: http://dev.rectang.com/projects/maventrac/
There are (what I think classify as) comprehensive instructions, but let
me know on the site or on email if you have any troubles using it.
(Quite possible, as it is still early)

Sorry it took a while, but I was working on TraM a Trac-Multi wrapper
which you can see in action on that site
(http://dev.rectang.com/projects/). Thought it might interest some folk
here too...

Andy

p.s. why not check out ContinuTrac too ;)
(http://dev.rectang.com/projects/continutrac/)

p.p.s Sorry for the adverts!

On Sun, 2006-07-30 at 14:10 -0700, Josh Long wrote:
 The clamoring masses have it..

 please release it

 On 7/30/06, Srepfler Srgjan [EMAIL PROTECTED] wrote:
  YES!
  :)
  Srgjan
 
  Andrew Williams wrote:
   :)
  
   I am the dev behind dev.rectang.com and can tell you it is not
manually
   done :)
  
   I have a trac plugin that is almost ready for a release that does it
   for me.
  
   step 1) install plugin, tell it where the site is generated to (on
the
   filesystem)
   step 2) set your site to use the maven-trac-skin (or whatever I call
it
   when it is released) and deploy it into the expected area.
  
   Shall I announce here when it is ready perhaps?
  
   Andrew
  
   Valerio Schiavoni wrote:
   hello everyone,
   any one knows how to 'merge' the maven generated website within
Trac, as
   it's done here:
   http://dev.rectang.com/projects/javautil/maven/
  
   i think they did it 'manually'..but maybe not.
  
   thanks,
   valerio
  
  
  
  
  
-
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





--
http://valerioschiavoni.blogspot.com
http://jroller.com/page/vschiavoni


Re: maven site into Trac?

2006-08-21 Thread Andrew Williams
Your MavenTrac setup seems fine. The extra /trac in the URL must be 
caused by either your trac setup or your maven setup. The reason I say 
this is that the URLs are all relative, so it is rather difficult to 
screw it up - especially as MavenTrac does not rewrite links.


Are the module's sites deployed as children of the parent?

Perhaps a link to your problem site would help.

Andrew

Valerio Schiavoni wrote:

Hi Andrew,
thanks for the release.
I successfully added the maventrac plugin. the first issue i encounted 
was

releated to the multi-module nature of my project. Although the parent
project website is correctly shown, links on the modules (those added by
menu ref=modules / on the parent site descriptor) are simply wrong.

In my trac.ini i added the following:
[maven]
site-path = /var/www/maven-site/myproject/

which points to the deploy directory for the parent project. Links shown
inside maven-trac site look like:
http://IP_REMOTE_SERVER/trac/maven-site/myproject-submodule/index.html

problem is: submodules are not deployed there. what is superflous is the
'trac'. the corrected one should be:
http://IP_REMOTE_SERVER/maven-site/myproject-submodule/index.html

Any quickfix available ?




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-08-21 Thread Valerio Schiavoni

On 8/21/06, Andrew Williams [EMAIL PROTECTED] wrote:


Are the module's sites deployed as children of the parent?



from the parent project, i do a mvn site-deploy, so that the parent and and
the modules projects are deployed all togheter.

The behaviour i was expecting is to see the submodule maven-site the same
way as i see the one of the parent, within the same trac instance.

maybe what could be possible is to be able to define more than one site-path
in the trac.ini ?

thanks,
valerio

--
http://valerioschiavoni.blogspot.com
http://jroller.com/page/vschiavoni


Re: maven site into Trac?

2006-08-21 Thread Andrew Williams

Valerio Schiavoni wrote:

On 8/21/06, Andrew Williams [EMAIL PROTECTED] wrote:


Are the module's sites deployed as children of the parent?



from the parent project, i do a mvn site-deploy, so that the parent 
and and

the modules projects are deployed all togheter.


cool - that is correct.

The behaviour i was expecting is to see the submodule maven-site the same
way as i see the one of the parent, within the same trac instance.


Yep, that works - look at http://dev.rectang.com/projects/javautil/maven/
maybe what could be possible is to be able to define more than one 
site-path

in the trac.ini ?

This should not be needed (and does not make sense) If the children are 
correctly deployed they should sit inside the parent project (thus only 
one root).

thanks,
valerio


Andy

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-08-21 Thread Valerio Schiavoni

On 8/21/06, Andrew Williams [EMAIL PROTECTED] wrote:


This should not be needed (and does not make sense) If the children are
correctly deployed they should sit inside the parent project (thus only
one root).



maybe this is the issue comes from. each submodule defines a url element
into its pom.xm..

by the way, everything works fine outside trac (expect the missing of css,
because of maven-trac skinning)..


--
http://valerioschiavoni.blogspot.com
http://jroller.com/page/vschiavoni


Re: maven site into Trac?

2006-08-21 Thread Andrew Williams

Valerio Schiavoni wrote:

On 8/21/06, Andrew Williams [EMAIL PROTECTED] wrote:


This should not be needed (and does not make sense) If the children are
correctly deployed they should sit inside the parent project (thus only
one root).



maybe this is the issue comes from. each submodule defines a url 
element

into its pom.xm..

by the way, everything works fine outside trac (expect the missing of 
css,

because of maven-trac skinning)..


yeah, sorry about the css skinning thing - am trying to think of a way
to test it outside trac.

As for the URLs, try removing the url elements from the child poms, so
they will be generated from the parent one...

A


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-08-21 Thread Andrew Williams

Glad to see that fixing your pom.xml fixed everything

(http://dev.rectang.com/projects/maventrac/ticket/1)

Andy

Valerio Schiavoni wrote:

On 8/21/06, Andrew Williams [EMAIL PROTECTED] wrote:


This should not be needed (and does not make sense) If the children are
correctly deployed they should sit inside the parent project (thus only
one root).



maybe this is the issue comes from. each submodule defines a url 
element

into its pom.xm..

by the way, everything works fine outside trac (expect the missing of 
css,

because of maven-trac skinning)..






-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-08-02 Thread Denis Cabasson

That would indeed be nice, and I'd like to do the same thing for JIRA.
Problem is I don't know much about how this is taken care of (either in JIRA
or in TRAC). If anyone of you has a clear idea of this could be handled,
please post a JIRA issue for the maven-changes-plugin, and I'll have a look
at it.

Cheers!

Denis.


Doug Douglass-2 wrote:
 
 On the other hand, it would be very nice to not have to write a
 changes.xmlfile at all and just use the Trac timeline RSS feed to
 create it completely
 on the fly.
 
 Just some thoughts.
 
 Doug
 
 http://maven.apache.org/plugins/maven-changes-plugin/changes-report-mojo.html
 
 On 8/1/06, Srepfler Srgjan [EMAIL PROTECTED] wrote:

 Andrew Williams wrote:
  I cannot say without seeing exactly what you want. I have not looked
  into the changes plugin much - what exactly are you looking for? Just a
  handler for Trac changes so the changes plugin outputs links that work
  inside MavenTrac?
 
  Andy
 
  On Tue, 2006-08-01 at 22:55 +0200, Srepfler Srgjan wrote:
 
  Hi Andrew,
  Do you feel you know trac/maven integration enough so that you could
 add
  support for it to the changes plugin so that we can use trac instead
 of
  jira as issue tracker?
  Srgjan
 
  Andrew Williams wrote:
 
  OK, OK so here it is - you can grab MavenTrac, the Trac plugin for
 Maven
  sites here: http://dev.rectang.com/projects/maventrac/
  There are (what I think classify as) comprehensive instructions, but
 let
  me know on the site or on email if you have any troubles using it.
  (Quite possible, as it is still early)
 
  Sorry it took a while, but I was working on TraM a Trac-Multi
 wrapper
  which you can see in action on that site
  (http://dev.rectang.com/projects/). Thought it might interest some
 folk
  here too...
 
  Andy
 
  p.s. why not check out ContinuTrac too ;)
  (http://dev.rectang.com/projects/continutrac/)
 
  p.p.s Sorry for the adverts!
 
  On Sun, 2006-07-30 at 14:10 -0700, Josh Long wrote:
 
 
  The clamoring masses have it..
 
  please release it
 
  On 7/30/06, Srepfler Srgjan [EMAIL PROTECTED] wrote:
 
 
  YES!
  :)
  Srgjan
 
  Andrew Williams wrote:
 
 
  :)
 
  I am the dev behind dev.rectang.com and can tell you it is not
 manually
  done :)
 
  I have a trac plugin that is almost ready for a release that does
 it
  for me.
 
  step 1) install plugin, tell it where the site is generated to (on
 the
  filesystem)
  step 2) set your site to use the maven-trac-skin (or whatever I
 call it
  when it is released) and deploy it into the expected area.
 
  Shall I announce here when it is ready perhaps?
 
  Andrew
 
  Valerio Schiavoni wrote:
 
 
  hello everyone,
  any one knows how to 'merge' the maven generated website within
 Trac, as
  it's done here:
  http://dev.rectang.com/projects/javautil/maven/
 
  i think they did it 'manually'..but maybe not.
 
  thanks,
  valerio
 
 
 
 
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 I unfortunately don't have a jira instance with which I can play with
 but if you take a look at this page:
 http://maven.apache.org/plugins/maven-changes-plugin/usage.html
 you can see under How to generate a JIRA report how they declare they
 want to use it directly to generate a report.
 I don't know what kind of a result does JIRA gives back to the plugin so
 I guess it's possible that Trac doesn't support that kind of export
 capability but I wouldn't be surprised if it's not such a big deal to
 implement it. This would allow I believe creating a changes list getting
 from trac all issues closed (or existing) for the release cycle in
 question.
 Srgjan

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 
 

-- 
View this message in context: 
http://www.nabble.com/maven-site-into-Trac--tf2002924.html#a5608827
Sent from the Maven - Users forum at Nabble.com

Re: maven site into Trac?

2006-08-01 Thread Srepfler Srgjan

Hi Andrew,
Do you feel you know trac/maven integration enough so that you could add 
support for it to the changes plugin so that we can use trac instead of 
jira as issue tracker?

Srgjan

Andrew Williams wrote:

OK, OK so here it is - you can grab MavenTrac, the Trac plugin for Maven
sites here: http://dev.rectang.com/projects/maventrac/
There are (what I think classify as) comprehensive instructions, but let
me know on the site or on email if you have any troubles using it.
(Quite possible, as it is still early)

Sorry it took a while, but I was working on TraM a Trac-Multi wrapper
which you can see in action on that site
(http://dev.rectang.com/projects/). Thought it might interest some folk
here too...

Andy

p.s. why not check out ContinuTrac too ;)
(http://dev.rectang.com/projects/continutrac/)

p.p.s Sorry for the adverts!

On Sun, 2006-07-30 at 14:10 -0700, Josh Long wrote:
  

The clamoring masses have it..

please release it

On 7/30/06, Srepfler Srgjan [EMAIL PROTECTED] wrote:


YES!
:)
Srgjan

Andrew Williams wrote:
  

:)

I am the dev behind dev.rectang.com and can tell you it is not manually
done :)

I have a trac plugin that is almost ready for a release that does it
for me.

step 1) install plugin, tell it where the site is generated to (on the
filesystem)
step 2) set your site to use the maven-trac-skin (or whatever I call it
when it is released) and deploy it into the expected area.

Shall I announce here when it is ready perhaps?

Andrew

Valerio Schiavoni wrote:


hello everyone,
any one knows how to 'merge' the maven generated website within Trac, as
it's done here:
http://dev.rectang.com/projects/javautil/maven/

i think they did it 'manually'..but maybe not.

thanks,
valerio

  


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


  



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-08-01 Thread Andrew Williams
I cannot say without seeing exactly what you want. I have not looked
into the changes plugin much - what exactly are you looking for? Just a
handler for Trac changes so the changes plugin outputs links that work
inside MavenTrac?

Andy

On Tue, 2006-08-01 at 22:55 +0200, Srepfler Srgjan wrote:
 Hi Andrew,
 Do you feel you know trac/maven integration enough so that you could add 
 support for it to the changes plugin so that we can use trac instead of 
 jira as issue tracker?
 Srgjan
 
 Andrew Williams wrote:
  OK, OK so here it is - you can grab MavenTrac, the Trac plugin for Maven
  sites here: http://dev.rectang.com/projects/maventrac/
  There are (what I think classify as) comprehensive instructions, but let
  me know on the site or on email if you have any troubles using it.
  (Quite possible, as it is still early)
 
  Sorry it took a while, but I was working on TraM a Trac-Multi wrapper
  which you can see in action on that site
  (http://dev.rectang.com/projects/). Thought it might interest some folk
  here too...
 
  Andy
 
  p.s. why not check out ContinuTrac too ;)
  (http://dev.rectang.com/projects/continutrac/)
 
  p.p.s Sorry for the adverts!
 
  On Sun, 2006-07-30 at 14:10 -0700, Josh Long wrote:

  The clamoring masses have it..
 
  please release it
 
  On 7/30/06, Srepfler Srgjan [EMAIL PROTECTED] wrote:
  
  YES!
  :)
  Srgjan
 
  Andrew Williams wrote:

  :)
 
  I am the dev behind dev.rectang.com and can tell you it is not manually
  done :)
 
  I have a trac plugin that is almost ready for a release that does it
  for me.
 
  step 1) install plugin, tell it where the site is generated to (on the
  filesystem)
  step 2) set your site to use the maven-trac-skin (or whatever I call it
  when it is released) and deploy it into the expected area.
 
  Shall I announce here when it is ready perhaps?
 
  Andrew
 
  Valerio Schiavoni wrote:
  
  hello everyone,
  any one knows how to 'merge' the maven generated website within Trac, as
  it's done here:
  http://dev.rectang.com/projects/javautil/maven/
 
  i think they did it 'manually'..but maybe not.
 
  thanks,
  valerio
 

 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
  
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 

  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
  
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-08-01 Thread Srepfler Srgjan

Andrew Williams wrote:

I cannot say without seeing exactly what you want. I have not looked
into the changes plugin much - what exactly are you looking for? Just a
handler for Trac changes so the changes plugin outputs links that work
inside MavenTrac?

Andy

On Tue, 2006-08-01 at 22:55 +0200, Srepfler Srgjan wrote:
  

Hi Andrew,
Do you feel you know trac/maven integration enough so that you could add 
support for it to the changes plugin so that we can use trac instead of 
jira as issue tracker?

Srgjan

Andrew Williams wrote:


OK, OK so here it is - you can grab MavenTrac, the Trac plugin for Maven
sites here: http://dev.rectang.com/projects/maventrac/
There are (what I think classify as) comprehensive instructions, but let
me know on the site or on email if you have any troubles using it.
(Quite possible, as it is still early)

Sorry it took a while, but I was working on TraM a Trac-Multi wrapper
which you can see in action on that site
(http://dev.rectang.com/projects/). Thought it might interest some folk
here too...

Andy

p.s. why not check out ContinuTrac too ;)
(http://dev.rectang.com/projects/continutrac/)

p.p.s Sorry for the adverts!

On Sun, 2006-07-30 at 14:10 -0700, Josh Long wrote:
  
  

The clamoring masses have it..

please release it

On 7/30/06, Srepfler Srgjan [EMAIL PROTECTED] wrote:



YES!
:)
Srgjan

Andrew Williams wrote:
  
  

:)

I am the dev behind dev.rectang.com and can tell you it is not manually
done :)

I have a trac plugin that is almost ready for a release that does it
for me.

step 1) install plugin, tell it where the site is generated to (on the
filesystem)
step 2) set your site to use the maven-trac-skin (or whatever I call it
when it is released) and deploy it into the expected area.

Shall I announce here when it is ready perhaps?

Andrew

Valerio Schiavoni wrote:



hello everyone,
any one knows how to 'merge' the maven generated website within Trac, as
it's done here:
http://dev.rectang.com/projects/javautil/maven/

i think they did it 'manually'..but maybe not.

thanks,
valerio

  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


  
  

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


  
I unfortunately don't have a jira instance with which I can play with 
but if you take a look at this page:

http://maven.apache.org/plugins/maven-changes-plugin/usage.html
you can see under How to generate a JIRA report how they declare they 
want to use it directly to generate a report.
I don't know what kind of a result does JIRA gives back to the plugin so 
I guess it's possible that Trac doesn't support that kind of export 
capability but I wouldn't be surprised if it's not such a big deal to 
implement it. This would allow I believe creating a changes list getting 
from trac all issues closed (or existing) for the release cycle in question.

Srgjan

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-08-01 Thread Doug Douglass

Srgjan, Andrew,

First, thanks Andrew for the contribution. I  found the maven and continuum
content on your trac site a few weeks back -- very nice.

As for the changes plugin, in the m1 version of the plugin a URL template
can be used to prodive the links to different systems -- we did this with
Bugzilla back in the day. Following the link in Srgjan email to [1], it
appears the m2 version of the plugin works the same way, so I don't think
anything needs to changed in the plugin, just your configuration of it.

On the other hand, it would be very nice to not have to write a
changes.xmlfile at all and just use the Trac timeline RSS feed to
create it completely
on the fly.

Just some thoughts.

Doug

http://maven.apache.org/plugins/maven-changes-plugin/changes-report-mojo.html

On 8/1/06, Srepfler Srgjan [EMAIL PROTECTED] wrote:


Andrew Williams wrote:
 I cannot say without seeing exactly what you want. I have not looked
 into the changes plugin much - what exactly are you looking for? Just a
 handler for Trac changes so the changes plugin outputs links that work
 inside MavenTrac?

 Andy

 On Tue, 2006-08-01 at 22:55 +0200, Srepfler Srgjan wrote:

 Hi Andrew,
 Do you feel you know trac/maven integration enough so that you could
add
 support for it to the changes plugin so that we can use trac instead of
 jira as issue tracker?
 Srgjan

 Andrew Williams wrote:

 OK, OK so here it is - you can grab MavenTrac, the Trac plugin for
Maven
 sites here: http://dev.rectang.com/projects/maventrac/
 There are (what I think classify as) comprehensive instructions, but
let
 me know on the site or on email if you have any troubles using it.
 (Quite possible, as it is still early)

 Sorry it took a while, but I was working on TraM a Trac-Multi
wrapper
 which you can see in action on that site
 (http://dev.rectang.com/projects/). Thought it might interest some
folk
 here too...

 Andy

 p.s. why not check out ContinuTrac too ;)
 (http://dev.rectang.com/projects/continutrac/)

 p.p.s Sorry for the adverts!

 On Sun, 2006-07-30 at 14:10 -0700, Josh Long wrote:


 The clamoring masses have it..

 please release it

 On 7/30/06, Srepfler Srgjan [EMAIL PROTECTED] wrote:


 YES!
 :)
 Srgjan

 Andrew Williams wrote:


 :)

 I am the dev behind dev.rectang.com and can tell you it is not
manually
 done :)

 I have a trac plugin that is almost ready for a release that does
it
 for me.

 step 1) install plugin, tell it where the site is generated to (on
the
 filesystem)
 step 2) set your site to use the maven-trac-skin (or whatever I
call it
 when it is released) and deploy it into the expected area.

 Shall I announce here when it is ready perhaps?

 Andrew

 Valerio Schiavoni wrote:


 hello everyone,
 any one knows how to 'merge' the maven generated website within
Trac, as
 it's done here:
 http://dev.rectang.com/projects/javautil/maven/

 i think they did it 'manually'..but maybe not.

 thanks,
 valerio




-
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]





-
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



I unfortunately don't have a jira instance with which I can play with
but if you take a look at this page:
http://maven.apache.org/plugins/maven-changes-plugin/usage.html
you can see under How to generate a JIRA report how they declare they
want to use it directly to generate a report.
I don't know what kind of a result does JIRA gives back to the plugin so
I guess it's possible that Trac doesn't support that kind of export
capability but I wouldn't be surprised if it's not such a big deal to
implement it. This would allow I believe creating a changes list getting
from trac all issues closed (or existing) for the release cycle in
question.
Srgjan

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: maven site into Trac?

2006-07-31 Thread Andrew Williams
OK, OK so here it is - you can grab MavenTrac, the Trac plugin for Maven
sites here: http://dev.rectang.com/projects/maventrac/
There are (what I think classify as) comprehensive instructions, but let
me know on the site or on email if you have any troubles using it.
(Quite possible, as it is still early)

Sorry it took a while, but I was working on TraM a Trac-Multi wrapper
which you can see in action on that site
(http://dev.rectang.com/projects/). Thought it might interest some folk
here too...

Andy

p.s. why not check out ContinuTrac too ;)
(http://dev.rectang.com/projects/continutrac/)

p.p.s Sorry for the adverts!

On Sun, 2006-07-30 at 14:10 -0700, Josh Long wrote:
 The clamoring masses have it..
 
 please release it
 
 On 7/30/06, Srepfler Srgjan [EMAIL PROTECTED] wrote:
  YES!
  :)
  Srgjan
 
  Andrew Williams wrote:
   :)
  
   I am the dev behind dev.rectang.com and can tell you it is not manually
   done :)
  
   I have a trac plugin that is almost ready for a release that does it
   for me.
  
   step 1) install plugin, tell it where the site is generated to (on the
   filesystem)
   step 2) set your site to use the maven-trac-skin (or whatever I call it
   when it is released) and deploy it into the expected area.
  
   Shall I announce here when it is ready perhaps?
  
   Andrew
  
   Valerio Schiavoni wrote:
   hello everyone,
   any one knows how to 'merge' the maven generated website within Trac, as
   it's done here:
   http://dev.rectang.com/projects/javautil/maven/
  
   i think they did it 'manually'..but maybe not.
  
   thanks,
   valerio
  
  
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-07-30 Thread Srepfler Srgjan

YES!
:)
Srgjan

Andrew Williams wrote:

:)

I am the dev behind dev.rectang.com and can tell you it is not manually
done :)

I have a trac plugin that is almost ready for a release that does it 
for me.


step 1) install plugin, tell it where the site is generated to (on the
filesystem)
step 2) set your site to use the maven-trac-skin (or whatever I call it
when it is released) and deploy it into the expected area.

Shall I announce here when it is ready perhaps?

Andrew

Valerio Schiavoni wrote:

hello everyone,
any one knows how to 'merge' the maven generated website within Trac, as
it's done here:
http://dev.rectang.com/projects/javautil/maven/

i think they did it 'manually'..but maybe not.

thanks,
valerio





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-07-30 Thread Josh Long

The clamoring masses have it..

please release it

On 7/30/06, Srepfler Srgjan [EMAIL PROTECTED] wrote:

YES!
:)
Srgjan

Andrew Williams wrote:
 :)

 I am the dev behind dev.rectang.com and can tell you it is not manually
 done :)

 I have a trac plugin that is almost ready for a release that does it
 for me.

 step 1) install plugin, tell it where the site is generated to (on the
 filesystem)
 step 2) set your site to use the maven-trac-skin (or whatever I call it
 when it is released) and deploy it into the expected area.

 Shall I announce here when it is ready perhaps?

 Andrew

 Valerio Schiavoni wrote:
 hello everyone,
 any one knows how to 'merge' the maven generated website within Trac, as
 it's done here:
 http://dev.rectang.com/projects/javautil/maven/

 i think they did it 'manually'..but maybe not.

 thanks,
 valerio




 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



maven site into Trac?

2006-07-26 Thread Valerio Schiavoni

hello everyone,
any one knows how to 'merge' the maven generated website within Trac, as
it's done here:
http://dev.rectang.com/projects/javautil/maven/

i think they did it 'manually'..but maybe not.

thanks,
valerio

--
http://valerioschiavoni.blogspot.com
http://jroller.com/page/vschiavoni


Re: maven site into Trac?

2006-07-26 Thread Andrew Williams

:)

I am the dev behind dev.rectang.com and can tell you it is not manually
done :)

I have a trac plugin that is almost ready for a release that does it for me.

step 1) install plugin, tell it where the site is generated to (on the
filesystem)
step 2) set your site to use the maven-trac-skin (or whatever I call it
when it is released) and deploy it into the expected area.

Shall I announce here when it is ready perhaps?

Andrew

Valerio Schiavoni wrote:

hello everyone,
any one knows how to 'merge' the maven generated website within Trac, as
it's done here:
http://dev.rectang.com/projects/javautil/maven/

i think they did it 'manually'..but maybe not.

thanks,
valerio





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-07-26 Thread dan tran

On 7/26/06, Andrew Williams [EMAIL PROTECTED] wrote:


:)

I am the dev behind dev.rectang.com and can tell you it is not manually
done :)

I have a trac plugin that is almost ready for a release that does it for
me.

step 1) install plugin, tell it where the site is generated to (on the
filesystem)
step 2) set your site to use the maven-trac-skin (or whatever I call it
when it is released) and deploy it into the expected area.

Shall I announce here when it is ready perhaps?



please do

-D



Andrew


Valerio Schiavoni wrote:
 hello everyone,
 any one knows how to 'merge' the maven generated website within Trac, as
 it's done here:
 http://dev.rectang.com/projects/javautil/maven/

 i think they did it 'manually'..but maybe not.

 thanks,
 valerio




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: maven site into Trac?

2006-07-26 Thread Alexandre Poitras

I'm also very interested :)

On 7/26/06, dan tran [EMAIL PROTECTED] wrote:

On 7/26/06, Andrew Williams [EMAIL PROTECTED] wrote:

 :)

 I am the dev behind dev.rectang.com and can tell you it is not manually
 done :)

 I have a trac plugin that is almost ready for a release that does it for
 me.

 step 1) install plugin, tell it where the site is generated to (on the
 filesystem)
 step 2) set your site to use the maven-trac-skin (or whatever I call it
 when it is released) and deploy it into the expected area.

 Shall I announce here when it is ready perhaps?


 please do

-D



Andrew

 Valerio Schiavoni wrote:
  hello everyone,
  any one knows how to 'merge' the maven generated website within Trac, as
  it's done here:
  http://dev.rectang.com/projects/javautil/maven/
 
  i think they did it 'manually'..but maybe not.
 
  thanks,
  valerio
 



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]






-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: maven site into Trac?

2006-07-26 Thread Raphaël Piéroni

me too ;)

and if some one know how to correctly install trac on a amd64 mandriva
linux, i will be happy to have some information.

Raphaël

2006/7/26, Alexandre Poitras [EMAIL PROTECTED]:


I'm also very interested :)