[Trac] Android Client on Google Play

2013-11-13 Thread Michiel van Loon
Hi all,

since I had a need for an Android client to TRAC I wrote one myself.
It is now in a state that I dare to show it to the world. 
The app needs the XMLRPC plugin to be available on the server. It should 
work for all Android versions 2.2 (Froyo) and higher.
Functions are:

   - View tickets on the server
   - Create new tickets
   - Specify filter to be used (executed on server)
   - Spefify sort order (execurted on server)
   - Local filter on overview screen
   - Update status of ticket and add comments
   - Use http or https servers (including https servers with problematic 
   (e.g. self signed)  certificates)
   

It can be downloaded from Google Play and will be regularly updated when 
new features and /or bugfixes are available:

https://play.google.com/store/apps/details?id=com.mfvl.trac.client

Please send me feedback on how it performs since I only have 1 TRAC 
installation to test it on.

Regards,

Michiel van Loon


-- 
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/groups/opt_out.


Re: [Trac] Android Client on Google Play

2013-11-13 Thread Ethan Jucovy
On Wed, Nov 13, 2013 at 10:03 AM, Michiel van Loon mfvl...@gmail.comwrote:

 since I had a need for an Android client to TRAC I wrote one myself.
 It is now in a state that I dare to show it to the world.


I'm really excited about this!!  I've been wishing there was an Android
Trac client for a while, but had no idea where to begin.  I'll try it out
ASAP and encourage my coworkers to try it also.

Is the source code available somewhere (trac-hacks, github, etc)?  And do
you have an issue tracker set up?

Thanks,
Ethan

-- 
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/groups/opt_out.


Re: [Trac] Android Client on Google Play

2013-11-13 Thread Olemis Lang
On Wed, Nov 13, 2013 at 12:09 PM, Ethan Jucovy ethan.juc...@gmail.comwrote:

 On Wed, Nov 13, 2013 at 10:03 AM, Michiel van Loon mfvl...@gmail.comwrote:

 since I had a need for an Android client to TRAC I wrote one myself.
 It is now in a state that I dare to show it to the world.


 I'm really excited about this!!  I've been wishing there was an Android
 Trac client for a while, but had no idea where to begin.  I'll try it out
 ASAP and encourage my coworkers to try it also.


Nice !
:)



 Is the source code available somewhere (trac-hacks, github, etc)?  And do
 you have an issue tracker set up?


... yes , I'd like to contribute to this effort as well ...

-- 
Regards,

Olemis - @olemislc

Apacheā„¢ Bloodhound contributor
http://issues.apache.org/bloodhound
http://blood-hound.net

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 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/groups/opt_out.


[Trac] AttributeError: Cannot find an implementation of the IRequestHandler interface named TracForgeIndexModule

2013-11-13 Thread Matheus Santana
Hi guys,

I need to migrate a trac enviroment that I inherit from version 0.12dev to 
a new server with 0.12.5. The situation is like this:

*We have serveral projects and there is a master trac project to allow the 
multiple repositories feature - all in the following path: 
/var/repositories/trac

*Each time the user access http://192.168.1.110/projects/clientA for 
instance, TRAC should load the apropriate clientA 
files(/var/repositories/trac/clientA/conf/trac.ini for example).


The problem is that the new 0.12.5 installation fails with:



























*AttributeError: Cannot find an implementation of the IRequestHandler 
interface named TracForgeIndexModule.  Please update the option 
trac.default_handler in trac.ini.Python TracebackMost recent call 
last:Traceback (most recent call last):  File 
/usr/lib/python2.7/dist-packages/trac/web/main.py, line 522, in 
_dispatch_requestdispatcher.dispatch(req)  File 
/usr/lib/python2.7/dist-packages/trac/web/main.py, line 204, in 
dispatchchosen_handler = self.default_handler  File 
/usr/lib/python2.7/dist-packages/trac/config.py, line 648, in __get__
self.section, self.name))AttributeError: Cannot find an implementation of 
the IRequestHandler interface named TracForgeIndexModule.  Please 
update the option trac.default_handler in trac.ini.System Information:Trac 
0.12.5Babel 0.9.6Docutils 0.8.1Genshi 0.6 (with 
speedups)mod_python 3.3.1Pygments 1.5pysqlite 2.6.0Python
 2.7.3 (default, Jan 2 2013, 14:09:21) [GCC 4.7.2]pytz 2012csetuptools 
