This file is indexed.

/usr/share/zope/Products/ReplaceSupport/dtml/replaceForm.dtml is in zope-replacesupport 1.0.3-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
<dtml-var manage_page_header>
<dtml-var manage_tabs>

<P class="form-help">
Replace allows you to locate Zope objects and to search &amp; replace strings in those objects.
</P>

<FORM ACTION="manage_replaceResult" METHOD="GET">
<TABLE>
<TR>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <div class="form-label">
  Find objects of type:
  </div>
  </TD>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <div class="form-element">
  <SELECT NAME="obj_metatypes:list" SIZE="8" MULTIPLE>
  <OPTION VALUE="all" SELECTED> All types
<dtml-let sorted_meta_types="[]"
          handler_meta_types="getReplaceHandlerMetaTypes()">
  <dtml-in all_meta_types mapping>
  <dtml-call "sorted_meta_types.append(name)">
  </dtml-in>
  <dtml-call "sorted_meta_types.sort()">
  <dtml-in sorted_meta_types>
  <OPTION VALUE="<dtml-var sequence-item html_quote>"<dtml-if 
  "_['sequence-item'] not in handler_meta_types"> DISABLED</dtml-if>><dtml-var sequence-item>
  </dtml-in>
</dtml-let>
  </SELECT>
  </div>
  </TD>
</TR>

<TR>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <div class="form-label">
  with ids:
  </div>
  </TD>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <INPUT TYPE="TEXT" NAME="obj_ids:tokens" SIZE="30">
  </TD>
</TR>

<TR>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <div class="form-label">
  replace the string:
  </div>
  </TD>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <INPUT TYPE="TEXT" NAME="obj_searchterm" SIZE="30">
  </TD>
</TR>

<TR>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <div class="form-label">
  with the string:
  </div>
  </TD>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <INPUT TYPE="TEXT" NAME="obj_replaceterm" SIZE="30">
  </TD>
</TR>

<TR>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <div class="form-label">
  modified:
  </div>
  </TD>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <div class="form-element">
  <SELECT NAME="obj_mspec">
  <OPTION VALUE="<"> before
  <OPTION VALUE=">"> after
  </SELECT> 
  </div>
  <INPUT TYPE="TEXT" NAME="obj_mtime" SIZE="22">
  </TD>
</TR>

<TR>
  <TD ALIGN="LEFT" VALIGN="TOP">
  </TD>
  <TD ALIGN="LEFT" VALIGN="TOP" nowrap>
  <div class="form-text">
  <INPUT TYPE="RADIO" NAME="search_sub:int" VALUE="0" id="sub0"> 
  <label for=sub0>Search only in this folder</label>
  <BR>
  <INPUT TYPE="RADIO" NAME="search_sub:int" VALUE="1" CHECKED id="sub1"> 
  <label for=sub1>Search all subfolders</a>
  </div>
  </TD>
</TR>

<TR>
  <TD ALIGN="LEFT" VALIGN="TOP">
  </TD>
  <TD ALIGN="LEFT" VALIGN="TOP">
  <div class="form-element">
  <INPUT class="form-element" TYPE="SUBMIT" NAME="btn_submit" VALUE="Replace">  
  </div>
  </TD>
</TR>
</TABLE>
</FORM>

<dtml-var manage_page_footer>