|
|
|
phretor
|
Hello,
maybe lame question. How could I add those nice vertical dashed lines to mark each release/ tag/whatever interesting? I mean something like this: http://www.statsvn.org/demo/ant-dotnet/locandchurn.png I browsed around the doc but didn't find any command line option to enable that feature, so far. Or maybe it strongly depends on the structure of the repository? Thanks in advance. Best regards, -- Federico ------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com _______________________________________________ Statsvn-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/statsvn-users |
||||||||||||||||
|
Jason Kealey-2
|
See the tags feature here:
--- Jason Kealey - [hidden email] LavaBlast Franchise Software - http://www.lavablast.com Simplifying day-to-day franchise operations On Mon, Mar 16, 2009 at 9:18 PM, Maggi Federico <[hidden email]> wrote: Hello, ------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com _______________________________________________ Statsvn-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/statsvn-users |
||||||||||||||||
|
phretor
|
On Mar 16, 2009, at 7:13 PM, Jason Kealey wrote:
> See the tags feature here: > http://wiki.statsvn.org/User%20Manual.ashx I am using the trunk version and I am afraid -tags '^mt3.31|^mt3.32| ^mt3.33|^mt3.34|^mt3.35|^mt4.0|^mt4.01|^mt4.1|^mt4.11|^mt4.12|^mt4.2| ^mt4.21|^mt4.22|^mt4.23|^mt4.24' does not work, at least for svn co http://code.sixapart.com/svn/movabletype Any suggestion? Thanks, -- Federico ------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com _______________________________________________ Statsvn-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/statsvn-users |
||||||||||||||||
|
Jason Kealey-2
|
try
-tags '.*'
or
-tags ".*" The tags-dir is the default directory... but maybe you have to run the svn log on the /trunk or the / (can't remember which). BenoitX can help with the syntax.. but I think we should clarify this in our documentation as I always forget the proper syntax.
---
Jason Kealey - [hidden email] LavaBlast Franchise Software - http://www.lavablast.com Simplifying day-to-day franchise operations On Tue, Mar 17, 2009 at 7:48 PM, Maggi Federico <[hidden email]> wrote:
------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com _______________________________________________ Statsvn-users mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/statsvn-users |
||||||||||||||||
|
kristen
|
I've tried just about everything to get the tags to show up properly. I've tried different permutations of the following things:
- Generated the svn log from both the trunk and the root. - Passed in ".*" and '.*' to tags. - Passed in /tags/ , /(tags|branches)/ , /branches/ , and branches/ to tags-dir. - Passed in the base of the svn directory as the location. Is there something else that I am missing or doing wrong?
|
||||
|
BenoitX
|
Hi
Are you usin Unix or Windows? You must generate the info from the root. The settings for http://www.statsvn.org/beta/statsvn/index.html were as follows: 1/ generate the svn log from the root svn log -v --xml https://statsvn.svn.sourceforge.net/svnroot/statsvn/ > svn.log 2/ run statsvn like this with tags explicitly defined (I've never tried *. or .*) java -jar statsvn\dist\statsvn.jar -debug -verbose -charset ISO-8859-1 -config-file .<your-config-file> -output-dir <your-output> -tags "^0.2.0|^0.1.3|^0.1.2|^0.0.9|^0.3.0|^0.3.1|^0.3.2|^0.4.0|^0.4.1|^0.5.0" -title StatSVN -exclude "**/qalab.xml|**/*.pdf|**/etc/LICENSE" -viewvc http://svn.sourceforge.net/viewvc/statsvn/trunk ./svn.log . Let me know if it helps, I guess that confirming how you generate the svn.log would be the first step B
|
||||||||||||||||
|
kristen
|
Some javascript/style in this post has been disabled (why?)
Thanks for the quick reply. I am using
Windows.
Here is the command that I am doing to get the svn
log:
C:/Program Files/CollabNet Subversion/svn.exe log --verbose
--xml --non-interactive svn://sandwich/svn/Avocado/ >
build/temp/svnlog.log
Here is the
command we are currently using for statsvn:
java -jar
c:/projects/Switch/support/lib/statsvn.jar -maxmemory 256m -output-dir
build/temp/stats -exclude
/catalog/**:/extensions/**:/externals/**:/migration/**:/seo/** -include
**/*.java:**/*.as:**/*.mxml:**/*.ftl:**/*.css -config-file svnstat.properties
-tags ".*" -tags-dir /(tags|branches)/ - title SwitchCMS -no-developer avventa
-no-developer kneath -cache-dir c:/projects/Switch/support/tools/svnstat-cache
-verbose -charset UTF-8 build/temp/svnlog.log
svn://sandwich/svn/Avocado/
I will try
putting in the tag names specifically.
Also, does the
cache need to be blown away? Could that be causing problems?
.............................................. From: BenoitX (via Nabble)
[mailto:[hidden email]]
Hi Sent: Tuesday, May 12, 2009 11:18 AM To: Kristen Olsen Subject: Re: [Statsvn-users] Those nice vertical dashed lines to mark releases Are you usin Unix or Windows? You must generate the info from the root. The settings for http://www.statsvn.org/beta/statsvn/index.html were as follows: 1/ generate the svn log from the root svn log -v --xml https://statsvn.svn.sourceforge.net/svnroot/statsvn/ > svn.log 2/ run statsvn like this with tags explicitly defined (I've never tried *. or .*) java -jar statsvn\dist\statsvn.jar -debug -verbose -charset ISO-8859-1 -config-file .<your-config-file> -output-dir <your-output> -tags "^0.2.0|^0.1.3|^0.1.2|^0.0.9|^0.3.0|^0.3.1|^0.3.2|^0.4.0|^0.4.1|^0.5.0" -title StatSVN -exclude "**/qalab.xml|**/*.pdf|**/etc/LICENSE" -viewvc http://svn.sourceforge.net/viewvc/statsvn/trunk ./svn.log . Let me know if it helps, I guess that confirming how you generate the svn.log would be the first step B
|
|||||||||||||||
|
BenoitX
|
Let's try to simplify things.
1/ remove the -tags-dir since you're using the "tags" directory name 2/ pick ONE tag say ABC and use -tags "^ABC" 2.1/ If that does not work try 2 tasg like -tags "^ABC|^DEF" 3/ confirm that your log file would have entries like this one <path copyfrom-path="/trunk" copyfrom-rev="371" action="A">/tags/ABC</path> </paths> Let me know Benoit
|
||||||||||||||||
|
kristen
|
Actually specifying all of the tag names like you mentioned previously seems to have made it work, although I tried it without specifying anything for the tags-dir. I'm going to try it again with the tags-dir specified to see if that works.
The log file has entries that look similar to your example. Is there any way to make the -tags work with wildcards?
|
||||||||||||||||
|
kristen
|
The tags-dir option doesn't seem to accept multiple options. If I use /tags/ or /branches/ it works fine, but if I try variations of /(tags|branches)/ it doesn't work. Any ideas?
Thanks for your help.
|
||||||||||||||||
|
BenoitX
|
I'd say that it is not supported... we should probably update the documentation.
I do not think that it would be trivial to add as both tags and branches could have the same name... so where would one add the statistics? Glad you've got it working. Benoit
|
||||||||||||||||
|
kristen
|
Some javascript/style in this post has been disabled (why?)
In our case we have different names in the branches and
tags, but I could see where other repositories could have
duplicates.
Thanks for your help. .............................................. From: BenoitX (via Nabble) [mailto:[hidden email]] Sent: Tuesday, May 12, 2009 12:45 PM To: Kristen Olsen Subject: RE: [Statsvn-users] Those nice vertical dashed lines to mark releases I do not think that it would be trivial to add as both tags and branches could have the same name... so where would one add the statistics? Glad you've got it working. Benoit
|
|||||||||||||||
| Free Embeddable Forum Powered by Nabble | Help |