Re: Plone or TurboGears for Intranet

2006-03-27 Thread m . wanstall
Forgot to mention the ease of deployment using Apache (well basically LAMP) would be a big bonus, just because I trust and am familiar with Apache. Thanks! -- http://mail.python.org/mailman/listinfo/python-list

Plone or TurboGears for Intranet

2006-03-27 Thread m . wanstall
Hi all, Just wondering which technology would best suit the development of custom intranets in general, things that may be industry specific would need to be included (say for an industrial design company the addition of internal memos and even extrememly business specific apps such as simple inve

Re: MVC in Python for web app dev

2006-03-25 Thread m . wanstall
Thanks Rune. I've already checked out Django and TG and have found both the projects to be a little misguided. I think the one great thing they have over Rails is the use of SQLObject because the implicit mapping of data models via the "plural" approach of Rails is a bit of a quirk to me, I just do

MVC in Python for web app dev

2006-03-25 Thread m . wanstall
Please let me state off the cuff that I'm not after a big "Python Vs Ruby" war or anything here! I'm trying to make the switch to Python for my web development work as I've been using it for quite some time for other programming work (albeit mainly hobby and personal interest projects) as I'm getti

Re: os.mkdir simple help

2006-02-19 Thread m . wanstall
That's got it, thanks Steven! -- http://mail.python.org/mailman/listinfo/python-list

os.mkdir simple help

2006-02-18 Thread m . wanstall
Hi there, I'm totally new to Python and was wondering why I was getting an error for this. I'm just trying to create a folder based on user input: import os def setupProject(project): os.mkdir(project) os.chdir(project) test = input("Please enter project name: ") setupProject(test) If