Re: Error was: No module named io

2011-08-30 Thread tiemonster
Let me make a couple of suggestions stemming from my experience: 1. Develop on the same exact version of python that you have installed on your production server. These kinds of backwards incompatible changes have bitten me more than once. This should be true for any language you develop in. You w

Re: Django on a hosting service

2010-12-12 Thread tiemonster
10:40 pm, Todd Wilson wrote: > tiemonster wrote, on 12/11/2010 05:45 AM: > > > To use Django with Apache, it would be necessary to install *some* > > python interpreter into the server. I used Django on our shared > > hosting site using an .htaccess that called the mo

Re: Django on a hosting service

2010-12-11 Thread tiemonster
To use Django with Apache, it would be necessary to install *some* python interpreter into the server. I used Django on our shared hosting site using an .htaccess that called the mod_python handler in Django. However, mod_python was already installed. If they are offering to install mod_wsgi, then

Re: Project management software

2010-12-04 Thread tiemonster
p to 5 users for commercial orgs. > > On Dec 3, 1:21 pm, tiemonster wrote:> I've done the > initial checkin under LGPL license as agreed. Anyone > > that is interested in contributing, let me know your Google Code login > > and I'll give you commit access to the s

Re: Project management software

2010-12-03 Thread tiemonster
I've done the initial checkin under LGPL license as agreed. Anyone that is interested in contributing, let me know your Google Code login and I'll give you commit access to the svn repo. Any further questions or comments can probably be directed to me personally instead of on- list. Thanks! http:/

Re: Project management software

2010-12-03 Thread tiemonster
Working url's: > > http://halcyon.zapto.org/issueshttp://halcyon.zapto.org/projectshttp://halcyon.zapto.org/admin > > - Oscar > > El 02/12/2010, a las 17:40, tiemonster escribió: > > > Baurzhan, > > I explicitly will not provide support for time-tracking in this

Re: Project management software

2010-12-02 Thread tiemonster
ed, but the licence (GPL) ist unfortunately unusable for me. I > need > a licence like django (BSD or LGPL). > >   Thomas > > > > tiemonster wrote: > > I finally had a chance to put a demo up online: > > >http://freeshell.de/~mscahill/projects/ > > >

Project management software

2010-11-30 Thread tiemonster
I finally had a chance to put a demo up online: http://freeshell.de/~mscahill/projects/ Now obviously this isn't as pretty as it could be. It's meant to be installed within an existing application. I made a half-hearted effort to mock up something that would give you an idea of how it might look.

Re: project management app

2010-08-18 Thread tiemonster
or something.  I don't have time to contribute anything in > regard to programming at the moment due to starting up a web design > firm.  However, i'd love to help you flesh out ideas or be a beta tester > for you... keep me posted! > > chris > > On 08/17/2010 04:35

Re: project management app

2010-08-17 Thread tiemonster
I was unable to get the code working. I'm developing a project management application for Django if you're interested in contributing. On Aug 16, 2:27 pm, Bobby Roberts wrote: > hi all. > > I've foundhttp://code.google.com/p/django-project-management/out > there as a project management app but ha

Re: To make a basecamp like - project management site

2010-08-17 Thread tiemonster
clude other features. I'm going to be fairly stingy on what features to include, but would welcome forking once the initial version is released. On Aug 15, 10:16 am, Baurzhan Ismagulov wrote: > On Sun, Aug 15, 2010 at 07:02:58AM -0700, tiemonster wrote: > > I'm working on

Re: To make a basecamp like - project management site

2010-08-15 Thread tiemonster
I'm working on a GPL project management application for Django, and would welcome contribution. I have a working codebase that is by no means feature complete. If you're interested in contributing, please contact me directly and I can make arrangements for us to collaborate. I plan on some heavy de

Re: moving to django 1.2.1

2010-08-02 Thread tiemonster
nfo/a/24005/ Regards, Mark Cahill On Jul 31, 11:49 am, Russell Keith-Magee wrote: > On Fri, Jul 30, 2010 at 8:14 PM, tiemonster wrote: > > I cover some of the new changes in Django 1.2 in this article: > >http://www.tiemonster.info/a/24005/ > > > Most of this inform

Re: moving to django 1.2.1

2010-07-30 Thread tiemonster
I cover some of the new changes in Django 1.2 in this article: http://www.tiemonster.info/a/24005/ Most of this information comes straight from the changelist. Others were things that the core developers must have assumed were common sense, but that I didn't think about when upgrading. If you run

Re: scaling my site

2010-07-24 Thread tiemonster
"Fast" is extremely relative, and has nothing to do with scalability. A "slow" web site can still scale to millions of users, and a 'fast" web site can go down with only a few thousand hits. First off, what type of application is it? Many reads, many writes, or both? If you have lots of reads and

Failed unit test when using client.get()

2010-07-09 Thread tiemonster
I'm attempting to run a test suite. I am able to log in successfully, but when I request the first page, I get a broken unit test in contrib.auth. Here's the code: from django.test import TestCase from django.test.client import Client from django.contrib.auth.models import User class ReportTest(T

Re: Database caching and multi db

2010-07-08 Thread tiemonster
I was able to fix the issue using the TEST_MIRROR database setting (http://docs.djangoproject.com/en/1.2/topics/testing/#testing-master- slave-configurations). While this relationship isn't exactly master- slave in our situation, the datastore connection is indeed read-only. Using this setting allo

Database caching and multi db

2010-07-08 Thread tiemonster
It seems that when running unit tests, the test runner not only creates all tables on both of my connections (which it should not do, if I read the documentation correctly), but also tries to create the cache table twice, causing the error below. Please let me know if I'm missing something here. I

Signal emitted after successful login?

2010-06-29 Thread tiemonster
Is a signal emitted after a successful login? I need to hook a particular piece of code into that point in the application. -- 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 un