[Trac] ClientsPlugin Installation

2009-02-16 Thread Richie

Hi everybody!

I want to install the ClientsPlugin [1] to my Trac 0.11 Environment.
I build an egg file with setupy.py bdist-egg and uploaded it with
plugin admin page.
But the plugin does not appeare - whats going wrong? Log file does
show something that looks like a plugin error!

Any ideas?

Thanks!

Richie

[1] http://trac-hacks.org/wiki/ClientsPlugin
--~--~-~--~~~---~--~~
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: Make custom ticket field comparable with time

2009-02-16 Thread Eike Jordan

Remy Blank wrote:
 Eike Jordan wrote:
 Dear list,
 we recently installed the TracDateField plugin (trac 0.10.4) with a 
 due_to_close
 field (DD-MM- format). What i try to figure out now is, how to make those
 due_to_close values comparable with the actual datetime e.g. in order to 
 create
 a report which selects all tickets that are overdue.
 
 You would have much simplified the problem by requiring the field format
 to be -MM-DD. Then you wouldn't have anything special to do to
 compare the dates.
 
 Probably not the answer you wanted, but maybe it's not too late to switch?
 
 -- Remy
 

Well, at least your answer gave me the solution indirectly ;-) I simply have
to convert our due_to_close value into the -MM-DD format - et voilà

With

SELECT p.value AS __color__,
   id AS ticket, summary, c.value AS due,
   round(julianday('now') - julianday(strftime(%s, (substr(c.value, 7,4) || 
- || substr(c.value, 4,2) || - || 
substr(c.value, 0,2))), 'unixepoch')) as days

FROM ticket t, enum p, ticket_custom c
WHERE t.id = c.ticket AND c.name = 'due_to_close'
AND p.name = t.priority AND p.type = 'priority'
ORDER BY time, c.value

i get the desired report. Thx for enlighten me :)

~eike

-- 
Eike Jordan  jor...@fiz-chemie.de

| FIZ CHEMIE BERLIN
| Franklin Str. 11   --,__o
| 10587 Berlin  --   _-\_,
|  --   (+)/'(+)
| Tel. : 0049-30-39977 214


--~--~-~--~~~---~--~~
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: ClientsPlugin Installation

2009-02-16 Thread yoheeb

On Feb 16, 2:58 am, Richie richard.boes...@gmail.com wrote:
 Hi everybody!

 I want to install the ClientsPlugin [1] to my Trac 0.11 Environment.
 I build an egg file with setupy.py bdist-egg and uploaded it with
 plugin admin page.
 But the plugin does not appeare - whats going wrong? Log file does
 show something that looks like a plugin error!

 Any ideas?

 Thanks!

 Richie

 [1]http://trac-hacks.org/wiki/ClientsPlugin

You also have to enable the plugin in your trac.ini (or via web-admin)
most of the time, particularly for plugins that modify the templates,
such as this one, you need to restart your server.

finally, assuming you actually already did those 2 things, did you
enable error logging to the debug level, and see if there is an error
loading it.
additionally, if using apache, you may want to check that error log.
--~--~-~--~~~---~--~~
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] version description link.

2009-02-16 Thread yoheeb

I say this asked once before way back with no answer.

a software version can have a description, with wiki mark-up.  Is it
possible to link to this information, or exctract via query?

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 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: how to remove a project component from URL

2009-02-16 Thread Olemis Lang

On Wed, Feb 11, 2009 at 2:50 AM, Noah Kantrowitz n...@coderanger.net wrote:


 On Feb 7, 2009, at 12:32 PM, dmitrey wrote:


 Thank you Noah,
 however, the person who installed Trac is unavailable for now.
 Could you specify how could I turn the existing Trac settings (if it's
 possible at all? Or should I reinstall Trac?)

No please ... dont ... this is specific to the way URLs are matched to
request handlers by your HTTP server ...

 Thank you in advance, D.

 It is very specific to how you are running Trac. You would need to
 give a lot more information.


Yes ...

- one option (if are a DNS admin ;) could be to use virtual hosts with
Apache ...

- another one could be to update the locations in httpd.conf file ...

- ... maybe more ...

... but everything depends on your specific deployment environment and
maybe further settings ... so providing more details might be a very
good just for the start ...

-- 
Regards,

Olemis.

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

Featured article:

--~--~-~--~~~---~--~~
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: user registration for SVN Trac using LDAP

2009-02-16 Thread Olemis Lang

