[Trac] problems with trac and mylyn (HTTP 500 Error)

2008-01-17 Thread aldana

hi,

i am using trac with eclipse mylyn. when having removed a (working)
task repository and created a new one with exactly same config-data
(Validation Successful) and trying to build up a query i get a pop
window (HTTP Error 500) error inside eclipse.
generally xmlrpc seems to work, as i said it works on some existing
task repositories and my eclipse external scripts can query things
with xmlrpc too.

creating other repositories and executing queries (like Edgewall)
works.

has anybody had similar problems that suddenly trying to run queries
on new created task repository fails?

trac-version: 0.11dev-r6216
xmlrpc-plugin version: 1.0.0
eclipse: 3.3.1
mylyn trac connector: Trac 2.2.0.I20071220-1700

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: saving custom query

2007-12-13 Thread aldana

it gets even shorter, when having saved the query you can access it by
index, e.g.:
http://tracRoot/report/9


On Dec 12, 6:13 pm, Mathieu Cousy [EMAIL PROTECTED] wrote:
 A workaround could be to copy the URL and save it in a wiki page in an href 
 tag.
 a title=Active Tickets 
 href=/trac/query?status=newstatus=assignedstatus=reopened 
 level=L2order=priorityActive Tickets/a

 Mathieu

 -Message d'origine-
 De : trac-users@googlegroups.com [mailto:[EMAIL PROTECTED] De la part de 
 Christian Boos
 Envoyé : mercredi 12 décembre 2007 11:15
 À : trac-users@googlegroups.com
 Objet : [Trac] Re: saving custom query

 aldana wrote:
  as far as i investigated correctly it is not possible to save a custom
  query. i cannot see a button 'Save custom query' or similar so i
  guess, this is correct.

 You need to have the REPORT_CREATE permission for that, and of course,
 be using 0.11dev as this feature is not present in 0.10.x.

 -- 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] wiki style link in custom ticket-field

2007-12-13 Thread aldana

hi,

i want to introduce a custom relatedTo ticket-attribute (to link to
other tickets in the way to express subtasks).

to make these ticket numbers not only visible but linkable i would
like to activate the wik-link style for a free text of a free-text
attribute #ticketNumber.

is that possible. or maybe there is an attribute-type for custom
fields 'link' and automatically drop-list is activated? something
like:

[ticket-custom]
related-to = ticket-type
related-to.label = Related To



--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: jdbc (java) connection to trac database

2007-12-12 Thread aldana

alright,

so i guess, reports with direct database access will only be available
when direct file access is possible. because i want to execute reports
for release notes not only from the server but from remote clients too
i will go for the custom query and HTTP GET option.
don't want to switch to database with network capability (postgre,
mysql) either for server runs fine.


On Dec 12, 10:20 am, Emmanuel Blot [EMAIL PROTECTED] wrote:
 SQLite does not provide a network access: it is accessed as a local
 file with the SQLite API.
 There's no user management system, neither a username nor a password.

 Google JDBC sqlite to get some pointers, such 
 ashttp://www.zentus.com/sqlitejdbc/
 I guess the filename argument  is the full or relative path to your
 Trac environment DB file, that is project/db/trac.db

 HTH,
 Manu.

 On Dec 12, 2007 9:50 AM, aldana [EMAIL PROTECTED] wrote:





  hi,

  i want to connect to trac database with groovy (and jdbc) to generate
  reports for release notes (in packaged to be delivered software). i
  already downloaded jdbc-driver. what is unclear is the connection
  parameters for trac database:

  jdbc.connection.url = (as set in trac.ini - e.g. sqlite:db/trac.db)?
  db.username = ?
  db.password = ?

  i know there could be an easier solution in the way to use trac
  directly for report (generate custom query and just doing a HTTP GET
  of the report). never the less i would be interested in db-connection
  parameters.

  thanks for information.

 --
 Manu
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] saving custom query

2007-12-12 Thread aldana

as far as i investigated correctly it is not possible to save a custom
query. i cannot see a button 'Save custom query' or similar so i
guess, this is correct.

does a plugin solve this issue? in my view it is an essential feature
to make custom queries available as an available report through web-
ui. i know that i could refer to my custom query through HTML GET
request, but i want to like see it as link in 'Available Reports' part.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: jdbc (java) connection to trac database

2007-12-12 Thread aldana

yes, maybe i will have a look at xml-rpc plugin (already installed
because of mylyn) for parsing html and getting relevant ticket report
information through html is quite ugly (format information, irrelevant
tags etc.).


