Module: sip-router
Branch: master
Commit: b245ada5562e8fb4f7a832c9765c6ea28e980f60
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b245ada…
Author: Jan Janak <jan(a)iptel.org>
Committer: Jan Janak <jan(a)iptel.org>
Date: Thu May 14 01:44:10 2009 +0200
docbook: Update and add missing docbook Makefiles
This change updates all the Makefiles used to process docbook documents
so that they work with the new docbook build system. It also adds some
missing Makefiles. Every directory containing docbook documentation
should have a Makefile so that it can be processed independently.
---
doc/Makefile | 31 ------------
doc/doc_root.xml | 120 ---------------------------------------------
doc/presence/Makefile | 31 +----------
doc/rpc/Makefile | 4 --
doc/ser_radius/Makefile | 31 +----------
doc/serdev/Makefile | 31 +----------
doc/serfaq/Makefile | 31 +----------
doc/serhowto/Makefile | 31 +----------
doc/seruser/Makefile | 31 +----------
doc/sip/Makefile | 31 +----------
lib/cds/doc/Makefile | 4 ++
lib/doc/Makefile | 4 ++
lib/presence/doc/Makefile | 4 ++
lib/xcap/doc/Makefile | 4 ++
14 files changed, 37 insertions(+), 351 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=b24…
Module: sip-router
Branch: master
Commit: d5ceae609414dbbc81052abdc1f4b74066d84b98
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=d5ceae6…
Author: Jan Janak <jan(a)iptel.org>
Committer: Jan Janak <jan(a)iptel.org>
Date: Wed May 13 22:11:18 2009 +0200
docbook: Fixed docbook dependency generator
Previous version of the XSL stylesheet that is used to generate dependencies
for docbook documents did not work properly with docbook files included from
other directories, it did not make dependencies relative to the top-level
file being processed, resulting in dependency files that cannot be satisfied.
This change fixes the stylesheet and makes all the depedendencies generated
by the stylesheet relative to the directory of the top-level docbook document
being processed.
In addition to that it fixes a small typo in the main docbook Makefile.
---
docbook/Makefile | 2 +-
docbook/dep.xsl | 92 +++++++++++++++++++++++++++++++++++++++++++++---------
2 files changed, 78 insertions(+), 16 deletions(-)
diff --git a/docbook/Makefile b/docbook/Makefile
index b60ccf2..16691da 100644
--- a/docbook/Makefile
+++ b/docbook/Makefile
@@ -146,7 +146,7 @@ $(output_dir)/%.html: %.xml %.d $(single_html_xsl) $(all_deps)
$(single_html_xsl) $<
-$(output_dir)/%.txt: %.xml %.d $(txt_xsl) $(all_dep)
+$(output_dir)/%.txt: %.xml %.d $(txt_xsl) $(all_deps)
XML_CATALOG_FILES=$(catalog) $(xsltproc) $(xsltproc_flags) \
--xinclude \
$(txt_xsl) $< | $(lynx) $(lynx_flags) -stdin -dump > $@
diff --git a/docbook/dep.xsl b/docbook/dep.xsl
index e3c6133..0415f96 100644
--- a/docbook/dep.xsl
+++ b/docbook/dep.xsl
@@ -1,10 +1,10 @@
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version='1.0' xmlns:xi="http://www.w3.org/2001/XInclude">
-
- <xsl:param name="prefix"/>
<xsl:param name="output"/>
-
+
+ <!-- Write the output into a plaintext file which will be later included
+ into the Makefile -->
<xsl:template match="/">
<xsl:document href="{$output}" method="text" indent="no"
omit-xml-declaration="yes">
@@ -13,36 +13,98 @@
</xsl:document>
</xsl:template>
- <xsl:template name="get-prefix">
- <xsl:if test="contains($prefix, '/')">
- <xsl:value-of select="concat(substring-before($prefix, '/'), '/')"/>
- <xsl:call-template name="get-prefix">
- <xsl:with-param name="prefix"
- select="substring-after($prefix, '/')"/>
+ <!-- This template extract the name of the directory from a full pathname,
+ in other words it returns everything but the name of the file -->
+ <xsl:template name="dirname">
+ <xsl:param name="filename"/>
+ <xsl:if test="contains($filename, '/')">
+ <xsl:value-of
+ select="concat(substring-before($filename, '/'), '/')"/>
+ <xsl:call-template name="dirname">
+ <xsl:with-param name="filename"
+ select="substring-after($filename, '/')"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
+
+ <!-- This template is used to add a directory preefix to a filename. The
+ prefix is only added if the filename is not absolute (i.e. it does
+ not start with a / and if the prefix is not an empty string -->
+ <xsl:template name="addprefix">
+ <xsl:param name="prefix"/>
+ <xsl:param name="filename"/>
+ <xsl:if test="(string-length($prefix) > 0) and not(starts-with($filename, '/'))">
+ <xsl:value-of select="$prefix"/>
+ </xsl:if>
+ <xsl:value-of select="$filename"/>
+ </xsl:template>
+ <!-- This template processes xi:include directives that include other XML
+ documents. First the template outputs the name of the file being
+ included and then the template traverses the included file
+ recursively, searching fro other dependencies in that file. The
+ template passes the parameter prefix to other templates with its
+ value set to the directory name of the file being included. This
+ ensures that paths to all dependencies are relative to the main
+ file. -->
<xsl:template match='xi:include' mode="subroot">
- <xsl:value-of select="concat($prefix, concat(@href, ' '))"/>
+ <xsl:param name="prefix"/>
+
+ <!-- Add the prefix to the name of the file being included and store
+ the result in variable fullpath -->
+ <xsl:variable name="fullpath">
+ <xsl:call-template name="addprefix">
+ <xsl:with-param name="prefix" select="$prefix"/>
+ <xsl:with-param name="filename" select="@href"/>
+ </xsl:call-template>
+ </xsl:variable>
+
+ <!-- First of all, output the name of the file being included, with
+ proper prefix so that the resulting dependency is relative to the
+ top-most file being processed, not the file we are are processing
+ in this step. -->
+ <xsl:value-of select="concat($fullpath, ' ')"/>
+
+ <!-- Traverse the file being included and search for more depencencies
+ in that file and other files included from there. -->
<xsl:apply-templates select="document(@href)" mode="subroot">
+ <!-- Extract the directory name from $fullpath and set it as a new
+ value of the prefix parameter before calling other templates.
+ -->
<xsl:with-param name="prefix">
- <xsl:call-template name="get-prefix">
- <xsl:with-param name="prefix"
- select="concat($prefix, @href)"/>
+ <xsl:call-template name="dirname">
+ <xsl:with-param name="filename" select="$fullpath"/>
</xsl:call-template>
</xsl:with-param>
+
+ <!-- Process the included file recursively -->
</xsl:apply-templates>
</xsl:template>
+ <!-- This template processes files included with xi:include that are not
+ XML files, such files will only be output as dependencies and will be
+ not traversed recursively. -->
<xsl:template match='xi:include[@parse="text"]' mode="subroot">
- <xsl:value-of select="concat($prefix, concat(@href, ' '))"/>
+ <xsl:param name="prefix"/>
+ <xsl:call-template name="addprefix">
+ <xsl:with-param name="prefix" select="$prefix"/>
+ <xsl:with-param name="filename" select="@href"/>
+ </xsl:call-template>
+ <xsl:text> </xsl:text>
</xsl:template>
+ <!-- This template processes mediaobjects (such as images) included in
+ docbook. -->
<xsl:template match="graphic|imagedata|inlinemediaobject|textdata"
mode="subroot">
- <xsl:value-of select="concat($prefix, concat(@fileref, ' '))"/>
+ <xsl:param name="prefix"/>
+ <xsl:call-template name="addprefix">
+ <xsl:with-param name="prefix" select="$prefix"/>
+ <xsl:with-param name="filename" select="@fileref"/>
+ </xsl:call-template>
+ <xsl:text> </xsl:text>
</xsl:template>
+ <!-- Supress all other output -->
<xsl:template match="text()|@*" mode="subroot"/>
</xsl:stylesheet>
Module: sip-router
Branch: master
Commit: b974149715b5f1a5ce9e36a5b795162965276e20
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b974149…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Wed May 13 19:15:24 2009 +0200
lcr: fix double free on error
On mod_init() error the lcr module did attempt to free twice all
the shared memory allocated vars (free_shared_memory() is called
twice on error, once when mod_init() fails and once when the
module destroy function is called).
---
modules/lcr/lcr_mod.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/modules/lcr/lcr_mod.c b/modules/lcr/lcr_mod.c
index 9fc5089..41a3c43 100644
--- a/modules/lcr/lcr_mod.c
+++ b/modules/lcr/lcr_mod.c
@@ -699,27 +699,34 @@ static void free_shared_memory(void)
{
if (gws_1) {
shm_free(gws_1);
+ gws_1=0;
}
if (gws_2) {
shm_free(gws_2);
+ gws_2=0;
}
if (gws) {
shm_free(gws);
+ gws=0;
}
if (lcrs_1) {
lcr_hash_table_contents_free(lcrs_1);
shm_free(lcrs_1);
+ lcrs_1=0;
}
if (lcrs_2) {
lcr_hash_table_contents_free(lcrs_2);
shm_free(lcrs_2);
+ lcrs_2=0;
}
if (lcrs) {
shm_free(lcrs);
+ lcrs=0;
}
if (reload_lock) {
lock_destroy(reload_lock);
lock_dealloc(reload_lock);
+ reload_lock=0;
}
}
Module: sip-router
Branch: master
Commit: 826d4a56f2ffb95bb7d23886e3e4248eee9147fa
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=826d4a5…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Wed May 13 13:52:51 2009 +0200
lcr: added ser RPC support
- copied & adapted lcr_rpc.[ch] from the ser version of lcr.
- register the rpc array from mod_init if RPC_SUPPORT is defined
(defined by default in lcr_rpc.h unless lcr is compiled with
-DNO_RPC_SUPPORT).
- init db for all the children if RPC_SUPPORT is defined
(needed for xmlrpc which does not run in a separate process)
- moved some defines, structs and typedefs from lcr_mod.c to lcr_mod.h.
---
modules/lcr/lcr_mod.c | 62 ++++++++++++--------
modules/lcr/lcr_mod.h | 27 ++++++++
modules/lcr/lcr_rpc.c | 158 +++++++++++++++++++++++++++++++++++++++++++++++++
modules/lcr/lcr_rpc.h | 43 +++++++++++++
4 files changed, 265 insertions(+), 25 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=826…