On Wed, Feb 11, 2009 at 3:12 AM, Noah Kantrowitz n...@coderanger.net wrote:
 On Feb 5, 2009, at 4:36 AM, nik gaffney wrote:

 As it appears there are several plugins to use LDAP authentication
 with
 the Acount Manager plugin, I have tried 'TracLDAPAuth' and
 'LdapAuthStore' and couldn't get either to work with the registration
 interface.

 The LDAP auth plugin doesn't support modification, nor do I plan to
 add that. The general use case for LDAP is hooking in to an existing,
 large company infrastructure. In this case you would already have a
 procedure and tools for adding/modifying accounts. I don't think it
 makes sense to try to build these tools into Trac when the whole point
 is to allow you to use your existing ones.


+1 ... this is exactly the idea and Trac admins should not be
responsible for managing users in LDAP (e.g. MSAD ...) dirs ... if
there is a central LDAP server, then there should be an admin. If you
still need to do something like this you (or someone else ... ;) may
write your own registration module to either:

- Modify data in the LDAP dir directly ... (not recommended IMO ...
but anyway, it's up to you ;)

- Notify the MSAD admin (or another external tool ...) of the fact
that a new user should be added ... and delegate this task to this
«external actor» ...

You can also consider the use of specific LDAP admin tools ... or any
other third party tool ... outside the Trac site ... ;)

-- 
Regards,

Olemis.

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

Featured article:

--~--~-~--~~~---~--~~
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: finer-grained access controll

2009-02-16 Thread Olemis Lang

On Wed, Feb 11, 2009 at 4:36 AM, Noah Kantrowitz n...@coderanger.net wrote:

 On Feb 11, 2009, at 1:28 AM, eri x wrote:

 Hi, i saw that the account manger plugin permits to manage the
 accounts of the users working with svn, but i don't understand if it
 is possible to use finer-grained access control with this plugin,
 or there is another plugin that can do this.

SvnAuthStore if you want to use svnserve passwords ...

I found some kind of «SvnAuthzXXX» plugin in Trac Hacks ... it allows
you to manage SVN authz conf file and therefore the result is
«finer-grained access control» ... ;)

-- 
Regards,

Olemis.

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

Featured article:

--~--~-~--~~~---~--~~
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: user registration for SVN Trac using LDAP

2009-02-16 Thread Jeff Hammel

On Mon, Feb 16, 2009 at 12:57:21PM -0500, Olemis Lang wrote:
 
 On Wed, Feb 11, 2009 at 3:12 AM, Noah Kantrowitz n...@coderanger.net wrote:
  On Feb 5, 2009, at 4:36 AM, nik gaffney wrote:
 
  As it appears there are several plugins to use LDAP authentication
  with
  the Acount Manager plugin, I have tried 'TracLDAPAuth' and
  'LdapAuthStore' and couldn't get either to work with the registration
  interface.
 
  The LDAP auth plugin doesn't support modification, nor do I plan to
  add that. The general use case for LDAP is hooking in to an existing,
  large company infrastructure. In this case you would already have a
  procedure and tools for adding/modifying accounts. I don't think it
  makes sense to try to build these tools into Trac when the whole point
  is to allow you to use your existing ones.
 
 
 +1 ... this is exactly the idea and Trac admins should not be
 responsible for managing users in LDAP (e.g. MSAD ...) dirs ... if
 there is a central LDAP server, then there should be an admin. If you
 still need to do something like this you (or someone else ... ;) may
 write your own registration module to either:
 
 - Modify data in the LDAP dir directly ... (not recommended IMO ...
 but anyway, it's up to you ;)
 
 - Notify the MSAD admin (or another external tool ...) of the fact
 that a new user should be added ... and delegate this task to this
 «external actor» ...
 
 You can also consider the use of specific LDAP admin tools ... or any
 other third party tool ... outside the Trac site ... ;)
 
 -- 
 Regards,
 
 Olemis.

We have been thinking about this in-house as well, as we have several projects 
that are OSS (so anyone should be able to register) but will have SVN 
committers and members of other privilege that will have LDAP accounts.  I was 
thinking of a layered scheme for this:

 * allow registration TTW for anyone

 * for auth, check LDAP first; if no such account, then validate against (e.g.) 
and .htpasswd file which will contain registered accounts

 * create tools to allow easy migration from TTW registered users to LDAP users

We're still in the thinking and planning stage on this one, but I'd be happy to 
make such tools available when they're ready (or for that matter, use someone 
else's tools if they've already solved this problem).

Jeff

--~--~-~--~~~---~--~~
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: user registration for SVN Trac using LDAP

2009-02-16 Thread Ed - 0x1b, Inc.