On Dec 12, 10:42 am, Emmanuel Blot [EMAIL PROTECTED] wrote:
  i will go for the custom query and HTTP GET option.
  don't want to switch to database with network capability (postgre,

 An alternative might be XmlRpcPlugin, although I never try it w/ Reports.

 Cheers,
 Manu
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: jdbc (java) connection to trac database

2007-12-12 Thread aldana

brilliant!

xmlrpc works like a charm (no dirty html parsing :). this way i am
getting directly to information i want. to show how simple it is
following code (which queries for assigned tickets and print referred
component. done with (great) groovy:

[code]
import groovy.net.xmlrpc.XMLRPCServerProxy as Proxy

def server=new Proxy('http://urlStartToTracApp/xmlrpc')
server.ticket.query(status=assigned).each{
ticket=server.ticket.get(it)
println ticket[3]['component']
}
[/code]

could not go simpler :)


On Dec 12, 11:18 am, aldana [EMAIL PROTECTED] wrote:
 yes, maybe i will have a look at xml-rpc plugin (already installed
 because of mylyn) for parsing html and getting relevant ticket report
 information through html is quite ugly (format information, irrelevant
 tags etc.).

 On Dec 12, 10:42 am, Emmanuel Blot [EMAIL PROTECTED] wrote:

   i will go for the custom query and HTTP GET option.
   don't want to switch to database with network capability (postgre,

  An alternative might be XmlRpcPlugin, although I never try it w/ Reports.

  Cheers,
  Manu
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: saving custom query

2007-12-12 Thread aldana

great thanks.

On Dec 12, 11:15 am, Christian Boos [EMAIL PROTECTED] wrote:
 aldana wrote:
  as far as i investigated correctly it is not possible to save a custom
  query. i cannot see a button 'Save custom query' or similar so i
  guess, this is correct.

 You need to have the REPORT_CREATE permission for that, and of course,
 be using 0.11dev as this feature is not present in 0.10.x.

 -- 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: WorkLogPlugin and TimingEstimation plugin stable for trac 0.11 + Python 2.5?

2007-12-11 Thread aldana

alright, by adding build-config snippet genshi 0.5 got installed in my
python site-packages.

On Dec 11, 5:19 am, rupert thurner [EMAIL PROTECTED] wrote:
 On Dec 11, 5:15 am, rupert thurner [EMAIL PROTECTED] wrote:

  i am not sure if you need mingw installed. compile fails then with:

 just noticed this you might not need mingw might be confusing. the
 warning in the previous mail leads to:

 creating 'dist\Genshi-0.5dev_r780-py2.5-win32.egg' and adding 'build
 \bdist.win32\egg' to it
 removing 'build\bdist.win32\egg' (and everything under it)
 Processing Genshi-0.5dev_r780-py2.5-win32.egg
 Removing c:\apps\python25\lib\site-packages\Genshi-0.5dev_r780-py2.5-
 win32.egg
 Copying Genshi-0.5dev_r780-py2.5-win32.egg to c:\apps\python25\lib
 \site-packages
 Genshi 0.5dev-r780 is already the active version in easy-install.pth

 Installed c:\apps\python25\lib\site-packages\genshi-0.5dev_r780-py2.5-
 win32.egg
 Processing dependencies for Genshi==0.5dev-r780
 Finished processing dependencies for Genshi==0.5dev-r780

 finally, which should be enough for your purpose at the moment.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: howto set free text inside ticket's version field?

2007-12-10 Thread aldana

custom fields are a good idea, i think i will use this before
switching one day to fixed version-types in a drop-list.


On Dec 7, 7:41 pm, Robyn Allsman [EMAIL PROTECTED] wrote:
 We also needed a text field entry for version numbers. I  created a custom
 ticket field and hid the original admin managed version field (by
 removing all admin-defined version numbers).

 I updated our reports to include the user data for the custom ticket field
 (kept in table: ticket_custom). BTW, I suggest you use your direct SQL
 interface to the Trac DB to dump all the DB table definitions.

 I'm  using trac 0.10.4 so I don't know if the new 0.11 report interface allows
 the use of custom fields. The samples only use the trac defined fields.

 Robyn

 --
 Roberta (Robyn) Allsman
 Large Synoptic Survey Telescope

 On Fri, Dec 07, 2007 at 12:12:04PM +, Stephen Moretti wrote:
  On 07/12/2007, aldana [EMAIL PROTECTED] wrote:

   hi,

   i would like to have a free text in version attribute of ticket. how
   can i configure this. had no luck when searching for this inside
   trac.ini (something like disabling option restrict_owner of [ticket]-
   section)

   using trac 0.11.

  There might be a plug-in on trac-hacks, but otherwise you are restricted to
  the list you set up in the web admin.

  To be honest, you don't really want your users making up the version
  numbers.  Much better to proscribe them, so that you know that there will be
  useful and correct information in your tickets.

  Stephen

  --
  Stephen Moretti
  Blog :http://nil.checksite.co.uk/
  Twitter :http://twitter.com/mr_nil
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] WorkLogPlugin and TimingEstimation plugin stable for trac 0.11 + Python 2.5?

