Re: log by request

2013-06-15 Thread Alexandre Conrad
Hey William, I wrote a blog on how I'm doing it myself (I don't use debugtoolbar in prod): http://www.alexconrad.org/2012/08/log-unique-request-ids-with-pyramid.html Today, I don't subclass the request object but I rather use a reify'ed add_request_method to the request object on a Pyramid

Re: deploying pyramid apps on heroku

2012-06-20 Thread Alexandre Conrad
I'd recommend you log the time it takes for your pyramid views to respond, as well as the model functions you call to make DB access to try to narrow down where the bottleneck comes from. 2012/6/19 Ottavio otta...@campana.vi.it Hi, I am testing heroku as a platform to deploy pyramid apps. I

Re: How to get request object inside decorator?

2012-06-19 Thread Alexandre Conrad
I am assuming you want to decorate a view. Here is a simple performance logger to know how long a it took for a view execute. As you can see, you have access to the request object. (not using traversal in this case) def perflog_view(func): def wrapper(request): chrono = time.time()

Re: How to get request object inside decorator?

2012-06-19 Thread Alexandre Conrad
Oh, that's good to know! Thanks! On Jun 19, 2012 10:22 PM, Michael Merickel mmeri...@gmail.com wrote: So the generic (supported) way to write a decorator in pyramid that will work with any view is to use the decorator argument to add_view or view_config. This allows your decorator to have a

Re: Pyramid Installation

2011-10-25 Thread Alexandre Conrad
did you use the option --no-site-packages when you created your virtualenv? 2011/10/25 Vincent Catalano vinc...@vincentcatalano.com During my recent attempt to install Pyramid on my Ubuntu box I received the following error: error: Installed distribution zope.interface 3.6.1 conflicts with

Re: Pyramid 1.2a1 released

2011-08-24 Thread Alexandre Conrad
2011/8/23 Chris McDonough chr...@plope.com Pyramid 1.2a1 has been released. This is the first alpha release in the 1.2 series. Congrats! A What's New In Pyramid 1.2 document exists at http://docs.pylonsproject.org/projects/pyramid/1.2/whatsnew-1.2.html describing the differences between

Re: paster/pylons crashing

2011-03-25 Thread Alexandre Conrad
I see mysql in here, so my hint would be that the mysql driver you use to access you database may be buggy? 2011/3/25 Justin Francis jawed.youniversityventures@gmail.com: in the case where paster exits without printing any error messages, it is due to a segfault. i ran paster with strace,

