Skip to content

Commit

Permalink
Fix for issue RestComm#11 - new AVPs & existing AVPs extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
Grzegorz Figiel committed Jan 16, 2017
1 parent 5d6dacf commit 72c2d75
Show file tree
Hide file tree
Showing 224 changed files with 16,751 additions and 11,789 deletions.
43 changes: 30 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,30 +1,47 @@
# Java compiled #
#################
######## Java compiled #########
################################
*.class

# Eclipse #
###########
########### Eclipse ############
################################
.classpath
.project
.settings

# IntelliJ IDEA #
#################
.idea/
######## IntelliJ IDEA #########
################################
.idea
*.iml
*.iws

# Maven #
#########
########## NetBeans ############
################################
nbactions.xml

# Mobile Tools for Java (J2ME) #
################################
.mtj.tmp

############ Maven #############
################################
target
*.jar
*.war
*.ear

# OS generated files #
######################
###### OS generated files ######
################################
.directory
.Trashes
._*
*~
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db

######## VM crash logs #########
################################
hs_err_pid*
256 changes: 128 additions & 128 deletions enablers/hss-client/docs/jdocbook-restcomm/pom.xml
Original file line number Diff line number Diff line change
@@ -1,128 +1,128 @@

<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>
<groupId>org.mobicents.servers.jainslee.enablers</groupId>
<artifactId>hss-client-docs</artifactId>
<version>2.8.0-SNAPSHOT</version>
</parent>

<artifactId>hss-client-docs-jdocbook-restcomm</artifactId>

<modelVersion>4.0.0</modelVersion>

<packaging>jdocbook</packaging>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<!-- copy docs -->
<copy overwrite="true" todir="${release.dir}/docs/enablers/hss-client/user-guide">
<fileset dir="${basedir}/target/docbook/publish" />
</copy>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${pom.groupId}</groupId>
<artifactId>hss-client-docs-sources-restcomm</artifactId>
<version>${pom.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/docbook/resources</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
<version>2.3.5</version>
<extensions>true</extensions>
<dependencies>
<dependency>
<groupId>org.mobicents.jdocbook</groupId>
<artifactId>telestax-xslt-ns</artifactId>
<version>1.5.0.FINAL</version>
</dependency>
<dependency>
<groupId>org.mobicents.jdocbook</groupId>
<artifactId>telestax-community-style</artifactId>
<type>jdocbook-style</type>
<version>1.5.0.FINAL</version>
</dependency>
</dependencies>
<configuration>
<sourceDocumentName>JAIN_SLEE_Enabler_HSS_Client_User_Guide.xml</sourceDocumentName>
<sourceDirectory>${project.build.directory}/docbook/resources</sourceDirectory>
<imageResource>
<directory>${project.build.directory}/docbook/resources/en-US</directory>
<includes>
<include>images/*</include>
</includes>
</imageResource>
<formats>
<format>
<formatName>pdf</formatName>
<stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
<finalName>Restcomm_SLEE_Enabler_HSS_Client_User_Guide.pdf</finalName>
</format>
<format>
<formatName>html</formatName>
<stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
<format>
<formatName>html_single</formatName>
<stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
</formats>
<options>
<xincludeSupported>true</xincludeSupported>
<!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
<!-- could also locate the docbook dependency and inspect its version... -->
<docbookVersion>1.72.0</docbookVersion>
</options>
</configuration>
</plugin>
</plugins>
</build>

</project>

<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>
<groupId>org.mobicents.servers.jainslee.enablers</groupId>
<artifactId>hss-client-docs</artifactId>
<version>2.8.0-SNAPSHOT</version>
</parent>

<artifactId>hss-client-docs-jdocbook-restcomm</artifactId>

<modelVersion>4.0.0</modelVersion>

<packaging>jdocbook</packaging>

<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<!-- copy docs -->
<copy overwrite="true" todir="${release.dir}/docs/enablers/hss-client/user-guide">
<fileset dir="${basedir}/target/docbook/publish" />
</copy>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${pom.groupId}</groupId>
<artifactId>hss-client-docs-sources-restcomm</artifactId>
<version>${pom.version}</version>
<type>jar</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.directory}/docbook/resources</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
<version>2.3.5</version>
<extensions>true</extensions>
<dependencies>
<dependency>
<groupId>org.mobicents.jdocbook</groupId>
<artifactId>telestax-xslt-ns</artifactId>
<version>1.5.0.FINAL</version>
</dependency>
<dependency>
<groupId>org.mobicents.jdocbook</groupId>
<artifactId>telestax-community-style</artifactId>
<type>jdocbook-style</type>
<version>1.5.0.FINAL</version>
</dependency>
</dependencies>
<configuration>
<sourceDocumentName>JAIN_SLEE_Enabler_HSS_Client_User_Guide.xml</sourceDocumentName>
<sourceDirectory>${project.build.directory}/docbook/resources</sourceDirectory>
<imageResource>
<directory>${project.build.directory}/docbook/resources/en-US</directory>
<includes>
<include>images/*</include>
</includes>
</imageResource>
<formats>
<format>
<formatName>pdf</formatName>
<stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
<finalName>Restcomm_SLEE_Enabler_HSS_Client_User_Guide.pdf</finalName>
</format>
<format>
<formatName>html</formatName>
<stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
<format>
<formatName>html_single</formatName>
<stylesheetResource>classpath:/xslt/org/jboss/xhtml-single.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
</formats>
<options>
<xincludeSupported>true</xincludeSupported>
<!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
<!-- could also locate the docbook dependency and inspect its version... -->
<docbookVersion>1.72.0</docbookVersion>
</options>
</configuration>
</plugin>
</plugins>
</build>

</project>
54 changes: 27 additions & 27 deletions enablers/hss-client/docs/pom.xml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.mobicents.servers.jainslee.enablers</groupId>
<artifactId>hss-client</artifactId>
<version>2.8.0-SNAPSHOT</version>
</parent>

<artifactId>hss-client-docs</artifactId>

<packaging>pom</packaging>

<modules>
<module>sources</module>
<module>sources-restcomm</module>
<module>jdocbook-restcomm</module>
</modules>

<properties>
<docs.enabler.name>HSS Client</docs.enabler.name>
<docs.enabler.dirname>hss-client</docs.enabler.dirname>
<docs.bookid>HSSClient</docs.bookid>
</properties>

</project>
<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">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.mobicents.servers.jainslee.enablers</groupId>
<artifactId>hss-client</artifactId>
<version>2.8.0-SNAPSHOT</version>
</parent>

<artifactId>hss-client-docs</artifactId>

<packaging>pom</packaging>

<modules>
<module>sources</module>
<module>sources-restcomm</module>
<module>jdocbook-restcomm</module>
</modules>

<properties>
<docs.enabler.name>HSS Client</docs.enabler.name>
<docs.enabler.dirname>hss-client</docs.enabler.dirname>
<docs.bookid>HSSClient</docs.bookid>
</properties>

</project>
Loading

0 comments on commit 72c2d75

Please sign in to comment.