Skip to content
This repository has been archived by the owner on Apr 13, 2022. It is now read-only.

URL Cleanup #19

Open
wants to merge 1 commit into
base: apache-flex
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion assembly/no-dependencies.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 https://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>dist</id>
<formats>
<format>zip</format>
Expand Down
2 changes: 1 addition & 1 deletion docbkx/amf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public class IgnorableFieldsObject {
</para>
<para>
First, we configure the <code>ClassPathScanningAmfConversionServiceConfigProcessor</code> using the Spring 3 <ulink
url="http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/beans.html#beans-java" >@Configuration style</ulink>:
url="https://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/beans.html#beans-java" >@Configuration style</ulink>:
</para>
<programlisting language="java">
<![CDATA[
Expand Down
6 changes: 3 additions & 3 deletions docbkx/configuration.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ requests -->
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/flex
http://www.springframework.org/schema/flex/spring-flex.xsd">
https://www.springframework.org/schema/flex/spring-flex.xsd">
...
</beans>
]]>
Expand Down Expand Up @@ -233,7 +233,7 @@ requests -->
</programlisting>
<para>
In addition to setting up the consolidated mapping strategy, you will also have to manually enable the correct <code>HandlerMapping</code> and <code>HandlerAdapter</code> for your Spring MVC controllers
<ulink url="http://static.springframework.org/spring/docs/2.5.x/reference/mvc.html#mvc-ann-setup">as described in the Spring MVC documentation</ulink>, due to the fact that alternate <code>HandlerMapping</code> and
<ulink url="https://docs.spring.io/spring/docs/2.5.x/reference/mvc.html#mvc-ann-setup">as described in the Spring MVC documentation</ulink>, due to the fact that alternate <code>HandlerMapping</code> and
<code>HandlerAdapter</code> beans are configured automatically when using the <code>message-broker</code> tag.
</para>
</sect1>
Expand Down
2 changes: 1 addition & 1 deletion docbkx/index.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "https://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<book xmlns:xi="http://www.w3.org/2001/XInclude">

<bookinfo>
Expand Down
14 changes: 7 additions & 7 deletions docbkx/rest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>Introduction</title>
<para>
Spring MVC 3 introduced support for building RESTful services using the <ulink
url="http://docs.spring.io/spring/docs/4.1.x/spring-framework-reference/html/mvc.html#mvc-controller">@Controller</ulink> programming
url="https://docs.spring.io/spring/docs/4.1.x/spring-framework-reference/html/mvc.html#mvc-controller">@Controller</ulink> programming
model. This allows for serving multiple representations of the same content based on what the client has requested. For example, a single RESTful
endpoint could be configured to serve HTML, XML, or JSON all from a single request handling Java method on the @Controller class. This approach
allows a single service implementation to support a variety of different client types, automatically providing the representation that a particular
Expand All @@ -22,9 +22,9 @@
<title>Using AmfView</title>
<para>
<code>AmfView</code> is a Spring MVC <ulink
url="http://docs.spring.io/spring/docs/4.1.x/spring-framework-reference/html/mvc.html#mvc-viewresolver">View</ulink> implementation that is
url="https://docs.spring.io/spring/docs/4.1.x/spring-framework-reference/html/mvc.html#mvc-viewresolver">View</ulink> implementation that is
intended to be used in conjunction with Spring MVC's <ulink
url="http://docs.spring.io/spring/docs/4.1.x/spring-framework-reference/html/mvc.html#mvc-multiple-representations">ContentNegotiatingViewResolver</ulink>.
url="https://docs.spring.io/spring/docs/4.1.x/spring-framework-reference/html/mvc.html#mvc-multiple-representations">ContentNegotiatingViewResolver</ulink>.
In particular, it is expected that it will be configured as a "default" singleton view implementation that can render any MVC model as AMF, rather
than needing to have a unique instance per logical view name.
</para>
Expand Down Expand Up @@ -81,13 +81,13 @@ public class ContactsController {
<title>Using AmfHttpMessageConverter</title>
<para>
<code>AmfHttpMessageConverter</code> is a <ulink
url="http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/remoting.html#rest-message-conversion"
url="https://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/remoting.html#rest-message-conversion"
>HttpMessageConverter</ulink> implementation that can convert to and from AMF. In order to be able to convert HTTP <code>POST</code> and
<code>PUT</code> request message bodies from AMF to Java objects to be passed as a <ulink
url="http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-ann-requestbody" >@RequestBody</ulink> arguments
url="https://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/mvc.html#mvc-ann-requestbody" >@RequestBody</ulink> arguments
to <code>@Controller</code> methods, it must be added to the converters used by Spring MVC's <code>AnnotationMethodHandlerAdapter</code>. In order
to add AMF support while also leaving the framework's default <code>HttpMessageConverters</code> in place, a simple <ulink
url="http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/beans.html#beans-factory-extension-bpp"
url="https://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/beans.html#beans-factory-extension-bpp"
>BeanPostProcessor</ulink> such as the following example can be used:
</para>
<programlisting language="java" >
Expand Down Expand Up @@ -162,7 +162,7 @@ public class ContactsController {
</para>
<para>
The second major limitation is the inability to properly send HTTP <code>PUT</code> and <code>DELETE</code> requests. Spring provides the <ulink
url="http://static.springsource.org/spring/docs/3.0.x/javadoc-api/index.html?org/springframework/web/filter/HiddenHttpMethodFilter.html"
url="https://docs.spring.io/spring/docs/3.0.x/javadoc-api/index.html?org/springframework/web/filter/HiddenHttpMethodFilter.html"
>HiddenHttpMethodFilter</ulink> to help cope with this. With the filter configured, a <code>DELETE</code> request (for example) could be simulated
by sending a <code>POST</code> request to a URL such as <code>http://localhost/myapp/contacts/1.amf?_method=DELETE</code>.
</para>
Expand Down
4 changes: 2 additions & 2 deletions docbkx/samples.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ mvn tomcat:run
<repository>
<id>spring-external</id>
<name>Spring repository for third party libraries</name>
<url>http://repo.spring.io/ext-release-local</url>
<url>https://repo.spring.io/ext-release-local</url>
</repository>
]]>
</programlisting>
Expand All @@ -60,7 +60,7 @@ mvn tomcat:run
<title>Importing and Running the Test Drive in Eclipse</title>
<para>
The individual Test Drive projects are pre-configured to be imported in Eclipse and run with WTP. (There are a number of individual projects, so you may want to consider creating a fresh
workspace or at least create a new working set to manage the projects.) We recommend using the free <ulink url="http://spring.io/tools">SpringSource Tool Suite</ulink> to work with the samples so that you can take full
workspace or at least create a new working set to manage the projects.) We recommend using the free <ulink url="https://spring.io/tools">SpringSource Tool Suite</ulink> to work with the samples so that you can take full
advantage of its extensive Spring support, but any version of Eclipse 3.5+ with WTP should work.
</para>
<para>
Expand Down
16 changes: 8 additions & 8 deletions docbkx/security.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security-3.2.xsd">
https://www.springframework.org/schema/security/spring-security-3.2.xsd">