Re: No PyCon for me :(

2011-03-08 Thread Alexandre Conrad
I'm sorry to read that Mike. I hope you get better soon. I retweeted Jorge's message: http://twitter.com/#!/elpargo/status/45192992025358336 2011/3/8 Mike Orr sluggos...@gmail.com I got sick again this weekend so I won't be able to go to Pycon. It's the same kind of severe cough I had for

Re: Routing question versus real world situation

2010-10-31 Thread Alexandre Conrad
Hi, I would make sure a site and a subsite is a resource in Routes. RESTful really means that you are using the verbs available in HTTP, that is, GET, POST, UPDATE, DELETE without wasting name spaces like addsite, delsite, etc., in your URL. RESTful doesn't necessarily mean that you must *not*

Re: Routing question versus real world situation

2010-10-31 Thread Alexandre Conrad
Hey, 2010/10/31 cd34 mcd...@gmail.com: On Oct 31, 2:14 am, Alexandre Conrad alexandre.con...@gmail.com wrote: I would make sure a site and a subsite is a resource in Routes. RESTful really means that you are using the verbs available in HTTP, that is, GET, POST, UPDATE, DELETE without

Re: accessing c or tmpl_context variables in javascript

2010-10-31 Thread Alexandre Conrad
It's not possible. tmpl_context lives on the server side whereas Javascript runs on the client site. Unless you serialize your object and send it over the wire, which is probably very insecure, there is not way to do that. What do you mean by I found the method to use in html ? 2010/10/30 anusha

Re: Pylons book update to 1.0?

2010-08-14 Thread Alexandre Conrad
2010/8/14 JohnWShipman j...@nmt.edu: I bought Gardner's _The Definitive Guide to Pylons_, but it is already out of date. As an aside note, have you heard of this upgrading-to-1.0 link? This may help. http://pylonshq.com/docs/en/1.0/upgrading/ -- Alex twitter.com/alexconrad -- You received

Re: how to refresh the page in pylons?

2010-08-04 Thread Alexandre Conrad
2010/8/4 karikris...@gmail.com karikris...@gmail.com: I want to refresh pages for every 5 minutes. I aware that I need to something like refresh header in the response. Can any one point me how to add refresh header in response object? I believe something like that should work:

Re: trying to figure out the exact changes in the controlers and views for 1.0

2010-05-30 Thread Alexandre Conrad
Hello Krishnakant, you will find answers to your questions by following the 1.0 upgrading instructions: http://pylonshq.com/docs/en/1.0/upgrading/ 2010/5/30 Krishnakant Mane krm...@gmail.com: for example now what is the syntax for h.url_for() e.g., the link above says Change all instances of

Re: How to define index on expression (postgres) in (declarative) model?

2010-05-09 Thread Alexandre Conrad
That's more an SQLAlchemy related question. You'd better ask it on the SQLAlchemy list. Sent from my fantastic HTC Hero On May 9, 2010 8:59 PM, Haron Media i...@haronmedia.com wrote: I went through SQLAlchemy docs but I'm not sure how to pull this off. There appears to be no way to create an

Re: formatted_new_article, formatted_edit_article, ...

2010-05-08 Thread Alexandre Conrad
Hi Mike, 2010/5/8 Mike Orr sluggos...@gmail.com: The routes created by map.resource include a 'formatted_*' route alongside each regular route. The formatted routes have a '.FORMAT' suffix at the end of the URL; e.g., /articles/1234.xml, which you can access via the 'format' routing variable.

formatted_new_article, formatted_edit_article, ...

2010-05-07 Thread Alexandre Conrad
Hi list, Every time I create a controller, the generated test contains multiple url(formatted_*, ...), e.g.: def test_edit_as_xml(self): response = self.app.get(url('formatted_edit_article', id=1, format='xml'), headers=self.headers) I was wondering what this was supposed to be used for.

Re: image caching

2009-11-25 Thread Alexandre Conrad
Hi, I don't know the answer as I haven't really used caching, but I guess the correct way to do it is to play with the HTTP headers, tweaking the Cache-Control setting. The headers can be changed with the response object, available in your controller: # Set HTTP response headers before

Re: Form processing

2009-07-06 Thread Alexandre Conrad
2009/7/6 schneck stefanoer...@googlemail.com: thanks for the link, unfortunately, formalchemy seems not to do introspection on elixir-models: i have many dropdowns containing the object string representation instead of rendered form fields. We're expecting that FormAlchemy will work with

Re: http://wiki.pylonshq.com/display/pylonsdocs/Home contains broken link

2009-05-20 Thread Alexandre Conrad
This maybe: http://pylonshq.com/docs/en/0.9.7/thirdparty/webhelpers/ 2009/5/20 Chris Withers ch...@simplistix.co.uk: ...to http://pylonshq.com/WebHelpers/module-index.html Where has this moved to? cheers, Chris -- Simplistix - Content Management, Zope Python Consulting            -

[Routes patch] breaks when passing a list of unicodes as extra args to generate()

2009-05-18 Thread Alexandre Conrad
Hi there, I have forked the official Routes trunk, applied and pushed my changes to my branch. Although, I'm not sure if patches should be provided that way. http://bitbucket.org/aconrad/routes/changeset/441be14adb55/ I first created a patch queue, but I'm not sure if it's meant for that.

Re: Pylons 0.9.7 released

2009-02-23 Thread Alexandre Conrad
Alright !! Congrats ! :) 2009/2/23 Ben Bangert b...@groovie.org: Pylons 0.9.7 has been released, I've posted a full write-up on it on the PylonsHQ site: http://pylonshq.com/articles/archives/2009/2/pylons_097_released Cheers, Ben --~--~-~--~~~---~--~~ You

