[TurboGears] Re: Help! My app appears on localhost:8080 but not remote browser.

2006-10-17 Thread Lee McFadden
be established beyond loopback interface? Not by default no. Your host may have other ideas about letting traffic through to unknown ports though. You may want to check that they don't have a firewall running that will stop you getting access to 8080. Lee -- Lee McFadden blog: http://www.splee.co.uk

[TurboGears] Re: Comments on TurboGears learning process from a user new to Python, TurboGears, etc.

2006-10-16 Thread Lee McFadden
they seem to have moved. However, there's a nice little tutorial to get you started here: http://www.splee.co.uk/2006/10/14/simpleblog-part-1/ Hope this helps. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You

[TurboGears] Re: Comments on TurboGears learning process from a user new to Python, TurboGears, etc.

2006-10-16 Thread Lee McFadden
On 10/16/06, Lee McFadden [EMAIL PROTECTED] wrote: There were some docs on the official docs site, but with a reshuffle they seem to have moved. Found them (I can't have looked too hard! :) - http://docs.turbogears.org/1.0/SQLAlchemy -- Lee McFadden blog: http://www.splee.co.uk work: http

[TurboGears] Re: Comments on TurboGears learning process from a user new to Python, TurboGears, etc.

2006-10-16 Thread Lee McFadden
the nice guide. Thanks, glad you like it. Part 2 is nearly ready and will be published on Friday. :) Apologies for the self-promotion... I just can't help it! -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: i18n via CherryPy sessions, TurboMail threads, and KID don't mix.

2006-10-11 Thread Lee McFadden
TurboMail happy when using KID templates outside of a request with sessions enabled. Matthew Bevan, Systems Administrator Top Floor Computer Systems Ltd. -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You

[TurboGears] Re: Does anyone use Catwalk over SSL?

2006-10-11 Thread Lee McFadden
seems to work? Does the request make it to your app via Apache? If so, do you get a traceback of any kind in the console/server.log? -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message

[TurboGears] Re: Redirection recursion

2006-10-10 Thread Lee McFadden
the /static tree, e.g: RewriteEngine On RewriteRule ^static/(.*) /path/to/static/$1 [L] RewriteRule ^(.*) http://example.com:8080/$1 [P] Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message

[TurboGears] Re: Installing 1.0b1 over 0.9a9

2006-10-04 Thread Lee McFadden
with two tg-admin scripts on your system somewhere. Try following the upgrade instructions on turbogears.org step by step and see if that solves your problem. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You

[TurboGears] Re: Installing 1.0b1 over 0.9a9

2006-10-04 Thread Lee McFadden
one of these...needing guidence again. Sanjay -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post

[TurboGears] Re: turbogears behind apache, mod_rewrite help

2006-09-26 Thread Lee McFadden
www.my_doimain.com/ and not www.my_domain.com:PORT/ I also took a look at the cherrypy documenation, but their rewrite rule line doesn't work for me: http://www.cherrypy.org/wiki/BehindApache -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: TG app on apache 1.3

2006-09-24 Thread Lee McFadden
should be able to set server.socket_host to 127.0.0.1 in your dev/prod.cfg. That way the cherrypy server is bound specifically to the local loopback device and you shouldn't be able to access the server via a public ip address. Hope this helps. Lee -- Lee McFadden blog: http://www.splee.co.uk work

[TurboGears] Re: Better to store images in DB or not?

2006-09-22 Thread Lee McFadden
, storage on the filesystem is probably the best solution. If not, maybe storage in the DB is the best solution. Hope this helps, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message

[TurboGears] Re: How to initalize related sql model objects?

2006-09-20 Thread Lee McFadden
(length=255) class1s = MultipleJoin('class1') You then access all class1's that reference a particular class2 like this: class1_list = a_class2_instance.class1s Hope this helps. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: identity and redirection

2006-09-19 Thread Lee McFadden
* identity.form.submit You'll then just need to change your login template to match your custom form elements. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed

[TurboGears] Re: tg-admin sql create broken in 1.0b1?

2006-09-15 Thread Lee McFadden
On 9/15/06, Italo Maia [EMAIL PROTECTED] wrote: This uri seems like wrong to me... try this: sqlobject.dburi=sqlite:///c:/py/Snazzy/devdata.sqlite The original URI is correct. On windows you need to substitute C| for C:/ for sqlite paths. Lee -- Lee McFadden blog: http

