Re: [BangPypers] Django How to log used_id with log message.

2016-06-14 Thread Sanu Madhavan
thanks Anand, I don't want repeat request.user.id in all log statements in the view. I am looking for a generalized way. -- <<::Regards ::>> sanup...@gmail.com +917736579488 ___ BangPypers mailing list BangPypers@python.org https://mail.python.or

Re: [BangPypers] Django How to log used_id with log message.

2016-06-14 Thread Chillar Anand
>From where you are logging? If you are logging from view, you can try `request.user.id`. If you don't have request object, you can store user object somewhere and log from that. Regards, Chillar Anand www.avilpage.com On Tue, Jun 14, 2016 at 8:50 PM, Sanu Madhavan wrote: > Hi, > I am fol

Re: [BangPypers] Django

2016-05-16 Thread Gora Mohanty
On 16 May 2016 at 22:02, Pavan Kulkarni wrote: > > Dear Sir > Could you please suggest good book on Django implementing Restful API Don't know about a book, but IMHO Django Rest Framework is the leader here, and is well documented: http://www.django-rest-framework.org/ . Try the tutorial first.

Re: [BangPypers] Django

2016-05-16 Thread Pavan Kulkarni
Dear Sir Could you please suggest good book on Django implementing Restful API I am newbie in this forum Thanks Pavank ___ BangPypers mailing list BangPypers@python.org https://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Django pagination

2015-02-16 Thread Numaan Ashraf
Hi Shashidhar, You can explore hooking up pagination on the django rest framework side and modify the factory/service calls on the angular side to fetch the pa

Re: [BangPypers] Django pagination

2015-02-16 Thread Shashidhar Paragonda
Hello @Numan Ashraf, yes I am using django_rest_framework to handle the REST, I was trying with Angular JS < ng-repeat > http://stackoverflow.com/questions/10816073/how-to-do-paging-in-angularjs @Ramdas, @Ragsagar, I'll django-endless-pagination. I was thinking using Angular js pagination was o

Re: [BangPypers] Django pagination

2015-02-16 Thread Numaan Ashraf
Are you using any frameworks to handle the REST backend like tastypie or django-rest-framework? On Mon, Feb 16, 2015 at 6:44 PM, Ramdas S wrote: > Would recommend Django Endless Pagination. It has a Jquery plugin > which can easily be extended > > On Mon, Feb 16, 2015 at 4:44 PM, ragsagar wrote

Re: [BangPypers] Django pagination

2015-02-16 Thread Ramdas S
Would recommend Django Endless Pagination. It has a Jquery plugin which can easily be extended On Mon, Feb 16, 2015 at 4:44 PM, ragsagar wrote: > On Mon, Feb 16, 2015 at 11:26 AM, Gora Mohanty wrote: > >> On 16 February 2015 at 12:42, Shashidhar Paragonda >> wrote: >> > hello hackers, >> > >> >

Re: [BangPypers] Django pagination

2015-02-16 Thread ragsagar
On Mon, Feb 16, 2015 at 11:26 AM, Gora Mohanty wrote: > On 16 February 2015 at 12:42, Shashidhar Paragonda > wrote: > > hello hackers, > > > > I need help on implementing pagination for Restful responses in django, > > front hand I am using angular js. > > Basically I get customer details from r

Re: [BangPypers] Django pagination

2015-02-15 Thread Gora Mohanty
On 16 February 2015 at 12:42, Shashidhar Paragonda wrote: > hello hackers, > > I need help on implementing pagination for Restful responses in django, > front hand I am using angular js. > Basically I get customer details from rest request and I need to divide > then by 25 per page with pagination

Re: [BangPypers] django+twisted meetup this Wednesday-6 pm @IBM Bangalore

2014-11-02 Thread Shashidhar Paragonda
Hello Apratim Thanks for sharing info. I am interested to join. Is there any agenda what session is going happen! On Sunday, November 2, 2014, apratim ankur wrote: > Hi, > There's a python meetup @IBM Innovation Center, Block A, Embassy Golf Links > Domlur - this wednesday @6 pm -- > http://www.

Re: [BangPypers] Django - Testing Celery Tasks!

2014-08-06 Thread Pradip Caulagi
On Wednesday 06 August 2014 12:17 PM, Anand Reddy Pandikunta wrote: Hi, Here is one simple model and a celery task. Can some one tell me how to write a test for this task? Thank you! *my_app/models.py* *class MyModel(models.Model):* *x = models.IntegerField()* *y = models.IntegerField()

Re: [BangPypers] Django - Testing Celery Tasks!

