Merge pull request #1675 from patriot1burke/master
saml adapter doc module
134
docbook/auth-server-docs/pom.xml
Executable file
|
@ -0,0 +1,134 @@
|
||||||
|
<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/xsd/maven-4.0.0.xsd">
|
||||||
|
<parent>
|
||||||
|
<artifactId>keycloak-parent</artifactId>
|
||||||
|
<groupId>org.keycloak</groupId>
|
||||||
|
<version>1.6.0.Final-SNAPSHOT</version>
|
||||||
|
<relativePath>../pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>keycloak-reference-guide-${translation}</artifactId>
|
||||||
|
<packaging>jdocbook</packaging>
|
||||||
|
<name>Keycloak Reference Guide (${translation})</name>
|
||||||
|
<description/>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>jboss</id>
|
||||||
|
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
||||||
|
</repository>
|
||||||
|
<!--
|
||||||
|
<repository>
|
||||||
|
<id>repo1.maven.org</id>
|
||||||
|
<url>http://repo1.maven.org/maven2</url>
|
||||||
|
</repository> -->
|
||||||
|
</repositories>
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>jboss</id>
|
||||||
|
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
||||||
|
</pluginRepository>
|
||||||
|
<!--
|
||||||
|
<pluginRepository>
|
||||||
|
<id>maven2-repository.dev.java.net</id>
|
||||||
|
<url>http://download.java.net/maven/2</url>
|
||||||
|
</pluginRepository>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>plugin repo1.maven.org</id>
|
||||||
|
<url>http://repo1.maven.org/maven2</url>
|
||||||
|
</pluginRepository>
|
||||||
|
-->
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<skip>true</skip>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.jboss.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jdocbook-plugin</artifactId>
|
||||||
|
<version>2.3.8</version>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jboss.pressgang</groupId>
|
||||||
|
<artifactId>pressgang-xslt-ns</artifactId>
|
||||||
|
<version>2.0.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jboss.pressgang</groupId>
|
||||||
|
<artifactId>pressgang-jdocbook-style</artifactId>
|
||||||
|
<type>jdocbook-style</type>
|
||||||
|
<version>2.0.2</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<configuration>
|
||||||
|
<sourceDocumentName>master.xml</sourceDocumentName>
|
||||||
|
<masterTranslation>en-US</masterTranslation>
|
||||||
|
<sourceDirectory>${project.basedir}/reference/en</sourceDirectory>
|
||||||
|
<imageResource>
|
||||||
|
<directory>${project.basedir}/reference/en</directory>
|
||||||
|
<includes>
|
||||||
|
<include>images/*</include>
|
||||||
|
</includes>
|
||||||
|
</imageResource>
|
||||||
|
<formats>
|
||||||
|
<format>
|
||||||
|
<formatName>html_single</formatName>
|
||||||
|
<stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
|
||||||
|
<finalName>index.html</finalName>
|
||||||
|
<!-- <profilingTypeName>two_pass</profilingTypeName> -->
|
||||||
|
</format>
|
||||||
|
<format>
|
||||||
|
<formatName>html</formatName>
|
||||||
|
<stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
|
||||||
|
<finalName>index.html</finalName>
|
||||||
|
<!-- <profilingTypeName>two_pass</profilingTypeName> -->
|
||||||
|
</format>
|
||||||
|
<format>
|
||||||
|
<formatName>pdf</formatName>
|
||||||
|
<stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
|
||||||
|
<finalName>${project.artifactId}.pdf</finalName>
|
||||||
|
</format>
|
||||||
|
<!--<format>-->
|
||||||
|
<!--<formatName>eclipse</formatName>-->
|
||||||
|
<!--<stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>-->
|
||||||
|
<!--<finalName>${project.artifactId}.html</finalName>-->
|
||||||
|
<!--</format>-->
|
||||||
|
</formats>
|
||||||
|
<injections>
|
||||||
|
<injection>
|
||||||
|
<name>project.version</name>
|
||||||
|
<value>${project.version}</value>
|
||||||
|
</injection>
|
||||||
|
<injection>
|
||||||
|
<name>picketlink.version</name>
|
||||||
|
<value>${picketlink.version}</value>
|
||||||
|
</injection>
|
||||||
|
</injections>
|
||||||
|
<options>
|
||||||
|
<xmlTransformerType>saxon</xmlTransformerType>
|
||||||
|
<xincludeSupported>true</xincludeSupported>
|
||||||
|
<useRelativeImageUris>true</useRelativeImageUris>
|
||||||
|
<!-- TODO Probably obsolete after the upgrade to maven-jdocbook-plugin 2.3.0 -->
|
||||||
|
<docbookVersion>1.72.0</docbookVersion>
|
||||||
|
<!-- <localeSeparator>-</localeSeparator> -->
|
||||||
|
</options>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<translation>en-US</translation>
|
||||||
|
</properties>
|
||||||
|
</project>
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 88 KiB |
Before Width: | Height: | Size: 59 KiB After Width: | Height: | Size: 59 KiB |
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 103 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
132
docbook/pom.xml
|
@ -1,134 +1,20 @@
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>keycloak-parent</artifactId>
|
<artifactId>keycloak-parent</artifactId>
|
||||||
<groupId>org.keycloak</groupId>
|
<groupId>org.keycloak</groupId>
|
||||||
<version>1.6.0.Final-SNAPSHOT</version>
|
<version>1.6.0.Final-SNAPSHOT</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
<name>Keycloak Documentation</name>
|
||||||
<artifactId>keycloak-reference-guide-${translation}</artifactId>
|
|
||||||
<packaging>jdocbook</packaging>
|
|
||||||
<name>Keycloak Reference Guide (${translation})</name>
|
|
||||||
<description/>
|
<description/>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<repositories>
|
<artifactId>keycloak-saml-pom</artifactId>
|
||||||
<repository>
|
<packaging>pom</packaging>
|
||||||
<id>jboss</id>
|
|
||||||
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
|
||||||
</repository>
|
|
||||||
<!--
|
|
||||||
<repository>
|
|
||||||
<id>repo1.maven.org</id>
|
|
||||||
<url>http://repo1.maven.org/maven2</url>
|
|
||||||
</repository> -->
|
|
||||||
</repositories>
|
|
||||||
<pluginRepositories>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>jboss</id>
|
|
||||||
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
|
||||||
</pluginRepository>
|
|
||||||
<!--
|
|
||||||
<pluginRepository>
|
|
||||||
<id>maven2-repository.dev.java.net</id>
|
|
||||||
<url>http://download.java.net/maven/2</url>
|
|
||||||
</pluginRepository>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>plugin repo1.maven.org</id>
|
|
||||||
<url>http://repo1.maven.org/maven2</url>
|
|
||||||
</pluginRepository>
|
|
||||||
-->
|
|
||||||
</pluginRepositories>
|
|
||||||
|
|
||||||
<build>
|
<modules>
|
||||||
<plugins>
|
<module>auth-server-docs</module>
|
||||||
<plugin>
|
<module>saml-adapter-docs</module>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
</modules>
|
||||||
<artifactId>maven-deploy-plugin</artifactId>
|
|
||||||
<configuration>
|
|
||||||
<skip>true</skip>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.jboss.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-jdocbook-plugin</artifactId>
|
|
||||||
<version>2.3.8</version>
|
|
||||||
<extensions>true</extensions>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jboss.pressgang</groupId>
|
|
||||||
<artifactId>pressgang-xslt-ns</artifactId>
|
|
||||||
<version>2.0.2</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.jboss.pressgang</groupId>
|
|
||||||
<artifactId>pressgang-jdocbook-style</artifactId>
|
|
||||||
<type>jdocbook-style</type>
|
|
||||||
<version>2.0.2</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
<configuration>
|
|
||||||
<sourceDocumentName>master.xml</sourceDocumentName>
|
|
||||||
<masterTranslation>en-US</masterTranslation>
|
|
||||||
<sourceDirectory>${project.basedir}/reference/en</sourceDirectory>
|
|
||||||
<imageResource>
|
|
||||||
<directory>${project.basedir}/reference/en</directory>
|
|
||||||
<includes>
|
|
||||||
<include>images/*</include>
|
|
||||||
</includes>
|
|
||||||
</imageResource>
|
|
||||||
<formats>
|
|
||||||
<format>
|
|
||||||
<formatName>html_single</formatName>
|
|
||||||
<stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
|
|
||||||
<finalName>index.html</finalName>
|
|
||||||
<!-- <profilingTypeName>two_pass</profilingTypeName> -->
|
|
||||||
</format>
|
|
||||||
<format>
|
|
||||||
<formatName>html</formatName>
|
|
||||||
<stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
|
|
||||||
<finalName>index.html</finalName>
|
|
||||||
<!-- <profilingTypeName>two_pass</profilingTypeName> -->
|
|
||||||
</format>
|
|
||||||
<format>
|
|
||||||
<formatName>pdf</formatName>
|
|
||||||
<stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
|
|
||||||
<finalName>${project.artifactId}.pdf</finalName>
|
|
||||||
</format>
|
|
||||||
<!--<format>-->
|
|
||||||
<!--<formatName>eclipse</formatName>-->
|
|
||||||
<!--<stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>-->
|
|
||||||
<!--<finalName>${project.artifactId}.html</finalName>-->
|
|
||||||
<!--</format>-->
|
|
||||||
</formats>
|
|
||||||
<injections>
|
|
||||||
<injection>
|
|
||||||
<name>project.version</name>
|
|
||||||
<value>${project.version}</value>
|
|
||||||
</injection>
|
|
||||||
<injection>
|
|
||||||
<name>picketlink.version</name>
|
|
||||||
<value>${picketlink.version}</value>
|
|
||||||
</injection>
|
|
||||||
</injections>
|
|
||||||
<options>
|
|
||||||
<xmlTransformerType>saxon</xmlTransformerType>
|
|
||||||
<xincludeSupported>true</xincludeSupported>
|
|
||||||
<useRelativeImageUris>true</useRelativeImageUris>
|
|
||||||
<!-- TODO Probably obsolete after the upgrade to maven-jdocbook-plugin 2.3.0 -->
|
|
||||||
<docbookVersion>1.72.0</docbookVersion>
|
|
||||||
<!-- <localeSeparator>-</localeSeparator> -->
|
|
||||||
</options>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<translation>en-US</translation>
|
|
||||||
</properties>
|
|
||||||
</project>
|
</project>
|
||||||
|
|
134
docbook/saml-adapter-docs/pom.xml
Executable file
|
@ -0,0 +1,134 @@
|
||||||
|
<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/xsd/maven-4.0.0.xsd">
|
||||||
|
<parent>
|
||||||
|
<artifactId>keycloak-parent</artifactId>
|
||||||
|
<groupId>org.keycloak</groupId>
|
||||||
|
<version>1.6.0.Final-SNAPSHOT</version>
|
||||||
|
<relativePath>../pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>keycloak-saml-adapter-reference-guide-${translation}</artifactId>
|
||||||
|
<packaging>jdocbook</packaging>
|
||||||
|
<name>Keycloak SAML Client Adapter Guide (${translation})</name>
|
||||||
|
<description/>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>jboss</id>
|
||||||
|
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
||||||
|
</repository>
|
||||||
|
<!--
|
||||||
|
<repository>
|
||||||
|
<id>repo1.maven.org</id>
|
||||||
|
<url>http://repo1.maven.org/maven2</url>
|
||||||
|
</repository> -->
|
||||||
|
</repositories>
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>jboss</id>
|
||||||
|
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
|
||||||
|
</pluginRepository>
|
||||||
|
<!--
|
||||||
|
<pluginRepository>
|
||||||
|
<id>maven2-repository.dev.java.net</id>
|
||||||
|
<url>http://download.java.net/maven/2</url>
|
||||||
|
</pluginRepository>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>plugin repo1.maven.org</id>
|
||||||
|
<url>http://repo1.maven.org/maven2</url>
|
||||||
|
</pluginRepository>
|
||||||
|
-->
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<skip>true</skip>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.jboss.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jdocbook-plugin</artifactId>
|
||||||
|
<version>2.3.8</version>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jboss.pressgang</groupId>
|
||||||
|
<artifactId>pressgang-xslt-ns</artifactId>
|
||||||
|
<version>2.0.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jboss.pressgang</groupId>
|
||||||
|
<artifactId>pressgang-jdocbook-style</artifactId>
|
||||||
|
<type>jdocbook-style</type>
|
||||||
|
<version>2.0.2</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<configuration>
|
||||||
|
<sourceDocumentName>master.xml</sourceDocumentName>
|
||||||
|
<masterTranslation>en-US</masterTranslation>
|
||||||
|
<sourceDirectory>${project.basedir}/reference/en</sourceDirectory>
|
||||||
|
<imageResource>
|
||||||
|
<directory>${project.basedir}/reference/en</directory>
|
||||||
|
<includes>
|
||||||
|
<include>images/*</include>
|
||||||
|
</includes>
|
||||||
|
</imageResource>
|
||||||
|
<formats>
|
||||||
|
<format>
|
||||||
|
<formatName>html_single</formatName>
|
||||||
|
<stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
|
||||||
|
<finalName>index.html</finalName>
|
||||||
|
<!-- <profilingTypeName>two_pass</profilingTypeName> -->
|
||||||
|
</format>
|
||||||
|
<format>
|
||||||
|
<formatName>html</formatName>
|
||||||
|
<stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
|
||||||
|
<finalName>index.html</finalName>
|
||||||
|
<!-- <profilingTypeName>two_pass</profilingTypeName> -->
|
||||||
|
</format>
|
||||||
|
<format>
|
||||||
|
<formatName>pdf</formatName>
|
||||||
|
<stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
|
||||||
|
<finalName>${project.artifactId}.pdf</finalName>
|
||||||
|
</format>
|
||||||
|
<!--<format>-->
|
||||||
|
<!--<formatName>eclipse</formatName>-->
|
||||||
|
<!--<stylesheetResource>classpath:/xslt/org/jboss/eclipse.xsl</stylesheetResource>-->
|
||||||
|
<!--<finalName>${project.artifactId}.html</finalName>-->
|
||||||
|
<!--</format>-->
|
||||||
|
</formats>
|
||||||
|
<injections>
|
||||||
|
<injection>
|
||||||
|
<name>project.version</name>
|
||||||
|
<value>${project.version}</value>
|
||||||
|
</injection>
|
||||||
|
<injection>
|
||||||
|
<name>picketlink.version</name>
|
||||||
|
<value>${picketlink.version}</value>
|
||||||
|
</injection>
|
||||||
|
</injections>
|
||||||
|
<options>
|
||||||
|
<xmlTransformerType>saxon</xmlTransformerType>
|
||||||
|
<xincludeSupported>true</xincludeSupported>
|
||||||
|
<useRelativeImageUris>true</useRelativeImageUris>
|
||||||
|
<!-- TODO Probably obsolete after the upgrade to maven-jdocbook-plugin 2.3.0 -->
|
||||||
|
<docbookVersion>1.72.0</docbookVersion>
|
||||||
|
<!-- <localeSeparator>-</localeSeparator> -->
|
||||||
|
</options>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<translation>en-US</translation>
|
||||||
|
</properties>
|
||||||
|
</project>
|
40
docbook/saml-adapter-docs/reference/en/en-US/master.xml
Executable file
|
@ -0,0 +1,40 @@
|
||||||
|
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
||||||
|
"http://www.docbook.org/xml/4.4/docbookx.dtd"
|
||||||
|
[
|
||||||
|
]>
|
||||||
|
|
||||||
|
<book>
|
||||||
|
|
||||||
|
<bookinfo>
|
||||||
|
<title>Keycloak SAML Client Adapter Reference Guide</title>
|
||||||
|
<subtitle>SAML 2.0 Client Adapters for Java Applications</subtitle>
|
||||||
|
<releaseinfo>&project.version;</releaseinfo>
|
||||||
|
</bookinfo>
|
||||||
|
|
||||||
|
<toc/>
|
||||||
|
|
||||||
|
<preface id="preface" revision="1">
|
||||||
|
<title>Preface</title>
|
||||||
|
<para>
|
||||||
|
In some of the example listings, what is meant to be displayed on one line does not fit
|
||||||
|
inside the available page width. These lines have been broken up. A '\' at the end of a
|
||||||
|
line means that a break has been introduced to fit in the page, with the following lines
|
||||||
|
indented. So:
|
||||||
|
<programlisting>
|
||||||
|
Let's pretend to have an extremely \
|
||||||
|
long line that \
|
||||||
|
does not fit
|
||||||
|
This one is short
|
||||||
|
</programlisting>
|
||||||
|
Is really:
|
||||||
|
<programlisting>
|
||||||
|
Let's pretend to have an extremely long line that does not fit
|
||||||
|
This one is short
|
||||||
|
</programlisting>
|
||||||
|
</para>
|
||||||
|
</preface>
|
||||||
|
|
||||||
|
|
||||||
|
</book>
|
||||||
|
|
||||||
|
|