[TurboGears] Re: tg-admin sql create broken in 1.0b1?

2006-09-15 Thread Lee McFadden
: notrans_sqlite:///C|\py\Snazzy/devdata.sqlite Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group

[TurboGears] Re: Taht little problem with the identity default settings persist...

2006-09-08 Thread Lee McFadden
words in SQL, but no they don't need to use different names. The User and Group classes use sqlmeta to change their table names to tg_user and tg_group so there are no naming clashes. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: Is TurboGears really the right toolkit for me?

2006-09-06 Thread Lee McFadden
to suggest a very similar method that I wrote up a few weeks ago. http://www.splee.co.uk/2006/08/14/custom-dispatcher-in-cherrypy/ It achives much the same thing in a slightly different way. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: onLoad override

2006-09-04 Thread Lee McFadden
be an anonymous function you declare in place or the name of a function that you've written. See the drag and drop example on the mochikit website to see how it's used there. http://www.mochikit.com/examples/draggable/index.html Lee -- Lee McFadden blog: http://www.splee.co.uk work: http

[TurboGears] Re: problem with favicon.ico

2006-09-01 Thread Lee McFadden
the favicon from being requested/sent. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group, send email

[tg-trunk] Re: Preeliminar support for various template plugins for Widgets.

2006-08-24 Thread Lee McFadden
if it lost something with this. If it didn't then I believe it is safe to have it merged. I can't test other templating systems right now -- but I'm willing to test Markup ASAP. -- Jorge Godoy [EMAIL PROTECTED] -- Lee McFadden blog: http://www.splee.co.uk work: http

[TurboGears] Re: Collapsible Tree

2006-08-24 Thread Lee McFadden
every time someone expands/colapses a branch. JavaScript is the only way to do it without a page refresh as it's the only language that runs natively in all browsers. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[tg-trunk] Re: r1686 breaks widgets tests

2006-08-21 Thread Lee McFadden
stuck in and create a patch... I would like this functionality sooner rather than later. Regards, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed

[TurboGears] Re: Install Problem (Windows + Python 2.5)

2006-08-21 Thread Lee McFadden
/ --- Ubuntu User number is # 179 --- -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because

[TurboGears] Re: creating pages

2006-08-21 Thread Lee McFadden
/preview/docs/tutorials/wiki20/ Hope this helps, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post

[TurboGears] Re: TurboGears 0.9a9 released!

2006-08-18 Thread Lee McFadden
this won't be needed, but at the moment if you use -U without the -f the highest version that easy_install will find will be the 0.8 releases. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received

[TurboGears] Re: Is it possible to install tb on a pc without Internet Connection?

2006-08-15 Thread Lee McFadden
tuned. :) Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group, send email to turbogears

[TurboGears] Re: Install problem: Setup script exited with error

2006-08-15 Thread Lee McFadden
. Also, I would suggest going with TurboGears 0.9 (the preview release)[1] personally. All the new stuff is stable but one of the only reasons that a beta or RC release hasn't been made is because the documentation needs to catch up first. Lee [1]: http://www.turbogears.org/preview/ -- Lee McFadden

[TurboGears] Re: Unable to avoid getting 500 internal error with IntegrityError

2006-08-15 Thread Lee McFadden
the traceback isn't being generated by your controller method and there could be any number of reasons why that is... without the traceback we can't really help. Thanks, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: It seems that I can't delete cookie data

2006-08-11 Thread Lee McFadden
.has_key and when you try to access it. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group, send email

[TurboGears] Re: @view?

2006-08-05 Thread Lee McFadden
the same thing is also a bad idea. I guarantee it will confuse issues for people. Of all the questions I've been asked on IRC, I've never been asked to any length what @expose does so it must make sense for the majority. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: SQLobject relatedjoin/ uploading files

2006-08-04 Thread Lee McFadden
on creation. Check out the IdentityManagement page[1] on trac for clues to achieve this. Lee [1]: http://trac.turbogears.org/turbogears/wiki/IdentityManagement -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You

[TurboGears] Re: Using user indentity to create private domain

