Re: [pylons-discuss] Book on Pyramid

2017-07-13 Thread Carlos de la Guardia
Hi, lets say I'm interested. What do people on this list think such a book should cover. How can it be useful to both beginners and long time users? Carlos de la Guardia On Fri, Jun 30, 2017 at 3:13 PM, Steve Piercy <steve.piercy@gmail.com> wrote: > Howdy, > > If you

[pylons-discuss] deform and multicolumn forms

2017-06-11 Thread Carlos BG
Hi I have to translate a desktop application to web application. I want to do it in pyramid and I'm new to web programming. The forms must be identical...or almost identical. I have not found how to make a complex multicolumn form in deform. For example, a line will contain a pair of textinputs,

Re: [pylons-discuss] Traversal and extra round trip to db

2015-08-28 Thread Carlos de la Guardia
Have you any particular features in mind? Carlos de la Guardia On Fri, Aug 28, 2015 at 9:07 PM, Mike Orr sluggos...@gmail.com wrote: On Fri, Aug 28, 2015 at 6:46 PM, Paul Everitt paulwever...@gmail.com wrote: A couple of months ago I was talking again with Shane Hathaway about my endless

Re: [pylons-discuss] deform lipstick

2015-08-28 Thread Carlos de la Guardia
This might at least give you some ideas: https://github.com/ericrasmussen/deform_retail_demo/blob/master/deformretail/templates/home.mako Carlos de la Guardia On Fri, Aug 28, 2015 at 6:21 PM, Kurt Bendl kurtbe...@gmail.com wrote: Hola, I've been using deform and colander to render forms

Re: [pylons-discuss] Re: tweepy streaming api interferes with pserve?

2015-08-01 Thread Carlos de la Guardia
The problem is the user stream blocks and never returns: http://tweepy.readthedocs.org/en/v3.3.0/streaming_how_to.html?highlight=stream#async-streaming Carlos de la Guardia On Sat, Aug 1, 2015 at 8:26 PM, Michael taomaili...@gmail.com wrote: Hi Laurent, on Mac OS X 10.10.4 I upgraded python

Re: [pylons-discuss] manage.py equivalent?

2015-06-01 Thread Carlos de la Guardia
Substance D has a few examples of this: https://github.com/Pylons/substanced/tree/master/substanced/scripts Also look at setup.py to see how to declare as console scripts. Carlos de la Guardia On Mon, Jun 1, 2015 at 1:56 AM, Chris Withers ch...@simplistix.co.uk wrote: Hi All, Trying to get

Re: [pylons-discuss] trypyramid.com and python 2.x

2015-05-08 Thread Carlos de la Guardia
@googlegroups.com. Visit this group at http://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/d/optout. Carlos de la Guardia -- You received this message because you are subscribed to the Google Groups pylons-discuss group. To unsubscribe from this group

[pylons-discuss] Substance D 1.0a1 released

2015-04-17 Thread Carlos de la Guardia
install it via PyPi: easy_install substanced Documentation is avaliable at http://docs.pylonsproject.org/projects/substanced/en/latest/ Thanks, Carlos de la Guardia -- You received this message because you are subscribed to the Google Groups pylons-discuss group. To unsubscribe from this group

Re: [pylons-discuss] Re: Pycon Open spaces

2014-03-06 Thread Carlos de la Guardia
I will be there for the sprints as well and can help organize. And yes, it's really sad that you guys will not be here. Carlos de la Guardia On Thu, Mar 6, 2014 at 12:32 PM, Blaise Laflamme bla...@laflamme.orgwrote: Yeah that sucks you guys will not be there this year for sprints. But I

Re: Error following the SQLAlchemy + URL Dispatch Wiki Tutorial

2013-06-10 Thread Carlos Lopez
Thank you Chirs I uninstalled python 3.2 and I installed the 3.3.2 version, I did the steps again and all work as expected. El domingo, 9 de junio de 2013 18:45:54 UTC-5, Chris McDonough escribió: On Sun, 2013-06-09 at 15:51 -0700, Carlos Andrés Lopez Gil wrote: Hi, I'm starting

Re: Error following the SQLAlchemy + URL Dispatch Wiki Tutorial

2013-06-10 Thread Carlos Lopez
Thank you Chirs I uninstalled python 3.2 and I installed the 3.3.2 version, I did the steps again and all work as expected. Please do one of the following: - Use any supported version of Python other than 3.2 (this would be 3.3, 2.7, or 2.6). - Alternately, follow the set of steps