2007-12-10 Thread aldana

hi,

we are using trac 0.11dev with Python 2.5. we want to introduce
estimations and time cuts for that.

is the WorkLogPlugin and TimingEstimation plugin stable enough to be
used in production?
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: reset password

2007-12-10 Thread aldana

yes AccountManagerPlugin is installed and AccoutnModule enabled:
[components]
...
acct_mgr.web_ui.accountmodule = enabled

there is the possibility to change passwords for user so plugin seems
to work. maybe 'Reset password' is not visible for smtp is not yet
configured...


On Dec 7, 1:00 pm, Stephen Moretti [EMAIL PROTECTED]
wrote:
 On 07/12/2007, aldana [EMAIL PROTECTED] wrote:



  alright, but just for interest would a deletion of user lead to
  consistency-problems of tickets if just deleted user is set as owner
  and created shortly after?

 No it shouldn't as long as the username is exactly the same.  The tickets
 and the associated user names are stored in a Trac database, which isn't
 linked to the httpdigest file.

 on top right i cannot see any forgot-password link (does it need to be

  configured, have not noticed any entry in trac.ini)

  am using trac 0.11dev

 Do you have the Account Manager plugin 
 installed?http://trac-hacks.org/wiki/AccountManagerPlugin
 If you are, make sure you've enabled the Account Module.

 Regards

 Stephen
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: WorkLogPlugin and TimingEstimation plugin stable for trac 0.11 + Python 2.5?

2007-12-10 Thread aldana

seems not too trivial.

genshi 0.5 is neccessary, so i tried to install genshi, which makes
problems. it says:

error: Python was built with VisualStudio 2003; extensions must be
built with a compiler that can gererate compatible binaries [...]

so i need to install a vs-compiler. the only one we got here is
VisualStudio 2005, will that work (is it downgrade compatible)?
maybe it is easier to go with Python2.4?


please tell if the effort spent is not worth (too unstable plugins).

thanks!


On Dec 10, 10:32 am, aldana [EMAIL PROTECTED] wrote:
 hi,

 we are using trac 0.11dev with Python 2.5. we want to introduce
 estimations and time cuts for that.

 is the WorkLogPlugin and TimingEstimation plugin stable enough to be
 used in production?
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: howto set free text inside ticket's version field?

2007-12-07 Thread aldana

yes, i know that a drop-box in most circumstances is a better way (to
focus on proper release planning).

but in our special case it is neccessary (temporary workaround). the
best thing would be a drop-list for the trivial cases and at the same
time a possibility to enter a free text.

what generally is missing for our needs is that a certain set of
versions is only visible dependent of the  component. that means, if i
choose 'component1' for a ticket i would only see 'v4,v5,v6', when
choosing 'component2' i would only see 'v1,v2,v3'.
a support for submodules of a component would be fantastic, too. these
days we map submodules through naming conventions like
Component1.moduleA, Component2.moduleA etc..


On Dec 7, 1:12 pm, Stephen Moretti [EMAIL PROTECTED]
wrote:
 On 07/12/2007, aldana [EMAIL PROTECTED] wrote:



  hi,

  i would like to have a free text in version attribute of ticket. how
  can i configure this. had no luck when searching for this inside
  trac.ini (something like disabling option restrict_owner of [ticket]-
  section)

  using trac 0.11.

 There might be a plug-in on trac-hacks, but otherwise you are restricted to
 the list you set up in the web admin.

 To be honest, you don't really want your users making up the version
 numbers.  Much better to proscribe them, so that you know that there will be
 useful and correct information in your tickets.

 Stephen

 --
 Stephen Moretti
 Blog :http://nil.checksite.co.uk/
 Twitter :http://twitter.com/mr_nil
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] howto set free text inside ticket's version field?

2007-12-07 Thread aldana

hi,

