From b69419b955a15bdee062fba4808205b0b2037701 Mon Sep 17 00:00:00 2001 From: EEA Jenkins <2368628+eea-jenkins@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:21:45 +0200 Subject: [PATCH 1/4] Back to devel --- clms/addon/version.txt | 2 +- docs/HISTORY.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/clms/addon/version.txt b/clms/addon/version.txt index 40e6bd9..53e0645 100644 --- a/clms/addon/version.txt +++ b/clms/addon/version.txt @@ -1 +1 @@ -12.1 +12.2-dev0 diff --git a/docs/HISTORY.txt b/docs/HISTORY.txt index 35dad90..bc9c999 100644 --- a/docs/HISTORY.txt +++ b/docs/HISTORY.txt @@ -1,6 +1,9 @@ Changelog ========= +12.2-dev0 - (unreleased) +--------------------------- + 12.1 - (2024-11-21) --------------------------- * Change: Refs #272346 - Find unused images script. From d95d771c1593162c6e24295cdf2a6f0d5e17779c Mon Sep 17 00:00:00 2001 From: GhitaB Date: Thu, 28 Nov 2024 17:11:46 +0200 Subject: [PATCH 2/4] Refs #280497 - Add gopdb view. --- clms/addon/browser/admin.py | 8 ++++++++ clms/addon/browser/configure.zcml | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 clms/addon/browser/admin.py diff --git a/clms/addon/browser/admin.py b/clms/addon/browser/admin.py new file mode 100644 index 0000000..a34e7d3 --- /dev/null +++ b/clms/addon/browser/admin.py @@ -0,0 +1,8 @@ +from Products.Five.browser import BrowserView + + +class GoPDB(BrowserView): + def __call__(self): + import pdb + + pdb.set_trace() diff --git a/clms/addon/browser/configure.zcml b/clms/addon/browser/configure.zcml index 07d652a..d785486 100644 --- a/clms/addon/browser/configure.zcml +++ b/clms/addon/browser/configure.zcml @@ -18,4 +18,12 @@ permission="cmf.ModifyPortalContent" /> + + + From 6934cb8e944d37f624de670af92e148278f6e477 Mon Sep 17 00:00:00 2001 From: EEA Jenkins Date: Thu, 28 Nov 2024 17:42:10 +0200 Subject: [PATCH 3/4] Updated version to 12.2 --- clms/addon/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clms/addon/version.txt b/clms/addon/version.txt index 53e0645..5807e59 100644 --- a/clms/addon/version.txt +++ b/clms/addon/version.txt @@ -1 +1 @@ -12.2-dev0 +12.2 From 24d3c0ebd482b287adb5761ebfe85339426b495b Mon Sep 17 00:00:00 2001 From: EEA Jenkins Date: Thu, 28 Nov 2024 17:42:13 +0200 Subject: [PATCH 4/4] Updated changelog - removed develop information --- docs/HISTORY.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/HISTORY.txt b/docs/HISTORY.txt index bc9c999..78ed46e 100644 --- a/docs/HISTORY.txt +++ b/docs/HISTORY.txt @@ -1,8 +1,10 @@ Changelog ========= -12.2-dev0 - (unreleased) +12.2 - (2024-11-28) --------------------------- +* Change: Add gopdb view + [GhitaB] 12.1 - (2024-11-21) ---------------------------