Paste and Fedora 9

2008-05-22 Thread Alexandre Conrad
I'd install the PasteDeploy and PasteScript from the distro's reposiroty as well: yum install python-paste-deploy.noarch python-paste-script.noarch That made things to work again (although now I have a decorator problem, but that's another topic). Regards, -- Alexandre CONRAD

Re: Paste and Fedora 9

2008-05-22 Thread Alexandre Conrad
Mike Orr wrote: On Thu, May 22, 2008 at 4:24 AM, Alexandre Conrad [EMAIL PROTECTED] wrote: import paste paste module 'paste' (built-in) built-in ?? rpm -qa | grep paste yield: python-paste-1.6-1.fc9.noarch I thought only C modules could be built in. How did they build in a Python

Re: XMLRPC Faults

2008-05-21 Thread Alexandre Conrad
Hello, I've asked this question before on this same list. Please view the following post: http://groups.google.com/group/pylons-discuss/browse_thread/thread/ac6cb0a607b7b19b/ Hope this helps. Reagrds, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received

Re: pydecforms - yet another form builder

2008-04-25 Thread Alexandre Conrad
to use FormAlchemy as I have not much to offer right now. Everyone likes to do their own form receipt and these merging form frameworks with different designs and philosophy can only bring richness and diversity to the community. Regards, -- Alexandre CONRAD

beaker: iterating keys of a cache

2008-04-18 Thread Alexandre Conrad
to an underlying non-memory storage engine (on disk or so), thus having .keys() method implemented would not be efficient. Is this correct? Is there some way to know which keys are present? Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received

Re: How should XMLRPCController handles errors (xmlrpc_fault)

2008-02-11 Thread Alexandre Conrad
: return xmlrpc_fault(0, An internal server error occurred)(environ, start_response) finally: Session.remove() Note the call to the return value of xmlrpc_fault with (environ, start_response) HTH, Chris On Feb 4, 2008 5:53 AM, Alexandre Conrad

Re: How should XMLRPCController handles errors (xmlrpc_fault)

2008-02-04 Thread Alexandre Conrad
I'd like to put this post back up, hoping for a reply... Alexandre Conrad wrote: Hi, I would like to know how errors should be handled having webservices running with XMLRPCController. Say I have a def login(self, user, password) method. If the login fails, how should I return

Re: pylons 10,000 foot overview

2008-01-23 Thread Alexandre Conrad
it anymore. Maybe this should be refered somewhere on the Pylons site, under some understanding how Pylons works section. Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss

How should XMLRPCController handles errors (xmlrpc_fault)

2008-01-21 Thread Alexandre Conrad
'paste.wsgiwrappers.WSGIResponse' objects Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe

Routes not seeing _method when multipart=True

2008-01-10 Thread Alexandre Conrad
Hello, As the subject tells, Routes doesn't alter a POST request to if an alternate _method was specified in the POST data. I've opened a ticket for that: http://routes.groovie.org/trac/routes/ticket/64 Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You

Re: Routes not seeing _method when multipart=True

2008-01-10 Thread Alexandre Conrad
Sorry, I just realized there was a Routes 1.7.1 which seems to have this issue fixed already. Alexandre Conrad wrote: Hello, As the subject tells, Routes doesn't alter a POST request to if an alternate _method was specified in the POST data. I've opened a ticket for that: http

Re: request.params

2008-01-03 Thread Alexandre Conrad
to test if 'RAPid' exists in your dict: if 'RAPid' in request.params: ... do something useful ... documentation for python dicts: http://docs.python.org/lib/typesmapping.html check out the table for all the possibilities with dicts. Regards, -- Alexandre CONRAD

Re: request.params

2008-01-03 Thread Alexandre Conrad
if the website is up-to-date, but here's the online version: http://pythonpaste.org/class-paste.util.multidict.MultiDict.html http://pythonpaste.org/class-paste.util.multidict.UnicodeMultiDict.html Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received

[ANN] FormAlchemy 0.1 released !

2007-08-29 Thread Alexandre Conrad
://formalchemy.googlecode.com Mailing list: http://groups.google.com/group/formalchemy Feedback is appreciated. :) Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group

Re: New SQLAlchemy tutorial; SAContext is dead

2007-08-17 Thread Alexandre CONRAD
() / Session.close() rather than a try: finally: block, IMHO. Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com

Re: SQLAlchemy tutorial

2007-08-17 Thread Alexandre CONRAD
Mike Orr wrote: I'm not happy with the model. prefix throughout the Data Queries section. Some people will use this code in the model; others in the controller. I think it's less jarring to have it without the prefix and people can add it, rather than the other way around. Do others

Re: SQLAlchemy tutorial

2007-08-17 Thread Alexandre CONRAD
Neil Blakey-Milner wrote: proper imports returns the session-and-Session-in-the-same-namespace problem, though. Yes, that may lead to some user confusion. By the way, the capital Session still irks me. Sure, it's a (constructed) class, but it's being treated as a (non-class) object, and

Re: New SQLAlchemy tutorial; SAContext is dead

2007-08-16 Thread Alexandre CONRAD
setup, setting SA 0.4 + Pylons 0.9.6rc2, the assign_mapper style, as I'm still using it as well: http://groups.google.com/group/pylons-devel/browse_thread/thread/2b82c7093f50afc4/a6c4d7986266ddb0#a6c4d7986266ddb0 Regards, -- Alexandre CONRAD

WebHelpers-0.3.2dev_r2284: sortable_element() question

2007-08-15 Thread Alexandre CONRAD
updated in the process but I get the same behaviour. Tested with IE 7, FF 2 and Opera 9.23. Any idea on how I could fix this ? Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons

Re: HTTP_NOT_FOUND Error?

2007-07-12 Thread Alexandre CONRAD
you set here is an existing method in your controller. Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss

Re: using trac as a callable inside the controller - a recipe and a doubt!

2007-06-29 Thread Alexandre CONRAD
Daniel Tang wrote: On 6/29/07, Walter Cruz [EMAIL PROTECTED] wrote: h.redirect_to('/') h.redirect_to('/') I'm pretty sure you have to return h.redirect_to, not just call it (unlike RoR, I believe) Both should work as well. Regards, -- Alexandre CONRAD

Re: going off line

2007-06-18 Thread Alexandre CONRAD
Shannon -jj Behrens wrote: Wish me luck with my fourth child which is due in two weeks! Congrats to you Shannon, and the mother ! Good luck ! :) Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: storing SA mapped objects in beaker sessions