2006-08-03 Thread Lee McFadden
= BLOBCol() meta = ForeignKey(FileMeta) Note: I re-wrote this from memory in gmail, so forgive me if it's not 100%. Hope this helps, Lee [1]: http://www.sqlobject.org/SQLObject.html#column-types -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: SQLObject with primary key consists of 2 column

2006-08-03 Thread Lee McFadden
code. :) Also, there may be an exception that makes more sense than a ValueError. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[TurboGears] Re: PickleCol usage?

2006-08-02 Thread Lee McFadden
things down considerably. Hope this helps, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group

[TurboGears] Re: how express a Inner Join consult for use in DataGrid.

2006-07-31 Thread Lee McFadden
SELECT statement for each row. Regards, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group, send

[TurboGears] Re: RFC: Using Identity with external source for more than passwords.

2006-07-26 Thread Lee McFadden
of the information is, then you should be ok. It sounds like an ideal solution to use a custom provider for integrating your existing information into turbogears. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received

[TurboGears] Re: Odd Kid issue with TG 0.9a1

2006-07-23 Thread Lee McFadden
On 7/22/06, David Stanek [EMAIL PROTECTED] wrote: Is this the comment in base template issue that I fixed in Kid 0.9.3? Nope. I applied the patch from the ticket mentioned on the Kid list and also upgraded to 0.9.3 when TG 0.9a8 was released and I'm still seeing the behavior. -- Lee

[TurboGears] Re: Stupid Javascript question

2006-07-20 Thread Lee McFadden
is going to cause you more trouble than it's worth imho. If you do decide to use it you'd basically be looking at using the eval() function[1] Lee [1]: http://www.w3schools.com/jsref/jsref_eval.asp -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Odd Kid issue with TG 0.9a1

2006-07-20 Thread Lee McFadden
) = splittype(uri) File /Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/urllib.py, line 900, in splittype match = _typeprog.match(url) TypeError: expected string or buffer -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: Problems showing kid templates

2006-07-19 Thread Lee McFadden
template is indeed called testpage.kid your @expose should be as follows: @expose(template=se.templates.testpage) Hope this helps, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message

[TurboGears] Re: TurboGears 0.9a7 released!

2006-07-19 Thread Lee McFadden
The command to upgrade should be: easy_install -Uf http://www.turbogears.org/preview/download/ TurboGears Make sure the /download/ part of the URL is there otherwise you don't get the upgrade :) (and remember if you're running a mac or *nix to use your --script-dir option too) Lee -- Lee

[TurboGears] Re: Freelance consultants and Consulting Companies

2006-07-18 Thread Lee McFadden
I think Kevin has mentioned a consultants page for the website before, but I'm yet to find the page myself. *Blatant self promotion follows* I'm a freelance consultant and I specialise in TG applications - feel free to email me and we can discuss your needs. Regards, Lee -- Lee McFadden

[TurboGears] Re: Problems instaling on Mac

2006-07-17 Thread Lee McFadden
Ed, Do you have xcode (which provides GCC 4.0 IIRC) installed? http://developer.apple.com/tools/ You need your apple id to download it, and it's quite hefty - I think it will solve your problem though. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: updating db

2006-07-01 Thread Lee McFadden
potentially yield multiple SQLObjects. .get() returns the SQLObject with the given id. Hope this helps, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed

[TurboGears] Re: official IRC channel staff

2006-06-28 Thread Lee McFadden
On 6/28/06, Jorge Vargas [EMAIL PROTECTED] wrote: On 6/27/06, Lee McFadden [EMAIL PROTECTED] wrote: Hi Jorge, Hi Lee There are a few of us who are able to OP ourselves should the occasion arise. We just don't see there being any point in being OP'd the entire time. Irronically I

[TurboGears] Re: 0.9a6 on Debian

2006-06-28 Thread Lee McFadden
On 6/28/06, .M. [EMAIL PROTECTED] wrote: In case it's just my problem, has anyone managed to get 0.9a6 to install on Debian? You need to make sure you have python2.4-dev installed. sudo apt-get install python2.4-dev hope this helps, Lee -- Lee McFadden blog: http://www.splee.co.uk work

[TurboGears] Re: Stupied KID question

2006-06-28 Thread Lee McFadden
Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group, send email to turbogears@googlegroups.com

