[Trac] Notify someone when they are mentioned in a comment.

2015-07-25 Thread Diego Barros
I was wondering if it was possible to setup Trac so that when someone is 
mentioned in a ticket's comment, that person is notified?

Regards,
Diego

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


Re: [Trac] Subversion problem after upgrading to Trac 1.0.4

2015-07-25 Thread Jun Omae
On Thu, Jul 23, 2015 at 5:25 AM, Jeff Buhrt  wrote:
> Why would Trac not be at 'fault' for not upgrading to the newer interface?
> For Fedora 22 forcing the install fails:
> rpm --nodeps  -iv /tmp/subversion-python-1.8.9-2.25.1.i586.rpm
> warning: /tmp/subversion-python-1.8.9-2.25.1.i586.rpm: Header V3 RSA/SHA256
> Signature, key ID 3dbdc284: NOKEY
> Preparing packages...
> file /usr/lib/libsvn_swig_py-1.so.0.0.0 from install of
> subversion-python-1.8.9-2.25.1.i586 conflicts with file from package
> subversion-libs-1.8.13-2.fc22.i686


Please use dnf command rather than directly using rpm command. You
shouldn't use force-install.

dnf update 'subversion*'

Also, subversion-python-1.8.13-2.fc22 package is broken. Upgrade to
subversion-python-1.8.13-7.fc22 packages.

subversion-1.8.13-2:

[root@c8d26486045b /]# rpm -qa 'subversion*'
subversion-1.8.13-2.fc22.x86_64
subversion-libs-1.8.13-2.fc22.x86_64
subversion-python-1.8.13-2.fc22.x86_64
[root@c8d26486045b /]# python -c 'from svn import core'
Traceback (most recent call last):
  File "", line 1, in 
  File "/usr/lib64/python2.7/site-packages/svn/core.py", line 26, in 
from libsvn.core import *
  File "/usr/lib64/python2.7/site-packages/libsvn/core.py", line 7285,
in 
svn_pool_create()
TypeError: svn_pool_create() takes exactly 2 arguments (0 given)


After updating to subversion-1.8.13-7:

[root@c8d26486045b /]# rpm -qa 'subversion*'
subversion-python-1.8.13-7.fc22.x86_64
subversion-1.8.13-7.fc22.x86_64
subversion-libs-1.8.13-7.fc22.x86_64
[root@c8d26486045b /]# python -c 'from svn import core'
[root@c8d26486045b /]# echo $?
0


See https://bugzilla.redhat.com/show_bug.cgi?id=1216264#c7.

-- 
Jun Omae  (大前 潤)

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


Re: [Trac] Subversion problem after upgrading to Trac 1.0.4

2015-07-25 Thread Jeff Buhrt
Why would Trac not be at 'fault' for not upgrading to the newer interface?
For Fedora 22 forcing the install fails:
rpm --nodeps  -iv /tmp/subversion-python-1.8.9-2.25.1.i586.rpm 
warning: /tmp/subversion-python-1.8.9-2.25.1.i586.rpm: Header V3 RSA/SHA256 
Signature, key ID 3dbdc284: NOKEY
Preparing packages...
file /usr/lib/libsvn_swig_py-1.so.0.0.0 from install of 
subversion-python-1.8.9-2.25.1.i586 conflicts with file from package 
subversion-libs-1.8.13-2.fc22.i686

Suggestions?

-Jeff

On Tuesday, March 24, 2015 at 4:13:29 AM UTC-4, Peter Santner wrote:
>
> Hi,
> the problem isn't the Trac but my newest subversion-python installation.
> The subversion-python binding with the version 
> subversion-python-1.8.11-4.1 
> 
>  
> doesn't work in my Opensuse13.1.
> So I downgraded my system to 1.8.9 and it works again
> zypper install --oldpackage subversion-python-1.8.9-2.25.1.x86_64
>
> @Peter Suter: Thanks for your hint.
>
> Peter.
>
>
> Am Samstag, 21. März 2015 11:11:00 UTC+1 schrieb Peter Suter:
>>
>>  Hi
>>
>> On 20.03.2015 13:32, Peter Santner wrote:
>>  
>> Hi,
>> I have upgraded my trac from 1.0.2 to 1.0.4
>> After the upgrade I have the following error in my log/trac.log:
>>  HTTPInternalError: 500 Trac error (Unable to instantiate component <
>> class 'tracopt.versioncontrol.svn.svn_fs.SubversionConnector'> (
>> svn_pool_create() takes exactly 2 arguments (0 given)))
>>  and the "Browse source" component isn't available any more!
>>
>> any help would be appreciate, thanks!
>>  
>>
>> Searching for "svn_pool_create() takes exactly 2 arguments (0 given)" I 
>> see the same discussed on the subversion list recently:
>>
>> http://mail-archives.apache.org/mod_mbox/subversion-dev/201501.mbox/%3c87vbjpocet@ntlworld.com%3E
>>
>> Did you build SVN bindings yourself? Did you change SWIG version?  What 
>> SWIG version are you using?  Have you tried SWIG 2 instead of SWIG 3?
>>
>> Hope this helps.
>>  
>

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


Re: [Trac] Create new users

2015-07-25 Thread Steffen Hoffmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 22.07.2015 15:55, Nuno Ranito wrote:
> Trac.ini file
> 
> [account-manager]
> account_changes_notify_addresses = 
> authentication_url =
> force_passwd_change = False
> hash_method = HtDigestHashMethod
> htdigest_realm = /home/trac/trac.htpasswd
> htpasswd_hash_type = crypt
> notify_actions =
> password_file = /home/trac/trac.htpasswd
> password_store = HtDigestStore,SessionStore,HtPasswdStore
> persistent_sessions = False
> verify_email = False


HtDigestStore and HtPasswdStore cannot share a file. For chaining them
sanely you must specify separate file paths for each of them. Therefor
dedicated options have been introduced in v0.4 of the plugin, and you
shouldn't use anything earlier than 0.4.4 right now.

htpasswd_file - '/home/trac/trac.htpasswd' goes in here

htdigest_file - '/home/trac/trac.htdigest' or similar goes in here
htdigest_realm - is for the hash-prefix, not the file path

This explains the wired file content!

password_file is depreciated and not used since v0.4 by any of your
configured authentication stores.

Steffen Hoffmann
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlWzNngACgkQ31DJeiZFuHf4YACfSNVLybf7CufdnsEalNd9w4i8
OdQAn0I97FkxWLbbfpMSx2nf3WBYZ5Ef
=lFJI
-END PGP SIGNATURE-

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at http://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.