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
0
votes
1 answer

Custom views for ATDocuments created through GenericSetup

I have a folderish ATDocument class create through generic setup, generic setup xml configuration file has the following view variables defined: TemplateFileName
Alex Volkov
  • 2,812
  • 23
  • 27
0
votes
0 answers

Exporting files from Plone using WebDAV

I have a Plone site with thousands of contracts in PDF I need to download. Now the problem is that if I connect to the portal using WebDAV and download it. I can download just about 1607 files, but there should be more of them! If I take a look at…
lmojzis
  • 551
  • 7
  • 17
0
votes
1 answer

System error with .cpt file Grok Framework

I don't know why this is happening. I'm getting to grips with the Grok framework. While following the tutorial I encountered this error. When using TAL:attributes to link to a CSS style sheet, the index page loads with a system error message. The…
adohertyd
  • 2,689
  • 19
  • 58
  • 78
0
votes
1 answer

Zope form : adding a button to automatically fill some fields

under Plone4/Zope3, I have a form to add a new object. I'd like to add a button after the first field, to do the following : - the user enters the value for the first field - he presses this new button - and the server will try to guess the…
Pixou
  • 1,719
  • 13
  • 23
0
votes
4 answers

How can I change the URL of an object serverd by Dexterity in Plone

I defined some content types based on Plone Dexterity, I want any content type has his own ID. So I used the zope.schema.Id . class IArticle(form.Schema, IImageScaleTraversable): """ Article """ form.model("models/article.xml") …
AiTine
  • 1
0
votes
1 answer

Change i18n_domain for Products.Five registered pages

It seems that one template from Products.Five (manage_interfaces) has a bad i18n markup, making interfaces name translatable. i18n domain is not defined, therefore the global one is used. I want to change the i18n domain for that page, but I don't…
Mihnea Simian
  • 1,093
  • 1
  • 7
  • 13
-1
votes
1 answer

ZODB Mountpoint broken?

ZODB Mountpoint distributed with Plone 4.1.2 always seems to create OFS.Folder even if the container-class is specified. Also getting a "KeyError: item already present wih same id" due to _setObject and _setOb both being called. Am trying to mount…
sureshvv
  • 4,234
  • 1
  • 26
  • 32
-1
votes
2 answers

Check in Zope if a Object / image is available / uploaded

im using zope2.10 with python and i would like to check if a image File is uploaded I am in my own Product and i have a path as string like: /Media/News/2010/image and i want to check if it is image.gif or image.jpg But i don't know how to check So…
Hackbard
  • 440
  • 1
  • 4
  • 19
-1
votes
1 answer

create another exact copy of a zope instance running along with data

Hi guys I'm quite new to zope and I have a situation where I have to clone the whole zope instance running along with data. I have already tried copying Data.fs to new zope instance but it didn't work. The version of zope I'm using is quite old(Zope…
-1
votes
1 answer

Ploneboard conflict with AccessControl?

i’m trying to install the latest Ploneboard (v3.6) on a Plone 4.2 site, but getting the error The version, 2.13.11, is not consistent with the requirement, AccessControl>=3.0 i see that the most recent Ploneboard change log for this version…
rikb
  • 630
  • 5
  • 18
-1
votes
1 answer

Plone and dexterity custom index

I've created a custom folderish content type (bobo) using dexterity and a custom index (ibobo) in the catalog. I'm able to put images inside bobo with no problem. The problem is the images are being indexed in ibobo and I don't want this. The ibobo…
Ricardo R
  • 25
  • 2
-1
votes
1 answer

create an instance of one class from another class

I created browserView class named as "bdrMenuView" . It should be like "class bdrMenuView(BrowserView):" . and the class contains the method named as "createPictMenu" . The whole class should be class bdrMenuView(BrowserView): def…
Python Team
  • 1,143
  • 4
  • 21
  • 50
-1
votes
3 answers

My server has available memory but my zope process seems to be "capping" at 3GB. Increasing cache-size is not helping anymore

The screenshot below shows the change in cache related state of my zope instance over time (3 months so far). We've increased the cache size several times over the period from 3000 all the way up to 6000000. With the exception of one recent blip, we…
David Bain
  • 2,439
  • 1
  • 17
  • 19
-1
votes
1 answer

Why can't I import this Zope component in a Python 2.4 virtualenv?

I'm trying to install Plone 3.3rc4 with plone.app.blob and repoze but nothing I've tried has worked so far. For one attempt I've pip-installed repoze.zope2, Plone, and plone.app.blob into a virtualenv. I have this version of DocumentTemplate in the…
joeforker
  • 40,459
  • 37
  • 151
  • 246
-2
votes
1 answer

What does these tal:xxx commands do?

Can someone explain me what does these "tal" commands do within my html tags? I learnt they are text attribute language commands but not clear on what they do.
Your command returns:
Tania
  • 1,855
  • 1
  • 15
  • 38
1 2 3
49
50