[Trac] Re: Trac offline, or Trac Preview possible?

2009-05-20 Thread RJOllos

I noticed this recent new submission:
http://trac-hacks.org/wiki/WikiEditorForEclipsePlugin
... and it reminded me of the question in this thread
It might do what you want, although I tested it out it appears that it
doesn't offer a page preview, only wiki markup view.  However, it
would offer you the ability to edit pages offline, and sync the
changes when online.

On Apr 8, 7:14 am, renderedlife renderedl...@gmail.com wrote:
 Ok, so, i've been working live off of ourTracinstallation for a
 while now building our master design specifications.

 Last night, we had a single-disk failure in our Raid-5, and boom ..
 down goesTrac.

 It will be a few days before we get everything back-online, and now,
 i'm without access to my master files.

 So, in anticipation that this will happen again ... is there 
 anOfflineTraceditor somewhere that will allow me to build/save/preview
 mytracpages on my local machine?

 I saved one or two pages in Notepad ages ago, but, since it's not
 standard markup, I can't get a WYSIWIG preview .. or, at least, I
 don't know how .. hence, I ask the experts  :-)

 cheers,

 -jeremy

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Problem installing Trac

2009-05-20 Thread Roger Oberholtzer

On Wed, 2009-05-20 at 09:48 +0200, Christian Boos wrote:
 Roger Oberholtzer wrote:
  On Tue, 2009-05-19 at 17:57 +0200, Christian Boos wrote:

  http://svn.edgewall.org/repos/genshi/branches/experimental/advanced-i18n
  
 
  I get:
 
  # svn co \
  http://svn.edgewall.org/repos/genshi/branches/experimental/advanced-i18n
 
  svn: Server sent unexpected return value (403 Forbidden) in response to
  PROPFIND request for '/repos/genshi/!svn/vcc/default'
 
  So maybe it is not available to us mere mortals :)

 
 I don't think so ... can you see something when entering the above link 
 in a browser?
 Anyway, an alternative way to get this code is to use the Download as 
 zip link you'll find at the bottom of the corresponding Trac repository 
 browser page (see previous mail for the exact link).

This did the trick. I had to set the Genshi version to Genshi=0.6dev,
without the -rXXX. The egg is Genshi-0.6dev-py2.5-linux-i686.egg.

All seems to be as before. Which is always a good first step!



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: current Trac 0.12multirepos features

2009-05-20 Thread Christian Boos

Roger Oberholtzer wrote:
 I have just installed Trac 0.12multirepos. All is ok. I am curious about
 two things:

 1) Is it possible to render ticket custom fields? I have some that are
 defined as:

   tc_ten = textarea
   tc_ten.cols = 80
   tc_ten.label = Release Notes
   tc_ten.rows = 20

 I would like the text to be able to contain all the wiki formatting
 that,say, the ticket description can contain. Is this possible? My
 memory says that there is a qualifier to add to the definition. But I
 did not see anything in TracTicketsCustomFields.
   

Look again :-) 
http://trac.edgewall.org/wiki/TracTicketsCustomFields#AvailableFieldTypesandOptions
- textarea - format

 2) In the ticket display (e.g., trac/ticket/33), the .label values are
 used. So in my example above, I see Release Notes.

 When I do a query with a Filter, Release Notes is used in the
 drop-down menu and the place where you enter the search text for the
 filter. However, in the labels used in the table of results, tc_ten is
 used. This is also the case in e-mail messages sent.
   

That needs to be fixed - I think there's already a ticket for that. ... 
yes #3919, which even has a patch awaiting testing, so there you go ;-)

-- Christian

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Help packaging plugin : Source distribution

2009-05-20 Thread Olemis Lang

I wonder why resources (e.g. static files and templates) are not
included in the (tar.gz | zip) file obtained after executing `setup.py
sdist` to obtain a source distribution package of a Trac plugin ?

Perhaps this is not an issue with Trac, but I'd appreciate if anybody
could provide any pointers to get that done ;).

Thnx in advance !

-- 
Regards,

Olemis.

Blog ES: http://simelo-es.blogspot.com/
Blog EN: http://simelo-en.blogspot.com/

Featured article:
Un mundo hermoso gracias al producto Z: The World of Goo  -
http://feedproxy.google.com/~r/simelo-es/~3/5Rlq3bHsnHQ/un-mundo-increiblemente-hermoso-gracias_12.html

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Help packaging plugin : Source distribution

2009-05-20 Thread Jeff Hammel

You have to verbosely include them with package data.  IMHO, this is a 
setuptools bug.  E.g.:

  package_data={ 'geotrac': ['templates/*', 'htdocs/*'] },
  include_package_data=True,