<http entry-point-ref="entryPoint">
<anonymous enabled="false"/>
Expand Down Expand Up @@ -75,7 +75,7 @@
</sect2>
<para>
We will assume the above configuration is in place for the remainder of the examples in this chapter. For additional details on the many options available in
configuring and using Spring Security, please refer to that project's <ulink url="http://static.springsource.org/spring-security/site/reference.html">documentation</ulink>.
configuring and using Spring Security, please refer to that project's <ulink url="https://docs.spring.io/spring-security/site/reference.html">documentation</ulink>.
</para>
</sect1>
<sect1 id="configuring-security">
Expand Down Expand Up @@ -117,9 +117,9 @@
<para>
The provided <code>LoginCommand</code> mimics as much as possible the functionality of Spring Security's
<code>AbstractAuthenticationProcessingFilter</code> including taking the necessary actions to coordinate Spring Security's additional
features such as, <ulink url="http://static.springsource.org/spring-security/site/docs/3.0.x/reference/springsecurity-single.html#remember-me">Remember Me</ulink>,
<ulink url="http://static.springsource.org/spring-security/site/docs/3.0.x/reference/springsecurity-single.html#ns-session-fixation">Session Fixation Protection</ulink>,
and <ulink url="http://static.springsource.org/spring-security/site/docs/3.0.x/reference/springsecurity-single.html#concurrent-sessions">Concurrent Session Management</ulink>
features such as, <ulink url="https://docs.spring.io/spring-security/site/docs/3.0.x/reference/springsecurity-single.html#remember-me">Remember Me</ulink>,
<ulink url="https://docs.spring.io/spring-security/site/docs/3.0.x/reference/springsecurity-single.html#ns-session-fixation">Session Fixation Protection</ulink>,
and <ulink url="https://docs.spring.io/spring-security/site/docs/3.0.x/reference/springsecurity-single.html#concurrent-sessions">Concurrent Session Management</ulink>
upon commencement of the authentication process. Additionally, it will invoke any configured <code>LogoutHandlers</code> as part of the logout
process, including both those auto-configured by Spring Security, and any that might be supplied by the application developer.
</para>
Expand Down Expand Up @@ -271,8 +271,8 @@ token.addResponder(
not part of an interface that the class implements, then you will need either factor those methods out into an interface, or configure
Spring to use CGLIB-based proxies instead. See the following Spring documentation references for futher guidance:
<orderedlist>
<listitem><para><ulink url="http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/aop.html#aop-introduction-proxies">AOP Proxies</ulink></para></listitem>
<listitem><para><ulink url="http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/aop.html#aop-proxying">Proxying Mechanisms</ulink></para></listitem>
<listitem><para><ulink url="https://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/aop.html#aop-introduction-proxies">AOP Proxies</ulink></para></listitem>
<listitem><para><ulink url="https://docs.spring.io/spring/docs/3.0.x/spring-framework-reference/html/aop.html#aop-proxying">Proxying Mechanisms</ulink></para></listitem>
</orderedlist>
</para>
</note>
Expand Down
16 changes: 8 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.flex</groupId>
<artifactId>spring-flex</artifactId>
Expand Down Expand Up @@ -35,25 +35,25 @@
<developer>
<name>Jeremy Grelle</name>
<organization>Pivotal Software, Inc.</organization>
<organizationUrl>http://www.spring.io</organizationUrl>
<organizationUrl>https://www.spring.io</organizationUrl>
</developer>
<developer>
<name>Mark Fisher</name>
<organization>Pivotal Software, Inc.</organization>
<organizationUrl>http://www.spring.io</organizationUrl>
<organizationUrl>https://www.spring.io</organizationUrl>
</developer>
<developer>
<name>Sebastien Deleuze</name>
<organization>Pivotal Software, Inc.</organization>
<organizationUrl>http://www.spring.io</organizationUrl>
<organizationUrl>https://www.spring.io</organizationUrl>
</developer>
</developers>

<contributors>
<contributor>
<name>Jose Barragan</name>
<organization>Codeoscopic</organization>
<organizationUrl>http://www.codeoscopic.com</organizationUrl>
<organizationUrl>https://www.codeoscopic.com</organizationUrl>
</contributor>
</contributors>

Expand Down Expand Up @@ -162,9 +162,9 @@
</groups>
<excludePackageNames>org.springframework.flex.roo.addon:org.springframework.flex.samples</excludePackageNames>
<links>
<link>http://docs.spring.io/spring/docs/current/javadoc-api</link>
<link>http://docs.spring.io/spring-security/site/docs/3.2.x/apidocs</link>
<link>http://java.sun.com/javase/6/docs/api</link>
<link>https://docs.spring.io/spring/docs/current/javadoc-api</link>
<link>https://docs.spring.io/spring-security/site/docs/3.2.x/apidocs</link>
<link>https://java.sun.com/javase/6/docs/api</link>
<link>http://livedocs.adobe.com/blazeds/4/javadoc</link>
</links>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions spring-flex-core/ivy.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="http://ivyrep.jayasoft.org/ivy-doc.xsl"?>
<?xml-stylesheet type="text/xsl" href="https://ivyrep.jayasoft.org/ivy-doc.xsl"?>
<ivy-module
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://incubator.apache.org/ivy/schemas/ivy.xsd"
xsi:noNamespaceSchemaLocation="https://incubator.apache.org/ivy/schemas/ivy.xsd"
version="1.3">

<info organisation="org.springframework.flex" module="${ant.project.name}">
Expand Down
8 changes: 4 additions & 4 deletions spring-flex-core/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.flex</groupId>
Expand Down Expand Up @@ -36,9 +36,9 @@
<!-- copies doc-files subdirectory which contains image resources -->
<docfilessubdirs>true</docfilessubdirs>
<links>
<link>http://static.springframework.org/spring/docs/4.0.x/javadoc-api</link>
<link>http://static.springsource.org/spring-security/site/docs/4.0.x/apidocs</link>
<link>http://java.sun.com/javase/6/docs/api</link>
<link>https://docs.spring.io/spring/docs/4.0.x/javadoc-api</link>
<link>https://docs.spring.io/spring-security/site/docs/4.0.x/apidocs</link>
<link>https://java.sun.com/javase/6/docs/api</link>
<link>http://livedocs.adobe.com/blazeds/4/javadoc</link>
</links>
</configuration>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<beans:beans xmlns="http://www.springframework.org/schema/flex"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/flex http://www.springframework.org/schema/flex/spring-flex.xsd">
xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/flex https://www.springframework.org/schema/flex/spring-flex.xsd">

<!-- expanded version -->
<message-broker id="customId" configuration-manager="" services-config-path="/WEB-INF/flex/services-config.xml" exception-logger="">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
https://www.springframework.org/schema/beans/spring-beans.xsd">

<bean id="annotatedRemoteBean3" class="org.springframework.flex.config.RemotingAnnotationPostProcessorTests$MyService1" />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
xmlns:flex="http://www.springframework.org/schema/flex"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/flex
http://www.springframework.org/schema/flex/spring-flex.xsd">
https://www.springframework.org/schema/flex/spring-flex.xsd">

<!-- Default MessageBroker -->
<flex:message-broker/>
Expand Down
Loading