python:grok_and_zope.app.undo
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen RevisionVorhergehende Überarbeitung | |||
python:grok_and_zope.app.undo [2012/09/12 14:08] – jenad | python:grok_and_zope.app.undo [2017/11/15 09:09] (aktuell) – gelöscht jenad | ||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
- | |||
- | |||
- | ====== What: undo transactions in grok ====== | ||
- | |||
- | |||
- | Problem: zope.app.undo does not work with ZODB-3.10 and grok-1.10.3 | ||
- | |||
- | |||
- | Solutions (all these are workarounds, | ||
- | |||
- | ==== 1. MenuItem Error ==== | ||
- | |||
- | |||
- | as result of adding zope.app.undo to setup.py following error appears: | ||
- | |||
- | ConfigurationError: | ||
- | |||
- | |||
- | edit | ||
- | |||
- | zope.app.undo-3.5.0-py2.7.egg/ | ||
- | | ||
- | and delete the menuItem-Sections; | ||
- | |||
- | ==== 2. ZODB has changed the api ==== | ||
- | |||
- | |||
- | Error after submit the transaction ID's: | ||
- | |||
- | " | ||
- | |||
- | |||
- | The undo API has changed with ZODB 3.10. As noted in the changelog: | ||
- | | ||
- | "The API for undoing multiple transactions has changed. To undo | ||
- | multiple transactions in a single transaction, | ||
- | transaction identifiers to a database' | ||
- | database' | ||
- | raises an exception." | ||
- | | ||
- | Your code calls undo multiple times, and needs to be changed accordingly. | ||
- | |||
- | |||
- | edit in | ||
- | |||
- | zope.app.undo-3.5.0-py2.7.egg/ | ||
- | | ||
- | the last def: | ||
- | |||
- | |||
- | old: | ||
- | <code python> | ||
- | def _undo(self, ids): | ||
- | |||
- | for id in ids: | ||
- | self.__db.undo(id) | ||
- | transaction.get().setExtendedInfo(' | ||
- | </ | ||
- | |||
- | new: | ||
- | |||
- | <code python> | ||
- | def _undo(self, ids): | ||
- | |||
- | self.__db.undoMultiple(ids) | ||
- | transaction.get().setExtendedInfo(' | ||
- | </ | ||
- | |||
- | ==== Demo grok View ==== | ||
- | |||
- | <code python> | ||
- | from zope.app.undo import ZODBUndoManager | ||
- | from zope.app.undo.interfaces import IUndoManager | ||
- | from zope.component import getUtility | ||
- | from zope.interface import Interface | ||
- | |||
- | class Undo(grok.View): | ||
- | grok.context(Interface) | ||
- | grok.require(' | ||
- | |||
- | |||
- | def getPrincipalTransactions(self, | ||
- | context = None | ||
- | if not showall: | ||
- | context = self.context | ||
- | undo = getUtility(IUndoManager) | ||
- | return undo.getPrincipalTransactions(self.request.principal, | ||
- | | ||
- | |||
- | </ | ||
- | |||
- | and the undo.pt: | ||
- | |||
- | <code html> | ||
- | <html i18n: | ||
- | < | ||
- | |||
- | <form action=" | ||
- | |||
- | <div> | ||
- | <tal:var define=" | ||
- | | ||
- | | ||
- | /> | ||
- | </ | ||
- | |||
- | <div> | ||
- | <span tal: | ||
- | <p> | ||
- | <span i18n: | ||
- | regardless of location.</ | ||
- | i18n: | ||
- | </p> | ||
- | </ | ||
- | |||
- | <span tal: | ||
- | <p> | ||
- | <span i18n: | ||
- | from this location.</ | ||
- | i18n: | ||
- | </p> | ||
- | </ | ||
- | </ | ||
- | |||
- | <div> | ||
- | <table style=" | ||
- | |||
- | <tr> | ||
- | < | ||
- | <th i18n: | ||
- | <th i18n: | ||
- | <th i18n: | ||
- | <th i18n: | ||
- | <th i18n: | ||
- | </tr> | ||
- | |||
- | < | ||
- | | ||
- | | ||
- | <tr tal: | ||
- | ' | ||
- | |||
- | <td width=" | ||
- | <input type=" | ||
- | | ||
- | </td> | ||
- | |||
- | <td tal: | ||
- | < | ||
- | <tal:if condition=" | ||
- | i18n: | ||
- | </td> | ||
- | |||
- | <td> | ||
- | < | ||
- | < | ||
- | <tal:if condition=" | ||
- | not item.get(' | ||
- | i18n: | ||
- | </td> | ||
- | |||
- | <td> | ||
- | < | ||
- | <tal:if condition=" | ||
- | i18n: | ||
- | </td> | ||
- | |||
- | <td tal: | ||
- | ' | ||
- | tal: | ||
- | </td> | ||
- | |||
- | <td> | ||
- | < | ||
- | replace=" | ||
- | <tal:if condition=" | ||
- | i18n: | ||
- | </td> | ||
- | </tr> | ||
- | </ | ||
- | |||
- | </ | ||
- | </ | ||
- | |||
- | <p> | ||
- | <a tal: | ||
- | | ||
- | & | ||
- | < | ||
- | View <tal:num replace=" | ||
- | earlier transactions | ||
- | </ | ||
- | </a> | ||
- | </p> | ||
- | |||
- | <p> | ||
- | <a tal: | ||
- | | ||
- | | ||
- | < | ||
- | View <tal:num tal: | ||
- | later transactions | ||
- | </ | ||
- | & | ||
- | </a> | ||
- | </p> | ||
- | |||
- | <p> | ||
- | <input type=" | ||
- | | ||
- | </p> | ||
- | |||
- | < | ||
- | |||
- | </ | ||
- | </ | ||
- | </ | ||
- | |||
python/grok_and_zope.app.undo.1347451701.txt.gz · Zuletzt geändert: 2024/08/07 13:35 (Externe Bearbeitung)