Search found 14 matches

by jorge.vargas
Fri Jul 13, 2007 4:13 am
Forum: Support
Topic: Uninstall Deluge after manual install
Replies: 7
Views: 11244

Re: Uninstall Deluge after manual install

FYI a while ago I added to the makefile a "make uninstall target" I believe it was right before 0.5.2
by jorge.vargas
Thu Jul 05, 2007 11:16 pm
Forum: Development
Topic: rss torrent plugin
Replies: 2
Views: 2679

Re: rss torrent plugin

well I got it working but I need someone to work on the GTK part, any takers?
by jorge.vargas
Thu Jul 05, 2007 11:15 pm
Forum: Development
Topic: developing plugin: how to open torrent from url?
Replies: 3
Views: 3139

Re: developing plugin: how to open torrent from url?

Hey. I'm making an RSS torrent plugin. It's now pretty much in a useable state, the only thing missing is the final part: how to open a torrent from a url. I'm hoping there's a simple call which I can provide with a url, and it will just go - is this right? Can one of the developers give me the cod...
by jorge.vargas
Mon Jul 02, 2007 9:36 pm
Forum: Off-topic Discussion
Topic: Why updating trac is important
Replies: 2
Views: 3393

Re: Why updating trac is important

shirish wrote:Hi all,
The problem with trac 0.10 is it doesn't send you reminders or replies when somebody does respond to your bug.
umm and I though that CC field in the ticket was there for something.

maybe the problem is that deluge's trac has no mail configuration which is very different
by jorge.vargas
Sat Jun 30, 2007 5:20 pm
Forum: Development
Topic: new new plugin architecture suggestion
Replies: 1
Views: 2276

new new plugin architecture suggestion

Hi I have been playing around with the plugin arch and I'll like to propose an enhancement, please note this is based on having setuptools manage the plugins, although that only counts for discoverability and metadata so those places could be replaced. currently you need to supply 3 groups of inform...
by jorge.vargas
Sat Jun 30, 2007 4:45 am
Forum: Development
Topic: hello, some feedback and SVN not compiling right
Replies: 5
Views: 3778

Re: hello, some feedback and SVN not compiling right

I fix it with the following I'm still not sure why you guys named ur extension _deluge_core Index: setup.py =================================================================== --- setup.py (revision 816) +++ setup.py (working copy) @@ -156,7 +156,7 @@ 'boost_thread-mt', 'z', 'pthread', 'ssl'] print ...
by jorge.vargas
Sat Jun 30, 2007 12:32 am
Forum: Development
Topic: hello, some feedback and SVN not compiling right
Replies: 5
Views: 3778

Re: hello, some feedback and SVN not compiling right

i made a fresh copy with ur input, I ran svn co http://deluge-torrent.org/svn/trunk deluge; cd deluge; python setup.py build; sudo python setup.py install; rm -rf ~/.config/.deluge; deluge as for the first part it seems the deluge packages from feisty have been removed, because I can't find them any...
by jorge.vargas
Fri Jun 29, 2007 8:13 pm
Forum: Development
Topic: using setuptools for deluge
Replies: 2
Views: 2903

using setuptools for deluge

Hi (last post for now) I also experimented with moving over to setuptools, since the general benefits can be read on the web I'll stay with the specific for deluge. After reading and undestanding your current setup.py it does 3 things 1- build libtorrent, all the code of OS and ARCH, plus the Extens...
by jorge.vargas
Fri Jun 29, 2007 7:48 pm
Forum: Development
Topic: using setuptools for plugins
Replies: 0
Views: 1789

using setuptools for plugins

hi I have ported the current plugin system to work with setuptools entry points, I have been working like this for a while and i like it a lot so here is a list: - the use of python setup.py develop, I love this it fools your python into thinking your code is installed while it isn't - entry points ...