On Wed, Feb 11, 2009 at 1:12 AM, Noah Kantrowitz n...@coderanger.net wrote:

 On Feb 5, 2009, at 4:36 AM, nik gaffney wrote:


 Hi,

 I am trying to setup trac to be able to register new users and grant
 rw
 access to an svn repo. It looks like using LDAP would be the most
 obvious as both trac and svn can authenticate against a local server.
 With my currentl setup trac can view the svn repo and authenticate
 users
 with LDAPStore. However, the 'register' link doesn't appear when
 password_store is LDAPStore but works ok when using SessionStore.

 As it appears there are several plugins to use LDAP authentication
 with
 the Acount Manager plugin, I have tried 'TracLDAPAuth' and
 'LdapAuthStore' and couldn't get either to work with the registration
 interface.

 Has anyone managed to get this kind of setup to work, or should i be
 trying a differnt approach?

 The LDAP auth plugin doesn't support modification, nor do I plan to
 add that. The general use case for LDAP is hooking in to an existing,
 large company infrastructure. In this case you would already have a
 procedure and tools for adding/modifying accounts. I don't think it
 makes sense to try to build these tools into Trac when the whole point
 is to allow you to use your existing ones.

 --Noah


-1
Noah, please consider other use cases,
I'm trying to create a system that can do what the OP requested
without the overhead you're assuming because, in my case, the
participants span several organizations with incompatible
infrastructures. The result is that I would very much like to grant
SVN access based on those that create Trac ID creds. LDAP Auth is
looking to be the best(only?) bridge between the two.

Alternatives - we currently are adding unneeded layers such as forcing
users to register via jabber to populate the LDAP - sorta busts up the
browser centricness of the experience but then it adds some too.
I understand that in most cases Trac is just a consumer of
credentials, but there are cases where Trac is all there is to the
institutional layer.

--Ed

--~--~-~--~~~---~--~~
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: user registration for SVN Trac using LDAP

2009-02-16 Thread Noah Kantrowitz


On Feb 16, 2009, at 10:59 AM, Ed - 0x1b, Inc. wrote:


 On Wed, Feb 11, 2009 at 1:12 AM, Noah Kantrowitz  
 n...@coderanger.net wrote:

 On Feb 5, 2009, at 4:36 AM, nik gaffney wrote:


 Hi,

 I am trying to setup trac to be able to register new users and grant
 rw
 access to an svn repo. It looks like using LDAP would be the most
 obvious as both trac and svn can authenticate against a local  
 server.
 With my currentl setup trac can view the svn repo and authenticate
 users
 with LDAPStore. However, the 'register' link doesn't appear when
 password_store is LDAPStore but works ok when using SessionStore.

 As it appears there are several plugins to use LDAP authentication
 with
 the Acount Manager plugin, I have tried 'TracLDAPAuth' and
 'LdapAuthStore' and couldn't get either to work with the  
 registration
 interface.

 Has anyone managed to get this kind of setup to work, or should i be
 trying a differnt approach?

 The LDAP auth plugin doesn't support modification, nor do I plan to
 add that. The general use case for LDAP is hooking in to an existing,
 large company infrastructure. In this case you would already have a
 procedure and tools for adding/modifying accounts. I don't think it
 makes sense to try to build these tools into Trac when the whole  
 point
 is to allow you to use your existing ones.

 --Noah


 -1
 Noah, please consider other use cases,
 I'm trying to create a system that can do what the OP requested
 without the overhead you're assuming because, in my case, the
 participants span several organizations with incompatible
 infrastructures. The result is that I would very much like to grant
 SVN access based on those that create Trac ID creds. LDAP Auth is
 looking to be the best(only?) bridge between the two.

The actual problem is that you assume the only usable option is LDAP,  
when it is in fact not. It is very common to use htpasswd or htdigest  
auth for both Trac and SVN, and if you point them at the same the file  
then registrations work across both.  This is why making assumptions  
is bad :-)

--Noah

--~--~-~--~~~---~--~~
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: version description link.

2009-02-16 Thread Noah Kantrowitz

On Feb 16, 2009, at 9:17 AM, yoh...@gmail.com wrote:


 I say this asked once before way back with no answer.

 a software version can have a description, with wiki mark-up.  Is it
 possible to link to this information, or exctract via query?

No, as far as I know that information isn't actually used anywhere in  
Trac. You could always get at it with a report, since those are just  
SQL.

--Noah

--~--~-~--~~~---~--~~
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 see plugin on my trac site

2009-02-16 Thread harvey

