Commit af69a549 authored by Amos Latteier's avatar Amos Latteier

Fixed a find support bug which caused find permissions not to get correctly...

Fixed a find support bug which caused find permissions not to get correctly registered. Also fixed a find frame URL bug that became apparent after fixing the first bug.
parent 3e74d5f0
......@@ -83,7 +83,7 @@
#
##############################################################################
__doc__="""Principia Find support"""
__version__='$Revision: 1.11 $'[11:-2]
__version__='$Revision: 1.12 $'[11:-2]
import sys, os, string, time, Globals, ExtensionClass
......@@ -265,3 +265,7 @@ def absattr(attr):
def p_name(name):
return '_' + string.translate(name, name_trans) + '_Permission'
Globals.default__class_init__(FindSupport)
......@@ -4,12 +4,12 @@
</HEAD>
<FRAMESET ROWS="52%,*">
<!--#if cv_ffaf-->
<FRAME SRC="manage_findAdv" NAME="findForm"
<FRAME SRC="<dtml-var URL1>/manage_findAdv" NAME="findForm"
<!--#else-->
<FRAME SRC="manage_findForm" NAME="findForm"
<FRAME SRC="<dtml-var URL1>/manage_findForm" NAME="findForm"
<!--#/if-->
MARGINWIDTH="2" MARGINHEIGHT="2" SCROLLING="auto">
<FRAME SRC="manage_findResult" NAME="findResult"
<FRAME SRC="<dtml-var URL1>/manage_findResult" NAME="findResult"
MARGINWIDTH="2" MARGINHEIGHT="0" SCROLLING="auto">
</FRAMESET>
<NOFRAMES>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment