Re: 404 only in Chrome

2011-12-10 Thread Bruno Tikami
Hi, don't know if that helps but when I was working with app engine there were errors that would only occur while using the "Incognito" windows. Cheers, Tkm On Fri, Dec 9, 2011 at 11:52 PM, neridaj wrote: > Thanks for the reply but that didn't help. > > On Dec 9, 5:41 pm,

Re: Pain on OSX

2011-07-28 Thread Bruno Tikami
On Thu, Jul 28, 2011 at 12:35 PM, Kolbe wrote: > thanks for the pointers guys! really really helpful > > Kolbe, have you updated your Xcode ? If not, do so in order to have your gcc updated/compatible with Lion. I had problems with pycrypto and beautifulsoup that

Re: Simple Django Report Generator

2011-03-10 Thread Bruno Tikami
On Thu, Mar 10, 2011 at 11:44 PM, Venkatraman S wrote: > > On Fri, Mar 11, 2011 at 6:54 AM, Patrick McDonnell wrote: > >> Clearly, these kind of reports are trivial for me to hard code using >> Django's ORM, but a much more ideal solution would be to provide

Re: Beginners question: select box with very much options

2009-06-18 Thread Bruno Tikami
Hello Mathias, On Thu, Jun 18, 2009 at 12:37 PM, Mathias Waack wrote: > > Hello django experts, > > let me first note I'm a beginner in both django and web-development at all. welcome! > > I have a form with some select boxes containing several million options. >

Re: django-admin.py not working...HELP!

2009-05-14 Thread Bruno Tikami
On Thu, May 14, 2009 at 2:41 PM, bsisco wrote: > > I've uninstalled and reinstalled django and I still can't get this to > work. Any help would be greatly appreciated... > > On May 14, 8:46 am, bsisco wrote: > > Ok. I updated to the latest trunk

Re: how to declare primitive variables with jstl tags

2009-05-08 Thread Bruno Tikami
On Fri, May 8, 2009 at 9:54 AM, Ajil wrote: > > I am working in a project , in which i ahve to use jstl tags , so i > have to know how to declare primitive variables with jstl tags > > regards > Ajil > > > > Hi Ajil, I couldn't understand your problem. Could you be

Re: Django full-history?

2009-04-13 Thread Bruno Tikami
On Mon, Apr 13, 2009 at 1:48 PM, Brazilian Joe wrote: > > Dear all, > > I have been working on a system where we need full-history for our > data. We need features like a 'live time machine', to be able to look > at information as it was at a certain point of time in the

Re: seg fault with LDAP authentication

2009-02-17 Thread Bruno Tikami
On Tue, Feb 17, 2009 at 5:42 PM, molhacker wrote: > > I've been running into a very frustrating situation with a seg fault > in Apache when authenticating Django using LDAP. The problem is > intermittent, probably one out of every 5 logins causes the seg fault. > > The code

Re: Email This Page

2008-06-20 Thread Bruno Tikami
Mike, I agree with Michael about the HTML content, you should follow his line . IF you still do want to email html content, it's not that hard I just have 1 question for you: is your page's content on the database or on your file system? []s! Tkm http://djangopeople.net/brunotikami/ On Fri,

Re: URL tag

2008-06-05 Thread Bruno Tikami
ain client like > this:: > >{% url app_name.client client.id %} > >The URL will look like ``/clients/client/123/``. > > > On 5 Jun, 20:09, "Bruno Tikami" <[EMAIL PROTECTED]> wrote: > > Armandas, > > > > The url patterns are not sent

Re: URL tag

2008-06-05 Thread Bruno Tikami
Armandas, The url patterns are not sent within the HttpResponse and therefore not passed to the template context. What exactly are you trying to do ? Porbably, it's just a small fix on your views . []s! Tkm On Thu, Jun 5, 2008 at 3:40 PM, Armandas <[EMAIL PROTECTED]> wrote: > > Hi, I have

Re: Yet another installation problem

2008-05-07 Thread Bruno Tikami
Hello LRP, Your problem is not with yout PYTHONPATH but with your user's profile PATH. If your Debian can't find django-admin.py it's because it's not on your "bin" directory (which usually is /usr/bin but can also be in /usr/local/bin). Synlink django-admin.py into /usr/bin (once you've already

Re: Enterprise applications with Django

2008-04-16 Thread Bruno Tikami
Hussein B, You can use Twisted [1] or Pyro [2] to call python remote objects. With Pyro, you may use pickle/ unpickle to transfer data and Twisted allows you to use XMLRPC, HTTP request or whatever protocol you wnat to use. Pyro is far more simplier but Twisted si way more robust (Google uses it

Re: get_or_create and DoesNotExist

2008-04-02 Thread Bruno Tikami
ld/42454/ > Flickr Importer: http://dpaste.com/hold/42455/ > > I think that's all that's involved. > > Cheers, > Bryan > > > On Mar 31, 1:22 pm, "Bruno Tikami" <[EMAIL PROTECTED]> wrote: > > Hi Bryan, > > > > would you post your model and vie

Re: Dynamic Subdomain Generation for Users

2008-03-31 Thread Bruno Tikami
Hi vemon, when the user access user.domain.com the request will be treated by a different project or all users share the same project? Though it may look a stupid question, if they have separate projects, you don't have to worry about it, cause they'll have different urls.py files. If they share

Re: get_or_create and DoesNotExist

2008-03-31 Thread Bruno Tikami
Hi Bryan, would you post your model and view code too? As you didn't send the view code, it's quite hard to say what's wrong. I *guess* result is your QuerySet object created by the get_or_created call . If so, did you save() the created object ? Regards, Tkm

Re: Python using django framework

2008-03-23 Thread Bruno Tikami
Hi man! I'm not sure if I understood you right, can you specify your needs a little more? I mean, I'm not exactly sure if Django is the besst tool for you. Probably, Python already has everything you need. Regards, Tkm http://djangopeople.net/brunotikami/ On Sun, Mar 23, 2008 at 10:52 PM,

Re: Photologue 1.0 is out (image management application)

2008-03-05 Thread Bruno Tikami
It looks great Justin. I'm already testing it. Thanks for sharing Tkm On 3/5/08, Justin <[EMAIL PROTECTED]> wrote: > > > Photologue 1.0b is out. The project page has been updated to reflect > the new 1.0 status and a new documentation site >

Re: Releasing django-treemenus: a generic menu application for Django

2008-02-15 Thread Bruno Tikami
Hi Julien! I liked your app really much. As I was adding it to an project I have, I've found my self asking: why can't we define the menu's content through the admin interface? We could use an WYSIWYG editor for that. What do you think? Cheers! Tkm On 2/13/08, Julien <[EMAIL PROTECTED]>

Re: What's the best way to handle big sets of data?

2007-10-01 Thread Bruno Tikami
Hello Tim and Richard, Sorry for the late reply but I was offline for the last days. I asked the same question to Brazilian Django users and I've got the same answer 'focus on your sgbd, Django is not going to be your problem' so I decided to have a better look on Postgres and start to do some

Re: django and postgres

2007-09-27 Thread Bruno Tikami
or, if you haven't, add the line local all postgres password be aware that this will allow the user postgres (once password authenticated) to access all the databases. If you don't want it, change 'all' to you porject's database name . On 9/27/07, Kenneth Gonsalves <[EMAIL

Re: What's the best way to handle big sets of data?

2007-09-25 Thread Bruno Tikami
did not sleep in a Holiday Inn express last night, but I have > done a bit of ajax-enabled web development and async calls can be really > helpful in getting large amounts of data from the server to the client in > small efficient chunks, if the network transfer issue is high on your list. &g

What's the best way to handle big sets of data?

2007-09-25 Thread Bruno Tikami
Hi fellows, I'm developing a Django project that's going to handle with big sets of data and want you to advise me. I have 10 internal bureaus and each of then has a 1.5 million registers database and it really looks to keep growwing on size on and on. I intend to use Postgres. The question:

Re: DJANGO_SETTINGS_MODULE ERROR using Django models from python shell

2007-08-07 Thread Bruno Tikami
for instance). gettext_noop = lambda s: s DATABASE_OPTIONS = {} URL_VALIDATOR_USER_AGENT = "Django/0.96pre (http://www.djangoproject.com)" It works on my actual project. Good luck! Tkm On 5/11/07, Bruno Tikami <[EMAIL PROTECTED]> wrote: > > Malcolm, it works >

Any new for MS SQL Server???

2007-06-15 Thread Bruno Tikami
Hi Django folks! Does anyone have any news about Django supports to MS SQL Server? I've already read the hole old bunch of topics and dicussions about this matter, jsut want to know if there is come news. Best regards my friends! Tkm --~--~-~--~~~---~--~~ You

Re: DJANGO_SETTINGS_MODULE ERROR using Django models from python shell

2007-05-11 Thread Bruno Tikami
Malcolm, it works Thanks a lot, I shall delete the unecessary global settings. TKS!!! Tkm On 5/11/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > > Hi Bruno, > > On Fri, 2007-05-11 at 11:11 -0300, Bruno Tikami wrote: > > Hello Malcolm > &

Re: DJANGO_SETTINGS_MODULE ERROR using Django models from python shell

2007-05-11 Thread Bruno Tikami
Hello Malcolm Thanks for you fast reply I'll try to put the missing settings on my project.settings . Do I have to call configure() in some diferent way after I do that? I mean, if my settings have all the global settings... On 5/11/07, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > > > On

DJANGO_SETTINGS_MODULE ERROR using Django models from python shell

2007-05-11 Thread Bruno Tikami
Hi! I'm trying to use Django models from a python script and I'm having some settings problem. Even though I called settings.configure, it keeps ordering for some other setting parameter. The error is listed below. Any idea? $ python >>> import recorder >>> import recorder.settings >>> from

NOOB - How to extend Admin templates

2007-05-08 Thread Bruno Tikami
Hello guys! I'm quite new to Django and I'd like some help with it's templates. How can I use the admin templates to show my own data? I mean, If I have a FK field, the admin view won't show the "select_related" fields from the foreign class. How can I create my own view and displays it through

Re: How to change the size of input field from Django

2007-05-04 Thread Bruno Tikami
You might also want to take a look at contrib/admin/views/template.py 's class TemplateValidator On 5/4/07, Bruno Tikami <[EMAIL PROTECTED]> wrote: > > Hi Pythoni! > > have you tried to take a look at oldforms/__init__.py file? There, look > for the LargeTextField class and

Re: Apache + mod_python problem

2007-05-04 Thread Bruno Tikami
Hi Haku! I have the same problem last week. What I did was to reate a file called .pth and saved it on /usr/lib/python2.4/site-packages/ inside this file, I wrote the root path to my project.. try it & let me know the results. good luck! Tkm On 5/4/07, Haku <[EMAIL PROTECTED]> wrote: > > >

Re: How to change the size of input field from Django

2007-05-04 Thread Bruno Tikami
Hi Pythoni! have you tried to take a look at oldforms/__init__.py file? There, look for the LargeTextField class and it's render function. I understand it's not exactily what you wanted, but it's a point to start ;) good luck! Tkm On 5/4/07, Pythoni <[EMAIL PROTECTED]> wrote: > > > One of

Re: Unknown column 'appname_modelname.category_id' in 'field list

2007-05-03 Thread Bruno Tikami
Hi! 1st think, syncdb does not update your tables defi9nition so, if you change something in the class, you'll have to "ALTER TALBE" it in order not to drop the table. It's a pitty but you have to do it with regular SQL through your mySql client. About not required fields, you just have to

Re: Unknown column 'appname_modelname.category_id' in 'field list

2007-05-02 Thread Bruno Tikami
have you tried to "syncdb" your project with mysql just, do it once more. I think it's worth a try ;) On 5/2/07, Bruno Tikami <[EMAIL PROTECTED]> wrote: > > nerezus, I'm gonna check out your problem & try to simulate this error for > you man. > > T

Re: Unknown column 'appname_modelname.category_id' in 'field list

2007-05-02 Thread Bruno Tikami
nerezus, I'm gonna check out your problem & try to simulate this error for you man. The "category_id" field it complains it generated automatcally by Django. It ALWAYS create a field called _id if you don't create an AutoField atributte. You should see it on select * from publications_category ;)