2014-08-06 Thread kracekumar ramaraju
Hi This is how I solve it. tasks.py @app.task def some_task(*args, **kwargs): return do_something(*args, **kwargs) somefile.py def do_something(*args, **kwargs): # All my logic is here test_somefile.py def test_do_something_when_user_isinactive(): #test logic, this works in py.

Re: [BangPypers] Django - Infinte Loop

2014-07-11 Thread Arun Ravindran
Hi, >From Django 1.7 onwards, the proper way to register signals will be inside a ready function in the app's configuration object. This is thanks to the App-loading refactor done in the release. In your case, a

Re: [BangPypers] Django - Infinte Loop

2014-07-11 Thread Anand Reddy Pandikunta
I have overrided model save. Moved couple of functions from models.py to tasks.py which lead to circular imports. Instead of importing models at the beginning of file, I've imported them in the functions. Thank you @krace, @navin, @pradip :) On Thu, Jul 10, 2014 at 11:12 AM, Pradip Caulagi wro

Re: [BangPypers] Django - Infinte Loop

2014-07-09 Thread Pradip Caulagi
On Tuesday 08 July 2014 01:13 PM, Anand Reddy Pandikunta wrote: Hi, *models.py* *def my_func(sender, instance, created, **kwargs):* * # do something* * instance.status = 'task completed'* * instance.save()* *class MyModel(models.Model):* * status = models.CharField(max_leng

Re: [BangPypers] Django - Infinte Loop

2014-07-08 Thread Navin Kabra
1. Why are you doing this using a signal? Signals are best used when saving of Model1 needs to trigger some action on Model2. If you want to modify Model1 itself, you're better off doing this inside MyModel::save 2. If you really want to do it this way, put an if condition in my_func so that insta

Re: [BangPypers] Django - Infinte Loop

2014-07-08 Thread kracekumar ramaraju
Hi Anand I would save *don't* use Django signal. Signals are hard to test and don't know when they will be executed. Suggestions - If post_save function does some work like updating external service which can take data, use rq or celery. - You can override django save. class MyModel(BaseClass):

Re: [BangPypers] Django FTP

2014-07-02 Thread Anand Reddy Pandikunta
@Gora Mohanty @Arun Ravindran Thanks for the help. Task completed. FTP + Celery + Django = Asynchronously Awesome!! On Tue, Jul 1, 2014 at 1:14 PM, Arun Ravindran wrote: > Hi Anand, > > Tasks which take significant time such as downloading a file should be kept > out of the normal request-r

Re: [BangPypers] Django FTP

2014-07-01 Thread Arun Ravindran
Hi Anand, Tasks which take significant time such as downloading a file should be kept out of the normal request-response processing. I suggest using an asynchronous task queue like Celery for this. Once the form is found to be valid, you can start a Celery task to d

Re: [BangPypers] Django FTP

2014-07-01 Thread Gora Mohanty
On 1 July 2014 12:58, Anand Reddy Pandikunta wrote: > > Hi, > > In one Django App, I've created a simple form. It has URLField, where user > enters FTP url. As soon as user submits the form, I have to download the > file and save it our servers. File size: ~10gb. Need to download securely. Use ft

Re: [BangPypers] Django using syncdb does not work

2014-06-04 Thread Senthil
Gora, Sorry I could not reply in short time; I will post the error when I work on this.Appreciate your help there. Thx. SSK. On Tuesday, 3 June 2014 9:14 AM, Senthil wrote: Gora, Thanks for the prompt response. Sorry that I mentioned syncdb to create models from database instead of i

Re: [BangPypers] Django using syncdb does not work

2014-06-02 Thread Senthil
Gora, Thanks for the prompt response. Sorry that I mentioned syncdb to create models from database instead of inspectdb; But in practice, i used inspectdb only and i am facing error condition. In  short time, let me share the error. Thanks again. --SSK. On Tuesday, 3 June 2014 9:02 AM, Go

Re: [BangPypers] Django using syncdb does not work

2014-06-02 Thread Gora Mohanty
On 3 June 2014 08:48, Senthil wrote: > Hi All, > > I am in process of writing an application. > While designing models, I have the database tables created first and tried > using syncdb to create the models. > When i try to access the models from view I get error. > Upon searching in google, I fo

Re: [BangPypers] Django with MSSQL Server 2008

2013-09-26 Thread konark modi
I have used Python + TEIDD via JDBC, and Python + Microsoft SQL Server using ODBC.. I'll share my steps with you for connecting ODBC + Python on a linux machine(CentOS 5.x, 6.x) . 1. Install FREE TDS 2. Install Unix ODBC 3. Install PyODBC 4. Configure the TDS and ODBC settings in $HOME/etc/*.conf