[TurboGears] Re: official IRC channel staff

2006-06-27 Thread Lee McFadden
-- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group, send email to turbogears@googlegroups.com

[TurboGears] Re: SQLObject and date selects

2006-06-24 Thread Lee McFadden
there, that should get you what you need. Hope that helps, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group

[TurboGears] Re: SQLObject and date selects

2006-06-24 Thread Lee McFadden
the .count() function doesn't retrieve all the objects, just the number of rows the selectresults object Obj.select() would retrieve. -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you

[TurboGears] Re: PyTextile

2006-06-20 Thread Lee McFadden
this morning I downloaded a .deb and managed to get the source from that. I should have replied here, but I got caught up in what I was doing, I appreciate the effort though! Thanks, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: memory footprint ?

2006-06-20 Thread Lee McFadden
of the entire app. The largest my app has ever got to was 45mb and it was doing some pretty heavy db work. That's not to say that it can't/won't get larger depending on what your app does though. Hope this helps, Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] [OT] PyTextile

2006-06-19 Thread Lee McFadden
Does anyone have a copy of PyTextile (even if it's not quite the latest one). The author's site has dissapeared into the ether and I can't find a mirror of the file anywhere. I don't particularly feel like re-writing the lib. :) Thanks in advance, Lee -- Lee McFadden blog: http

[TurboGears] Re: How to avoid python evaluating a select arg ?

2006-06-18 Thread Lee McFadden
Elvelind's example is correct. The SQLObject docs have a lot of info about using .select(). http://www.sqlobject.org/SQLObject.html#selecting-multiple-objects Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: Creating a background batch processing thread

2006-06-15 Thread Lee McFadden
Very tasty Richard. I think I may use this in Arkivo to control the IRC bot entirely via TurboGears. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed

[TurboGears] Re: [ANN] IRC Archive

2006-06-15 Thread Lee McFadden
will be redirected to the home page and asked to update your bookmarks. Arkivo also now has Trac @ http://arkivo.python-hosting.com. If you find any issues feel free to leave a ticket. :) Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com

[TurboGears] Re: [ANN] IRC Archive

2006-06-14 Thread Lee McFadden
almost there... the hard part (i.e. connecting and maintaining the channels) is done so I just have to move my original event code over. A slight change to the DB schema and the front end, and we'll be sorted. I should have something up and running by the end of the week. Lee -- Lee McFadden blog

[TurboGears] Re: [ANN] IRC Archive

2006-06-13 Thread Lee McFadden
probably get around to it this weekend at the earliest... well, maybe earlier if I get sidetracked enough. :) -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed

[TurboGears] Re: [ANN] IRC Archive

2006-06-13 Thread Lee McFadden
see whether or not we use it. If I remember correctly #cherrypy isn't freenode? I'll have to tweak the bot's code so that it can connect to different networks to get #cherrypy logged. I'll take a look into it for you. Multiple networks would be quite a cool feature anyway. Lee -- Lee

[TurboGears] Re: SystemExit raised: shutting down autoreloader '-(

2006-06-12 Thread Lee McFadden
as a continuous process, so when you make changes to controller.py it can't reload them on the fly without reloading everything. A PHP script is read every time it is accessed because it's not a continuously running process, hence the ability to refresh quicker. Lee -- Lee McFadden blog: http

[TurboGears] [ANN] IRC Archive

2006-06-12 Thread Lee McFadden
a public SVN/Trac system up and running so you can get hold of the code and submit tickets. Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[TurboGears] Re: Is status a reserved keyword in sqlobject?

2006-06-10 Thread Lee McFadden
structure: class stuff(SQLObject): status = IntCol() more stuff... -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group

[TurboGears] Re: IRC logger

2006-05-04 Thread Lee McFadden
I can get one set up before the end of the week. I had one running originally, but it was taken down along with my old server and I never got around to firing it up again. Lee On 4/30/06, Simon Belak [EMAIL PROTECTED] wrote: It would be useful to have an IRC logger like Django [1]. Cheers,

[TurboGears] Re: Comparisons

