Skip to content
This repository was archived by the owner on Jan 18, 2022. It is now read-only.

Commit 63b33ee

Browse files
Spring Operatorchristophstrobl
Spring Operator
authored andcommitted
#4 - URL Cleanup
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener). # Fixed URLs ## Fixed But Review Recommended These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended. * [ ] http://www.w3.org/TR/html4/loose.dtd (ReadTimeoutException) with 1 occurrences migrated to: https://www.w3.org/TR/html4/loose.dtd ([https](https://www.w3.org/TR/html4/loose.dtd) result SSLException). * [ ] http://github.com/neo4j-examples/spring-datastore-graph-imdb (301) with 1 occurrences migrated to: https://github.com/neo4j-examples/spring-datastore-graph-imdb ([https](https://github.com/neo4j-examples/spring-datastore-graph-imdb) result 404). * [ ] http://github.com/neo4j-examples/spring-datastore-graph-imdb/raw/master/doc/images/IMDB1.png (301) with 1 occurrences migrated to: https://github.com/neo4j-examples/spring-datastore-graph-imdb/raw/master/doc/images/IMDB1.png ([https](https://github.com/neo4j-examples/spring-datastore-graph-imdb/raw/master/doc/images/IMDB1.png) result 404). ## Fixed Success These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended. * [ ] http://wiki.neo4j.org/images/5/53/Imdb.screenshot.actor.png (301) with 2 occurrences migrated to: https://neo4j.com/docs/ ([https](https://wiki.neo4j.org/images/5/53/Imdb.screenshot.actor.png) result 200). * [ ] http://wiki.neo4j.org/content/IMDB_Example (301) with 1 occurrences migrated to: https://neo4j.com/docs/ ([https](https://wiki.neo4j.org/content/IMDB_Example) result 200). * [ ] http://jira.springframework.org/browse/ROO-909 with 2 occurrences migrated to: https://jira.springframework.org/browse/ROO-909 ([https](https://jira.springframework.org/browse/ROO-909) result 301). * [ ] http://springsource.com with 2 occurrences migrated to: https://springsource.com ([https](https://springsource.com) result 301). * [ ] http://www.imdb.com/interfaces with 1 occurrences migrated to: https://www.imdb.com/interfaces ([https](https://www.imdb.com/interfaces) result 301). * [ ] http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd with 1 occurrences migrated to: https://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd ([https](https://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd) result 302). # Ignored These URLs were intentionally ignored. * http://java.sun.com/JSP/Page with 97 occurrences * http://java.sun.com/jsp/jstl/core with 75 occurrences * http://java.sun.com/jsp/jstl/fmt with 3 occurrences * http://java.sun.com/jsp/jstl/functions with 58 occurrences * http://localhost:8080/imdb/setup.html with 2 occurrences * http://tiles.apache.org/tags-tiles with 2 occurrences * http://www.springframework.org/security/tags with 2 occurrences * http://www.springframework.org/tags with 74 occurrences * http://www.springframework.org/tags/form with 40 occurrences * http://www.w3.org/1999/xhtml with 1 occurrences
1 parent 38809ad commit 63b33ee

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

imdb/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
The IMDB Example Application for Neo4j written with Spring Datastore Graph
22
==========================================================================
33