Re: [BangPypers] Django with MSSQL Server 2008

2013-09-26 Thread Vivek Puri
Hi, I am a new to Django and i am trying to do some intial bit of learning myself. I am having difficulty with SQLServer drivers with ADO and pyodbc. Can any body suggest me exactly the approach. Please find the code in my settings.py file. If you could also provide me pointers to downloading th

Re: [BangPypers] django training in Bangalore???

2013-03-12 Thread Kishan Mehta
HI, I am Ram from SLV Technology Solutions, Bangalore. Not sure this is right place to post this Ad. Hope I get good responses here. We train people on Python and related frame works like Django/Zope/Web2Py/Pyramid and place them in relavent companies. Now we have around 20 well trained python fres

Re: [BangPypers] Django url patterns help

2013-03-04 Thread JAGANADH G
> > What Mr Gora Mohanty said is the way to do that. We cannot help you without > sharing the my_app.my_views.my_page or without explaining what logic you > are doing over there. > > Hi All, Thanks for the support. The suggestions were really useful for me. It helped me to clear error in urls.py.

Re: [BangPypers] Django url patterns help

2013-03-01 Thread ragsagar
On Fri, Mar 1, 2013 at 5:46 PM, JAGANADH G wrote: > On Fri, Mar 1, 2013 at 5:27 PM, Prashant Gaur <91prashantg...@gmail.com > >wrote: > > > will you explain error u r getting ?? > > > > > I am not getting any error. The page in not getting redirected . > Even I changed the pattern to > url(r'^my_

Re: [BangPypers] Django url patterns help

2013-03-01 Thread JAGANADH G
On Fri, Mar 1, 2013 at 5:27 PM, Prashant Gaur <91prashantg...@gmail.com>wrote: > will you explain error u r getting ?? > > I am not getting any error. The page in not getting redirected . Even I changed the pattern to url(r'^my_page/', 'my_app.views.my_page', name="my_page"), In fire bug and Djan

Re: [BangPypers] Django url patterns help

2013-03-01 Thread Gora Mohanty
On 1 March 2013 17:31, Bhimsen Kulkarni wrote: > your regex is r'^my_page/(?P.* but your search string (" > /my_page/?btn=view_page&sel=Profile") begins with "/". According to your > regex, search string must begin with "my_page". That is not the problem: url(r'^my_page/$'...) will match http://e

Re: [BangPypers] Django url patterns help

2013-03-01 Thread Prashant Gaur
will you explain error u r getting ?? On Fri, Mar 1, 2013 at 11:54 AM, JAGANADH G wrote: > Hi , > > I was trying to write a url pattern for URL like this > /my_page/?btn=view_page&sel=Profile > > The pattern which I wrote is url(r'^my_page/(?P.*)', > 'my_app.views.my_page', name="my_page"), > >

Re: [BangPypers] Django url patterns help

2013-03-01 Thread Bhimsen Kulkarni
your regex is r'^my_page/(?P.* but your search string (" /my_page/?btn=view_page&sel=Profile") begins with "/". According to your regex, search string must begin with "my_page". On Fri, Mar 1, 2013 at 5:24 PM, JAGANADH G wrote: > Hi , > > I was trying to write a url pattern for URL like this >

Re: [BangPypers] Django url patterns help

2013-03-01 Thread Gora Mohanty
On 1 March 2013 17:24, JAGANADH G wrote: > Hi , > > I was trying to write a url pattern for URL like this > /my_page/?btn=view_page&sel=Profile [...] The "?btn=view_page&sel=Profile" is not part of the URL, but is a query string. The URL is simply /my_page Within the Django view, you can get the

Re: [BangPypers] Django Jquey List View issu

2013-02-19 Thread ragsagar
Refer the following link for the usage of reverse(). You need pass the url name, not template name. https://docs.djangoproject.com/en/dev/topics/http/urls/#reverse-resolution-of-urls On Tue, Feb 19, 2013 at 1:51 PM, JAGANADH G wrote: > On Tue, Feb 19, 2013 at 12:40 PM, ragsagar wrote: > > > I

Re: [BangPypers] Django Jquey List View issu

2013-02-19 Thread JAGANADH G
On Tue, Feb 19, 2013 at 12:40 PM, ragsagar wrote: > It would have better if you have shared the code using dpase or some > pastebin, because it not that readable here. I am assuming your problem is > this. After login, the index.html page is rendering but you cannot the see > the list of items. I

Re: [BangPypers] Django Jquey List View issu

2013-02-18 Thread ragsagar
It would have better if you have shared the code using dpase or some pastebin, because it not that readable here. I am assuming your problem is this. After login, the index.html page is rendering but you cannot the see the list of items. If this is the problem do the following. 1) Get the url name