i would like to have a free text in version attribute of ticket. how
can i configure this. had no luck when searching for this inside
trac.ini (something like disabling option restrict_owner of [ticket]-
section)

using trac 0.11.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] milestone attribute as set

2007-12-06 Thread aldana

hi,

in our software-development it is possible that a ticket is relevant
to two milestones, that means milestones distinguish themselves within
deadlines but features are included in scope of two milestones.

how can i change that inside ticket edit i can choose multiple
milestones (semantics of a set)?

thanks.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: milestone attribute as set

2007-12-06 Thread aldana

thanks for suggestions!

think cloning won't be an option (evil duplication) because tickets
and their resolutions often refer to the same software-artifacts and
inconsistency is a bad virtue.

the reason why we cannot decide one ticket to one milestone is that in
some circumstances we have parallel milestones (as seen from dates).
and sometimes a feature is relevant to these parallel milestones
(discussion something like: yes feature would be nice for this
exhibition and for that one). this Set semantics of ticket to
milestones is of course an exception, but occurs from time to time and
should be expressed by the tool.

i will have a look to the Masterticket plugin.


On Dec 6, 10:05 am, Erik Andersson [EMAIL PROTECTED] wrote:
 Hi

 Somehow you must anyway decide on what should be implemented for each
 release/milestone?

 You could use the masterticket plugin and use a masterticket(connected to a
 feature milestone?) for all functionality and two other tickets, blocking
 the masterticket, for each release/milestone?

 Cheers / Erik

 On Dec 6, 2007 9:51 AM, Christian Boos [EMAIL PROTECTED] wrote:



  aldana wrote:
   hi,

   in our software-development it is possible that a ticket is relevant
   to two milestones, that means milestones distinguish themselves within
   deadlines but features are included in scope of two milestones.

   how can i change that inside ticket edit i can choose multiple
   milestones (semantics of a set)?

  Short answer: you can't.

  Longer answer: this has already been discussed at length, there are
  several possibilities for future versions of Trac. But right now, only a
  few workaround exists, neither is completely satisfying:
   - simply mention the other milestones in the ticket wiki texts (the
  description or a comment)
   - use a custom field (but beware, we still don't have the wikitext
  kind of field yet)
   - clone the ticket and use one for each milestone

  For reference:
   - tickets linked to multiple versions:
 http://trac.edgewall.org/ticket/4298
   - Ticket duplication using Trac:http://trac.edgewall.org/ticket/4686

  -- 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] permission settings to integrate with mylyn

2007-11-28 Thread aldana

hi,

with my provided account login data i can only access to trac from
mylyn if anonymous user has permission TRAC_ADMIN. of course this is
not a good setting.
if removing TRAC_ADMIN from anonymous i get a permission denied from
mylyn. what permission-action is neccessary to access to mylyn without
using TRAC_ADMIN?

thanks.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: permission settings to integrate with mylyn

2007-11-28 Thread aldana

yes, i am using trac 0.11 and therefore plugin tracxmlrpc 1.0.0 is
set.

with me it is a bit different, when having set permissions TRAC_ADMIN
or XML_RPC to anonymous any other users can login through xml-rpc.
when removing them no one can use xml-rpc though other accounts do
have respective rights (like XML_RPC).

it seems that anonymous is kind of super-user all accounts are
inheriting from. besides that other accounts cannot override/extend
settings when it comes to xml-rpc access. maybe an issue with plugin
tracxmlrpc 1.0.0?


On Nov 28, 11:24 am, Thijs Triemstra | Collab [EMAIL PROTECTED] wrote:
 Have you tried XML_RPC? I noticed there's a bug with the xmlrpc
 plugin that doesn't see TRAC_ADMIN as a valid permission to make xml-
 rpc calls.

 Thijs

 On Nov 28, 2007, at 11:12 AM, aldana wrote:



  hi,

  with my provided account login data i can only access to trac from
  mylyn if anonymous user has permission TRAC_ADMIN. of course this is
  not a good setting.
  if removing TRAC_ADMIN from anonymous i get a permission denied from
  mylyn. what permission-action is neccessary to access to mylyn without
  using TRAC_ADMIN?

  thanks.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] what python svn bindings for windows

2007-11-27 Thread aldana

hi,

am having problems to get svn-integration working with trac. through
lack of documentation in windows case i am asking, what python binding
should be installed on windows so trac can work with svn.
i had a look at http://pysvn.tigris.org/ and 
http://users.skynet.be/sbi/libxml-python/.
which one should i use and which one is working the best with trac
(really don't want mess up installation)?

thanks again.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] what python svn bindings for windows