2006-04-04 Thread Lee McFadden
On 4/4/06, hazy [EMAIL PROTECTED] wrote: Take Rico's LiveGrid, for example, http://openrico.org/rico/livegrid.page. Quite a fantastic peice of programming I think everyone will agree. Rico's LiveGrid is simply javascript. You should have absolutely no problem including Rico in your TG

[TurboGears] Re: SSL without an external webserver

2006-03-28 Thread Lee McFadden
On 3/26/06, Steve Bergman [EMAIL PROTECTED] wrote: The app that I am developing currently has a requirement for easy deployment. That means SQLite instead of PostgreSQL, and I'd like to use CherryPy directly without any other dependencies. But it does need SSL, at least for the login

[TurboGears] Re: TextMate Bundle?

2006-03-28 Thread Lee McFadden
This looks great. Now I just need to get my Mac Lee --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group, send email to turbogears@googlegroups.com To unsubscribe from this

[TurboGears] Re: bug in for(var i=0;i10;i++) in script

2006-03-05 Thread Lee McFadden
You need to wrap your javascript in CDATA tags, like so: script type=text/javascript![CDATA[ function init() { for(var i=0;i10;i++){} } ]]/script This will stop Kid from having issues with inline javascript. Hope this helps, Lee

[TurboGears] Re: 20 minute wiki for 0.9

2006-03-03 Thread Lee McFadden
On 3/3/06, Javier [EMAIL PROTECTED] wrote: Hi Is someone looking at this issue? I'm not able to finish the the wiki tutorial on tg 0.9 in linux or using the wiki20.tgz file that can be downloaded from the website. Anyone has similar issues? If no one is already looking at the problem

[TurboGears] Re: Trouble getting SVN version of TG

2006-03-01 Thread Lee McFadden
On 3/1/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: subversion/libsvn_ra_dav/util.c:780: (apr_err=175002) svn: REPORT request failed on '/svn/turbogears/!svn/vcc/default' subversion/libsvn_ra_dav/util.c:295: (apr_err=175002) svn: REPORT of '/svn/turbogears/!svn/vcc/default': 400 Bad

[TurboGears] Re: global login? + LDAP

2006-02-28 Thread Lee McFadden
And me :) On 2/28/06, smilechaser [EMAIL PROTECTED] wrote: Sign me up for LDAP testing too. :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group, send email to

[TurboGears] Re: Newbie having trouble installing 0.9a1

2006-02-24 Thread Lee McFadden
On 2/24/06, Bob T. [EMAIL PROTECTED] wrote: Am I doing something wrong, or is the preview site trying to give me 0.8.9? No, you're not doing anything wrong, it seems setuptools is. I had a similar problem this morning. If you make sure that you're in a directory that neither contains a

[TurboGears] Re: Newbie having trouble installing 0.9a1

2006-02-24 Thread Lee McFadden
On 2/24/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: prompt: sudo easy_install -f http://www.turbogears.org/download/index.html --script-dir /usr/local/bin TurboGears The problem here is that you are using the URL for 0.8. 0.9 is only available via the preview site at the moment. Your

[TurboGears] Re: Newbie having trouble installing 0.9a1

2006-02-24 Thread Lee McFadden
You will need to update setuptools using ez_setup.py (there is a link to that file on the Turbogears downloads page[1]). python ez_setup.py -U setuptools Hope this helps, Lee [1] http://www.turbogears.org/preview/download/windows.html --~--~-~--~~~---~--~~ You

[TurboGears] Re: TurboGears 0.9a1 released!

2006-02-24 Thread Lee McFadden
On 2/24/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I hope it's not too much to ask since to build the egg TurboGears must have a source tree with setup.py available already. -Brian Zhou Correct, it should be a simple case of checking out the SVN tag for the version you require. e.g.

[TurboGears] Re: TurboGears 0.9a1 released!

2006-02-24 Thread Lee McFadden
Sorry, that command should have been: svn co http://www.turbogears.org/svn/turbogears/tags/0.9a1/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group, send email to

[TurboGears] Re: Allow access to a whole subnet

2006-02-16 Thread Lee McFadden
On 2/16/06, thesmith [EMAIL PROTECTED] wrote: Cheers for that. Is there any way I can allow access to a whole top level network, e.g. 192.*.*.* ? You should be able to do it in the same manner: 192.0.0.0/8 However, the above is in fact invalid if you're using those addresses on a private