Error following the SQLAlchemy + URL Dispatch Wiki Tutorial

2013-06-09 Thread Carlos Andrés Lopez Gil
models.name = ? LIMIT ? OFFSET ? 2013-06-09 17:11:19,081 INFO [sqlalchemy.engine.base.Engine][Dummy-2] ('one', 1, 0) 2013-06-09 17:11:19,255 ERROR [waitress][Dummy-2] Exception when serving / Traceback (most recent call last): File /Users/carlos/Python/virtualenvs/py3Pyramid/lib/python3.2

Re: Pyramid and Mass mailing tool

2013-03-28 Thread Carlos Daniel Ruvalcaba Valenzuela
pyramid_mailer plus any queueing tool (like celery), I tried something similar once and works fine (until you start getting blacklisted that is :-)) Regards, Carlos Ruvalcaba On Thu, Mar 28, 2013 at 9:14 AM, tonthon tontho...@gmail.com wrote: Hi, We're looking for a good mass mailing tool ( not spam

Re: pylons + nginx error 404 not found for all styles, scripts, images

2012-11-17 Thread Carlos Daniel Ruvalcaba Valenzuela
The answer is simple, your current setup is not serving any css, js or any other static files, set nginx to serve your static files folder. For example, add inside your server section: location /static { alias /path/to/my/static/files; expires 1d; } On Sat, Nov

Re: recommend a wysiwyg editor for a pyramid project?

2012-11-07 Thread Carlos de la Guardia
Deform uses TinyMCE for the RichText widget. Carlos de la Guardia On Wed, Nov 7, 2012 at 5:28 PM, Chris Withers ch...@simplistix.co.uk wrote: On 07/11/2012 23:20, Chris Withers wrote: On 07/11/2012 21:36, Marten wrote: I would be astounded so see something like that. I'm afraid you have

Re: happy weekend, and welcome to my RTFM question about view_config and permissions

2012-06-20 Thread Carlos de la Guardia
a been through this experience, do you still think this would be a good thing for Pyramid to have? Thanks, Carlos de la Guardia On Mon, May 28, 2012 at 11:26 AM, Michael Bayer mike...@zzzcomputing.com wrote: I've made a 40% effort to figure this one out but at least I've figured many other

Re: happy weekend, and welcome to my RTFM question about view_config and permissions

2012-05-28 Thread Carlos de la Guardia
require the 'access' permission. That's it. So, no view permission declarations, except one, but you get one less permission, so it sort of evens out. I hope this helps, Carlos de la Guardia On Mon, May 28, 2012 at 11:26 AM, Michael Bayer mike...@zzzcomputing.com wrote: I've made a 40% effort

Re: Turbogears to Pyramid

2012-02-01 Thread Carlos Daniel Ruvalcaba Valenzuela
it to another framework (for whatever the reason, also saw your post on the django list) you may want to use something like Akhet or RapidGuiza which are pyramid templates which works very similar to TG2 from the controller point of view. Regards, Carlos Ruvalcaba. -- You received this message because you

Re: Pyramid Integration with Celery

2012-01-28 Thread Carlos Daniel Ruvalcaba Valenzuela
Nice, this should really help ease development with celery and pyramid, a pypi release should speedup testing also making the license terms clearer would be good also :) Overall nice work, I will test it soon on a small app I have on production to see how it handles. Regards, Carlos Daniel

Re: Pyramid transactions and other request lifecycle events

2011-08-01 Thread Carlos de la Guardia
You can register a callback that is called after the transaction ends, so that the logging can be done there. See this page, near the end of the linked section: http://zodb.readthedocs.org/en/latest/transactions.html#repoze-tm2-transaction-aware-middleware-for-wsgi-applications Carlos de la

Re: Help with Authentication and Authorization

2011-07-11 Thread Carlos de la Guardia
-Documentation/tree/master/code/conflict/birdie Carlos de la Guardia On Mon, Jul 11, 2011 at 2:09 PM, gostones gosto...@gmail.com wrote: Hi everyone, I am new to python and web development and is trying to learn through building an application through pyramid. I am currently trying to work on a basic

short tutorial on using Pyramid with repoze.tm2 for transaction support

2011-04-05 Thread Carlos de la Guardia
Pyramid introductory tutorial. http://readthedocs.org/docs/zodb-documentation/latest/transactions.html#using-transactions-in-web-applications Carlos de la Guardia -- You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email

