File Upload with Progress Bar

2010-05-30 Thread Venkatraman S
I have been trying to build a simple file upload with progress bar. I have been hanging around in #django for sometime and trying to find a solution but of no avail. I have not been able to get even a flash based solution(like uploadify.com) running along with django. I am not sure whether i am doi

Re: File Upload with Progress Bar

2010-05-30 Thread Venkatraman S
HI creecode, Can you share the project please? I can probably work on it and see what is happening. Till now, i havent even been able to get this working. -V On Sun, May 30, 2010 at 10:45 PM, creecode wrote: > Hello V, > > On May 29, 11:00 pm, Venkatraman S wrote: > > > I h

Re: File Upload with Progress Bar

2010-06-02 Thread Venkatraman S
HANDLERS > > If you are using nginx or apache for the server side instead of > django, you will need to modify progressUrl to point to whatever url > you set up for accessing progress reports. > > If you are looking for a demo, there is one linked in the article > creecode poste

Re: File Upload with Progress Bar

2010-06-02 Thread Venkatraman S
ving like it's not multi-threaded or > something. It seems like I don't get any progress reports until the file > has finished uploading. It's actually driving me a bit crazy so I'm going > to have to move on to something else for a while. > > On Wed, Jun 2, 2010 at

Re: File Upload with Progress Bar

2010-06-03 Thread Venkatraman S
ash-based. > we´ve been using uploadify with django and the filebrowser for about a > year now and it works quite well. > > regards, > patrick > > > On 3 Jun., 06:32, Venkatraman S wrote: > > Tell me about it! Its quite insane that there is no single-standard > solu

Re: File Upload with Progress Bar

2010-06-03 Thread Venkatraman S
> On 3 Jun., 16:10, Venkatraman S wrote: > > Hi Patrick, > > > > Can you share a simple django app which uses Uploadify? Did you use > vanilla > > Uploadify or > > django-uploadify(github.com/tstone/django-uploadify*)*<http://github.com/tstone/django-upload

Re: File Upload with Progress Bar

2010-06-04 Thread Venkatraman S
it impossible > to do upload progress bars at the moment. They are aware of the > problem, but who knows when it will be fixed. > > On Jun 3, 8:31 am, Venkatraman S wrote: > > Oh yes! I was referring to a stand alone app. I heard someone complain > > #django that filebrow

Re: hello django users, I have one doubt. I am doing one django project. It shows one SyntaxError in the line(if not created:) in views.py file.I attached the particular in that. I want the reason o

2010-06-04 Thread Venkatraman S
Please do not send the email in teh subject line :) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googl

Re: XML database updates

2010-06-04 Thread Venkatraman S
On Fri, Jun 4, 2010 at 9:40 PM, Nick wrote: > I have been playing with > ElementTree and BeautifulSoup but there is just something I'm not > getting. > What is the problem that you are facing? if your XML is well defined, then parse it, extract the data, convert that into objects and good to go

Re: Template issue, maybe?

2010-06-04 Thread Venkatraman S
Admin media is not being loaded. -V- http://twitter.com/venkasub On Fri, Jun 4, 2010 at 11:59 PM, Vectar wrote: > Hello all, > > New to Django, I have been through all the tutorials and verified > things appeared to be working. I am running a windows server 2003 > license, with Apache 2.1.2 I

Re: Introducing ImageFlow for Django (Django-ImageFlow)

2010-06-08 Thread Venkatraman S
On Tue, Jun 8, 2010 at 11:52 AM, simon wrote: > > I'd love to get your feedback on what you think about the app. > Is their an option of positioning the Captions associated with the images? Also, can we change the background - say, use another picture? Sorry, i did not play around with this and

Re: styling with django templates

2010-06-08 Thread Venkatraman S
On Wed, Jun 9, 2010 at 3:57 AM, Nick wrote: > Boy, that just flew right past me. Ridiculous. Thanks everyone. > > On Jun 8, 1:06 pm, Dejan Noveski wrote: > > http://docs.djangoproject.com/en/dev/ref/templates/builtins/#for > > > > scroll a bit down to see the forloop object and its properties. >

Generate thumbnails from videos

2010-06-09 Thread Venkatraman S
Hi, Say, a user uploads a video in my website, then how can i generate a thumbnail version of the video on the go? -V- http://twitter.com/venkasub -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us..

Re: Generate thumbnails from videos