Hello

I have followed all the details from this page (http://heidisoft.com/
blog/installing-trac-hostmonster-or-bluehost) and managed to start
Trac. However I am not able to see any plugins on my website after
installing them. I first installed the plugins in the ~/install_files
directory as mentioned in this email, I beleive this installs the
plugins globally and requires adding the component details to trac.ini
which I have done.

As this did not change anything in the front end of my trac site, I
also installed the plugins in the local project's plugin directory as
well the same way mentioned in the above post but no luck. I do not
know what I am missing, maybe something I am very sure of. Here are
the version details I am working on.

Hosted on HostMonster Shared server: URL(trac.designsdeveloper.com)
OS: CentOS release 4.7 (Final)
Python: Python 2.3.4
clearsilver-0.10.5
pysqlite-2.3.3
sqlite-amalgamation-3.6.10
subversion-1.4.3
swig-1.3.38
trac-0.10.5


Please help.

--~--~-~--~~~---~--~~
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] Need information about default calendar used for updating/editing the sprint in Agilo

2009-02-16 Thread SudhaSelvaraj

Hi All,

Is there any plugin available for trac ticket calendar.

Please let me know is there any default calendar  to install or please
help me out to make  a plugin for calendar.

Am trying to customize the calendar plugin while updating/editing the
sprint in agilo. I am having one calendar image file and js file for
calendar option. By clicking the image file,  JS file should get
called and calendar must popup in trac page automatically.

Thanks in advance!!

Regards,
~Sudha

--~--~-~--~~~---~--~~
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] trac-admin resync neccesary after subversion upgrade?

2009-02-16 Thread Gregor Dschung
Hey,

I'm upgrading our trac/svn-Server.

Previously:
trac-0.11.1
subversion-1.1.3
python-2.3

New:
trac-0.11.2
subversion-1.5.5
python-2.4

Because this is only a minor-upgrade for trac, I don't have to call
trac-admin env upgrade, do I?

I've already done a svnadmin upgrade to upgrade the repositories.

But I'm not sure, if I have to call trac-admin env resync? I've not
edit the repository_dir. Because one of the repositories
has over 100k check-ins, the downtime would be several hours.

Any hint?

-Gregor


smime.p7s
Description: S/MIME Cryptographic Signature


[Trac] Problem installing agile-trac plugin on windows

2009-02-16 Thread Sneha

Hi,

I am trying to install agile-trac plugin on windows machine. Though I
do not get any error while installing it, the agile-trac plugin is not
displayed in admin tab's plugin section. The components section in
trac.ini file is also not getting updated with the pluin's changes.
Also the iterations and the roadmap tabs are showing some error
related to database. I tried updating the database using trac-admin
command, I got the message Database is up to date, no upgrade
necessary.

I have trac 0.11.2.1 installed on windows machine. Other
configurations - Python 2.5.4, setup tools 0.6.

Thanks in advance.

-Sneha

--~--~-~--~~~---~--~~
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: AccountManagerPlugin for Trac - adding the first user with TRAC_ADMIN rights

2009-02-16 Thread Radha Krishna Srimanthula
Can someone please help me with this?

--
Regards,
Radha



On Sun, Feb 15, 2009 at 9:55 PM, Radha
srimanthula.radhakris...@gmail.comwrote:

 Hi,

 I use Trac 0.11.2.1 for my projects. So far, I've been using
 the .htpasswd mechanism of authentication that is provided by Apache.
 One of the first things I do after setting up a Trac project on Apache
 is to create a .htpasswd file with a user, say TracAdmin, and then
 give that user TRAC_ADMIN rights.

 However, didn't quite like the .htpasswd mechanism - since for every
 user that I needed to add, I had to log into the server and add 'em.
 And password management was a nightmare.

 I looked up AccountManagerPlugin, and looked like it made my life
 easier. Installed it, and then enabled these components:
 AccountManagerAdminPage, AccountManager, SessionStore,
 AccountChangeListener, AccountChangeNotificationAdminPanel,
 HtPasswdHashMethod, AccountModule, EmailVerificationModule,
 LoginModule, RegistrationModule.

 I intended to use SessionStore with HtPasswdHashMethod to keep track
 of my users and their passwords. The AccountManagerPlugin wiki says
 (here, http://trac-hacks.org/wiki/AccountManagerPlugin#LoginModule)
 that, to use the Login Module, I need to disable HTTP based
 authentication provided by Apache.

 My question:

 If I were to enable AccountManagerPlugin before creating any users,
 how do I go about creating the first user with TRAC_ADMIN rights??

 Can someone please help?

 Regards,
 Radha.

--~--~-~--~~~---~--~~
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] Issues with DateField Plugin

