Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restructuring SQLForm GUI API (qualipro) #148

Open
wants to merge 37 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b7a213f
zmssqldb.zmi_filter_form
zmsdev May 15, 2023
c88315e
zmssqldb.zmi_filter_form
zmsdev May 15, 2023
8db78fc
remove unused code
zmsdev May 15, 2023
5ea40bf
type fix, whitespace
drfho May 15, 2023
a6fee55
fixing/reconstructing ZMI
Jun 1, 2023
85ff82a
extracting main ZMI
zmsdev Jun 14, 2023
fd78085
fixed filename
Jun 14, 2023
71b4b74
request.form handling
zmsdev Jun 14, 2023
d22234e
fix eventually missing manage_lang
Jun 15, 2023
880ddc9
replace deprecated js-substr with substring
zmsdev Jun 15, 2023
1df706e
readme
zmsdev Jun 20, 2023
ef0dba1
Merge branch 'main' into fb_qualipro
drfho Jun 20, 2023
3a33491
minor changes readme
Jun 20, 2023
12cf125
zmssqldb.zmi_filter_form
zmsdev May 15, 2023
4f976c9
zmssqldb.zmi_filter_form
zmsdev May 15, 2023
c7957d8
remove unused code
zmsdev May 15, 2023
2cbc7ca
type fix, whitespace
drfho May 15, 2023
3806c34
fixing/reconstructing ZMI
Jun 1, 2023
6eaa05a
extracting main ZMI
zmsdev Jun 14, 2023
7411647
fixed filename
Jun 14, 2023
b3f79e6
request.form handling
zmsdev Jun 14, 2023
6a4eb6e
fix eventually missing manage_lang
Jun 15, 2023
e917484
replace deprecated js-substr with substring
zmsdev Jun 15, 2023
0530b25
readme
zmsdev Jun 20, 2023
c5028dc
Merge branch 'fb_qualipro' of https://github.com/zms-publishing/ZMS i…
zmsdev Jun 21, 2023
f5749b4
fixes for ZSQLiteDA
zmsdev Jun 21, 2023
8242175
update doc
zmsdev Jun 21, 2023
76e849b
update doc
zmsdev Jun 21, 2023
baced4a
update doc
zmsdev Jun 21, 2023
9f0e218
update doc
zmsdev Jun 22, 2023
a699b5d
update doc
zmsdev Jun 22, 2023
df1d3ab
Merge branch 'main' into fb_qualipro
drfho Jul 3, 2023
d91980d
fixed missing preview var in request
Jul 4, 2023
e91499a
Merge branch 'main' into fb_qualipro
drfho Aug 15, 2023
0f82ee4
Merge branch 'main' into fb_qualipro
drfho Aug 15, 2023
12ece12
Merge branch 'main' into fb_qualipro
drfho Dec 13, 2024
5781f17
added error 'Details tablename not found'
Dec 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Products/zms/ZMSZCatalogConnector.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def search_xml(self, REQUEST, RESPONSE):
xml += '<lst name="responseHeader">'
xml += '<int name="status">%i</int>'%status
xml += '<lst name="params">'
for key in REQUEST.form.keys():
for key in REQUEST.form:
xml += '<str name="%s">%s</str>'%(key, standard.html_quote(REQUEST.form[key]))
xml += '</lst>'
xml += '</lst>'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<tal:block tal:define="global zmscontext options/zmscontext">
<tal:block tal:condition="python:zmscontext.getHistory()">
<script>
<!--
function showHistory(el) {
var v = $(el).val();
var version_nr = v.substring(0,v.indexOf(" "));
Expand Down Expand Up @@ -62,7 +61,6 @@
historyselect.prop("selectedIndex", 1);
}
});
-->
</script>
<input type="hidden" id="lang" name="lang" tal:attributes="value request/lang"/>
<select onchange="showHistory(this)">
Expand Down
Loading
Loading