Re: Any open source SMS?

2024-03-08 Thread Vitaly Bogomolov
Hi Our use case: We need to generate OTP code to users upon signup in our application. You can take a look at my solution to this task for Django: https://github.com/vb64/django.admin.auth.emailpin -- You received this message because you are subscribed to the Google Groups "Django users"

Re: Agricultural and livestock project using python, django and next technologies.

2024-02-19 Thread Vitaly Bogomolov
Hi I am interested https://github.com/vb64 I wrote about the same thing before but I only sent the title XD. The project: I'm working on an interesting project that I think might interest you. This is an online market similar to farmers' and ranchers' markets in the US, but with an online fo

Re: logging admin accesses

2023-12-15 Thread Vitaly Bogomolov
Is that programically accessible? I want to record it in the database. from django.contrib.admin.models import LogEntry logs = LogEntry.objects.all() #or you can filter, etc. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscrib

Re: Dashboard with plotting graph

2023-06-21 Thread Vitaly Bogomolov
I like https://dygraphs.com/ It's lightweight and have all option for common plots. среда, 21 июня 2023 г. в 04:53:09 UTC+4, DieHardMan 300: > Hello, I hope everyone have a good day. I want to start building dashboard > with the plotting graph in my Django 4.2 web application. So I want some

Re: django model method

2023-02-09 Thread Vitaly Bogomolov
You can look towards Django Q-objects . This filtering method is implemented in the MultiChoiceExt filter of my DjangoAdminFilters lib

How to order by prefetched set values?