2007-05-28 Thread Alexandre CONRAD
user's .has_privilege() method to check which parts of the application should be displayed to the user. Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post

Re: storing SA mapped objects in beaker sessions

2007-05-28 Thread Alexandre CONRAD
if changes were made by the application itself). Thanks! HTH, -- Alexandre CONRAD On 5/28/07, Alexandre CONRAD [EMAIL PROTECTED] wrote: On 5/27/07, Anil [EMAIL PROTECTED] wrote: user = session[user] alert = model.Alert(form_result[name]) user.alerts.append(alert) user.save_or_update() user.flush

Re: Bug with beaker.cache ?

2007-05-16 Thread Alexandre CONRAD
, it seems to randomly return a previously returned object. It's pretty confusing. Doing a .get_value(anonymous) always returns the correct information, but the .has_key() method doesn't work. Am I missing something ? Regards, -- Alexandre CONRAD

Re: Iteration in Mako templates

2007-05-16 Thread Alexandre CONRAD
lists ul, list items li and format the output with CSS instead of using tables. ul % for item in c.links: li${item}/li % endfor /ul I like to point this link once in a while: http://hotdesign.com/seybold/everything.html Regards, -- Alexandre CONRAD

Bug with beaker.cache ?

2007-05-15 Thread Alexandre CONRAD
to the container object (in this case DBMContainer), which is in the package MyghtyUtils, which is a single, unreadable, .egg file here. Using: - Beaker-0.6.3-py2.4.egg - MyghtyUtils-0.52-py2.4.egg Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You