Re: [BangPypers] Django Jquey List View issu

2013-02-18 Thread JAGANADH G
On Mon, Feb 18, 2013 at 10:26 PM, anirudh bhat wrote: > Hello Jaganadh, your question is too abstract.Maybe you can show us some > code u have written if you dont mind.There maybe lot of things that can go > wrong hereone such example is that maybe there is some problem with > your Jquery co

Re: [BangPypers] Django Jquey List View issu

2013-02-18 Thread JAGANADH G
On Mon, Feb 18, 2013 at 10:26 PM, anirudh bhat wrote: > Hello Jaganadh, your question is too abstract.Maybe you can show us some > code u have written if you dont mind.There maybe lot of things that can go > wrong hereone such example is that maybe there is some problem with > your Jquery co

Re: [BangPypers] Django Jquey List View issu

2013-02-18 Thread anirudh bhat
Hello Jaganadh, your question is too abstract.Maybe you can show us some code u have written if you dont mind.There maybe lot of things that can go wrong hereone such example is that maybe there is some problem with your Jquery code.Is page redirecting done right?? what does your django error

Re: [BangPypers] Django Jstree examples

2013-01-22 Thread Gora Mohanty
On 23 January 2013 12:32, JAGANADH G wrote: > Hi All, > Is there any tutorial available for Django and Jstree J query Checktree. http://lmgtfy.com/?q=django+jquery+jstree Regards, Gora ___ BangPypers mailing list BangPypers@python.org http://mail.pytho

Re: [BangPypers] Django GeoIP related Problem

2012-11-05 Thread Gora Mohanty
On 5 November 2012 20:24, Prashant Gaur wrote: > i am trying .. when i give*GeoIP.so* file path then it give errors same > as *libGeoip.so.1* .. > > i do nt know y i am not able but still i am confused it's working on my > localserver on ubuntu but without GEOIP_LIBRARY_PATH but on cent

Re: [BangPypers] Django GeoIP related Problem

2012-11-05 Thread Prashant Gaur
i am trying .. when i give*GeoIP.so* file path then it give errors same as *libGeoip.so.1* .. i do nt know y i am not able but still i am confused it's working on my localserver on ubuntu but without GEOIP_LIBRARY_PATH but on cent os it is asking for it . please tell me of which file ty

Re: [BangPypers] Django GeoIP related Problem

2012-11-05 Thread pavithran s
On 5 November 2012 15:19, Prashant Gaur wrote: > HI > > i am using django_geoip app in my django website but i am getting errors > please tell me what will be GEOIP_LIBRARY_PATH actually . from the django site : In order to perform IP-based geolocation, the GeoIP object requires the GeoIP C lib

Re: [BangPypers] Django GeoIP related Problem

2012-11-05 Thread Gora Mohanty
On 5 November 2012 15:19, Prashant Gaur wrote: > > HI > > i am using django_geoip app in my django website but i am getting errors > please tell me what will be GEOIP_LIBRARY_PATH actually . That would depend on where you installed the GeoIP C libary from Maxmind. > i am using ubuntu linux .

Re: [BangPypers] Django porting app to multiple databases

2012-03-05 Thread abid ali
Hello friends, Any one here from ZeOmega. I need One help from you. please contact me 9964504645 I am Abid from Bangalore. ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Django porting app to multiple databases

2012-03-02 Thread s|s
On Fri, Mar 2, 2012 at 3:06 PM, Amit Sethi wrote: > Hi all , My app has started breaking after moving to django 1.3 . I > don't really understand why? > > I am working using site framework and given model definition through > app_label. The only major change as I can see is that I use UUID > Fiel

Re: [BangPypers] django signals

2011-11-15 Thread Kenneth Gonsalves
On Tue, 2011-11-15 at 14:19 +0530, Roshan Mathews wrote: > Found via this wonderful site - > https://www.google.com/search?q=django+signals+example which gave much > better results than http://duckduckgo.com/?q=django+signals+example I resent that ;-). How about this: http://duckduckgo.com/?q=sit

Re: [BangPypers] django signals

2011-11-15 Thread Roshan Mathews
On Tue, Nov 15, 2011 at 14:12, Asif Jamadar wrote: > Can anybody explain me how these django signals works with example? Yes, Alon Swartz can, over here - http://www.turnkeylinux.org/blog/django-signals Found via this wonderful site - https://www.google.com/search?q=django+signals+example which g

Re: [BangPypers] django signals

