Questions tagged [zope]

Zope is an open source application server written in the Python programming language. It features a transactional object database (ZODB) which can store not only content and custom data, but also dynamic HTML templates, scripts, a search engine, and relational database (RDBMS) connections and code. It features a strong through-the-web development model, allowing you to update your web site from anywhere made possible by a tightly integrated security model.

It features a transactional object database () which can store not only content and custom data, but also dynamic HTML templates, scripts, a search engine, and relational database (RDBMS) connections and code.

It features a strong through-the-web development model, allowing you to update your web site from anywhere made possible by a tightly integrated security model.

Zope has been around for a long time; it saw it's first release in 1998. It was long regarded as the "killer app" of python, and many ideas and libraries that are now part of the Python core stem from Zope.

736 questions
-2
votes
2 answers

How to render a template page by calling its method from TAL portlet(@@manage-portlets)

How do I call a method which is in the filesystem from a TAL Portlet (made available by collective.portlet.tal)? This is how I did it: I defined a new BrowserView (createPictMenu.py in my case) and then registered it as the renderer for a new…
Nirmala Sudhir
  • 119
  • 1
  • 3
  • 13
1 2 3
49
50