This is probably not quite right :(, but you get the idea.

Jeff

On Wed, May 20, 2009 at 10:01:02AM -0500, Olemis Lang wrote:
 
 I wonder why resources (e.g. static files and templates) are not
 included in the (tar.gz | zip) file obtained after executing `setup.py
 sdist` to obtain a source distribution package of a Trac plugin ?
 
 Perhaps this is not an issue with Trac, but I'd appreciate if anybody
 could provide any pointers to get that done ;).
 
 Thnx in advance !
 
 -- 
 Regards,
 
 Olemis.
 
 Blog ES: http://simelo-es.blogspot.com/
 Blog EN: http://simelo-en.blogspot.com/
 
 Featured article:
 Un mundo hermoso gracias al producto Z: The World of Goo  -
 http://feedproxy.google.com/~r/simelo-es/~3/5Rlq3bHsnHQ/un-mundo-increiblemente-hermoso-gracias_12.html
 
  

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Help packaging plugin : Source distribution

2009-05-20 Thread Olemis Lang

 On Wed, May 20, 2009 at 10:01:02AM -0500, Olemis Lang wrote:

 I wonder why resources (e.g. static files and templates) are not
 included in the (tar.gz | zip) file obtained after executing `setup.py
 sdist` to obtain a source distribution package of a Trac plugin ?

 Perhaps this is not an issue with Trac, but I'd appreciate if anybody
 could provide any pointers to get that done ;).

 Thnx in advance !

 --
 Regards,

 Olemis.

 Blog ES: http://simelo-es.blogspot.com/
 Blog EN: http://simelo-en.blogspot.com/

 Featured article:
 Un mundo hermoso gracias al producto Z: The World of Goo  -
 http://feedproxy.google.com/~r/simelo-es/~3/5Rlq3bHsnHQ/un-mundo-increiblemente-hermoso-gracias_12.html


