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

[pull] main from geoserver:main #30

Merged
merged 2 commits into from
Jun 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ String getRequestXML() {

@Override
public void renderHead(IHeaderResponse response) {
super.renderHead(response);
response.render(
JavaScriptContentHeaderItem.forScript(
DemoRequestsPage.demoRequestsJavascript, null));
Expand Down
2 changes: 1 addition & 1 deletion src/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<wicket.version>7.18.0</wicket.version>
<ant.version>1.10.11</ant.version>
<httpclient.version>4.5.14</httpclient.version>
<imageio-ext.version>1.4.11</imageio-ext.version>
<imageio-ext.version>1.4.12</imageio-ext.version>
<jaiext.version>1.1.25</jaiext.version>
<java.awt.headless>true</java.awt.headless>
<sun.java2d.d3d>true</sun.java2d.d3d>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ public DemoRequestsPage(PageParameters parameters) {

@Override
public void renderHead(IHeaderResponse response) {
super.renderHead(response);
response.render(JavaScriptContentHeaderItem.forScript(demoRequestsJavascript, null));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ String getRequestXML() {

@Override
public void renderHead(IHeaderResponse response) {
super.renderHead(response);
response.render(
JavaScriptContentHeaderItem.forScript(
DemoRequestsPage.demoRequestsJavascript, null));
Expand Down
Loading