Updated Branches: refs/heads/master f4dce2239 -> 6dcd7f7c3
PR #62 - eclipse xml validator is picky about whitespace Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/6dcd7f7c Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/6dcd7f7c Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/6dcd7f7c Branch: refs/heads/master Commit: 6dcd7f7c31b15e94e0b89352af4acbaaf79a99c5 Parents: f4dce22 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Fri Nov 22 14:33:02 2013 +0200 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Fri Nov 22 14:33:02 2013 +0200 ---------------------------------------------------------------------- .../src/test/jetty/jetty-ssl.xml | 32 ++++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/6dcd7f7c/archetypes/quickstart/src/main/resources/archetype-resources/src/test/jetty/jetty-ssl.xml ---------------------------------------------------------------------- diff --git a/archetypes/quickstart/src/main/resources/archetype-resources/src/test/jetty/jetty-ssl.xml b/archetypes/quickstart/src/main/resources/archetype-resources/src/test/jetty/jetty-ssl.xml index 682a2e8..49e558b 100644 --- a/archetypes/quickstart/src/main/resources/archetype-resources/src/test/jetty/jetty-ssl.xml +++ b/archetypes/quickstart/src/main/resources/archetype-resources/src/test/jetty/jetty-ssl.xml @@ -6,10 +6,10 @@ <!-- and either jetty-https.xml or jetty-spdy.xml (but not both)  --> <!-- ============================================================= --> <Configure id="sslContextFactory" class="org.eclipse.jetty.util.ssl.SslContextFactory"> -  <Set name="KeyStorePath"><Property name="maven.project.build.directory.test-classes" default="." />/<Property name="jetty.keystore" default="keystore"/></Set> -  <Set name="KeyStorePassword"><Property name="jetty.keystore.password" default="wicket"/></Set> -  <Set name="KeyManagerPassword"><Property name="jetty.keymanager.password" default="wicket"/></Set> -  <Set name="EndpointIdentificationAlgorithm"></Set> + <Set name="KeyStorePath"><Property name="maven.project.build.directory.test-classes" default="." />/<Property name="jetty.keystore" default="keystore"/></Set> + <Set name="KeyStorePassword"><Property name="jetty.keystore.password" default="wicket"/></Set> + <Set name="KeyManagerPassword"><Property name="jetty.keymanager.password" default="wicket"/></Set> + <Set name="EndpointIdentificationAlgorithm"></Set> <Set name="ExcludeCipherSuites"> <Array type="String"> <Item>SSL_RSA_WITH_DES_CBC_SHA</Item> @@ -21,16 +21,16 @@ <Item>SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA</Item> </Array> </Set> -  <!-- =========================================================== --> -  <!-- Create a TLS specific HttpConfiguration based on the       --> -  <!-- common HttpConfiguration defined in jetty.xml              --> -  <!-- Add a SecureRequestCustomizer to extract certificate and   --> -  <!-- session information                                        --> -  <!-- =========================================================== --> -  <New id="sslHttpConfig" class="org.eclipse.jetty.server.HttpConfiguration"> -    <Arg><Ref refid="httpConfig"/></Arg> -    <Call name="addCustomizer"> -      <Arg><New class="org.eclipse.jetty.server.SecureRequestCustomizer"/></Arg> -    </Call> -  </New> + <!-- =========================================================== --> + <!-- Create a TLS specific HttpConfiguration based on the --> + <!-- common HttpConfiguration defined in jetty.xml --> + <!-- Add a SecureRequestCustomizer to extract certificate and --> + <!-- session information --> + <!-- =========================================================== --> + <New id="sslHttpConfig" class="org.eclipse.jetty.server.HttpConfiguration"> + <Arg><Ref refid="httpConfig"/></Arg> + <Call name="addCustomizer"> + <Arg><New class="org.eclipse.jetty.server.SecureRequestCustomizer"/></Arg> + </Call> + </New> </Configure> \ No newline at end of file
