Tag-Archiv "Pylons"

How to use Ext JS with Pylons and Mako

10. September 2009 | Ein Kommentar

ExtJS and AJAXIn this little tutorial I will show you how to use the Python web framework Pylons and the Mako template library with the cross-browser JavaScript framework Ext JS.

I will explain how to set up a complex layout (this means an Ext.Viewport) and how to dynamically load its contents and further functionality.

First of all, you need to set up Pylons and a create a new project. Let’s  name it “PylonsAndExt”. During setup, mako needs to be selected as our template engine. We do not require SQLAlchemy support…

» weiterlesen

THEMEN: (Web) Development, Ext JS, Pylons Web Framework

The Pylons Web Framework

26. April 2009 | Ein Kommentar

As described in one of my previous blog posts, I’ve got the chance to introduce Pylons to my web engineering class as part of my studies at the University of Western Sydney. Thus this blog post gives an overview of the Pylons web framework.

Pylons is an open source web framework written in Python. It uses the model view controller architecture, follows the approach of convention over configuration and puts emphasis on loose coupling and clean separation. This helps developers to quickly create sophisticated web applications without hiding what is really going on.1 In the following paper I will describe the way web applications have been developed in the past and what changes modern web frameworks have led to, especially Pylons.

» weiterlesen

THEMEN: (Web) Development, Pylons Web Framework

Introduction in Pylons in Web Engineering Class

9. April 2009 | Ein Kommentar

During my studies at UWS I’ve got the chance to introduce Pylons to our web engineering class. I plan to finish a short report, describing the advantages and the architecture of Pylons, until April 17th. The report will be available here after it has been marked. The topics the report will cover are described in a presentation I made with Google Docs:

THEMEN: (Web) Development, Pylons Web Framework

SSL-Zugriff auf Pylons (auf Paste HTTP Server) via Apache-Proxy

27. Dezember 2008 | keine Kommentare

Kürzlich stand ich vor der Herausforderung, den Datentransfer mit einer online auf einem Paste HTTP Server laufenden Pylons-Instanz mit SSL zu verschlüsseln.

Ich entschied mich für den Einsatz eines vorgeschaltenen Apache, wie ihn u.a. James Gardner im Kapitel “Authentication and Authorization” seines kürzlich erschienenen Buches The Definitive Guide to Pylons beschreibt. Da Jamens Gardners Ausführungen jedoch nicht umfassend genug sind und ich kein geeignetes Tutorial habe finden können, möchte ich hier knapp zusammenfassen, wie der Zugriff auf Pylons (Version 0.9.7) auf einem Paste HTTP Server bei einem bereits installierten SSL-Zertifikat (hierfür gibt es genügend Tutorials…) durch den Einsatz eines Apache-Proxy auf SSL beschränkt werden kann.

» weiterlesen

THEMEN: (Web) Development, Pylons Web Framework