0.6SQLite 3.7.13Subversion 1.8.4 (r1534716)*



I have tried to install tracforge from 
http://trac-hacks.org/wiki/TracForgePlugin and got the following message:

~/tracforgeplugin/0.11# python setup.py
DO NOT USE THIS CODE YET.

I think that there is a 0.11 requirement...


Someone have any idea what is the problem? I really need some help here 
:///.

Thanks!

-- 
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/groups/opt_out.


Re: [Trac] Android Client on Google Play

2013-11-13 Thread W. Martin Borgert

Quoting Michiel van Loon mfvl...@gmail.com:

since I had a need for an Android client to TRAC I wrote one myself.
It is now in a state that I dare to show it to the world.


Interesting!

Questions:

 1. Is it free software (open source)? And source code actually  
available? Maybe a public issue tracker?


 2. Would you make the app available outside of Google for people who  
either don't (like to) have a Google account or don't like to connect  
their Android device to Google? If it is free software, would  
f-droid.org be an option?


Thanks in advance!

--
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/groups/opt_out.


[Trac] Re: AttributeError: Cannot find an implementation of the IRequestHandler interface named TracForgeIndexModule

2013-11-13 Thread RjOllos
On Wednesday, November 13, 2013 9:21:11 AM UTC-8, Matheus Santana wrote:

 Hi guys,

 I need to migrate a trac enviroment that I inherit from version 0.12dev to 
 a new server with 0.12.5. The situation is like this:

 *We have serveral projects and there is a master trac project to allow the 
 multiple repositories feature - all in the following path: 
 /var/repositories/trac

 *Each time the user access http://192.168.1.110/projects/clientA for 
 instance, TRAC should load the apropriate clientA 
 files(/var/repositories/trac/clientA/conf/trac.ini for example).


 The problem is that the new 0.12.5 installation fails with:



























 *AttributeError: Cannot find an implementation of the IRequestHandler 
 interface named TracForgeIndexModule.  Please update the option 
 trac.default_handler in trac.ini.Python TracebackMost recent call 
 last:Traceback (most recent call last):  File 
 /usr/lib/python2.7/dist-packages/trac/web/main.py, line 522, in 
 _dispatch_requestdispatcher.dispatch(req)  File 
 /usr/lib/python2.7/dist-packages/trac/web/main.py, line 204, in 
 dispatchchosen_handler = self.default_handler  File 
 /usr/lib/python2.7/dist-packages/trac/config.py, line 648, in __get__
 self.section, self.name http://self.name))AttributeError: Cannot find an 
 implementation of the IRequestHandler interface named 
 TracForgeIndexModule.  Please update the option trac.default_handler in 
 trac.ini.System Information:Trac 0.12.5Babel 0.9.6Docutils
  0.8.1Genshi 0.6 (with speedups)mod_python 3.3.1Pygments
  1.5pysqlite 2.6.0Python 2.7.3 (default, Jan 2 2013, 14:09:21) [GCC 
 4.7.2]pytz 2012csetuptools 0.6SQLite 3.7.13Subversion 1.8.4 
 (r1534716)*



 I have tried to install tracforge from 
 http://trac-hacks.org/wiki/TracForgePlugin and got the following message:

 ~/tracforgeplugin/0.11# python setup.py
 DO NOT USE THIS CODE YET.

 I think that there is a 0.11 requirement...


 Someone have any idea what is the problem? I really need some help here 
 :///.

 Thanks!


You probably want to avoid using TracForgePlugin, and set default_handler 
back to its default. Edit the [trac] section of trac.ini with:

default_handler = WikiModule

http://trac.edgewall.org/wiki/TracIni#trac-section
 

-- 
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/groups/opt_out.