2009-02-16 Thread jd

Hi,

I m trying used DateField Plugin for some custom  field. It is working
with tracd standalone webserver but not with apache server. y so, I m
not able to figured out. Is any change required in apache conf file
(httpd)?
Trac specification: 0.11.2.1

Thanks,
Jatin

--~--~-~--~~~---~--~~
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] segmentation fault and ticket 2611

2009-02-16 Thread George Nychis

Hi all,

I am having the following error:
http://trac.edgewall.org/ticket/2611

I tried adding PythonInterpreter main_interpreter which is suggested 
by users in the ticket, however, I am still getting the segfault.

Here is my full configuration, line 333 is where the related config starts:
http://pastebin.com/f7ab11ddb

A little bit about what I'm using:
Apache/2.2.6 (FreeBSD)
mod_ssl/2.2.6
OpenSSL/0.9.8g
DAV/2
SVN/1.4.4
PHP/5.2.5 with Suhosin-Patch
mod_python/3.3.1
Python/2.5.1

I'd greatly appreciate any suggestions.

Thanks!
George

--~--~-~--~~~---~--~~
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: AccountManagerPlugin for Trac - adding the first user with TRAC_ADMIN rights

2009-02-16 Thread yoheeb

On Feb 16, 9:09 am, Radha Krishna Srimanthula
srimanthula.radhakris...@gmail.com wrote:
 Can someone please help me with this?

 --
 Regards,
 Radha

 On Sun, Feb 15, 2009 at 9:55 PM, Radha
 srimanthula.radhakris...@gmail.comwrote:

  Hi,

  I use Trac 0.11.2.1 for my projects. So far, I've been using
  the .htpasswd mechanism of authentication that is provided by Apache.
  One of the first things I do after setting up a Trac project on Apache
  is to create a .htpasswd file with a user, say TracAdmin, and then
  give that user TRAC_ADMIN rights.

  However, didn't quite like the .htpasswd mechanism - since for every
  user that I needed to add, I had to log into the server and add 'em.
  And password management was a nightmare.

  I looked up AccountManagerPlugin, and looked like it made my life
  easier. Installed it, and then enabled these components:
  AccountManagerAdminPage, AccountManager, SessionStore,
  AccountChangeListener, AccountChangeNotificationAdminPanel,
  HtPasswdHashMethod, AccountModule, EmailVerificationModule,
  LoginModule, RegistrationModule.

  I intended to use SessionStore with HtPasswdHashMethod to keep track
  of my users and their passwords. The AccountManagerPlugin wiki says
  (here,http://trac-hacks.org/wiki/AccountManagerPlugin#LoginModule)
  that, to use the Login Module, I need to disable HTTP based
  authentication provided by Apache.

  My question:

  If I were to enable AccountManagerPlugin before creating any users,
  how do I go about creating the first user with TRAC_ADMIN rights??

  Can someone please help?

  Regards,
  Radha.

I haven't done this, but from what I was reading a while back,  you
can't.  I believe you would need to create the htauth file, add the
TRAC_ADMIN account, then run the sessionstore_convert.py script.
After that, I would think you could delete that file going forward.

probably something in this thread here:
http://www.mailinglistarchive.com/trac-users@googlegroups.com/msg03696.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: version description link.

2009-02-16 Thread yoheeb

On Feb 16, 3:31 pm, Noah Kantrowitz n...@coderanger.net wrote:
 On Feb 16, 2009, at 9:17 AM, yoh...@gmail.com wrote:



  I say this asked once before way back with no answer.

  a software version can have a description, with wiki mark-up.  Is it
  possible to link to this information, or exctract via query?

 No, as far as I know that information isn't actually used anywhere in  
 Trac. You could always get at it with a report, since those are just  
 SQL.

 --Noah

Thanks, that's what I thought.
Still a bit odd to allow wiki formatting there but not make it
includeable  And sorry all for the rough typos in that original
post, not sure what was up with that.
--~--~-~--~~~---~--~~
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: version description link.

2009-02-16 Thread Remy Blank
yoh...@gmail.com wrote:
 I say this asked once before way back with no answer.
 
 a software version can have a description, with wiki mark-up.  Is it
 possible to link to this information, or exctract via query?

There is a ticket for the same request, but about components:

  http://trac.edgewall.org/ticket/1233

I'll add a comment about the version field.

-- Remy



signature.asc
Description: OpenPGP digital signature