Re: [pylons-devel] Re: pcreate: Uppercase version of the package name?

2014-11-28 Thread Torsten Irländer
2014-11-25 17:14 GMT+01:00 Jonathan Vanasco jonat...@findmeon.com: I would create an Issue and propose it on the Github. One of the core maintainers will say something like Great!, Maybe... or No way. I've seen (and personally gotten) a lot more No Way than Okay for proposed changes. This

Re: [pylons-devel] Re: pcreate: Uppercase version of the package name?

2014-11-25 Thread Michael Merickel
AFAIK all of the things you are asking for are possible using the (documented) scaffolding API. You basically just subclass ``PyramidTemplate`` and override ``pre`` to mutate the ``vars`` and add what you like. http://docs.pylonsproject.org/projects/pyramid/en/1.5-branch/narr/scaffolding.html

[pylons-devel] Re: pcreate: Uppercase version of the package name?

2014-11-20 Thread Jonathan Vanasco
You might be able to use the Project variable, if you pass in a Capitalized form $ pcreate --scaffold starter Foo 'project': Foo, 'package': foo, Note that this doesn't Capitalize the name. it keeps it as-is: $ pcreate --scaffold starter FooBarBash 'project': FooBarBash, 'package':

[pylons-devel] Re: pcreate: Uppercase version of the package name?

2014-11-05 Thread Torsten Irländer
To be precise as the initial subject is wrong. I need the capitalized form of the package name. So the package name foo becomes Foo. Am Mittwoch, 5. November 2014 13:06:12 UTC+1 schrieb Torsten Irländer: Hi all, I am using scaffolds to create templates for application extensions. While