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. ...

learn more… | top users | synonyms

-3
votes
0answers
35 views

I have this scenario: [closed]

I am working on a web app and trying to code a form with two dropdown lists. The list in the second dropdown will be dependent on the selection from the first one. The task itself isn’t too ...
1
vote
1answer
38 views

Override the main_template.pt without z3c.jbot

I want to override the original main_template of Plone without using z3c.jbot, only using ZCML directives (browser:page?). Is there a way to override a default Plone4 template only using ZCML?
1
vote
1answer
35 views

dynamicly fill table using zpt and ajax as update

I'm creating a webproject in pyramid where I'd like to update a table every few secondes. I already decided to use ajax, but I'm stuck on something. On the client side I'm using the following code: ...
1
vote
1answer
35 views

What are the differences between .cpt templates and .pt templates?

What are the differences between .cpt templates and .pt templates in Plone? Are there any?
0
votes
0answers
15 views

Call Stored Procedure (mysql) in a ZSQL Method (Zope)

I would like to known how to call my stored procedure in a ZSQL Method in Zope : CALL pivoty(); SELECT * FROM TableTemp I have this error : ProgrammingError: (1064, "You have an error in your SQL ...
4
votes
2answers
40 views

What are the differences among PloneTestCase, plone.testing and plone.app.testing packages?

What are the differences among PloneTestCase, plone.testing and plone.app.testing packages? By the way, is PloneTestCase not recommended for testing new Plone 4 products?
1
vote
1answer
28 views

How is zope 3 view security handled in Plone

When one registers a view in ZCML like: <browser:page for="*" name="reporter" class=".reporter.report_form_frame" permission="cmf.SetOwnPassword" /> In which point of ...
0
votes
1answer
36 views

Missing Plone 4.3 resource: bbb-kss.css

This isn't an error, per se, but I saw it on a shiny new install of Plone 4.3 and couldn't find anything on Google about it. Is this normal? Is the link incorrect? Will this affect anything? Thanks. ...
1
vote
1answer
38 views

get the index of a tal:repeat in another tal:repeat function

As you can see I have 3 lists: Procedur_Headers, Diagnoses and List_Procedur. Procedur_headers gives the headers of my tabels, Diagnoses gives the specific id of a procedure and List_Procedur is a ...
0
votes
1answer
47 views

How to disable indexing in plone?

The data.fs is behaving weird and its size is getting increased everyday by 5-6% without much addition of content. I want to stop indexing. I tried removing indexes from the portal_catalog but site ...
2
votes
1answer
11 views

Issue with zope.component subscriber adapters adapting multiple objects

Given the following code: from zope.component import getGlobalSiteManager, adapts, subscribers from zope.interface import Interface, implements class A(object): pass class B(object): pass class ...
1
vote
2answers
92 views

User edits only its own post.Using Plone permisisons

I have a Plone website and create a menu item. In the sharing tab I add each user that can post a topic. How can I prevent that user1 edits posts owned by user2? Currently user1 can edit user2 ...
0
votes
2answers
53 views

Synchronizing Plone 4 sites

I'm using Plone 4 for my sites and I was wondering if there is a way to synchronize two plone sites i.e. be able to synchronize my development site with my production site. I have looked at Zsyncer ...
1
vote
1answer
32 views

Adding an event notifier, preferred practice

I want to have an event fired on plone.app.blob.field.BlobField.index_html so that I can set up a subscriber to listen for it. The subscriber is no problem but obviously plone.app.blob is not my code, ...
2
votes
1answer
63 views

Plone upgrade from Ubuntu 8.04 to Ubuntu 12.04

I'm having some difficulty upgrading my Plone install to 4.2.5. The old Plone/zope install was running on Ubuntu 8.04. I upgraded the OS to 12.04, and reinstalled plone and zope. I followed the ...
0
votes
0answers
21 views

Setting multiple cookies with Safari

In a Zope Website, I'm trying to set multiple cookies ad once: for lang in languages: context.REQUEST.RESPONSE.setCookie('myCookie_' + lang, lang, expires=expires, path=lang + '/myPath') ...
2
votes
1answer
42 views

How can I override an already overriden template by jbot?

I'm making a Plone theme that uses plonetheme.bootstrap as base skins. I want to customize the portaltab viewlet, so I use plone.app.themeplugin's override plugin and add my ...
0
votes
1answer
56 views

Using collective.geo.behaviour and dexterity cause site failure

I have a strange problem when I attempt to use collective.geo.behavior with my dexterity content type (named profilmembre). I used the filesystem way to create content type (not TTW). Without ...
1
vote
1answer
65 views

How to get a SQLAlchemy session managed by zope.transaction that has the same scope as a http request but that does not close automatically on commit?

I have a Pyramid web application with some form pages that reads data from database and write to it as well. The application uses SQLAlchemy with a PostgreSQL database and here is how I setup the ...
0
votes
0answers
59 views

Ajax response text, generated by Zope, doesn't reach the client in some cases

I have a Zope/Plone server which has a browser (let's call it thebrowser) which sends signed requests to a ReSTful web service, receives XML, transforms it to HTML and delivers it to the client via ...
2
votes
1answer
26 views

Zope (ZPT) overlapping tags

I try to create an open div tag condition and close a div tag in another condition with TAL in a Zope Page Template but I'm not allowed to overlap tags. Here is my code : <div ...
1
vote
1answer
21 views

python error in zope- Prints, but never reads 'printed' variable

Im new to python and zope. In the ZMI I have created a new python script with the following code: the_message = 'hello there human' print the_message I am unable to save the file as it gives the ...
0
votes
3answers
89 views

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 ...
0
votes
3answers
74 views

Looping through broken objects in Plone

I have a couple of broken objects that I wish to loop through in python script. My use case is as follows: I have renamed my custom product from my.oldproduct to my.newproduct. This has caused the ...
1
vote
0answers
153 views

Custom font doesn't work in IE8 in Zope/Plone

I'm making a Web Portal using Zope/Plone4 CMS. Well, I used @font-face to declare the typography for headings. The code and font are from Font-squirrel. I made the website in local machine (without ...
1
vote
1answer
54 views

Running Plone subscriber events asynchronously

In using Plone 4, I have successfully created a subscriber event to do extra processing when a custom content type is saved. This I accomplished by using the ...
3
votes
2answers
51 views

What dependencies listed by z3c.dependencychecker should I must not include in my package?

I'm using z3c.dependencychecker as a helper tool to list the dependencies of my Plone packages. Someone told me the other day that I should not include all of them because some, like OFS and ...
0
votes
1answer
47 views

Configuration error running Zope: No database configured

I received the following error when I try to start Zope with the command after trying to install the add-on CalendarX. I have just modified the buildout.cnf at /zinstance directory and ran the ...
0
votes
1answer
101 views

Executing random python scripts Zope/Plone using condition rules

I am currently working on adding some features to a plone website and I would like to be able to run a python script using content rules. For example, I've written an article and I want to publish it ...
0
votes
1answer
35 views

How to fire an event after setting local roles

I'd like to attach the firing of an event with the "manage_setLocalRoles" method. Like this: def send_participation_request(self): review_state = self.portal_workflow.getInfoFor(self.context, ...
2
votes
0answers
62 views

Restrict upload of file types for Plone authors

Is there a way to restrict the upload of certain filetypes by Plone authors eg an upload filter banning say *.exe etc? Also is it possible to add a TinyMCE restriction like this: ...
2
votes
2answers
96 views

Plone 3.1.2 - TypeError in ATDocument.getText() method

My task is to unload content from a Plone 3.1.2 website and load information about the content to an SQL database + file system I've recreated the website, got access to ZODB and recreated object ...
2
votes
1answer
59 views

Managing Plone vocabularies through the web

I am currently working on a Plone project with several custom content types. These content types have several fields that in turn fetch their values from vocabularies. Currently, I've just hard coded ...
2
votes
1answer
69 views

Overriding transmogrifier:registerConfig without using overrides.zcml

I am using quintagroup.transmogrifier and I'd like to provide my on 'import.cfg' pipeline. Normally, I would put something like this in overrides.zcml: <include package="collective.transmogrifier" ...
3
votes
2answers
87 views

DetachedInstanceError when creating Pyramid Session with SQLAlchemy

I wrote my own implementation of the ISession interface of Pyramid which should store the Session in a database. Everything works real nice, but somehow pyramid_tm throws up on this. As soon as it is ...
0
votes
1answer
22 views

Is there a ZODB hook for object changes post-commit?

How can I setup hooks that fire on ZODB object changes post-commit? I can setup handlers for IObjectWillBeMovedEvent and IObjectWillBeAddedEvent, but these fire immediately on object creation. Is ...
0
votes
1answer
31 views

How to set HTTP method with ZPublisher.Client.call?

I've tried calling Zope 2.10.9's ZPublisher.Client.call with the method argument to set the HTTP method (GET, POST, etc.), but it's not working as expected: It always sends a POST request. If I don't ...
1
vote
2answers
33 views

How to unregister utility previously registered?

I would like to remove a previously registered utility, specifically, the portal-catalog utility registered by collective.indexing from my product. How do I go about this?
1
vote
1answer
76 views

Plone 4.2.4 shows incorrect local time/3.5 hours ahead

A fresh plone 4.2.4 install (Unified installer for Linux) writes wrong time for all Plone/Zope events. My timezone is set to Asia/Jerusalem and the time is set to "local PC time". Plone is ahead of ...
0
votes
0answers
62 views

Sharing content+functionality between two webpages

I'm currently working on migrating an old webpage (example.se) into an existing plone/zope installation (example.net). The "new old webpage" which should be integrated should: share the same ...
3
votes
1answer
43 views

Changing attributes in Zope templates

I'm writing a template for an object that contains files. I'm following the theme building blocks instructions. <a tal:attributes="href item/id">foo</a> That makes that the liks ...
1
vote
1answer
50 views

Prepend BOM to plone.namedfile field

I need to prepend the BOM to a NamedBlobFile field on my Dexterity type to make Windows users happy, but leave the file in blobstorage intact. What is the recommended way to hook into Zope's file ...
1
vote
2answers
88 views

How can I use zope.schema to group portal types into categories?

I need to create a Plone configlet that delivers this kind of structure: types = { 'News articles': ['NewsMediaType', 'News Item'], 'Images': ['Image'], 'Pages': ['Page'] } I made a ...
1
vote
0answers
123 views

sqlalchemy transaction does not rollback

For my integration test, I custom wrote the base class from unittest.TestCase. def initialize_sql(engine, dbsession): dbsession.configure(bind=engine) Base.metadata.bind = engine ...
1
vote
1answer
101 views

Zope page template metadata not being read in Products

My application runs on Zope 2.12.19 and Python 2.6.5. There is a page template file pagetemplate.pt with access restrictions defined in the pagetemplate.pt.metadata file. These access restrictions ...
1
vote
2answers
91 views

Javascript Variable Not Changed Outside of Function Scope

I have the following function: function loginStudent() { var advisorKEY = "<dtml-var expr="py_get_alias()">"; var studentKEY = "<dtml-var SID>"; var URL = ...
1
vote
2answers
92 views

Serving a Plone Subfolder on an Existing Website

I'm trying to serve a subfolder in a Plone site as part of an existing site. But when I do so certain features stop working e.g. the @@overview-controlpanel view is inaccessible. For example: The ...
1
vote
2answers
78 views

How can I insert JSON into a script tage in a zope chameleon template?

I am building a pyramid/python app where my view callable for a certain template passes in a value called data. This variable is an array in the form of [[[x1,y1,z1,],...],[[v1,v2,v3],...]] in my ...
1
vote
1answer
81 views

Code that sanitises user input in Plone

Where can I find, inside Plone or Zope, the code that sanitize text input from users? That kind of logic that can remove HTMLs, Javascripts and all kind of malicious or unwanted text. I want to do ...
0
votes
1answer
27 views

Handling traversal in Zope2 product

I want to create a simple Zope2 product that implements a "virtual" folder where a part of the path is processed by my code. A URI of the form /members/$id/view e.g. /members/isaacnewton/view ...

1 2 3 4 5 10