Skip to content

Commit

Permalink
Merge pull request #134 from eea/develop
Browse files Browse the repository at this point in the history
Add gopdb view
  • Loading branch information
GhitaB authored Nov 28, 2024
2 parents 19833f0 + 24d3c0e commit 8f5e993
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
8 changes: 8 additions & 0 deletions clms/addon/browser/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from Products.Five.browser import BrowserView


class GoPDB(BrowserView):
def __call__(self):
import pdb

pdb.set_trace()
8 changes: 8 additions & 0 deletions clms/addon/browser/configure.zcml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,12 @@
permission="cmf.ModifyPortalContent"
/>


<browser:page
name="gopdb"
for="*"
class=".admin.GoPDB"
permission="cmf.ManagePortal"
/>

</configure>
2 changes: 1 addition & 1 deletion clms/addon/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.1
12.2
5 changes: 5 additions & 0 deletions docs/HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

12.2 - (2024-11-28)
---------------------------
* Change: Add gopdb view
[GhitaB]

12.1 - (2024-11-21)
---------------------------
* Change: Refs #272346 - Find unused images script.
Expand Down

0 comments on commit 8f5e993

Please sign in to comment.