2011-11-15 Thread Asif Jamadar
Can anybody explain me how these django signals works with example? ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] django signals

2011-11-15 Thread Gora Mohanty
On Tue, Nov 15, 2011 at 1:39 PM, Asif Jamadar wrote: > > Is there any way to implement timer using django for each page? Timers are best done with Javascript at the front-end, backed by verification in the back-end. Normally, the back-end can only be informed of changes on a page reload, or via a

Re: [BangPypers] django signals

2011-11-15 Thread Roshan Mathews
JavaScript timer in the browser. Your view will verify the start and end time on the backend. On Tue, Nov 15, 2011 at 13:39, Asif Jamadar wrote: > > Is there any way to implement timer using django for each page? > ___ > BangPypers mailing list > BangP

Re: [BangPypers] django signals

2011-11-15 Thread Asif Jamadar
Is there any way to implement timer using django for each page? ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] django signals

2011-11-15 Thread Venkatraman S
On Tue, Nov 15, 2011 at 12:54 PM, Asif Jamadar wrote: > I'm going to implement questionnaire application using django. Each page > consist of 4 questions. Now how can i implement time for each page. Suppose > each page has 30 min how can i implement this for my questionnaire > application. > > Is

Re: [BangPypers] Django - share login sessions on sub-domain

2011-08-15 Thread Mandar Vaze / मंदार वझे
Also refer to similar discussion on Python Pune mailing list : http://groups.google.com/group/pythonpune/browse_thread/thread/31993e39bd0dfac6/b9b3709bceb6e913 -Mandar On Mon, Aug 15, 2011 at 7:57 PM, Ketan Padegaonkar < ketanpadegaon...@gmail.com> wrote: > It is possible to set session cookies

Re: [BangPypers] Django - share login sessions on sub-domain

2011-08-15 Thread Ketan Padegaonkar
It is possible to set session cookies on a subdomain (*.example.com), in which case you'd need to use the same session storage and user store for all apps in the subdomain so that all the apps can validate the cookie. Having SSO is a much cleaner and simpler way of authenticating users across mult

Re: [BangPypers] Django - share login sessions on sub-domain

2011-08-15 Thread Ansal
Yes, I can do that. But isn't there a way to share the same login session information in sub-domain too? ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] Django - share login sessions on sub-domain

2011-08-14 Thread Sidu Ponnappa
If these are two different apps, why not simply use something like OAuth for SSO? Best, Sidu. On Sun, Aug 14, 2011 at 9:13 PM, Ansal wrote: > Hi, > I have a django app running on my domain. I have another django app running > on its subdomain. How can I share the same login session on this subdo

Re: [BangPypers] Django Develeopers

2011-07-15 Thread Rajeev J Sebastian
We at www.alokin.in use Django in all our projects, both in-house as well as consulting projects. Regards Rajeev J Sebastian On Tue, Jul 12, 2011 at 6:59 AM, Venkatraman S wrote: > Can we have a roll call of developers who actively use Django? > Also, it would be great if you can mention where a

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread Kenneth Gonsalves
On Thu, 2011-04-21 at 09:55 +0530, vijay wrote: > It not new.See if below link can help you > morehttp://lethain.com/replacing-django-s-orm-with-sqlalchemy/ > > it is not nosql -- regards Kenneth Gonsalves http://lawgon.livejournal.com/ ___ BangPyper

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread vijay
It not new.See if below link can help you morehttp://lethain.com/replacing-django-s-orm-with-sqlalchemy/ With Regards Vijay --- On Wed, 20/4/11, Pradeep Gowda wrote: From: Pradeep Gowda Subject: Re: [BangPypers] Django + NoSQL To: "Bangalore Python Users Group - India" Date: Wed

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread Ramdas S
On Wed, Apr 20, 2011 at 11:16 PM, Noufal Ibrahim wrote: > On Wed, Apr 20 2011, Anush Shetty wrote: > > > Hi All, > > > > What is the most preferred NoSQL engine with Django here. Would like > > to hear out some experiences. > > [...] > > You could just let Django use it's own ORM and relational b

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread Noufal Ibrahim
On Wed, Apr 20 2011, Anush Shetty wrote: > Hi All, > > What is the most preferred NoSQL engine with Django here. Would like > to hear out some experiences. [...] You could just let Django use it's own ORM and relational backend and then use any of the popular bindings to one of the non relationa

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread Pradeep Gowda
This "SqlAlchmeny" must be a new library then. Is it anything like the SQLAlchemy library that talks only to relational databases? On Wed, Apr 20, 2011 at 12:58 PM, vijay wrote: > I have used Django with SqlAlchmeny. > > > --- On Wed, 20/4/11, Anush Shetty wrote: > > From: Anush Shetty > Subje

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread vijay
I have used Django with SqlAlchmeny. --- On Wed, 20/4/11, Anush Shetty wrote: From: Anush Shetty Subject: [BangPypers] Django + NoSQL To: bangpypers@python.org Date: Wednesday, 20 April, 2011, 5:20 PM Hi All, What is the most preferred NoSQL engine with Django here. Would like to hear out so

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread Pradeep Gowda
All popular NoSQL solutions (Couch, MongoDB, Riak ..) have Python bindings. Core django modules still assume a relational backend. Why the insistence on "django " ? Putting on the Django glasses everytime is not a healthy development. +PG On Wed, Apr 20, 2011 at 7:50 AM, Anush Shetty wrote: >

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread Santosh Rajan
Simon Willison one of the original authors of Django is a great fan of Redis. http://simonwillison.net/static/2010/redis-tutorial/ On Wed, Apr 20, 2011 at 5:20 PM, Anush Shetty wrote: > Hi All, > > What is the most preferred NoSQL engine wi