authorization and data restriction

2007-04-25 Thread Alexandre CONRAD
differently. ps1: AFAIU, roles should be hardcoded. I guess you can't really create new roles in an application without modifying it's source code. ps2: it's unclear for me what the difference is between roles and groups in a user management system. Regards, -- Alexandre CONRAD

Re: ANN: Pylons 0.9.5 Released

2007-04-13 Thread Alexandre CONRAD
Great job ! Congrats pylonauts ! :) -- Alexandre CONRAD Ben Bangert wrote: I'm thrilled to announce a new release of Pylons, with one of the largest ticket fix counts of any Pylons release thus far. This release and its associated updates have only been possible with the growing

Wikipedia: Model-view-controller

2007-04-04 Thread Alexandre CONRAD
-based_Interfaces Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe from this group, send

Re: (newbie) Access variables in *.ini from templates

2007-03-21 Thread Alexandre CONRAD
[paste.config] Hope this helps. Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe from

Re: pylons memory leak

2007-02-22 Thread Alexandre CONRAD
-1.fc6, Paste 1.2, Pylons 0.9.4.1, SQLALchemy 0.3.5. I used `top -d 0.1 -p ` where is the pid number that paste displays on server start up. If you guys had any suggestion about how and where to start tracking this down ? Regards, -- Alexandre CONRAD

What's the best way to provide a patch ?

2007-01-30 Thread Alexandre CONRAD
to apply changes at once (let's say the actual patch and an update of the test suite). This documentation could be useful for the whole community. Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: UTF-8 ... help

2007-01-12 Thread Alexandre CONRAD
James Gardner's Pylons documentation Internationalization, Localization and Unicode. if you ever forget the link, google for: stupid programmer unicode And when you'll be a big Unicode fan: http://www.cafepress.com/cp/browse/store/nucleartacos.26746951 :) Regards, -- Alexandre CONRAD

Re: catching argument templates from 'autohandler' (myghty)

2006-12-08 Thread Alexandre CONRAD
was wondering if this had anything to do with my problem where autohandler don't seem to catch the passed arguments. Best regards, -- Alexandre CONRAD Alexandre CONRAD wrote: Hello, from my controller, I'm doing the following: return render_response(browser/client/index.myt, client=client

catching argument templates from 'autohandler' (myghty)

2006-12-07 Thread Alexandre CONRAD
, h.url(controller=client, action=index, id=client.id_client)) % /%method --- browser/client/autohandler --- Any help would be appreciated. Regards, -- Alexandre CONRAD - TLV FRANCE Research Development --~--~-~--~~~---~--~~ You received this message because you

Re: pylonshq.com became slower again

2006-12-04 Thread Alexandre CONRAD
! Thanks Ben ! Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe from this group

Re: update multiple DIV

2006-11-03 Thread Alexandre CONRAD
= self.query.select() return render('browser/client/list.myt', fragment=True) All the javascript that is contained in list.myt was generated using webhelpers. Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you

Re: update multiple DIV

2006-11-03 Thread Alexandre CONRAD
Alexandre CONRAD wrote: $('client_form_5').innerHTML = ''; $('client_list').innerHTML = 'ul\n lia href=\/client/index/5\blah/adiv id=\client_form_5\/div\n div class=\'toolbar\'\n a href=\#\ onclick=\new Ajax.Updater(\'client_form_5\', \'/client/edit/5\', {asynchronous:true

No mp.websetup module found for setup

2006-10-31 Thread Alexandre CONRAD
traceback, I get this message, which is useless. So now I have to go through my modifications and try to see where the problem occurs, which is like looking for a needle in a haystack. Any suggestions ? Can this be fixed ? Is this a Pylons related problem ? Paste ? Regards, -- Alexandre CONRAD

update multiple DIV

2006-10-30 Thread Alexandre CONRAD
at all. I tryied the other way around, the 2nd function alone, etc. Nothing. Any idea what I could be doing wrong ? Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group

Re: Updated QuickWiki

2006-09-25 Thread Alexandre CONRAD
for me. :) ps: Joe, I agree with you, it's nicer to have SA tables and classes together in the same file rather than having tables.py and models.py files. Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: SQLAlchemy best practices