2019-08-28 Thread Vlasov Vitaly
For example, i have 2 models Person and Numbers( number and ForeignKey(Person) In queryset i get all persons with their related numbers. And i use `queryset` parameter to `Prefetch` object to filter these numbers. Result numbers_set can contain only 1 or 0 Number object. Number's table can con

Django ModelAdmin ignores has_delete_permission

2018-05-18 Thread Vitaly Trifanov
I have simple project on Django 1.11.13, that uses ordinary Django's admin module. Staff user can not delete object while is permitted (has_delete_permission returns always true). models.py: class MyModel(models.Model): name = models.IntegerField("Value", blank=True, null=True) admin.py

Re: Start point of dynmanic models creation.

2016-10-20 Thread Vlasov Vitaly
ered and > ready for use. > > Also note that ready() maybe called multiple times. You should take into > account that for example when running unit tests Django changes database > connection, which may affect your model construction. > > On 19.10.2016 12:22, Vlasov Vita

Start point of dynmanic models creation.

2016-10-19 Thread Vlasov Vitaly
Hello. I have working model factory of dynamic models in my app.models.py. I need to know where i should call it in my code. Right now i call it in MyAppConfig ready() method and think it is not right way. But this is working. Where i should place dynamic models factory call? -- You received

prepopulated_fields is not changed only after user typed text there

2014-10-07 Thread Vitaly
Hi all Does anybody know the reason why in django1.7 prepopulated fields is not changed only after user typed text there? Is that bug or what? For example class Post(models.Model): title = models.CharField('Title', max_length=128) url = models.SlugField('Url') class PostAdmin(admin.M

How to urlquote backslash in reverse arguments

2013-12-17 Thread Vitaly
Hi I got an some incorrection in reverse behaviour. >From django docs The string returned by reverse() is already urlquoted. For example: >>> reverse('cities', args=[u'Orléans']) '.../Orl%C3%A9ans/' Applying further encoding (such as urlquote() or urllib.quote) to the output of reverse() may

TestCase.urls with templates that have url to other apps

2011-01-15 Thread Vitaly Babiy
class EmailNotificationTest(BaseTestCase): """ Test Class for testing email notification """ urls = 'notification.urls' def test_create_notification(self): res = self.client.get('email/create/) # will fail self.assertEquals(res.status_code, 200) If I t

Should namespaces be used to clean up url names

2011-01-15 Thread Vitaly Babiy
The url docs talks about naming urls like this: myapp-comment, does it make sense to do this still when we have namespaces? With a namespace we could do myapp:comment this way the url name only describes the view and has no reference to the application name that its in. -- You received this me

Mongo and the Admin

2010-11-01 Thread Vitaly Babiy
Hey guys, I know there has been work done with nosql I was wondering if the admin works with mongo yet? Thank, Vitaly Babiy -- 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...@googlegrou

Re: Django 1.2 release candidate available

2010-05-06 Thread Vitaly Babiy
Awesome Job, thanks everyone. Vitaly Babiy On Thu, May 6, 2010 at 2:53 PM, Nick Serra wrote: > Awesome! Thanks so much! > > On May 6, 3:32 am, Federico Capoano wrote: > > I've been using the beta for a while and it works pretty good for what > > I've seen. &

Re: code repetition in views

2010-04-10 Thread Vitaly Babiy
Django provides a few decorators that remove alot of that repetitive code. Check the auth section for the logged in decorator Vitaly Babiy On Sat, Apr 10, 2010 at 11:58 PM, ydjango wrote: > I find all my view method have identical code in start and in end: > > anyway to avoid r

Mailing list app

2010-02-11 Thread Vitaly Babiy
Hey guys, Has any found a good application to send emails to your users? Like you want to let all your user know of downtime. Thanks Vitaly Babiy -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Django Auth

2009-12-13 Thread Vitaly Babiy
Hey Guys, Is there anything in the works to do some refactoring of django auth. Because if you are using a custom user object all the django auth test break. Thanks, Vitaly Babiy -- You received this message because you are subscribed to the Google Groups "Django users" group. To po

Re: djangocon videos

2009-11-10 Thread Vitaly Babiy
According to there twitter (http://twitter.com/djangocon/status/4680045261) they should be up but who knows when. Vitaly Babiy On Tue, Nov 10, 2009 at 8:01 AM, Aljosa Mohorovic < aljosa.mohoro...@gmail.com> wrote: > > will conference videos be available or did something terribl

Re: Django and SSL Deployment using mod_wsgi

2009-10-15 Thread Vitaly Babiy
Hey take a look at this http://www.howsthe.com/blog/2009/sep/20/djang-nginx-mod_wsgi-ssl/ Vitaly Babiy On Thu, Oct 15, 2009 at 5:30 PM, neri...@gmail.com wrote: > > I'm trying to do the same thing but I'm having problems getting nginx > to server over https. I removed all

Re: djangocon videos

2009-10-14 Thread Vitaly Babiy
Yeah I would love to seem them too. Vitaly Babiy On Wed, Oct 14, 2009 at 10:44 AM, Aljosa Mohorovic < aljosa.mohoro...@gmail.com> wrote: > > anybody knows when djangocon september/portland videos will be > available? >

Re: Automatic {% load %} ?

2009-10-04 Thread Vitaly Babiy
Hey take a look at this http://stackoverflow.com/questions/1184983/load-a-django-template-tag-library-for-all-views-by-default Vitaly Babiy On Sun, Oct 4, 2009 at 10:07 PM, Christophe Pettus wrote: > > In my templates, I'm making reasonably heavy use of custom tags. Is > there

Re: django-trunk/django directory problem

2009-09-26 Thread Vitaly Babiy
You have a simlink to the django directory. Just remove the django file. Vitaly Babiy On Sat, Sep 26, 2009 at 7:42 PM, Malcolm MacKinnon wrote: > Sure, here it is: > > malc...@baglux:~/django-trunk/django$ ls -al > total 80 > drwxr-xr-x 18 malcolm malcolm 4096 2009-08-06 20:16 .

Re: django-trunk/django directory problem

2009-09-26 Thread Vitaly Babiy
Post the result of a ls -al in the django dir Vitaly Babiy On Sat, Sep 26, 2009 at 7:16 PM, Malcolm MacKinnon wrote: > About 8 moinths ago, I downloaded the development version of django and > have been using it to develope a web site. I'm using Ubuntu, and I'm not a > skil

Writers for a Django Blog

2009-09-19 Thread Vitaly Babiy
Hey guys, I am looking for people would be interested in writing articles for a django/web development blog, if you are interested please let me know. Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Django and SSL Deployment using mod_wsgi

2009-09-01 Thread Vitaly Babiy
Thanks guys for all the feedback, I have done what Francis said, we are using nginx and apache/mod_wsgi in the back. Nginx handles the ssl and it works great. Thanks for the help. Vitaly Babiy On Tue, Sep 1, 2009 at 9:30 AM, Alex Robbins wrote: > > Graham, > > I'm interested

Django and SSL Deployment using mod_wsgi

2009-08-28 Thread Vitaly Babiy
Hey guys, What is the best way to deploy an app that uses mod_wsgi that some parts of it need to be behind SSL? Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group.

Re: Test server and Https

2009-08-22 Thread Vitaly Babiy
Alright, thanks Vitaly Babiy On Sat, Aug 22, 2009 at 12:31 PM, Andy McKay wrote: > > > On 22-Aug-09, at 7:50 AM, Vitaly Babiy wrote: > > > Hey, > > I am working on a site that part of it must be behind HTTPS, is > > there any I can run this using the test server?

Test server and Https

2009-08-22 Thread Vitaly Babiy
Hey,I am working on a site that part of it must be behind HTTPS, is there any I can run this using the test server? Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" grou

Django Testing

2009-08-20 Thread Vitaly Babiy
the models created before a test runs? The idea comes from factorygirl( http://www.thoughtbot.com/projects/factory_girl) in the ruby on rails world. Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Remove unique from user model

2009-08-13 Thread Vitaly Babiy
Hello Guys, So I need to remove the unique flag off the username field in the user model. I already extend the auth user model but I can't override the username field. ( Django does not allow this ) What is the best way to do this? Thanks Vitaly

Timezones in Django

2009-08-10 Thread Vitaly Babiy
Hey guys, I am working on an application that needs to be timezone aware. Is there support for this with in django I can't seem to find anything except for a few third party packages. i am trying to find something that is in django core. Thanks, Vitaly

Re: how to deploy Django on the web server?

2009-08-07 Thread Vitaly Babiy
Also you may want to look in to slice host. Awesome service. Vitaly Babiy On Fri, Aug 7, 2009 at 4:30 PM, Dan Harris wrote: > > I just wanted to give a shout out as well to webfaction. I used to use > my own virtual private server for hosting django stuff, but to cut > costs i s

Re: standalone script

2009-08-04 Thread Vitaly
I have found where our mistake was, it was inside __init__.py of our application. Thanks anyway On 4 Сер, 18:45, Michael wrote: > > On Tue, Aug 4, 2009 at 11:29 AM, Vitaly wrote: > > I did cut of our settings > > > Here it ishttp://dpaste.com/75091/ > > > Using

Re: standalone script

2009-08-04 Thread Vitaly
/django/utils/ functional.py", line 273, in __getattr__ return getattr(self._wrapped, name) File "/usr/local/lib/python2.6/dist-packages/django/conf/ __init__.py", line 130, in __getattr__ return getattr(self.default_settings, name) maximum recursion depth exceeded in cmp

Re: standalone script

2009-08-04 Thread Vitaly
I did cut of our settings Here it is http://dpaste.com/75091/ Using your method I got no error but app_settings and INSTALLED_APPS were cleaned up and contains nothing. Strange. Thanks Vitaly On 4 Сер, 18:11, Michael wrote: > On Tue, Aug 4, 2009 at 11:05 AM, Vitaly wrote: > > &

Re: standalone script

2009-08-04 Thread Vitaly
Oh, yeah, there was only place, but when I removed this code nothing changed. I do not know about this import from django.utils.translation import ugettext_lazy as _ On 4 Сер, 17:59, Michael wrote: > On Tue, Aug 4, 2009 at 10:46 AM, Vitaly wrote: > > > Hey there > > >

Re: standalone script

2009-08-04 Thread Vitaly
PYTHONPATH is ok, and application is working, but see that I am running tests, and it raises exception when tries to configure custom settings. On 4 Сер, 17:52, krylatij wrote: > I guess you are using SSH? > > so before running your script run: > export PYTHONPATH=/path/to/django > > hope this h

standalone script

2009-08-04 Thread Vitaly
Hey there For running our test script we are using standalone script. Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41) [GCC 4.3.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from django.conf import settings, global_settings >>> from fg import settin

Re: Url Namespaces

2009-07-27 Thread Vitaly Babiy
Thanks, I knew it had to be somewhere in the docs. Vitaly Babiy On Sun, Jul 26, 2009 at 7:16 PM, Vasil Vangelovski wrote: > > See this: > > > http://docs.djangoproject.com/en/dev/topics/http/urls/#defining-url-namespaces > > On Mon, Jul 27, 2009 at 12:13 AM, Vitaly Babiy wr

Re: Auth test with custom auth backend

2009-07-27 Thread Vitaly Babiy
setting config Thank, Vitaly Babiy On Sun, Jul 26, 2009 at 9:06 PM, Russell Keith-Magee wrote: > > On Mon, Jul 27, 2009 at 6:17 AM, Vitaly Babiy wrote: > > Hey, > > I have replaced the default auth backend with my own that requires a > field > > to be set on my own cus

Auth test with custom auth backend

2009-07-26 Thread Vitaly Babiy
at is the best way to work around this? Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ 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 unsubs

Url Namespaces

2009-07-26 Thread Vitaly Babiy
How does one go about registering a namespace? I can't seem to find it in the docs. Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group

Re: ModelForm and Form is_bound issue

2009-07-16 Thread Vitaly Babiy
Sorry this was my fault, didn't test my test case. It was a bug in my test code. Thanks any way Vitaly Babiy On Thu, Jul 16, 2009 at 1:23 PM, Karen Tracey wrote: > On Thu, Jul 16, 2009 at 8:53 AM, Vitaly Babiy wrote: > >> Hello everyone, >> [snip] >> Now

Re: How to save Unicode data to mysql database?

2009-07-16 Thread Vitaly Babiy
Make your your database tables are using utf-8. Here is a great post about the topic http://blog.awarelabs.com/2008/django-tips-utf-8-ascii-encoding-errors-urllib2-and-mysql/ Vitaly Babiy On Thu, Jul 16, 2009 at 1:03 PM, Qixing DU wrote: > > Dear All, > > I need to handle non-lat

ModelForm and Form is_bound issue

2009-07-16 Thread Vitaly Babiy
UserForm(forms.ModelForm): class Meta: model=User fields= ('first_name',) >>> form = UserForm() >>> form.is_bound False # this is good >>> form = UserForm({}) >>> form.is_bound False # this should be true I am not sure why when

Unhandled Exception when stopping database engine

2009-07-13 Thread Vitaly
Hi I have some problem with customizing error pages when application does not work at all. One of things is stopping database on production server and user should see normal description of problem. But instead of this user see 'Unhandled exception' Does there method to avoid that and get flup kn

Re: Best distro for django

2009-07-03 Thread Vitaly Babiy
I use Ubuntu 9.04, works great on a XPS M1530 Laptop Vitaly Babiy On Fri, Jul 3, 2009 at 2:36 PM, developingchris wrote: > > Looking for opinion of the best distro for a developer machine for > django. > > I'm on ubuntu now, its going ok. I'm having keyboard issues, an

Re: Mysql and utf8

2009-06-18 Thread Vitaly Babiy
Thanks Ramiro Vitaly Babiy On Thu, Jun 18, 2009 at 3:08 PM, Ramiro Morales wrote: > > On Thu, Jun 18, 2009 at 4:01 PM, Vitaly Babiy wrote: > > Is there a way to tell django with a setting to include the character-set > on > > the create of tables? > > This (the wh

Re: Mysql and utf8

2009-06-18 Thread Vitaly Babiy
Is there a way to tell django with a setting to include the character-set on the create of tables? Vitaly Babiy On Thu, Jun 18, 2009 at 2:18 PM, Karen Tracey wrote: > On Thu, Jun 18, 2009 at 2:06 PM, Vitaly Babiy wrote: > >> I am using MySQL. >> >> Sorry I should

Re: Mysql and utf8

2009-06-18 Thread Vitaly Babiy
I am using MySQL. Sorry I should have mentioned it in the body not only in the subject. Thanks Vitaly Babiy On Thu, Jun 18, 2009 at 1:46 PM, Karen Tracey wrote: > On Thu, Jun 18, 2009 at 1:44 PM, Vitaly Babiy wrote: > >> Hey All, >> How can I have django create the ta

Mysql and utf8

2009-06-18 Thread Vitaly Babiy
Hey All, How can I have django create the tables that are utf8 encoding. Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj

Re: Change AuthenticationForm error message

2009-06-15 Thread Vitaly Babiy
Yeah I think that is what I am going to do. Thanks Vitaly Babiy On Mon, Jun 15, 2009 at 4:58 PM, TiNo wrote: > On Sun, Jun 14, 2009 at 14:45, Vitaly Babiy wrote: > >> Hey Everyone, >> I need to change the inactive account error message on the >> AuthenticationForm

Re: Change AuthenticationForm error message

2009-06-15 Thread Vitaly Babiy
That seem likes to much overhead to make every request to go through. Vitaly Babiy On Mon, Jun 15, 2009 at 1:31 AM, Rama Vadakattu wrote: > > one simple idea ( it may or may not be feasible ) that you can use is > 1) write down a middleware > 2) examine the context which has a f

Change AuthenticationForm error message

2009-06-14 Thread Vitaly Babiy
to this. Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ 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, sen

Re: Max_num in formset

2009-03-29 Thread Vitaly Babiy
Maybe I should have said why I ask. I have a formset that the formset can not submit more than certain number of forms. I was not sure if max_num handles this or do I need to do this with some custom validation? Vitaly Babiy On Sun, Mar 29, 2009 at 5:57 PM, Vitaly Babiy wrote: > If the co

Max_num in formset

2009-03-29 Thread Vitaly Babiy
If the count of forms submit goes over the max_num shouldn't it raise and validation error? Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to t

Re: Django an STI

2009-03-07 Thread Vitaly Babiy
not object-oriented. But like you said before I can do this with itertool.chain, for now. Vitaly Babiy On Sat, Mar 7, 2009 at 8:03 PM, Malcolm Tredinnick wrote: > > On Sat, 2009-03-07 at 06:50 -0600, Tim Chase wrote: > [...] > > A slightly less DRY solution than ideal (ide

Re: Django an STI

2009-03-07 Thread Vitaly Babiy
How would generic relations solve this problem, It has been recommend for me to look at it a few times but I can't seem to understand how it would work. Vitaly Babiy On Sat, Mar 7, 2009 at 7:50 AM, Tim Chase wrote: > > >> class Tracker(models.Model): > >>notific

Re: Python Multiprocessing With Django

2009-03-06 Thread Vitaly Babiy
Thanks Jirka, that fixed the problem. But I think I will file a bug report that seem to be very hacky :) Vitaly Babiy On Fri, Mar 6, 2009 at 11:15 AM, Vitaly Babiy wrote: > Alright I will have to give this a try > > Vitaly Babiy > > > > On Fri, Mar 6, 2009 at 10:30 AM, Ji

Re: Python Multiprocessing With Django

2009-03-06 Thread Vitaly Babiy
Alright I will have to give this a try Vitaly Babiy On Fri, Mar 6, 2009 at 10:30 AM, Jirka Vejrazka wrote: > > > I have a management command that that starts up a few process to process > a > > request: http://dpaste.com/7925/. > > Hi, I was recently debugging sim

Python Multiprocessing With Django

2009-03-06 Thread Vitaly Babiy
nc(func, iterable, chunksize).get() File "/usr/lib/python2.5/site-packages/multiprocessing-2.6.1.1-py2.5-linux-i686.egg/multiprocessing/pool.py", line 422, in get raise self._value _mysql_exceptions.OperationalError: (2013, 'Lost connection to MySQL server during query') Any one go

Re: Fixtures with custom constructor

2009-02-28 Thread Vitaly Babiy
O okay I see you what you mean. Vitaly Babiy On Sat, Feb 28, 2009 at 3:51 PM, Alex Gaynor wrote: > > > On Sat, Feb 28, 2009 at 3:47 PM, Vitaly Babiy wrote: > >> Here is my constructor: >> >> class EmailVerification(models.Model): >> def __i

Re: Fixtures with custom constructor

2009-02-28 Thread Vitaly Babiy
Here is my constructor: class EmailVerification(models.Model): def __init__(self, user, ip, *args, **kargs): # Build sha1 for email verification sha1 = sha.new("".join([str(user.id), user.email, ip])) self.sha = sha1 self.user = user Vitaly Babi

Fixtures with custom constructor

2009-02-28 Thread Vitaly Babiy
ackages/django/core/serializers/python.py", line 96, in Deserializer yield base.DeserializedObject(Model(**data), m2m_data) TypeError: __init__() takes at least 3 non-keyword arguments (1 given) Vitaly Babiy --~--~-~--~~~---~--~~ You received this message be

Re: testing validation of form in unit testing

2009-02-20 Thread Vitaly
ould be done if you fx have a models primary key and > instead want to return the object. > > Anyways, if this doesn't help you, you would help yourself a lot if > you do explain what exactly the problem is, what you are doing, maybe > a little snippet of code. > > On Feb

testing validation of form in unit testing

2009-02-20 Thread Vitaly
Hi all I have a test that validate processed data to form with FileField. My steps in it direct me right to one problem. here is it. 'file' is 'Required field' What I do is process simple data right to form, not request.POST and request.FILES. I have tried process in data SimpleUploadedFile but

Re: Testing Django and HTTP Request

2009-02-09 Thread Vitaly Babiy
Hey Alex I got cherrypy to work great I am going to post a blog as soon as my blog is done :) If anyone cares just ask here and I will post a write up here. Vitaly Babiy On Mon, Feb 9, 2009 at 7:52 AM, Vitaly Babiy wrote: > Thank you Alex for you help I will look in to this. > > Vit

Re: Testing Django and HTTP Request

2009-02-09 Thread Vitaly Babiy
Thank you Alex for you help I will look in to this. Vitaly Babiy On Mon, Feb 9, 2009 at 12:32 AM, Alex Gaynor wrote: > > > On Mon, Feb 9, 2009 at 12:28 AM, Vitaly Babiy wrote: > >> Yeah, it does. I am going to have to look to see if can find a better >> stand alone s

Re: Testing Django and HTTP Request

2009-02-08 Thread Vitaly Babiy
Yeah, it does. I am going to have to look to see if can find a better stand alone server to do this instead of patching django. Vitaly Babiy On Mon, Feb 9, 2009 at 12:22 AM, Alex Gaynor wrote: > > > On Mon, Feb 9, 2009 at 12:18 AM, Vitaly Babiy wrote: > >> Yea, but I see a

Re: Testing Django and HTTP Request

2009-02-08 Thread Vitaly Babiy
Yea, but I see a few problems whit that solution: - Hacky - Still not guaranteed to work( it could take more time) - Would really slow down the tests Vitaly Babiy On Mon, Feb 9, 2009 at 12:15 AM, Alex Gaynor wrote: > > > On Mon, Feb 9, 2009 at 12:13 AM, Vitaly Bab

Working with URL Fields in django test.

2009-02-08 Thread Vitaly Babiy
Hello, If I am using a URLField in form and it set to verify the URL, if I write tests for the code and in the post I push a url like *http:google.com *it will fail if the computer is off-line. Is there a good fix for this? Vitaly Babiy --~--~-~--~~~---~--~~ You

Re: Testing Django and HTTP Request

2009-02-08 Thread Vitaly Babiy
done. And have a way to tell the server what to return on the request. Vitaly Babiy On Mon, Feb 9, 2009 at 12:08 AM, Alex Gaynor wrote: > > > On Mon, Feb 9, 2009 at 12:06 AM, Vitaly Babiy wrote: > >> Hello everyone, >> >> I am working on a project that will nee

Testing Django and HTTP Request

2009-02-08 Thread Vitaly Babiy
tests will fail. I have tried to implement a HTTPServer in python. The problem I am having is once I have it thread, If I put it in the setUp method and tearDown I get port in use exception. Due to the nature of the thread it is not guaranteed to be killed in time. Vitaly

Re: Django Continuous Integration

2009-02-04 Thread Vitaly Babiy
Has any one got hudson to work as a CI system. Vitaly Babiy On Wed, Jan 14, 2009 at 1:05 PM, Adam V. wrote: > > > Revision Control: How do you layout your development repository? I'm > > using Subversion for my setup but would be interested in hearing what > > else o

Re: django fastcgi broken links

2009-01-30 Thread Vitaly
Everything is ok now. I should read more manual and look at FORCE_SCRIPT_NAME. Anyway thanks On Jan 30, 6:37 pm, Karen Tracey wrote: > On Fri, Jan 30, 2009 at 11:07 AM, Vitaly wrote: > > > Hi all > > > I moved my django site to lighttpd with fastcgi. Everything works good

django fastcgi broken links

2009-01-30 Thread Vitaly
Hi all I moved my django site to lighttpd with fastcgi. Everything works good (site opens) but sometime my links on website directs users to http://localhost/fg.fcgi/login as an example. This is not for all links, some links work good. I appreciate any help to solve my problem --~--~-~-

Re: Getting Logged in User with Test Client

2009-01-29 Thread Vitaly Babiy
Malcolm thanks for the feedback and your right, I agree with you that the client should not know about the user. Vitaly Babiy 2009/1/26 Malcolm Tredinnick > > On Sat, 2009-01-24 at 12:14 -0500, Vitaly Babiy wrote: > > Yes either way would work I was just wondering if ther

Re: Import Fixtures per test

2009-01-24 Thread Vitaly Babiy
Yeah this is true, that would work. Thanks, Vitaly Babiy On Sat, Jan 24, 2009 at 12:38 PM, Alex Koshelev wrote: > Extract this test to its own TestCase with needed fixtures. > > > On Sat, Jan 24, 2009 at 8:15 PM, Vitaly Babiy wrote: > >> Is there a way to specify whi

Import Fixtures per test

2009-01-24 Thread Vitaly Babiy
Is there a way to specify which fixtures I want to import per test? Vitaly Babiy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj

Re: Getting Logged in User with Test Client

2009-01-24 Thread Vitaly Babiy
Yes either way would work I was just wondering if there was a more cleaner way of doing so. Vitaly Babiy On Sat, Jan 24, 2009 at 11:47 AM, Masklinn wrote: > > On 24 Jan 2009, at 06:22 , Vbabiy wrote: > > > >def test_showAccountWithZeroTrackers(self): > >se

Re: Your IDE of choice

2009-01-07 Thread Vitaly Babiy
Hey for gedit you should try my plug in http://github.com/vbabiy/gedit-openfiles/tree/master Vitaly Babiy On Wed, Jan 7, 2009 at 10:08 AM, don ilicis wrote: > > > 2009/1/7 Kenneth Gonsalves > >> >> On Tuesday 06 Jan 2009 5:18:57 pm HB wrote: >> > What is yo

Re: Your IDE of choice

2009-01-06 Thread Vitaly Babiy
Bernard does komodo have a open files function (open file in project based on file name search) like there is text mate or gedit with plugin (gedit-openfiles). Vitaly Babiy On Tue, Jan 6, 2009 at 3:10 PM, Bernard wrote: > > I use Komodo IDE 5 everyday for every Python/Django/PHP/

Re: Your IDE of choice

2009-01-06 Thread Vitaly Babiy
Brain do you find it a little slow? Vitaly Babiy On Tue, Jan 6, 2009 at 12:00 PM, Brian wrote: > > For Python/Django I tend to like Komodo's Editor, as I am a fan of > auto-complete and $free. > > > --~--~-~--~~~---~--~~ You received t

Re: Your IDE of choice

2009-01-06 Thread Vitaly Babiy
I use Gedit in gnome and some plugins Works well. Vitaly Babiy On Tue, Jan 6, 2009 at 11:45 AM, Santiago wrote: > > i recently switched to screen + vim with omnicomplete for python and > html... > > komodo edit its pretty good too > > 2009/1/7 martyn : &g

Re: Model Inheritance - And Signals

2008-11-07 Thread Vitaly Babiy
Thanks Alex that worked great. Vitaly Babiy On Fri, Nov 7, 2008 at 12:19 PM, Alex Koshelev <[EMAIL PROTECTED]> wrote: > Try to connection handler without `sender` specified. And filter needed > models inside it. > > def my_handler(sender, **kwargs): > if not isinstanc

Model Inheritance - And Signals

2008-11-07 Thread Vitaly Babiy
if there is any way to do it with signals. Thanks, Vitaly Babiy --~--~-~--~~~---~--~~ 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: Mercurial or Git

2008-10-22 Thread Vitaly Babiy
I personally would recommend git. Vitaly Babiy On Wed, Oct 22, 2008 at 4:01 PM, john Moylan <[EMAIL PROTECTED]> wrote: > You can already use git with an SVN server > > > > 2008/10/22 Rit Lim <[EMAIL PROTECTED]> > > >> which one is the Django commu

Re: www.djangosnippets.org is down now?

2008-10-22 Thread Vitaly Babiy
Peter that is a great Idea, I never thought of that. Vitaly Babiy On Wed, Oct 22, 2008 at 1:26 PM, Peter Bengtsson <[EMAIL PROTECTED]> wrote: > > When I get an error on viewing a snippet I copy the URL into Google > and click the Cached version. > > On Oct 22, 5:08 pm, Gm