Re: [BangPypers] Django + NoSQL

2011-04-20 Thread Pradip Caulagi
On 4/20/11 5:20 PM, Anush Shetty wrote: What is the most preferred NoSQL engine with Django here. Would like to hear out some experiences. Django currently doesn't support NoSQL. It is planned though. http://www.allbuttonspressed.com/projects/django-nonrel ___

Re: [BangPypers] Django-based CMS recommendations?

2010-12-02 Thread Noufal Ibrahim
Haven't used it myself but just in case you're short of possible candidates http://mezzanine.jupo.org/ -- ~noufal http://nibrahim.net.in ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] [django] Directory Listing

2010-11-27 Thread Rajeev J Sebastian
I have used it extensively. In particular to implement the kind of thing asked in the subject. However. django-mptt itself doesn't provide any mechanisms to build taxonomies or categories; it only allows building trees. I have built a taxonomy app on top of it, which I could possibly share with y

Re: [BangPypers] [django] Directory Listing

2010-11-25 Thread Kenneth Gonsalves
On Thu, 2010-11-25 at 17:02 +0530, Venkatraman S wrote: > > I did have a try some years back - but I am weak in mathematics, so > I > > rolled my own. > > > > How is this related to math-troubles? You mean "<" and ">" are > confusing? I could not understand the logic - some algorithm (I did not

Re: [BangPypers] [django] Directory Listing

2010-11-25 Thread Venkatraman S
On Thu, Nov 25, 2010 at 6:48 PM, Senthil Kumaran wrote: > On Thu, Nov 25, 2010 at 06:40:38PM +0530, Venkatraman S wrote: > > On Thu, Nov 25, 2010 at 5:03 PM, Gora Mohanty > wrote: > > > > > > > > What do you mean by an "app" in the context of Python? Do you mean > > > a Django application? > > >

Re: [BangPypers] [django] Directory Listing

2010-11-25 Thread Senthil Kumaran
On Thu, Nov 25, 2010 at 06:40:38PM +0530, Venkatraman S wrote: > On Thu, Nov 25, 2010 at 5:03 PM, Gora Mohanty wrote: > > > > > What do you mean by an "app" in the context of Python? Do you mean > > a Django application? > > > > Check out the Subject of the email. If I were to reply to previous

Re: [BangPypers] [django] Directory Listing

2010-11-25 Thread Venkatraman S
On Thu, Nov 25, 2010 at 5:03 PM, Gora Mohanty wrote: > > What do you mean by an "app" in the context of Python? Do you mean > a Django application? > Check out the Subject of the email. ___ BangPypers mailing list BangPypers@python.org http://mail.pyth

Re: [BangPypers] [django] Directory Listing

2010-11-25 Thread Gora Mohanty
On Thu, Nov 25, 2010 at 4:38 PM, Venkatraman S wrote: > Is there a Directory Listing app? By directory i meant categories. > Lets say, a system to manage the various types of categories in eBay and > associate items and other categories within it. [...] What do you mean by an "app" in the context

Re: [BangPypers] [django] Directory Listing

2010-11-25 Thread Venkatraman S
On Thu, Nov 25, 2010 at 4:58 PM, Kenneth Gonsalves wrote: > > I did have a try some years back - but I am weak in mathematics, so I > rolled my own. > How is this related to math-troubles? You mean "<" and ">" are confusing? ___ BangPypers mailing list

Re: [BangPypers] [django] Directory Listing

2010-11-25 Thread Kenneth Gonsalves
On Thu, 2010-11-25 at 16:54 +0530, Venkatraman S wrote: > On Thu, Nov 25, 2010 at 4:45 PM, Kenneth Gonsalves > wrote: > > > django-mptt? > > > > > I did have a try some years back - but I am weak in mathematics, so I rolled my own. -- regards Kenneth Gonsalves ___

Re: [BangPypers] [django] Directory Listing

2010-11-25 Thread Venkatraman S
On Thu, Nov 25, 2010 at 4:45 PM, Kenneth Gonsalves wrote: > django-mptt? > I have seen some people rant about it in #django. Have you tried it? ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] [django] Directory Listing

2010-11-25 Thread Kenneth Gonsalves
On Thu, 2010-11-25 at 16:38 +0530, Venkatraman S wrote: > Is there a Directory Listing app? By directory i meant categories. > Lets say, a system to manage the various types of categories in eBay > and > associate items and other categories within it. django-mptt? -- regards Kenneth Gonsalves _

Re: [BangPypers] Django-based CMS recommendations?

2010-11-24 Thread Kenneth Gonsalves
On Wed, 2010-11-24 at 21:59 +0530, Kiran Jonnalagadda wrote: > The Django architecture has its own issues, but is stable enough to > not need > worrying about maintenance. So, Django-based CMS, anyone? if you need multilingual - http://quadmulc.greenchilly.in and a simple blog - http://blog.gree

Re: [BangPypers] Django-based CMS recommendations?

2010-11-24 Thread larryt
t;From: bangpypers-bounces+larryt=winfirst@python.org (on behalf of Kiran >Jonnalagadda ) >Subject: Re: [BangPypers] Django-based CMS recommendations? >To: Bangalore Python Users Group - India > >On Wed, Nov 24, 2010 at 10:05 PM, Venkatraman S wrote: > >> Try http://

Re: [BangPypers] Django-based CMS recommendations?

2010-11-24 Thread Navin Kabra
On Thu, Nov 25, 2010 at 12:34 AM, Venkatraman S wrote: > Let me give you a word of caution : Pinax is a monster and sometimes cane > make you go mad. > By monster , i dont mean the hugeness, but how sometimes certain > customizing > aspects of it > can cause involuntary hair loss. But, Pinax is a

Re: [BangPypers] Django-based CMS recommendations?

2010-11-24 Thread Kiran Jonnalagadda
On Thu, Nov 25, 2010 at 12:34 AM, Venkatraman S wrote: > But, Pinax is a great solution when you > want to do anything > 'social' quickly. > I'm not after 'quickly' as much as 'maintainable even after you get bored and move on'. With Plone prior to 3.x, for instance, if you attempted customizat

Re: [BangPypers] Django-based CMS recommendations?

2010-11-24 Thread Venkatraman S
On Wed, Nov 24, 2010 at 10:29 PM, Kiran Jonnalagadda wrote: > On Wed, Nov 24, 2010 at 10:05 PM, Venkatraman S > wrote: > > > Try http://djangopluggables.com/ for the download stats and other > > options. > > If all you want is a simple blogging app then can write your own? > >or assemble to

Re: [BangPypers] Django-based CMS recommendations?

2010-11-24 Thread Kiran Jonnalagadda
On Wed, Nov 24, 2010 at 10:05 PM, Venkatraman S wrote: > Try http://djangopluggables.com/ for the download stats and other > options. > If all you want is a simple blogging app then can write your own? >or assemble together the various django-x apps? >or try customizing Pinax? >o

Re: [BangPypers] Django-based CMS recommendations?

2010-11-24 Thread Gora Mohanty
On Wed, Nov 24, 2010 at 9:59 PM, Kiran Jonnalagadda wrote: > Hi all, > > Does this list have a recommendation for a Django-based CMS? Or a review of > the one conveniently named "Django CMS"? We looked at django-cms, but went with page-cms, though this was also partly because of client requiremen

Re: [BangPypers] Django-based CMS recommendations?

2010-11-24 Thread Ramdas S
On Wed, Nov 24, 2010 at 10:05 PM, Venkatraman S wrote: > On Wed, Nov 24, 2010 at 9:59 PM, Kiran Jonnalagadda > wrote: > > > Does this list have a recommendation for a Django-based CMS? Or a review > of > > the one conveniently named "Django CMS"? > > > > Try http://djangopluggables.com/ for the

Re: [BangPypers] Django-based CMS recommendations?

2010-11-24 Thread Venkatraman S
On Wed, Nov 24, 2010 at 9:59 PM, Kiran Jonnalagadda wrote: > Does this list have a recommendation for a Django-based CMS? Or a review of > the one conveniently named "Django CMS"? > Try http://djangopluggables.com/ for the download stats and other options. If all you want is a simple blogging a

Re: [BangPypers] Django Jammers

2010-05-12 Thread Dhaval Sharma
Have created another google group to manage the logistics and ideas for such event at djangojamm...@googlegroups.com let me know if you would be comfortable with another group specifically focused on organizing such meets. Have posted few initial ideas at the google groups. please review and

Re: [BangPypers] Django Jammers

2010-05-12 Thread Anubha Dadhich
+1 for next saturday. Can we discuss a few project ideas for the session. Also would like to know the duration of the session. On Wed, May 12, 2010 at 2:43 PM, Dhaval Sharma wrote: > I will be at appjam on this saturday. How about next saturday? > > -- > With Warm Regards, > @dhavalsharma > htt

Re: [BangPypers] Django Jammers

2010-05-11 Thread Anubha Dadhich
Are there any concrete plans? +1 from my side for this saturday On Sun, May 9, 2010 at 11:11 PM, B.Nanda Kishore wrote: > +1 for this saturday. > > Any probable ideas, for a django project? > > Regards, > Nandakishore > > > On Sun, May 9, 2010 at 5:15 PM, Manish Sinha wrote: > >> On Sun, May 9,

Re: [BangPypers] Django Jammers

2010-05-09 Thread B.Nanda Kishore
+1 for this saturday. Any probable ideas, for a django project? Regards, Nandakishore On Sun, May 9, 2010 at 5:15 PM, Manish Sinha wrote: > On Sun, May 9, 2010 at 12:05 PM, Dhaval Sharma >wrote: > > > Hello Group, > > > > Let me know if this is the right forum to initiate coding initiative.

Re: [BangPypers] Django Jammers

2010-05-09 Thread Abhishek Mishra
> > This Saturday? > Abhishek, if you are free this Saturday, then we can try to meet at Directi > and get some stuff done. > > Not free this Sat buddy, but any other dates are fine. [ If this is specifically about django then I might not be able to jam much :) ] __