2007-11-27 Thread aldana

hi,

am having problems to get svn-integration working with trac. through
lack of documentation in windows case i am asking, what python binding
should be installed on windows so trac can work with svn.
i had a look at http://pysvn.tigris.org/ and 
http://users.skynet.be/sbi/libxml-python/.
which one should i use and which one is working the best with trac
(really don't want mess up installation)?

thanks again.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: what python svn bindings for windows

2007-11-27 Thread aldana

i downloaded (from your link), installed it and restarted trac.

still i get the message 'Unsupported version control system svn'.
i am using trac 0.11 (from trunk), python 2.5, and subversion 1.4.4.
besides that i am using standalone server (tracd).

On Nov 27, 12:32 pm, Emmanuel Blot [EMAIL PROTECTED] wrote:
  i had a look 
  athttp://pysvn.tigris.org/andhttp://users.skynet.be/sbi/libxml-python/.

 None of them: look in the subversion.tigris.org download directory for
 Windows such 
 ashttp://subversion.tigris.org/downloads/1.4.5-win32/apache-2.0/svn-win...

 The actual package depends on the version of Python you use.

 HTH,
 Manu
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] mylyn integration issues: not all actions displayed, preview not possible

2007-11-27 Thread aldana

hi,

i had a look at 
http://nil.checksite.co.uk/index.cfm/2007/10/29/Trac-011-and-Mylyn.
importing repository etc. works fine, which is great. one thing which
does not seem to work is the display of ticket inside eclipse with
mylyn viewer.

when opening with browser (through 'Open with Web Browser') i can see
all the choices to change ticket state (under Actions) like assign,
leave etc..

when opening it with mylyn viewer, i only see one single choice from
the Actions part instead of my three defined.
further more preview option for instance in comment-part would not
work (error message: XML-RPC method wiki.wikiToHtml not found).
these issues are workaroundable through editing tickets through
integrated web-browser view, so it is no criteria not to work with
mylyn. but still it is a bit annoying.

does somebody experienced similar behaviour?

i am using trac 0.11with a customized workflow and eclipse europa
(with subclipse integration).

thanks.
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: what python svn bindings for windows

2007-11-27 Thread aldana

i just realized that there is a subclipse integration for mylyn so
there is no priority to setup python-svn immediately for we are
working closely with eclipse IDE.

but anyways many thanks, i am sure i will integrate the python-svn
some weeks later to be independent from eclipse (sometimes tasks are
be done outside eclipse).

On Nov 27, 3:06 pm, Steve Povilaitis [EMAIL PROTECTED] wrote:
 I installed trac + svn on windows using the instructions from the
 following link:

 http://community.sgdotnet.org/blogs/blackinkbottles_ink/archive/2006/...

 On Tue, 27 Nov 2007 07:06:40 -0500, Stephen Moretti



 [EMAIL PROTECTED] wrote:
  On 27/11/2007, aldana [EMAIL PROTECTED] wrote:

  i downloaded (from your link), installed it and restarted trac.

  still i get the message 'Unsupported version control system svn'.
  i am using trac 0.11 (from trunk), python 2.5, and subversion 1.4.4.
  besides that i am using standalone server (tracd).

  You need to be using Apache and not the tracd.

  Then you'll need appropriate file, as Manu has already suggested, for
  Python
  2.5, svn 1.4.4 and what ever version of Apache you use from the
  subversion
  downloads :
 http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91...

  Take a look at this URL for instructions on installing and setting up svn
  with apache -http://svn.spears.at/

  Stephen

 --
 Using Opera's revolutionary e-mail client:http://www.opera.com/mail/
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] way of using a html login-form

2007-11-26 Thread aldana

hi,

i got trac working with AccountManager plugin. two things which i
would like to change:

1) login should not go through http authentication, better through a
html form
2) assigning tickets to other user should happen through a drop-box,
which shows all available accounts (so i cannot enter invalid account-
names)

thanks

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] new state in ticket-workflow, trac 0.10?

2007-11-26 Thread aldana

hi,

i need to adjust the default workflow slightly. i want to introduce a
new state 'toTest', which should be placed in between fixed and
closed. is this possible inside 0.10 or do i need to use version 0.11
to accomplish this?

when the only possibility is to switch to 0.11, how stable is 0.11?
does AccountManager plugin work with this version?

thanks.

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: way of using a html login-form

2007-11-26 Thread aldana

thanks! that worked.