Re: Good hosting recommendations?

2011-03-29 Thread Carlos de la Guardia
Hi, another Linode happy customer here. Carlos de la Guardia On Tue, Mar 29, 2011 at 6:17 PM, guillermo cruz webjunki...@gmail.com wrote: I also agree that Linode is great. And the support team is awesome. One time Hotmail ask them to send an email to confirm I owned an IP address

Re: Akhet status (Pyramid newbies and Carlos d.l.G., read me)

2011-03-16 Thread Carlos de la Guardia
Mike, do you have a planned date for the first release of Akhet? We have been working on the landing page for Pyramid docs and I think it would make a lot of sense to mention it there. Carlos de la Guardia On Mon, Mar 14, 2011 at 10:31 PM, Mike Orr sluggos...@gmail.com wrote: I'm on IRC now

Re: Akhet status (Pyramid newbies and Carlos d.l.G., read me)

2011-03-11 Thread Carlos de la Guardia
Hi Mike, this is great, thank you very much. I'm going to give this a big space in my talk. I hope you are feeling much better. Carlos de la Guardia On Thu, Mar 10, 2011 at 11:41 PM, Mike Orr sluggos...@gmail.com wrote: Here's a quick status report on Akhet and my Pyramid tutorials

Questions for Pyramid Talk at PyCon

2011-03-09 Thread Carlos de la Guardia
, recommended packages, etc. If there's any question that you would like me to cover, I'd really appreciate it. Thanks, Carlos de la Guardia -- 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: Pyramid/Pylons Project status update...

2011-02-24 Thread Carlos de la Guardia
I will also give a talk at PyCon about frequent pyramid questions we see on IRC, mailing lists and reddit. Carlos de la Guardia On Thu, Feb 24, 2011 at 5:12 PM, Chris McDonough chr...@plope.com wrote: Hi folks, I just wanted to jot all this stuff down to transmit to folks, otherwise I

Re: Can not install Pylons on Windows

2010-07-08 Thread Julio Napurí Carlos
Hi Which version of Python are you using ? You should use 2.5 I think. -- You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-disc...@googlegroups.com. To unsubscribe from this group, send email to

Re: Auth - django-authopenid alternative

2009-05-11 Thread Julio Napurí Carlos
I am thinking to use out of the box solution... Anyway I will test both options to create these and use openid-selector. Thanks guys Both solutions are useful -- Best Regards /Saludos Blog: http://napuri.com.ar/ --~--~-~--~~~---~--~~ You received this message

Auth - django-authopenid alternative

2009-05-10 Thread Julio Napurí Carlos
Hi I like to use this [1]. Obviously in Pylons. Somebody know a django-authopenid alternative for Pylons ? [1] http://openid-example.e-engura.org/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss

Re: Routes problem (not thread safe?)

2009-02-10 Thread carlos
Thank you Philip, I've updated to routes 1.10.3 (it needs WebOb so I've installed it too) and at the moment it works fine. Carlos. On 9 feb, 21:16, Philip Jenvey pjen...@underboss.org wrote: On Feb 9, 2009, at 2:47 AM, carlos wrote: Hi, I'm using Pylons 0.9.6.1, with Routes 1.7.3

Routes problem (not thread safe?)

2009-02-09 Thread carlos
Hi, I'm using Pylons 0.9.6.1, with Routes 1.7.3 and Python 2.5. I'm testing an application which uses AJAX to display information, and it makes many request asynchronously. It works fine, but some times randomly the server raises an exception in a GET request, always the same exception at

Re: Pylons widgets...?

2008-12-18 Thread Julio Napurí Carlos
Uhmm what about rum [1] and RumAlchemy ? Some cool things you might overlook http://rumdemo.toscawidgets.org/ [1]http://toscawidgets.org/documentation/rum/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Problem with pylons install on win XP 32

2008-12-18 Thread Julio Napurí Carlos
You should work with Python 2.5, or maybe you could use 0.9.7rc --~--~-~--~~~---~--~~ 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

link_to_remote update on failure

2006-05-08 Thread Carlos
content to be displayed in error element. The abort() method in mighty m object discards the buffer contents, so it doesn't seem to be the answer. Thank you in advance. Regards, Carlos --~--~-~--~~~---~--~~ You received this message because you are subscribed