2010-06-09 Thread Venkatraman S
On Wed, Jun 9, 2010 at 6:33 PM, Tom Evans wrote: > Oooh, theres also a python wrapper around ffmpeg, and their example on > their frontpage does precisely what you asked for: > > http://code.google.com/p/pyffmpeg/ > > Perfect. Wish they had Windows installs for python 2.6 :( -V- http://twitter.c

Re: Generic views & summary in the side bar

2010-06-10 Thread Venkatraman S
On Thu, Jun 10, 2010 at 3:32 PM, tsmets wrote: > I thought I could use the generic views to fill the side bars with > summary data. > > Not sure what you mean - pass the vars to the template and use them accordingly wherever you want. IMHO, django doesnt know whether something is in the sidebar o

django-attachments

2010-06-10 Thread Venkatraman S
Has anyone used django-attachments? I would specifically like to know as to how i can enforce the rule that there is only ONE attachment with A model - i mean, say i have a user object, then i can upload only ONE attachment for this record. -V -- You received this message because you are subscr

Re: File Upload with Progress Bar

2010-06-10 Thread Venkatraman S
PM, Venkatraman S wrote: > Anyone who wants to work on this problem with me? We can probably > collaborate and release it over this weekend. > > > > On Fri, Jun 4, 2010 at 3:16 AM, Brad Pitcher wrote: > >> Some versions of flash have a bug that causes the entire

Track data changes

2010-06-14 Thread Venkatraman S
Hi, Is there some way by which i can track what all has changed when a user submits a form. i.e, i display a form to a user(with data) -> the user *can* change some of its form elements -> submits the form. One way to do that would be to compare with the model when the user submits and do a diff

Re: Track data changes

2010-06-14 Thread Venkatraman S
On Mon, Jun 14, 2010 at 5:00 PM, Daniel Roseman wrote: > > How does the user flow in your question differ from the standard form > process? > My Q was more related to tracking the data changes - assuming that the DB has a value 'Job' for attribute 'Name' and when displayed to the user he changes

Re: Track data changes

2010-06-14 Thread Venkatraman S
Ok I got what i wanted : http://djangosnippets.org/snippets/1052/ http://code.google.com/p/django-reversion/ -V- http://twitter.com/venkasub -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googl

Re: Generate thumbnails from videos

2010-06-14 Thread Venkatraman S
--- > > *From:* django-users@googlegroups.com [mailto: > django-us...@googlegroups.com] *On Behalf Of *Venkatraman S > *Sent:* Wednesday, June 09, 2010 4:50 AM > *To:* django-users@googlegroups.com > *Subject:* Generate thumbnails from videos > > > > Hi, > &

Re: Django architecture question

2010-06-15 Thread Venkatraman S
On Tue, Jun 15, 2010 at 10:25 AM, Joel Klabo wrote: > I am working on a simple site right now and the views are pretty easy. > Usually just iterate a loop of objects. But, I am trying to figure out > how a website with all different kinds of data, including a sign in > form, is setup in django. I

Re: Django architecture question

2010-06-15 Thread Venkatraman S
On Tue, Jun 15, 2010 at 3:54 PM, Sithembewena Lloyd Dube wrote: > @Venkatraman, wouldn't urls.py need views.py to map to? > Depends on how you have structured your app and what is the functionality of your app. Refer to http://www.djangobook.com/en/2.0/chapter11/ how you can simply avoid views.p

Re: key error in templates - solved

2010-06-16 Thread Venkatraman S
On Thu, Jun 17, 2010 at 9:58 AM, Kenneth Gonsalves wrote: > solved - what had happened was that when I pickled the results, the model > in > question did not have a 'photo' field which I added subsequently to > pickling. > Once I repickled, the problem was solved > Totally not related to your Q,

Re: Selling Django

2010-06-16 Thread Venkatraman S
On Wed, Jun 16, 2010 at 9:56 PM, finn wrote: > I think that we - the Django community - could do a better job selling > our product, and I'd like to volunteer in this work. I just don't know > how to do it. > Very well structured email - and i concur to the views expressed and i myself am someti

Re: Database Design Question

2010-06-18 Thread Venkatraman S
On Sat, Jun 19, 2010 at 4:28 AM, llanitedave wrote: > I'm putting together a system to track scientific samples of various > types. The "various types" is what's making me scratch my head at the > moment. > Prefer a table like follows (tblname:samples): sampleid, samplename , sampledesc etc e