4-
![Web UI](http://github.com/neo4j-examples/spring-datastore-graph-imdb/raw/master/doc/images/IMDB1.png)
4+
![Web UI](https://github.com/neo4j-examples/spring-datastore-graph-imdb/raw/master/doc/images/IMDB1.png)
55

66

77
This application serves as a boilerplate to illustrate the use of annotations to persist objects in Spring to Neo4j, along the lines of
@@ -41,11 +41,11 @@ This application serves as a boilerplate to illustrate the use of annotations to
4141

4242
Which produces a graph similar to
4343

44-
![Graph](http://wiki.neo4j.org/images/5/53/Imdb.screenshot.actor.png)
44+
![Graph](https://neo4j.com/docs/)
4545

4646

4747

48-
The documentation of the IMDB Example domain is found at [http://wiki.neo4j.org/content/IMDB_Example]
48+
The documentation of the IMDB Example domain is found at [https://neo4j.com/docs/]
4949

5050

5151
Run build and run the example:

imdb/src/main/java/org/neo4j/examples/imdb/parser/ImdbParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
/**
1313
* A <code>ImdbParser</code> can parse the movie and actor/actress lists from
14-
* the imdb text data (http://www.imdb.com/interfaces). It uses an
14+
* the imdb text data (https://www.imdb.com/interfaces). It uses an
1515
* {@link ImdbReader} forwarding the parsed information.
1616
*/
1717
public class ImdbParser {

imdb/src/main/webapp/WEB-INF/tld/spring-form.tld

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="ISO-8859-1" ?>
2-
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
2+
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" "https://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd">
33

44
<taglib>
55

imdb/src/main/webapp/jsp/head.jsp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
22
pageEncoding="ISO-8859-1"%>
3-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd">
44
<html>
55
<head>
66
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

imdb/src/site/apt/index.apt

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ The Neo4j - Datastore Graph IMDB Example
1717
* @EndNode - the end node for a @GraphRelationship.
1818

1919
In order to persist objects in Spring into Neo4j, simply do something like this (the full code is available over at the
20-
{{{http://github.com/neo4j-examples/spring-datastore-graph-imdb} Spring Datastore Graph IMDB example}}:
20+
{{{https://github.com/neo4j-examples/spring-datastore-graph-imdb} Spring Datastore Graph IMDB example}}:
2121

2222
%{source-code|snippet=MovieClass|file=src/main/java/org/neo4j/examples/imdb/domain/Movie.java}
2323

2424
and the Actor class,
2525

2626
%{source-code|snippet=ActorClass|file=src/main/java/org/neo4j/examples/imdb/domain/Actor.java}
2727

28-
This will produce something like {{{http://wiki.neo4j.org/images/5/53/Imdb.screenshot.actor.png} this graph}}
28+
This will produce something like {{{https://neo4j.com/docs/} this graph}}

myrestaurants-original/src/main/webapp/WEB-INF/tags/form/fields/select.tagx

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
<c:when test="${multiple == false}">
8686
<script type="text/javascript">Spring.addDecoration(new Spring.ElementDecoration({elementId : '_${sec_field}_id', widgetType: 'dijit.form.FilteringSelect', widgetAttrs : {hasDownArrow : true}})); </script>
8787
</c:when>
88-
<!-- disabled due to http://jira.springframework.org/browse/ROO-909 <c:otherwise> <script type="text/javascript">Spring.addDecoration(new Spring.ElementDecoration({elementId : '_${field}_id', widgetType: 'dijit.form.MultiSelect', widgetAttrs : {}})); </script> </c:otherwise> -->
88+
<!-- disabled due to https://jira.springframework.org/browse/ROO-909 <c:otherwise> <script type="text/javascript">Spring.addDecoration(new Spring.ElementDecoration({elementId : '_${field}_id', widgetType: 'dijit.form.MultiSelect', widgetAttrs : {}})); </script> </c:otherwise> -->
8989
</c:choose>
9090
</c:when>
9191
<c:otherwise>

myrestaurants-original/src/main/webapp/WEB-INF/views/footer.jspx

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<spring:url value="/resources/images/springsource-logo.png" var="logo"/>
3030
<spring:message code="global_sponsored" var="sponsored"/>
3131
<span>
32-
<a href="http://springsource.com" title="${fn:escapeXml(sponsored)}">
32+
<a href="https://springsource.com" title="${fn:escapeXml(sponsored)}">
3333
<img align="right" alt="${fn:escapeXml(sponsored)}" src="${logo}"/>
3434
</a>
3535
</span>

myrestaurants-social/src/main/webapp/WEB-INF/tags/form/fields/select.tagx

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
<c:when test="${multiple == false}">
8686
<script type="text/javascript">Spring.addDecoration(new Spring.ElementDecoration({elementId : '_${sec_field}_id', widgetType: 'dijit.form.FilteringSelect', widgetAttrs : {hasDownArrow : true}})); </script>
8787
</c:when>
88-
<!-- disabled due to http://jira.springframework.org/browse/ROO-909 <c:otherwise> <script type="text/javascript">Spring.addDecoration(new Spring.ElementDecoration({elementId : '_${field}_id', widgetType: 'dijit.form.MultiSelect', widgetAttrs : {}})); </script> </c:otherwise> -->
88+
<!-- disabled due to https://jira.springframework.org/browse/ROO-909 <c:otherwise> <script type="text/javascript">Spring.addDecoration(new Spring.ElementDecoration({elementId : '_${field}_id', widgetType: 'dijit.form.MultiSelect', widgetAttrs : {}})); </script> </c:otherwise> -->
8989
</c:choose>
9090
</c:when>
9191
<c:otherwise>

myrestaurants-social/src/main/webapp/WEB-INF/views/footer.jspx

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<spring:url value="/resources/images/springsource-logo.png" var="logo"/>
3030
<spring:message code="global_sponsored" var="sponsored"/>
3131
<span>
32-
<a href="http://springsource.com" title="${fn:escapeXml(sponsored)}">
32+
<a href="https://springsource.com" title="${fn:escapeXml(sponsored)}">
3333
<img align="right" alt="${fn:escapeXml(sponsored)}" src="${logo}"/>
3434
</a>
3535
</span>

0 commit comments

Comments
 (0)