2006-09-20 Thread Alexandre CONRAD
to do it, but I hope it is. :) Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe

Re: how to glue SQLAlchemy, FormEncode and CRUD-ing

2006-08-24 Thread Alexandre CONRAD
. We'll probably come up with some more cool tips and ideas once we get the CRUD basics clear and nested together. Regards, -- Alexandre CONRAD - TLV FRANCE Research Development --~--~-~--~~~---~--~~ You received this message because you are subscribed

how to glue SQLAlchemy, FormEncode and CRUD-ing

2006-08-23 Thread Alexandre CONRAD
/project/pylonshq/wiki/DocLayoutProposals Any experience and/or code sample would be appreciated. Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post

Re: dynamicly assign fields

2006-08-02 Thread Alexandre CONRAD
/Database_normalization One note though, normally people don't go beyond 3th-normal form or BCNF. I hope this helps, It does. Thanks for pointing me out these references. I'll get deeper into database logic. Regards, -- Alexandre CONRAD

Re: 0.9 final

2006-07-28 Thread Alexandre CONRAD
hq = headquarters ? :) hq = high quality ? :) -- Alexandre CONRAD - TLV FRANCE Research Development --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email

Re: Pylons 0.9 and Announcements

2006-07-24 Thread Alexandre CONRAD
(SPAM), cliquez sur le lien suivant pour le reclasser : http://127.0.0.1:6083/Panda?ID=pav_20414SPAM=true --- -- Alexandre CONRAD - TLV FRANCE Research Development

Re: authkit 0.2 docs?

2006-07-21 Thread Alexandre CONRAD
, -- Alexandre CONRAD - TLV FRANCE Research Development --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe from

Re: newbie

2006-06-07 Thread Alexandre CONRAD
I can protect actions this way: ... @permissions(users=['god'], roles=['admin', 'manager']) def index(self): ... I can post this module somewhere if you are interested. I am interested... :) Regards, -- Alexandre CONRAD - TLV Research Development tel : +33 1 30 80 55 05 fax : +33 1

Re: Pylons 0.9 (aka trunk), and some updates on Pylons

2006-06-01 Thread Alexandre CONRAD
submit a ticket for it on PylonsHQ so we can add any compatibility methods that might ahve been missed. Please don't use trunk on a production machine of course, but feel free to check it out and give it a spin on a development machine. Cheers, Ben -- Alexandre CONRAD - TLV Research

controller/templating logic

2006-05-26 Thread Alexandre CONRAD
none of these possibilities are a problem now, but they might become one in a context I haven't experienced yet and you guys and girls might be aware of. Regards, -- Alexandre CONRAD - TLV Research Development tel : +33 1 30 80 55 05 fax : +33 1 30 80 55 06 6, rue de la plaine 78860 - SAINT

Re: help with Routes...

2006-05-24 Thread Alexandre CONRAD
you use a static file, so the routes should be: map.connect('css', '/css/mp_v1.css', _static=True) map.connect('img', '/img', _static=True) Ok, thanks ! That made the trick. Regards, -- Alexandre CONRAD - TLV Research Development tel : +33 1 30 80 55 05 fax : +33 1 30 80 55 06

Pylons, then Django, now back to Pylons

2006-05-18 Thread Alexandre CONRAD
to have it even easier plug and play ? Regards, -- Alexandre CONRAD - TLV Research Development tel : +33 1 30 80 55 05 fax : +33 1 30 80 55 06 6, rue de la plaine 78860 - SAINT NOM LA BRETECHE FRANCE --~--~-~--~~~---~--~~ You received this message because you

Pylons's moving on... :)

2006-04-28 Thread Alexandre CONRAD
is a certainly a different approch. Regards, -- Alexandre CONRAD --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com To unsubscribe from