[TurboGears] Re: I forgot my Trac password

2006-02-14 Thread Lee McFadden
On 2/14/06, Gerhard Häring [EMAIL PROTECTED] wrote: But now I have to swear. There really is no need for that kind of language. We may not all be adults on this list (the younger people start programming the better imho) and a little bit of forethought and decorum is called for. I

[TurboGears] Re: Small fastdata path (#522)

2006-02-14 Thread Lee McFadden
Gary, I'll make sure that this gets looked at for you. Lee

[TurboGears] Re: How you read the group?

2006-02-12 Thread Lee McFadden
I get every email delivered to my gmail account and let gmail thread them for me. I also have filters set up so every group email is automatically labelled Turbogears and archived. That way your inbox is clear and you don't get thousands of message notifications per day and you can also see how

[TurboGears] Re: Python Editor

2006-02-12 Thread Lee McFadden
On 2/12/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I really like that one Kevin use in the first screencast (wiki20) I was almost as impress with it then TG :p Yes, TextMate looks great and if you check out the screen cast on their website you can see how powerful it is. Kevin's

[TurboGears] Re: mod_python Documentation BUG

2006-02-12 Thread Lee McFadden
On 2/12/06, João Paulo Silva [EMAIL PROTECTED] wrote: Why just don't use the Wiki for the documentation? It works better for several reasons (collaboration, error correction...). They only work better if someone is dedicated to removing all the cruft, making sure edits aren't made to

[TurboGears] Re: Jeremy Jones: A Brief Django/TurboGears Comparison

2006-02-11 Thread Lee McFadden
On 2/11/06, Simon Belak [EMAIL PROTECTED] wrote: 5: Some work into alternative mapping schemes would be good. How are we on Routes integration? As Kevin said, I have some measure of Routes integration but it is by not yet finished. Once I get it to a stage where it's releaseable into the

[TurboGears] Re: Allow access to a whole subnet

2006-02-10 Thread Lee McFadden
On 2/10/06, thesmith [EMAIL PROTECTED] wrote: Hi, is it possible to allow access to a whole subnet, eg. 192.168.0.*, ideally from the command line when calling 'tg-admin toolbox'. Currently I have a large number of '-c's. Yes, you should be able to do: tg-adming toolbox -c 192.168.0.0/24

[TurboGears] Re: Python Editor

2006-02-09 Thread Lee McFadden
On 2/9/06, Victor Kryukov [EMAIL PROTECTED] wrote: Now I'm trying the SPE which has tabs for different docs and all kind of other goodies... No kid/html support though. I've started using SPE for my main stuff (and if anyone knows how it might be possible to get tg-admin shell working in the

[TurboGears] Re: Sprint topics @ PyCon

2006-02-09 Thread Lee McFadden
On 2/9/06, Gary Godfrey [EMAIL PROTECTED] wrote: In my opinion, the primary competition for TurboGears is not php - it's the web frameworks like phpnuke, drupal and Joomla!/Mambo. The nice thing about these is that you're running right out of the box (no programming) and it's very easy to

[TurboGears] Re: Database / config problems

2006-02-08 Thread Lee McFadden
On 2/8/06, Mike Orr [EMAIL PROTECTED] wrote: Now I know it's something to do with the connection. I had to use the same shell debugging to determine my earlier problems with the ignored config file and the missing hub import. My tables are MyISAM. Is there a bug in notrans_mysql: ? It

[TurboGears] Re: Breaking change in r701 (validators and error handling)

2006-02-08 Thread Lee McFadden
On 2/8/06, Michele Cella [EMAIL PROTECTED] wrote: PS Why many people are still using @expose and not @validate for forms and validators? :D Because it was never publicised very much. I read this list religiously (apart from a brief period during christmas where i mearly skimmed it) and I

[TurboGears] Re: Breaking change in r701 (validators and error handling)

2006-02-08 Thread Lee McFadden
On 2/8/06, Michele Cella [EMAIL PROTECTED] wrote: I suspected this, when I get home late today I will make a wiki page that lists some of the new feature you can use (for those running 0.9) to make your code more pleasant. :-) In the words of Mr. Burns: Excelent, Smithers!

[TurboGears] Re: easy_install docutils broken on osx?

2006-02-08 Thread Lee McFadden
On 2/8/06, Kevin Dangoor [EMAIL PROTECTED] wrote: I've gathered that sourceforge changed something on their end. You should be able to easy_install this link: http://switch.dl.sourceforge.net/sourceforge/docutils/docutils-0.4.tar.gz Either that or use easy_setup.py[1] to install the

[TurboGears] Re: Don't svn up past 683 unless you're ready to switch to new widgets

2006-02-07 Thread Lee McFadden
On 2/7/06, Kevin Dangoor [EMAIL PROTECTED] wrote: Things will likely be in flux for a couple of hours, and then it will hopefully be possible to call use_old_widgets while you make the transition. Gah, too late! :)