Re: [BangPypers] Django Jammers

2010-05-09 Thread Manish Sinha
On Sun, May 9, 2010 at 12:05 PM, Dhaval Sharma wrote: > Hello Group, > > Let me know if this is the right forum to initiate coding initiative. > > I propose a monthly meet to jam and meet at a common place and produce some > cool django stuff. It could be in day or night. > > A time constrained on

Re: [BangPypers] Django Jammers

2010-05-08 Thread Abhishek Mishra
We tried doing something similar - http://24camp.org/ in chennai as well as bangalore. But as for bangalore, the population was usually low - 2 to 4 but the kickstart was good. Hoping to be able to get back to such things in summer :) On Sun, May 9, 2010 at 12:05 PM, Dhaval Sharma wrote: > Hello

Re: [BangPypers] Django and NIS authentication

2009-10-20 Thread Ramdas S
I've written a similar app, which is actually a mini utm app and is successfully deployed at many of my clients, and publishes reports on the network. Django wont understand NIS by itself. You can use Python to do just that. Also you have a number of Python modules which'll help you to gain some o

Re: [BangPypers] Django test case problem

2009-07-28 Thread B.Nanda Kishore
By default django looks for a file called *tests.py*(plural) and not * test.py*. Check that and let us know. Regards, Nandakishore On Tue, Jul 28, 2009 at 6:40 PM, VIJAY KUMAR wrote: > Hi, > >I am running testcase from django when I run them from models.py it > run. > >But when I put t

Re: [BangPypers] Django test case problem

2009-07-28 Thread Gora Mohanty
On Tue, 28 Jul 2009 18:40:39 +0530 (IST) VIJAY KUMAR wrote: [...] > I used this command to run the test cases   python manage.py test > polls Can some help me know what am I missing or should need to > do something  so my testcase from test.py start get executed. [...] Any errors that you see? I

Re: [BangPypers] Django connection problem

2009-06-23 Thread Praveen Kumar
django\db\__init__.py where it is > importing connection module > from django.db import connection > > > > Thanks > Vijay > > > > --- On *Mon, 22/6/09, Gora Mohanty * wrote: > > > From: Gora Mohanty > Subject: Re: [BangPypers] Django connection

Re: [BangPypers] Django connection problem

2009-06-22 Thread VIJAY KUMAR
Hi,    Am pressently using sqlite .    The problem is in the django\db\__init__.py where it is importing connection module     from django.db import connection   Thanks Vijay --- On Mon, 22/6/09, Gora Mohanty wrote: From: Gora Mohanty Subject: Re: [BangPypers

  1   2   >