Re: Forum app for Django?

2012-06-17 Thread Jordon Wing
On Sunday, June 17, 2012 3:46:16 AM UTC-7, galgal wrote:
> What forum app dou you reccomend. I need a standard functionality like 
> moderators, nested categories, registration etc.

I have yet to find a good one, honestly. 

Here's a link for a comparison of forum apps: 
http://www.djangopackages.com/grids/g/forums/

Let me know if you find one that works well.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/jDnsfbq7s-oJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Google Drive with Django?

2012-05-09 Thread Jordon Wing
Hey guys,
I'm trying to integrate Google Drive into my app, and I'm having some trouble 
using OAuth2. I'm not sure if any of you have played with the SDK, but if 
anyone has, what library (if any) did you use? Is there anything that 
simplifies the 200+ lines of code they have in the examples? 

Link to the SDK: https://developers.google.com/drive

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/qwx3ZJG5MYgJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Maintain server-initiated FTP connection between client requests?

2011-12-29 Thread Jordon Wing
Thanks! That looks to be exactly what I needed. I'll try implementing that 
and post on here if I have any further questions but it looks rather 
straightforward.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/yneN0yqx0FoJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Maintain server-initiated FTP connection between client requests?

2011-12-28 Thread Jordon Wing
Hey,
I'm going to use ftplib to open up an FTP connection to an FTP server 
provided by the user.  The client will be sending FTP commands to my django 
server via Ajax, which will then be forwarded to the FTP server the user 
provided. However, I'd like to not have to create a new FTP server 
connection every time the client sends an FTP command. In other words, I 
want to keep the FTP connection alive between requests by the client.

How would I do this? Would some sort of comet implementation be best? I was 
initially planning to use WebSockets until I discovered my host won't allow 
it. =\

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/Rl3fOeaZsQcJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.