On Wed, May 20, 2009 at 10:09 AM, Jeff Hammel jham...@openplans.org wrote:

 You have to verbosely include them with package data.  IMHO, this is a 
 setuptools bug.  E.g.:

      package_data={ 'geotrac': ['templates/*', 'htdocs/*'] },
      include_package_data=True,

 This is probably not quite right :(, but you get the idea.


I just tried this and doesnt include files for sdist ... :(

Looking forward for further hints : maybe it's just something I'm
doing wrong, dont know, but eggs are ok so I'm not sure

-- 
Regards,

Olemis.

Blog ES: http://simelo-es.blogspot.com/
Blog EN: http://simelo-en.blogspot.com/

Featured article:
Un mundo hermoso gracias al producto Z: The World of Goo  -
http://feedproxy.google.com/~r/simelo-es/~3/5Rlq3bHsnHQ/un-mundo-increiblemente-hermoso-gracias_12.html

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Help packaging plugin : Source distribution

2009-05-20 Thread Olemis Lang

 On Wed, May 20, 2009 at 10:01:02AM -0500, Olemis Lang wrote:

 I wonder why resources (e.g. static files and templates) are not
 included in the (tar.gz | zip) file obtained after executing `setup.py
 sdist` to obtain a source distribution package of a Trac plugin ?

 Perhaps this is not an issue with Trac, but I'd appreciate if anybody
 could provide any pointers to get that done ;).

 Thnx in advance !

 --
 Regards,

 Olemis.

 Blog ES: http://simelo-es.blogspot.com/
 Blog EN: http://simelo-en.blogspot.com/

 Featured article:
 Un mundo hermoso gracias al producto Z: The World of Goo  -
 http://feedproxy.google.com/~r/simelo-es/~3/5Rlq3bHsnHQ/un-mundo-increiblemente-hermoso-gracias_12.html


On Wed, May 20, 2009 at 10:09 AM, Jeff Hammel jham...@openplans.org wrote:

 You have to verbosely include them with package data.  IMHO, this is a 
 setuptools bug.  E.g.:

      package_data={ 'geotrac': ['templates/*', 'htdocs/*'] },
      include_package_data=True,

 This is probably not quite right :(, but you get the idea.


I just tried this and doesnt include files for sdist ... :(

Looking forward for further hints : maybe it's just something I'm
doing wrong, dont know, but eggs are ok so I'm not sure

-- 
Regards,

Olemis.

Blog ES: http://simelo-es.blogspot.com/
Blog EN: http://simelo-en.blogspot.com/

Featured article:
Un mundo hermoso gracias al producto Z: The World of Goo  -
http://feedproxy.google.com/~r/simelo-es/~3/5Rlq3bHsnHQ/un-mundo-increiblemente-hermoso-gracias_12.html

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] bi-directional links between tickets

2009-05-20 Thread damarkus


I am interested in the ability to link related tickets together. I know that
I can edit a ticket's description and place a reference to another ticket
there-in (or similarly in a comment), but that does not automatically link
the target ticket back to the source ticket.

Our customer uses the JIRA system for issues, and JIRA has the nice feature
of Links - it allows establishing a link in a given ticket (i.e. tic_1) to
another related ticket (i.e. tic_2) in a dedicated field on the ticket.
There is then a LINK section on the ticket that will show tic_2 (when
looking at tic_1), and vice-versa show tic_1 [when looking at tic_2]. this
reverse linking is automatically established when the initial link is
defined.  As the link can be initiated from either ticket, it can also be
dropped from either ticket. There is no limit to the number of links
to;/from a given ticket. 
JIRA also provides the feature of specifying the TYPE of relationship
between the tickets - i.e. Parent Of/Child of. However this additional
information is not critical - simply having the ability to auto-establish
bi-direction links b/w tickets is what is useful and desired.
This can come in extremely handy in a situation where perhaps a Parent
Ticket is created to round up Child tickets for bugs/enhancements that will
go into a release. Understandably milestones  versions can aid in this also
- but a ticket as a Parent issue for a release provides the ability to
attach a deployment schedule, contingency plans, etc to the release as a
whole.

Any information on how to achieve this, or if there is a plug-in, etc would
be greatly appreciated.
-- 
View this message in context: 
http://www.nabble.com/bi-directional-links-between-tickets-tp23636870p23636870.html
Sent from the Trac Users mailing list archive at Nabble.com.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Navigation tab not highlighted

2009-05-20 Thread prabha

Hi all,


i have modified some source code in projectmenu plugin 0.10 now it is
compatible with trac 0.11, but main problem is  once we installed
projectmenu plugin after that navigation tabs are not getting
highlighted after clicking the tabs.

can anybody help me..,








--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] not able to delete the project

2009-05-20 Thread prabha

Hi

i have created one plugin named as projectmaintenance plugin. this
plugin is basically user for delete and archive the projects purpose.

main problem is that once you can open the project iam not able to
delete the project, it will give an error like unable to delete the
file trac.db file used by some another persons even i have close the
databse.


can anybody suggest how to close the environment for example open
environment purpose i have used self.open_env

in the same way how to close the environment.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: bi-directional links between tickets

2009-05-20 Thread Jeff Hammel

You might check out the TracBacksPlugin:

http://trac-hacks.org/wiki/TracBacksPlugin

Jeff

On Wed, May 20, 2009 at 07:45:27AM -0700, damarkus wrote:
 
 
 I am interested in the ability to link related tickets together. I know that
 I can edit a ticket's description and place a reference to another ticket
 there-in (or similarly in a comment), but that does not automatically link
 the target ticket back to the source ticket.
 
 Our customer uses the JIRA system for issues, and JIRA has the nice feature
 of Links - it allows establishing a link in a given ticket (i.e. tic_1) to
 another related ticket (i.e. tic_2) in a dedicated field on the ticket.
 There is then a LINK section on the ticket that will show tic_2 (when
 looking at tic_1), and vice-versa show tic_1 [when looking at tic_2]. this
 reverse linking is automatically established when the initial link is
 defined.  As the link can be initiated from either ticket, it can also be
 dropped from either ticket. There is no limit to the number of links
 to;/from a given ticket. 
 JIRA also provides the feature of specifying the TYPE of relationship
 between the tickets - i.e. Parent Of/Child of. However this additional
 information is not critical - simply having the ability to auto-establish
 bi-direction links b/w tickets is what is useful and desired.
 This can come in extremely handy in a situation where perhaps a Parent
 Ticket is created to round up Child tickets for bugs/enhancements that will
 go into a release. Understandably milestones  versions can aid in this also
 - but a ticket as a Parent issue for a release provides the ability to
 attach a deployment schedule, contingency plans, etc to the release as a
 whole.
 
 Any information on how to achieve this, or if there is a plug-in, etc would
 be greatly appreciated.
 -- 
 View this message in context: 
 http://www.nabble.com/bi-directional-links-between-tickets-tp23636870p23636870.html
 Sent from the Trac Users mailing list archive at Nabble.com.
 
 
  

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: bi-directional links between tickets

2009-05-20 Thread Greg Troxel

  Our customer uses the JIRA system for issues, and JIRA has the nice feature
  of Links - it allows establishing a link in a given ticket (i.e. tic_1) to
  another related ticket (i.e. tic_2) in a dedicated field on the ticket.
  There is then a LINK section on the ticket that will show tic_2 (when
  looking at tic_1), and vice-versa show tic_1 [when looking at tic_2]. this
  reverse linking is automatically established when the initial link is
  defined.  As the link can be initiated from either ticket, it can also be
  dropped from either ticket. There is no limit to the number of links
  to;/from a given ticket. 
  JIRA also provides the feature of specifying the TYPE of relationship
  between the tickets - i.e. Parent Of/Child of. However this additional
  information is not critical - simply having the ability to auto-establish
  bi-direction links b/w tickets is what is useful and desired.

This is basically an extension of what I am proposing to change in
mastertickets to add WBS component links.  Once there are multiple kinds
of edges in the graph, one can have blocks, is-part-of, and related, all
with different semantics.



pgpT5kv4MypBr.pgp
Description: PGP signature


[Trac] Re: not able to delete the project

2009-05-20 Thread Erik Bray

On Wed, May 20, 2009 at 7:36 AM, prabha prabhakar2...@gmail.com wrote:

 Hi

 i have created one plugin named as projectmaintenance plugin. this
 plugin is basically user for delete and archive the projects purpose.

 main problem is that once you can open the project iam not able to
 delete the project, it will give an error like unable to delete the
 file trac.db file used by some another persons even i have close the
 databse.


 can anybody suggest how to close the environment for example open
 environment purpose i have used self.open_env

 in the same way how to close the environment.

Stop the server process?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---