now i start to grasp trac a bit better. lots of stuff is not
configured through web-ui merely through trac.ini. for next question i
know where to look.

On Nov 26, 12:39 pm, Stephen Moretti [EMAIL PROTECTED]
wrote:
 On 26/11/2007, aldana [EMAIL PROTECTED] wrote:



  hi,

  i got trac working with AccountManager plugin. two things which i
  would like to change:

  1) login should not go through http authentication, better through a
  html form

 http://trac-hacks.org/wiki/AccountManagerPlugin- Check out the section
 Login Module

 2) assigning tickets to other user should happen through a drop-box,

  which shows all available accounts (so i cannot enter invalid account-
  names)

 http://trac.edgewall.org/wiki/TracTickets- Check out the section Assign-to
 as Drop-Down List

 Regards

 Stephen

 --
 Stephen Moretti
 Blog :http://nil.checksite.co.uk/
 Twitter :http://twitter.com/mr_nil

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] install headaches of 0.11-dev

2007-11-26 Thread aldana

hi,

trying to install (because of ticket extensibility) 0.11 version. i
executed install on state of trunk and installed pysqlite, but initenv
fails with message below. what am i doing wrong?

Traceback (most recent call last):
  File C:\Programme\Python24\Scripts\trac-admin-script.py, line 7,
in ?
sys.exit(
  File c:\programme\python24\lib\site-packages\Trac-0.11dev_r6216-
py2.4.egg\trac\admin\console.py, line 1187, in run
return admin.onecmd(command)
  File c:\programme\python24\lib\site-packages\Trac-0.11dev_r6216-
py2.4.egg\trac\admin\console.py, line 102, in onecmd
rv = cmd.Cmd.onecmd(self, line) or 0
  File C:\Programme\Python24\lib\cmd.py, line 219, in onecmd
return func(arg)
  File c:\programme\python24\lib\site-packages\Trac-0.11dev_r6216-
py2.4.egg\trac\admin\console.py, line 1091, in do_upgrade
self.db_open()
  File c:\programme\python24\lib\site-packages\Trac-0.11dev_r6216-
py2.4.egg\trac\admin\console.py, line 149, in db_open
return self.env_open().get_db_cnx()
  File c:\programme\python24\lib\site-packages\Trac-0.11dev_r6216-
py2.4.egg\trac\env.py, line 239, in get_db_cnx
return DatabaseManager(self).get_connection()
  File c:\programme\python24\lib\site-packages\Trac-0.11dev_r6216-
py2.4.egg\trac\db\api.py, line 76, in get_connection
return self._cnx_pool.get_cnx(self.timeout or None)
  File c:\programme\python24\lib\site-packages\Trac-0.11dev_r6216-
py2.4.egg\trac\db\pool.py, line 101, in get_cnx
cnx = self._connector.get_connection(**self._kwargs)
  File c:\programme\python24\lib\site-packages\Trac-0.11dev_r6216-
py2.4.egg\trac\db\sqlite_backend.py, line 125, in get_connection
return SQLiteConnection(path, params)
  File c:\programme\python24\lib\site-packages\Trac-0.11dev_r6216-
py2.4.egg\trac\db\sqlite_backend.py, line 172, in __init__
timeout=timeout)
ValueError: database parameter must be string or APSW Connection
object


--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: install headaches of 0.11-dev

2007-11-26 Thread aldana

alright, thanks for the quick solution.

On Nov 26, 4:20 pm, Christian Boos [EMAIL PROTECTED] wrote:
 Christian Boos wrote:
  aldana wrote:

  hi,

  trying to install (because of ticket extensibility) 0.11 version. i
  executed install on state of trunk and installed pysqlite, but initenv
  fails with message below. what am i doing wrong?
  ...
  ValueError: database parameter must be string or APSW Connection
  object

  Nothing, you just uncovered a bug with the latest pysqlite package
  (2.4.0) ;-)

  In the meantime, just use the previous one:
 http://initd.org/pub/software/pysqlite/releases/2.3/2.3.5/

  I've not yet checked if the bug comes from trac or pysqlite, stay tuned.

 Works for me now with pysqlite 2.4.0 and:

 http://trac.edgewall.org/changeset/6223

 -- 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] configuration of workflow per ticket type

2007-11-26 Thread aldana

hi,

i managed to get 0.11 working and am defining a custom workflow. what
i am missing with configuration-options is to define a workflow per
ticket type. for instance the workflow of ticket type 'task' or
'enhancement'  should differ from the ticket type 'defect' or 'bug'.

is that possible?
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---