plone

The Holy Grail of Plone workflow

人盡茶涼 提交于 2019-12-03 12:53:07
问题 We are in the process of implementing a Plone CMS as a repository for ISO9001-documents. ISO demands a certain amount of logging, as anyone familiar with the standard probably knows :-) For the sake of flexibility we would like to incorporate, in no specific order: New contenttypes : necessary to incorporate the different documents that can arise in an enterprise Versioning: to show that our documents are always up to date, and to show which changes were made vs a previous version of the same

User-friendly error pages from Varnish

邮差的信 提交于 2019-12-03 11:55:58
问题 We are using Varnish at the front of Plone. In the case Plone goes down or serves an internal error we'd like to show a user-friendly static HTML page which some CSS styling + images. ("The server is being updated page") How to configure Varnish to do this? 回答1: You can customize the synthetic page being served on a vlc_error. The default.vcl configuration file already shows how to do this, by serving the famous "Guru Meditation" error page (ahh, those wonderful Amiga days). An example

Plone & CGI single-sign-on using mod_auth_tkt

对着背影说爱祢 提交于 2019-12-03 09:09:01
A couple of questions have had answers suggesting making use of mod_auth_tkt to allow Plone 4 ( Plone and Asp.Net Integration , Use Plone's authentication mechanism to login to other sites. ) to authenticate other web applications, and since I have a couple of CGIs that already jump through hoops to authenticate via Plone, this seems ideal for my purpose. However, I can't seem to find much documentation about using mod_auth_tkt in general, and absolutely none about using it with Plone. I have the following problems. mod_auth_tkt expects a shared "secret". mod_auth_tkt's examples show Apache

Error notification on plone 4

好久不见. 提交于 2019-12-03 07:02:56
I just want to have email notification when an error is declared in plone 4. Any ideas of product or any "how-to" ? Thanks You can easily configure the built-in email notification for Zope, but we found that adding the mailinglogger package makes the emails a lot more managable. The package adds: customisable and dynamic subject lines for emails sent emails sent with configurable headers for easy filtering flood protection to ensure the number of emails sent is not excessive support for SMTP servers that require authentication configurable log entry filtering The plone.recipe.zope2instance

How do I use easy_install and buildout when pypi is down?

非 Y 不嫁゛ 提交于 2019-12-03 06:51:10
问题 I am using buildout to automatically download and setup the many dependencies of my Plone installation. buildout more or less uses easy_install to download and install a bunch of Python eggs. This usually works, but it doesn't work if any of the dependencies cannot be downloaded or if I want buildout to find an internal package not appropriate for pypi. How can I set up my own local version of pypi to automatically mirror the packages I need? Will it still depend on third-party servers for

The Holy Grail of Plone workflow

删除回忆录丶 提交于 2019-12-03 03:15:11
We are in the process of implementing a Plone CMS as a repository for ISO9001-documents. ISO demands a certain amount of logging, as anyone familiar with the standard probably knows :-) For the sake of flexibility we would like to incorporate, in no specific order: New contenttypes : necessary to incorporate the different documents that can arise in an enterprise Versioning: to show that our documents are always up to date, and to show which changes were made vs a previous version of the same document Working copy support: so that a "published" document stays online while it is being edited

How do I use easy_install and buildout when pypi is down?

不打扰是莪最后的温柔 提交于 2019-12-02 19:27:46
I am using buildout to automatically download and setup the many dependencies of my Plone installation. buildout more or less uses easy_install to download and install a bunch of Python eggs. This usually works, but it doesn't work if any of the dependencies cannot be downloaded or if I want buildout to find an internal package not appropriate for pypi. How can I set up my own local version of pypi to automatically mirror the packages I need? Will it still depend on third-party servers for packages that use pypi for their metadata but not their code? Here are instructions on how to setup your

Extending table columns in collection view in Plone 4

核能气质少年 提交于 2019-12-02 13:12:24
Collections provide an option to select columns to be display within the table view of collection. We are extending most content-types with two fields using archetypes.schemaextender: teaser image and teaser text. Is there a sane way to extend the list of available table columns? Is there a way to display the teaser text and teaser image inside the table view of the collection with out further customization? Is the logic of the table view flexible enough in order to support a schema extension? You might want to take a look at collective.formcriteria . I haven't polished it nearly enough and

Using LinguaPlone in Plone 4, the TinyMCE editor is not showing up

喜欢而已 提交于 2019-12-02 13:01:19
问题 I'm using LinguaPlone 4.1.3 with an instance of Plone 4.3 and upon hitting "Translate into..." and choosing one of the languages, on the following editing screen the TinyMCE editor does not show up. I'm able to switch to Plone output HTML in the dropdown menu there on the right, and it gives me just the HTML box. However, none of the options display the TinyMCE editor. When editing normal pages (i.e. not translated content), TinyMCE works fine — it's set as the default for the site, and also

plone change in code not visible in development site

核能气质少年 提交于 2019-12-02 10:24:13
I am very new to plone. I have a project folder in eclipse. I have imported it from the cvs project. I have zope as server and I start zope with ./bin/instance restart . When I make changes in my folder, I cannot see the changes in the development website. I can't seem to find what is happening. I even restarted zope after making changes in python. Can anyone help me with this? Make sure you start your Zope server with bin/instance fg , most likely the name of the script if you used the Plone universal installer buildout. To see changes in python code you'll either need to restart the server