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"
|
||||
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">
|
||||
<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">
|
||||
<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>
|
||||
<name>Keycloak Documentation</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>
|
||||
<artifactId>keycloak-saml-pom</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<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>
|
||||
<modules>
|
||||
<module>auth-server-docs</module>
|
||||
<module>saml-adapter-docs</module>
|
||||
</modules>
|
||||
</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>
|
||||
|
||||
|