[TurboGears] Re: run as cgi!?

2006-02-07 Thread Lee McFadden
On 2/7/06, Robert Hicks [EMAIL PROTECTED] wrote: Correct me if I am wrong but when I check out the low end Python support for hosting companies Python is always offered as a cgi and not as mod_python. So what I am hearing is nope. Both python-hosting[1] and develix[2] (to name only two)

[TurboGears] Re: Found the source of Kid's TypeError: 'NoneType' object is not callable error

2006-02-07 Thread Lee McFadden
Mike, Can you import other stuff from turbogears in the python shell? e.g. import turbogears.widgets or from turbogears import controllers? If so, can you paste the output of ls in the turbogears/fastdata/templates directory? If not then something is seriously amiss and I would try starting

[TurboGears] Re: Found the source of Kid's TypeError: 'NoneType' object is not callable error

2006-02-07 Thread Lee McFadden
On 2/7/06, Mike Sarahan [EMAIL PROTECTED] wrote: importing other turbogears stuff worked just fine, still nothing on the sitetemplate. Here's the ls in $HOME/lib/lib/python2.4/site-packages/TurboGears.../turbogears/fastdata/templates total 28 -rw-rw-r-- 1 mikez0r pg4915910 2006-02-06

[TurboGears] Re: Using XMLRPC filter

2006-02-06 Thread Lee McFadden
On 2/6/06, reflog [EMAIL PROTECTED] wrote: Is that true? NO normal way of implementing this? That sounds very discouraging... :( There's no such thing as no normal way, especially if you can create a patch ;) If you open a ticket with the requirements someone might be able to make this work

[TurboGears] Re: problem with CherryPy and svn

2006-02-06 Thread Lee McFadden
If you go to your TG SVN checkout directory there should be a thirdparty dir. In there you will have a cherrypy dir. Once you are in that directory, run: easy_install . Remeber to use any combo of commands you would normally use (--script-dir and sudo). Lee

[TurboGears] Re: Found the source of Kid's TypeError: 'NoneType' object is not callable error

2006-02-06 Thread Lee McFadden
Are you certain you've installed the latest version of turbokid? Switch to plugins\kid and run easy_install . Remeber to use your easy_install arguments (--script-dir, sudo, etc) as you did with python setup.py develop in the root TG dir. Lee

[TurboGears] Re: Kid templates not recompiled on change

2006-02-06 Thread Lee McFadden
On 2/5/06, Elvelind Grandin [EMAIL PROTECTED] wrote: for me it takes 0.2 sec to restart cherrypy, even if it takes much longer to start it. The only problem is, as Kevin said, if you have multiple requests at once, especially if you have a lot of images and ajax requests going on at the same

[TurboGears] Re: Displaying an image for a boolean column on a DataGrid

2006-02-06 Thread Lee McFadden
On 2/5/06, Jorge Godoy [EMAIL PROTECTED] wrote: Without subclassing DataGrid, is it possible to show an image for each value of a boolean column in a DataGrid? You could just create an instance and overwrite the .template attribute. Just copy/paste the template into your controller from the

[TurboGears] Re: Displaying an image for a boolean column on a DataGrid

2006-02-06 Thread Lee McFadden
On 2/5/06, Jorge Godoy [EMAIL PROTECTED] wrote: You pay the plane tickets and I'll pay you the coffee ;-) As tempting as that sounds, I'm not sure I'd want to stump up that much for a cup of coffee... if I want to get ripped off I can just head down to my local insert coffee franchise here. ;)

<    1   2   3   4   5   >