@@ -98,7 +98,7 @@ org.opengrok.indexer.web.Util"
98
98
response. sendError(HttpServletResponse . SC_NOT_FOUND );
99
99
return ;
100
100
}
101
- request. setAttribute(PageConfig . historyJspAttrName , hist);
101
+ request. setAttribute(PageConfig . HISTORY_JSP_ATTR_NAME , hist);
102
102
}
103
103
}
104
104
% >
@@ -109,7 +109,7 @@ include file="/httpheader.jspf"
109
109
% >
110
110
<%
111
111
{
112
- if ((request. getAttribute(PageConfig . historyJspAttrName )) != null ) {
112
+ if ((request. getAttribute(PageConfig . HISTORY_JSP_ATTR_NAME )) != null ) {
113
113
% >
114
114
<body >
115
115
<script type =" text/javascript" >/* <![CDATA[ */
@@ -124,7 +124,7 @@ include file="/httpheader.jspf"
124
124
}
125
125
}
126
126
{
127
- if (request. getAttribute(PageConfig . historyJspAttrName ) != null ) {
127
+ if (request. getAttribute(PageConfig . HISTORY_JSP_ATTR_NAME ) != null ) {
128
128
% >
129
129
<%@include file =" /pageheader.jspf" %>
130
130
<%
@@ -136,7 +136,7 @@ include file="/httpheader.jspf"
136
136
String path = cfg. getPath();
137
137
138
138
History hist;
139
- if ((hist = (History ) request. getAttribute(PageConfig . historyJspAttrName )) != null ) {
139
+ if ((hist = (History ) request. getAttribute(PageConfig . HISTORY_JSP_ATTR_NAME )) != null ) {
140
140
141
141
int startIndex = cfg. getStartIndex();
142
142
int max = cfg. getMaxItems();
@@ -155,7 +155,7 @@ include file="/httpheader.jspf"
155
155
}
156
156
}
157
157
{
158
- if (request. getAttribute(PageConfig . historyJspAttrName ) != null ) {
158
+ if (request. getAttribute(PageConfig . HISTORY_JSP_ATTR_NAME ) != null ) {
159
159
% >
160
160
<% @
161
161
@@ -170,7 +170,7 @@ include file="/minisearch.jspf"
170
170
String context = request. getContextPath();
171
171
String path = cfg. getPath();
172
172
History hist;
173
- if ((hist = (History ) request. getAttribute(PageConfig . historyJspAttrName )) != null ) {
173
+ if ((hist = (History ) request. getAttribute(PageConfig . HISTORY_JSP_ATTR_NAME )) != null ) {
174
174
RuntimeEnvironment env = cfg. getEnv();
175
175
String uriEncodedName = cfg. getUriEncodedPath();
176
176
Project project = cfg. getProject();
0 commit comments