Re: Database Design Question

2010-06-18 Thread Venkatraman S
On Sat, Jun 19, 2010 at 10:12 AM, Venkatraman S wrote: > Prefer a table like follows (tblname:samples): sampleid, samplename , > sampledesc etc etc > Ok - i missed explaining why i would recommend this: In most of the applications, maintainence is a bigger pain than development. In

Re: A Django project life cycle

2010-06-19 Thread Venkatraman S
On Sat, Jun 19, 2010 at 6:04 PM, Sameer Rahmani wrote: > > i want to know about a django project life cycle, can any body help me > please? > > i want to know how a django project run under wsgi and development server ? > which files runs first? > does a project run in each request? or it remain

Re: Question regarding subdomains of a single project

2010-06-22 Thread Venkatraman S
On Tue, Jun 22, 2010 at 8:06 PM, M Rotch wrote: > I'm setting up a website with multiple subdomains, and one thing I > notice right away (and is expected) is that each subdomain has access > to all of the URLs of the website (of course some will require logins > still). > > hmmm. I think its the

Re: Deployment hesitation after James Bennett's post, WSGI or ...?

2010-06-24 Thread Venkatraman S
On Thu, Jun 24, 2010 at 5:04 PM, Dave E wrote: > Thanks for all that. I'm going to: > > 1. go with a standard mod-wsgi setup in each Django site's VirtualHost > container and check performance, > > 2. then look at Gunicorn, > > 3. then assess whether running another server for static files is (fo

Re: Django Tagging: no module named tagging, locally win7

2010-06-29 Thread Venkatraman S
On Tue, Jun 29, 2010 at 4:35 PM, justin jools wrote: > I've installed Django Tagging SVN checkout, 0.3.1 zip, 0.3 exe and > 0.2.1 versions > and I keep getting 'no module named tagging' when I try to run python > manage.py syncdb. > > I've checked my Python path and added extra links: > C:\Python

Re: Django Tagging: no module named tagging, locally win7

2010-06-29 Thread Venkatraman S
On Tue, Jun 29, 2010 at 5:08 PM, justin jools wrote: > I tried installing by python setup.py install: SVN checkout, 0.3.1 > zip and also tried installing binary 0.3 exe. > They all installed fine everytime, I also just tried moving 'tagging' > to python/Lib/site-packages > > It seems that Python

Re: Load Different Views at same 'browser view'

2010-06-29 Thread Venkatraman S
On Wed, Jun 30, 2010 at 6:32 AM, Desproposito wrote: > I've been thinking about how to do an application I have in mind, a > kind of social network, and it's obvious you have to load different > 'modules' like Friends, Messages, Posts, etc. The problem is that I > have no idea about how to do it

Re: django request path

2010-07-01 Thread Venkatraman S
On Thu, Jul 1, 2010 at 1:36 PM, todd wrote: > > I've been working through an issue with my django project. The issue > is I've got one project, which will retrieve data for users of > different clients. I need to know 'from where' a viewer is coming from > (request.path [my original solution]). I

Re: django simple captcha issue

2010-07-01 Thread Venkatraman S
On Fri, Jul 2, 2010 at 1:22 AM, weiwei wrote: > > I am using django-simple-captcha, it works fine on my dev environment > (windows). But after i deployed to linux server, all other views/pages > are working fine. But when i request /captcha/image/{{imagekey}}/ i > got server internal error 500.

Re: Tutorial Help

2010-07-08 Thread Venkatraman S
On Thu, Jul 8, 2010 at 12:39 PM, David Ally wrote: > Hi, > > I need some help on part2 of the Django tutorial, I know python is > particular about spaces and the fieldsets composition; > > Class PollAdmin(admin.ModelAdmin): > fieldsets = [ > (None, {'fields': ['question'

Re: News on every page

2010-07-08 Thread Venkatraman S
On Fri, Jul 9, 2010 at 3:40 AM, Antoni Aloy wrote: > I would use a custom template tag with cache > I was planning to recommend the same, but i wasnt sure whether this is efficient when compared with context-processor solution. I had used template tags for a similar requirement for one of my clie

Re: Accessing context in templatetags

2010-07-09 Thread Venkatraman S
If you are using render_to_response to load a page and are using template tags in that page then pass the context (this in views.py for that app) For eg: def do_something(request): ... ... return render_to_response('multimedia.html', {'videos': videos} , context_instance = RequestContext(reque

Re: Existing sites using Django

2010-07-13 Thread Venkatraman S
On Tue, Jul 13, 2010 at 7:01 PM, Adam Auckland wrote: > I've discussed using Django to my MD and he's asked for some example > large sites that were built using Django. > > Does anyone maintain or know of any neat URLs I can point him to to > see how great it is. I'm not looking for front-end feat

Re: Database systems

2010-07-16 Thread Venkatraman S
On Fri, Jul 16, 2010 at 7:29 PM, Alex Robbins wrote: > PostgreSQL is better supported by South, the leading django database > migration tool. Is it so?? I didnt know this. Doesnt work 'properly' with SQLite3/MySQL? What do you mean by 'support' here? I thought South was DB agnostic. -V- http:/

Virtual Private Queries/Databases

2010-07-16 Thread Venkatraman S
Hi, I was wondering whether its possible to have something similar to virtual private queries/databases via the django ORM? As in, the Oracle database provides something called VPD by which policies can be enforced wherein a user sees data only that he is allowed to see. ( http://www.oracle.com/te

Re: should i use django

2010-07-16 Thread Venkatraman S
On Sat, Jul 17, 2010 at 7:26 AM, gary_p wrote: > I read data from instruments, and/or > enter parameters by hand, then run an app that crunches the data > producing graphs and, in my dreams, animations. Can Django do this > smoothly? Sure. But, when you are doing charts etc, you need to involv

Re: Django memory requirements

2010-07-19 Thread Venkatraman S
On Mon, Jul 19, 2010 at 7:11 PM, Tereno wrote: > > I find that all this configuration and memory monitoring for Django is > abit tiring and I am no expert so I am wondering if there any hosts > that you would recommend? I am considering Google App Engine. > I would recommend GAE if you want to d

Re: New tutorial added to Django by Example

2010-07-19 Thread Venkatraman S
On Mon, Jul 19, 2010 at 11:06 PM, Rainy wrote: > I've added a new tutorial: A Simple Forum to my Django by Example > site. As always, feedback is appreciated. > >http://LightBird.net/dbe/ > You rock ;) A small nit : make the site more search-friendly. Probably, add a few keywords/descripti

Re: New tutorial added to Django by Example

2010-07-19 Thread Venkatraman S
On Mon, Jul 19, 2010 at 11:46 PM, Rainy wrote: > > >http://LightBird.net/dbe/ > > > > You rock ;) > > A small nit : make the site more search-friendly. Probably, add a few > > keywords/description etc? > > Thanks! Do you mean, to every page? That might > be a bit hard, I'm using Sphinx for si

Re: Django memory requirements

2010-07-19 Thread Venkatraman S
On Mon, Jul 19, 2010 at 10:31 PM, Tereno wrote: > Web Faction does look like an interesting option. However, looking at > the memory specs, how would I be able to tell if it's sufficient for > at least 2 Django applications? For example, if I got with Shared 1, I > get 80MB (180MB VPS) - I'm assu

Re: what kind i acces from django template variable?

2010-07-19 Thread Venkatraman S
On Mon, Jul 19, 2010 at 11:06 PM, owidjaya wrote: > How can i find out what variable is accessible from the template? > You need to pass the result of the query to the template. Or did you mean accessing the 'related' objects from the passed objects to the template? -V -- You received this me

Re: Google App Engine error with templates

2010-07-19 Thread Venkatraman S
On Tue, Jul 20, 2010 at 9:57 AM, Tereno wrote: > I'm experiencing this error: Module > "django.template.loaders.filesystem" does not define a "Loader" > callable template source loader > > and I can't figure out why at all. I've placed my templates dir in the > settings file and yet somehow it do

GAE + Django Authentication

2010-07-19 Thread Venkatraman S
Hi, Has anyone made inroads into django auth in GAE? I have been Googling around for sometime and havent found a credible link on this. Help would be great. Regards, -V -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, sen

CRUD Views

2010-07-25 Thread Venkatraman S
Hi, I have many tables defined, wherein bulk of the operations which are rendered in the UI are CRUD operations. Is there any generic way of doing this instead of me explicitly creating ModelForms and then handling each of the CRUD operations in my views? For eg. for creating an item, i do someth

Re: CRUD Views

2010-07-25 Thread Venkatraman S
Me culpa! Ignore this -- got it -- django.views.generic.create_update. On Sun, Jul 25, 2010 at 5:56 PM, Venkatraman S wrote: > Hi, > > I have many tables defined, wherein bulk of the operations which are > rendered in the UI are CRUD operations. > Is there any generic way of doi

Password Field but clear text in UI

2010-09-19 Thread Venkatraman S
Is it possible to have a Password field, but in the UI let the user type the clear text as it is and not essentially 'hide' it? -V- -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.c

Re: Why Django Apps Suck

2010-09-24 Thread Venkatraman S
On Fri, Sep 24, 2010 at 12:09 PM, Klaas van Schelven < klaasvanschel...@gmail.com> wrote: > > http://djangocon.eu/ is going to be in the spring of 2011. Let's see > how many of the "best of the bunch" are going to make it to > Amsterdam :-) > > Wanted to attend this year. Missed. How was it? -V-

Re: Hosting many small Django websites

2010-10-14 Thread Venkatraman S
On Fri, Oct 15, 2010 at 2:15 AM, Diederik van der Boor wrote: > > I'm curious about using Django for many small web sites. Does this > require each site to run in a separate wsgi daemon process? If so, how > is it possible to keep memory usage shared? > Not exactly sure when you have to manage th

Re: Hosting many small Django websites

2010-10-15 Thread Venkatraman S
On Fri, Oct 15, 2010 at 5:26 PM, Brian Bouterse wrote: > One of the challenges of going the GAE route is that you need to modify > your application slightly to work with their version of models. Also, you > can't ever run this code off of GAE, so it's kind of a lock-in in that > respect. That b

Re: Django and Flux

2010-10-18 Thread Venkatraman S
On Mon, Oct 18, 2010 at 5:37 PM, girish shabadimath < girishmss.1...@gmail.com> wrote: > > i am newbie to django and wanted to start with one django application. > > Is it possible to combine django and adobe flux builder? > > i thought of using flux as front-end and django as back-end. > > what a

Re: Django and Flux

2010-10-18 Thread Venkatraman S
On Mon, Oct 18, 2010 at 5:53 PM, Tim Sawyer wrote: > > You cant combine Django and Flex Builder - but you can write apps using > > Django and Flex. > > With Flex 3 (and maybe 4, I don't know) you could install it as an Eclipse > Plugin, instead of standalone. You could then install pydev into Ecl

XMPP based apps

2010-10-18 Thread Venkatraman S
Well, I havent Googled, but was wondering whether how one can integrated XMPP based communications(PUNJAB?) etc with Django? Has anyone tried this? Any good reads or pointers? -V- http://twitter.com/venkasub -- You received this message because you are subscribed to the Google Groups "Django us

Re: About Thumbnails

2010-10-18 Thread Venkatraman S
Look into django-photologue. It has some thumbnail generation functions, i guess. -V- http://twitter.com/venkasub -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe

Linky

2010-10-24 Thread Venkatraman S
Hi Guys, Just thought of starting a thread with some useful links in the Django World: http://djangopluggables.com/ http://www.djangofoo.com/ Django in Depth (PyCon 2010) http://djangocon.blip.tv/file/3322277/ http://lightbird.net/dbe/ Converting Django models into Graphviz DOT files : http://cod

django-paypal

2010-10-25 Thread Venkatraman S
Hi, I am using dcramer's version of django-paypal(but i think it shouldnt matter whether it is dcramer or johnboxall's). How can i specify multiple items in my paypal_dict(to be used in PayPalPaymentsForm)? I need to suitably specify the shipping cost and the individual quantities in the Summary

Re: How to display image in django template

2010-10-25 Thread Venkatraman S
On Mon, Oct 25, 2010 at 4:04 PM, d wrote: > I have been searching for solutions whole day. > How would I display image file in django template. I have already set > MEDIA_ROOT and MEDIA_URL. > You mean image as in static image or from Image model? If static image, then this is the process: - le

Re:

2010-10-26 Thread Venkatraman S
On Tue, Oct 26, 2010 at 5:28 PM, Nelson Saraiva wrote: > * > File > "C:\Python25\lib\site-packages\django\db\backends\postgresql_psycopg2\base.py", > line 121, > in _cursorraise ImproperlyConfigured("You need to specify NAME in your > Django settings file.") > > django.core.exceptions.Impro

Re: Displaying Profile model in a form

2010-10-26 Thread Venkatraman S
On Wed, Oct 27, 2010 at 4:13 AM, christian.posta wrote: > I'm trying to display a form that has both the UserProfile fields and > a select handful of the User fields. > What's the best way to go about doing this? In the CreateUserForm that > I'm creating, I have an inner Meta class with the 'model

Re: Django job needed

2010-10-26 Thread Venkatraman S
On Wed, Oct 27, 2010 at 1:04 AM, Swordfish wrote: > Hi everybody! I'm looking for a job deals with Django. > Interesting in any kind of work: filling websites with images, texts, > translations, testing. > I'am Django newbie.Have previous experience with Plone. > > http://djangogigs.com/ All the

Re: Displaying Profile model in a form

2010-10-28 Thread Venkatraman S
Also. check this : http://streamhacker.com/2010/03/01/django-model-formsets/ -V- http://twitter.com/venkasub -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from

Re: Multiple Django/Python developer Positions- Atlanta, GA

2010-10-29 Thread Venkatraman S
On Fri, Oct 29, 2010 at 10:27 PM, Kenneth Gonsalves wrote: > On Fri, 2010-10-29 at 07:18 -0700, Jack wrote: > > only US Citizens or Greencard holders need apply > > please do not put things like this on an international list > I hear that there are many many unclaimed H1B slots :) But OTOH, i don

Re: Thanks

2010-11-24 Thread Venkatraman S
On Wed, Nov 24, 2010 at 4:26 PM, kellpossible wrote: > django is awesome, the website is great, it has perhaps the most > helpful set of documentation I've ever used :) Thanks peoples. > > Praise all the good people associated with it :) -V- http://twitter.com/venkasub -- You received this mes

Re: Image upload in Django

2010-11-25 Thread Venkatraman S
On Thu, Nov 25, 2010 at 6:10 PM, Sithembewena Lloyd Dube wrote: > > I have a Member model representing a site user. I wish to add functionality > to allow users to upload images to their profiles, and I need a pointer to a > *simple* file upload solution for Django. > I am not sure what is the ac

Re: Weird problem after schema change

2010-11-25 Thread Venkatraman S
On Fri, Nov 26, 2010 at 6:30 AM, Chris Tandiono wrote: > How can I get the date field to show up in the admin interface? > Couple of checks: - have you defined any custom forms for admin? - Do the field names match properly? A good practice generally is : do a 'sqlall' before you make the change

Re: Really simple python message queue

2010-11-27 Thread Venkatraman S
On Sun, Nov 28, 2010 at 12:01 PM, Anand Agarwal wrote: > Really simple python message > queue > http://bit.ly/dHRQ1y > > Self-promotion? -- You received this message because you are subscribed to the Google Groups

Re: Recommended Django development companies

2010-11-28 Thread Venkatraman S
Hi Kyle, I am a Django freelancer. Are you looking for consultants for any projects? regards, Venkat On Sun, Nov 28, 2010 at 5:15 PM, Kyle wrote: > I'm looking for companies on-par with PivitolLabs (which is Rails > focused) but that focus on python web stacks, particularly Django. > Can anyb

Re: Recommended Django development companies

2010-11-28 Thread Venkatraman S
wrote: > Venkat, I'm not quite in the market for consultants. I'm looking for > a pre-existing team with enterprise client experience based in the US. > > Sincerely, Kyle > > > On Nov 28, 7:09 am, Venkatraman S wrote: > > Hi Kyle, > > > > I am a D

Re: If logged in show X, if not Y

2010-11-28 Thread Venkatraman S
On Mon, Nov 29, 2010 at 7:44 AM, Andre Terra wrote: > I think a more elegant approach would be to have a main template with {% > block some_name_for_the_part_that_changes %}, and have two different > template (logged_in.html and not_logged_in.html) that both extend said block > in 'main.html'. >

Some OpenSource Work?

2010-11-28 Thread Venkatraman S
Hi Guys, So, i stumbled on http://cargocollective.com/ and was quiet impressed with it. Would someone(with expertise in CSS/Javascript) be interested in working with me and do an open source equivalent for this? A light weight CMS which offers the basic features (like video,images,text) and the ea

Re: Django admin photo upload

2010-11-29 Thread Venkatraman S
Have a look at django-photologue. -V- -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com.

Re: Django admin photo upload

2010-11-29 Thread Venkatraman S
On Mon, Nov 29, 2010 at 3:37 PM, Kenneth Gonsalves wrote: > On Mon, 2010-11-29 at 15:24 +0530, Venkatraman S wrote: > > Have a look at django-photologue. > > is it still maintained? > Not sure. But the code is a good one to start off for the OP and get some ideas on how images

Re: 2 paypal forms in a view with django-paypal

2010-11-30 Thread Venkatraman S
2010/11/30 Alexandre González > It always show two forms but with the last one (five_form) but the update() > works perfectly. > Try dcramer or johnboxall version of django-paypal - dcramer's is no more maintained i guess. On a different note : were you able to add multiple items to the dict?

Re: Django, Python, AJAX position

2010-11-30 Thread Venkatraman S
On Wed, Dec 1, 2010 at 8:08 AM, Cal Leeming [Simplicity Media Ltd] < cal.leem...@simplicitymedialtd.co.uk> wrote: > 1) The fact you've put the terms "my client" and "work permit" whilst using > a gmail email address, that doesn't have your real name, kinda says a lot. > 2) You've broadly used the

Re: Project management software

2010-11-30 Thread Venkatraman S
On Wed, Dec 1, 2010 at 2:45 AM, Baurzhan Ismagulov wrote: > I'd > ideally like to pick one of the projects developed in Django and develop > on top of it. > I agrees. There are projects that need cleanup, and moreover developing a PM mgmt app from scratch is too much of an effort, unless you wa

Re: Django Graphics

2010-12-02 Thread Venkatraman S
On Thu, Dec 2, 2010 at 1:44 PM, Jagdeep Singh Malhi wrote: > Can we handle graphics in Django? > > referring to charts? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsu

Re: Feature Flipper

2010-12-07 Thread Venkatraman S
On Wed, Dec 8, 2010 at 3:15 AM, Toby Champion wrote: > I'm working on an (open source) project that wants to move to > continuous deployment and could do with "feature flipper" > functionality similar to that discussed at > http://www.alandelevie.com/tag/feature-flippers/ > We'd envisage it being

Fwd: [BangPypers] Kenneth Gonsalvas a short bio

2012-08-03 Thread Venkatraman S
More on KG : -- Forwarded message -- From: JAGANADH G Date: Fri, Aug 3, 2012 at 10:45 PM Subject: [BangPypers] Kenneth Gonsalvas a short bio To: ILUG-C , chenna...@googlegroups.com, ilug...@googlegroups.com, Indian Python Software Society , Bangalore Python Users Group - India , M

Re: I LOVE THIS COMMUNITY!

2012-09-03 Thread Venkatraman S
We have your curiosity...as well as your attention ;) http://www.youtube.com/watch?v=eUdM9vrCbow -V twitter.com/venkasub On Wed, Aug 22, 2012 at 10:21 AM, Pervez Mulla wrote: > Yup.:) Really its very awesome community :) > On Wed, Aug 22, 2012 at 9:19 AM, JJ Zolper wrote: > >> I agree

Re: .count() returning unexpected results

2011-10-19 Thread Venkatraman S
Try using DDT to see the the query being fired and walk your way up. -V http://about.me/venkasub -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group,

Re: Django Docs Suggestion - Color Code

2011-10-19 Thread Venkatraman S
A ribbon at the top would be helpful too. I am used to checking the URL generally to avoid cross-version-surprises. -V http://about.me/venkasub -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@go

Re: ModelClass Form Help

2011-10-19 Thread Venkatraman S
On Tue, Oct 18, 2011 at 9:22 PM, Vishnu vg wrote: > Hi Friends, > > Iam a beginner in django. I am developoing a contact form page. I created a > modelclass called 'contacts' and then created a a modelFormClass from that > model. I have two comboboxes in form called 'state' and 'city'. While > se

Re: Forms with FileField - access file content

2011-10-20 Thread Venkatraman S
On Thu, Oct 20, 2011 at 1:32 PM, Leonardo Giordani < giordani.leona...@gmail.com> wrote: > > I'm trying to implement a an application where the user creates a new > object through a form. Up to here I'm fine. > > This time though the object creation involves loading a file and choosing > some data

Re: Django ORM - Am I trying to do the impossible?

2011-10-20 Thread Venkatraman S
On Fri, Oct 21, 2011 at 1:54 AM, Paolo wrote: > Any pointers would be appreciated - I'm not too excited about storing the > latest_assignment_update_id in my Assignment model!! > Why need to store this? If i understand the requirement right, the status of the Assignement is based on the last-a

Re: default form template

2011-10-20 Thread Venkatraman S
On Fri, Oct 21, 2011 at 8:13 AM, bino oetomo wrote: > I'm learning (well ... reading) the jango template files. > Its Django :) (though we call it as 'django'(with 'd' being silent). > I'm looking for the default Form templates. > > If I want to just insert a simple javascript to all autogenera

Re: automatic models.py generation

2011-10-20 Thread Venkatraman S
On Fri, Oct 21, 2011 at 3:33 AM, Xangó3007 wrote: > I want to generate models.py file from a mysql database, (inverse > reengineering). Can you show me how to do it? Thanks. Xangó from Spain > > How complex is your schema, and what is the intent of doing this exercise? For some reason, i dont th

Re: sprintf in python (not strictly django, but used all the time in django webapps)

2011-10-20 Thread Venkatraman S
On Thu, Oct 20, 2011 at 11:47 PM, Cal Leeming [Simplicity Media Ltd] < cal.leem...@simplicitymedialtd.co.uk> wrote: > So, just out of curiosity, how many other people didn't realise you > could do this: > > >>> print '%(language)s has %(number)03d quote types.' % \ > ... {"language": "Python

Re: Doing a relationship lookup from within a model.

2011-10-20 Thread Venkatraman S
On Tue, Oct 18, 2011 at 8:22 PM, Jack Morgan wrote: > I've got 2 tables that are related to each other. Orders and History. > Inside the History table is the 'status' column. Like so.. > > class Orders(models.Model): > 'order info' > > class History(models.Model): > timestamp = models.DateTi

Re: Profiling Django

2011-10-21 Thread Venkatraman S
On Wed, Oct 12, 2011 at 6:49 PM, < michael.pimmer@boehringer-ingelheim.com> wrote: > ** > > - django-debug-toolbar with profiling from > http://backslashn.com/post/505601626/ - too fine-grained: >I do not want to know that 138752 calls to > python2.6/posixpath.py:129(islink) take 0.858 sec

Re: default form template

2011-10-21 Thread Venkatraman S
On Fri, Oct 21, 2011 at 9:19 AM, bino oetomo wrote: > > For inserting javascript, why you have to 'extend'; use jquery and do the >> needful with the form! >> >> > Kindly please give me more about how to do it > You need to learn javascript and then jquery; and then how it can be used in forms :)

Re: Admin Home Apps and Models ordering

2011-10-21 Thread Venkatraman S
On Wed, Oct 19, 2011 at 7:53 PM, Pedro Vasconcelos wrote: > > I'm wondering how can I do personal Apps and Models ordering on Django > Admin Home page. > Am sorry, but you need to spec out the details. What do you mean here? -V -- You received this message because you are subscribed to the Goo

Re: Django ORM - Am I trying to do the impossible?

2011-10-21 Thread Venkatraman S
Actually, thinking about this thread(and other one which needs something similar), i think the best way is not to confuse the 'history/update' with the actual 'data'; i mean, that history/updates are just for tracking the revisions, the individual attributes of the entity should be present in the p

Re: django ajax select

2011-10-31 Thread Venkatraman S
On Mon, Oct 31, 2011 at 10:07 AM, pradnya wrote: > i m using ajax select plugin in my project which i got from > https://github.com/crucialfelix/django-ajax-selects . > now i want to know how can i use it in django admin's tabular inline ? > > What you want to do in admin? -- You received thi

Re: bar charts

2011-11-08 Thread Venkatraman S
I have documented a set of viz libraries: http://blizzardzblogs.blogspot.com/2010/12/data-visualization-charts-and.html -V- -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To u

Re: ERP with Supply chain management (incl. POS) and Customer relationship management — What's available?

2012-01-02 Thread Venkatraman S
On Thu, Dec 15, 2011 at 12:13 AM, Alec Taylor wrote: > Good morning, > > I am building a ERP > [http://en.wikipedia.org/wiki/Enterprise_resource_planning] with > Supply chain management (incl. POS and ecommerce) and Customer > relationship management. > > Which libraries (or projects even) will pr

  1   2   3   4   >