Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,27 +56,27 @@ package org.springextensions.actionscript.ioc.objectdefinition.impl {
assertNull(_definition.properties);
var propDef:PropertyDefinition = new PropertyDefinition('name', 'value');
_definition.addPropertyDefinition(propDef);
var propDef2:PropertyDefinition = new PropertyDefinition('name', 'value', 'http://www.mydomain.com/mynamespace');
var propDef2:PropertyDefinition = new PropertyDefinition('name', 'value', 'https://www.mydomain.com/mynamespace');
_definition.addPropertyDefinition(propDef2);
assertNotNull(_definition.properties);
assertEquals(2, _definition.properties.length);
assertStrictlyEquals(propDef, _definition.properties[0]);
assertStrictlyEquals(propDef2, _definition.properties[1]);
assertStrictlyEquals(propDef, _definition.getPropertyDefinitionByName('name'));
assertStrictlyEquals(propDef2, _definition.getPropertyDefinitionByName('name', 'http://www.mydomain.com/mynamespace'));
assertStrictlyEquals(propDef2, _definition.getPropertyDefinitionByName('name', 'https://www.mydomain.com/mynamespace'));
}

[Test]
public function testAddPropertiesWithSameNameAndSameNamespace():void {
assertNull(_definition.properties);
var propDef:PropertyDefinition = new PropertyDefinition('name', 'value', 'http://www.mydomain.com/mynamespace');
var propDef:PropertyDefinition = new PropertyDefinition('name', 'value', 'https://www.mydomain.com/mynamespace');
_definition.addPropertyDefinition(propDef);
var propDef2:PropertyDefinition = new PropertyDefinition('name', 'value', 'http://www.mydomain.com/mynamespace');
var propDef2:PropertyDefinition = new PropertyDefinition('name', 'value', 'https://www.mydomain.com/mynamespace');
_definition.addPropertyDefinition(propDef2);
assertNotNull(_definition.properties);
assertEquals(1, _definition.properties.length);
assertStrictlyEquals(propDef, _definition.properties[0]);
assertStrictlyEquals(propDef, _definition.getPropertyDefinitionByName('name', 'http://www.mydomain.com/mynamespace'));
assertStrictlyEquals(propDef, _definition.getPropertyDefinitionByName('name', 'https://www.mydomain.com/mynamespace'));
}

[Test]
Expand All @@ -95,14 +95,14 @@ package org.springextensions.actionscript.ioc.objectdefinition.impl {
assertNull(_definition.properties);
var methInvoc:MethodInvocation = new MethodInvocation('name');
_definition.addMethodInvocation(methInvoc);
var methInvoc2:MethodInvocation = new MethodInvocation('name', null, 'http://www.mydomain.com/mynamespace');
var methInvoc2:MethodInvocation = new MethodInvocation('name', null, 'https://www.mydomain.com/mynamespace');
_definition.addMethodInvocation(methInvoc2);
assertNotNull(_definition.methodInvocations);
assertEquals(2, _definition.methodInvocations.length);
assertStrictlyEquals(methInvoc, _definition.methodInvocations[0]);
assertStrictlyEquals(methInvoc2, _definition.methodInvocations[1]);
assertStrictlyEquals(methInvoc, _definition.getMethodInvocationByName('name'));
assertStrictlyEquals(methInvoc2, _definition.getMethodInvocationByName('name', 'http://www.mydomain.com/mynamespace'));
assertStrictlyEquals(methInvoc2, _definition.getMethodInvocationByName('name', 'https://www.mydomain.com/mynamespace'));
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ package org.springextensions.actionscript.localization {
* <code>IStageProcessor</code> that can assign resource values based on the value of specified property on a stage component.
* @author Roland Zwaga
* @productionversion SpringActionscript 2.0
* @externalref http://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Runtime_Localization
* @externalref https://labs.adobe.com/wiki/index.php/Flex_3:Feature_Introductions:_Runtime_Localization
*/
public class LocalizationStageProcessor extends AbstractStageObjectProcessor {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:TitleWindow xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
horizontalAlign="center"
title="Employee Details"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:VBox xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
horizontalAlign="center"
implements="org.as3commons.eventbus.IEventBusAware,org.springextensions.actionscript.samples.cafetownsend.ITownsendView">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:Canvas xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
height="100%"
implements="org.springextensions.actionscript.samples.cafetownsend.ITownsendView">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:VBox xmlns:mx="https://www.adobe.com/2006/mxml"
xmlns:view="org.springextensions.actionscript.samples.cafetownsend.presentation.*"
implements="org.springextensions.actionscript.samples.cafetownsend.ITownsendView">

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:Application xmlns:mx="https://www.adobe.com/2006/mxml"
layout="vertical"
backgroundColor="#000000"
preinitialize="application1_preinitializeHandler(event)"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow
xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%" horizontalAlign="center"
title="Employee Details"
showCloseButton="true"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:VBox xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
horizontalAlign="center">

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:Canvas xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%" height="100%">

<mx:Script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:VBox xmlns:mx="https://www.adobe.com/2006/mxml"
xmlns:view="org.springextensions.actionscript.samples.cafetownsend.presentation.*">

<mx:Script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:TitleWindow xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
horizontalAlign="center"
title="Employee Details"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:VBox xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
horizontalAlign="center"
implements="org.as3commons.eventbus.IEventBusAware,org.springextensions.actionscript.samples.cafetownsend.ITownsendView">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:Canvas xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
height="100%"
implements="org.springextensions.actionscript.samples.cafetownsend.ITownsendView">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:VBox xmlns:mx="https://www.adobe.com/2006/mxml"
xmlns:view="org.springextensions.actionscript.samples.cafetownsend.presentation.*"
implements="org.springextensions.actionscript.samples.cafetownsend.ITownsendView">
<mx:Script>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:TitleWindow xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
horizontalAlign="center"
title="Employee Details"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:VBox xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
horizontalAlign="center"
implements="org.as3commons.eventbus.IEventBusAware,org.springextensions.actionscript.samples.cafetownsend.ITownsendView">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:Canvas xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
height="100%"
implements="org.springextensions.actionscript.samples.cafetownsend.ITownsendView">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:VBox xmlns:mx="https://www.adobe.com/2006/mxml"
xmlns:view="org.springextensions.actionscript.samples.cafetownsend.presentation.*"
implements="org.springextensions.actionscript.samples.cafetownsend.ITownsendView">

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:Application xmlns:mx="https://www.adobe.com/2006/mxml"
xmlns:view="org.springextensions.actionscript.samples.cafetownsend.presentation.*"
layout="vertical"
backgroundColor="#000000"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:TitleWindow xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
horizontalAlign="center"
title="Employee Details"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:VBox xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
horizontalAlign="center"
implements="org.as3commons.eventbus.IEventBusAware,org.springextensions.actionscript.samples.cafetownsend.ITownsendView">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:Canvas xmlns:mx="https://www.adobe.com/2006/mxml"
width="100%"
height="100%"
implements="org.springextensions.actionscript.samples.cafetownsend.ITownsendView">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"
<mx:VBox xmlns:mx="https://www.adobe.com/2006/mxml"
xmlns:view="org.springextensions.actionscript.samples.cafetownsend.presentation.*"
implements="org.springextensions.actionscript.samples.cafetownsend.ITownsendView">

Expand Down
2 changes: 1 addition & 1 deletion src/docbkx/resources/asdoctemplate/ClassHeader.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions" exclude-result-prefixes="saxon xs ifn">
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions" exclude-result-prefixes="saxon xs ifn">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:key name="baseclass" match="apiClassifier" use=".//apiBaseClassifier/text()"/>
<xsl:key name="id" match="//apiClassifier" use="@id"/>
Expand Down
2 changes: 1 addition & 1 deletion src/docbkx/resources/asdoctemplate/Classes.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
exclude-result-prefixes="saxon xs ifn">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:param name="ditaFileDir" select="''"/>
Expand Down
2 changes: 1 addition & 1 deletion src/docbkx/resources/asdoctemplate/all-classes.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:str="http://exslt.org/strings" xmlns:ifn="urn:internal:functions"
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:str="http://exslt.org/strings" xmlns:ifn="urn:internal:functions"
exclude-result-prefixes="saxon str ifn">
<xsl:import href="asdoc-util.xslt"/>
<xsl:output encoding="UTF-8" method="html" omit-xml-declaration="yes" saxon:indent="3" use-character-maps="disable" indent="yes"/>
Expand Down
4 changes: 2 additions & 2 deletions src/docbkx/resources/asdoctemplate/all-index.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
exclude-result-prefixes="saxon xs ifn">
<xsl:import href="asdoc-util.xslt"/>
<xsl:output encoding="UTF-8" method="html" omit-xml-declaration="yes" use-character-maps="disable"/>
Expand Down Expand Up @@ -992,7 +992,7 @@
<xsl:comment>END IONCOMMENTS</xsl:comment>
<xsl:comment>#include virtual="ionComments.ssi"</xsl:comment>
<p id="creativecommons" class="creativecommons">
<a href="http://creativecommons.org/licenses/by-nc-sa/3.0/">
<a href="https://creativecommons.org/licenses/by-nc-sa/3.0/">
<img id="creativecommons_img" src="images/CC.png"/>
</a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/docbkx/resources/asdoctemplate/asdoc-util.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
exclude-result-prefixes="saxon xs ifn">
<xsl:character-map name="disable">
<xsl:output-character character="&amp;" string="&amp;"/>
Expand Down
6 changes: 3 additions & 3 deletions src/docbkx/resources/asdoctemplate/class-files.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
exclude-result-prefixes="saxon xs ifn">
<xsl:import href="asdoc-util.xslt"/>
<xsl:import href="class-parts.xslt"/>
Expand Down Expand Up @@ -411,7 +411,7 @@
<xsl:comment>END IONCOMMENTS</xsl:comment>
<xsl:comment>#include virtual="ionComments.ssi"</xsl:comment>
<p id="creativecommons" class="creativecommons">
<a href="http://creativecommons.org/licenses/by-nc-sa/3.0/">
<a href="https://creativecommons.org/licenses/by-nc-sa/3.0/">
<img id="creativecommons_img" src="{$baseRef}images/CC.png"/>
</a>
</p>
Expand Down Expand Up @@ -4143,7 +4143,7 @@
<xsl:comment> AC_FL_RunContent( "src", "<xsl:value-of select="substring-before($filename,'.swf')"/>", "width", "100%",
"height","400px", "salign", "TL", "id", "<xsl:value-of select="$pluginId"/>", "quality", "high", "bgcolor", "", "name",
"<xsl:value-of select="$pluginId"/>", "flashvars","", "allowScriptAccess","sameDomain", "type",
"application/x-shockwave-flash","pluginspage", "http://www.macromedia.com/go/getflashplayer" ); </xsl:comment>
"application/x-shockwave-flash","pluginspage", "https://www.macromedia.com/go/getflashplayer" ); </xsl:comment>
</script>
</xsl:if>
</xsl:template>
Expand Down
2 changes: 1 addition & 1 deletion src/docbkx/resources/asdoctemplate/class-list.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
exclude-result-prefixes="saxon xs ifn">
<xsl:import href="asdoc-util.xslt"/>
<xsl:output encoding="UTF-8" method="html" omit-xml-declaration="yes" use-character-maps="disable"/>
Expand Down
2 changes: 1 addition & 1 deletion src/docbkx/resources/asdoctemplate/class-parts.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions" xmlns:fn="http://www.w3.org/2005/xpath-functions"
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions" xmlns:fn="https://www.w3.org/2005/xpath-functions"
exclude-result-prefixes="saxon xs ifn">
<xsl:import href="asdoc-util.xslt"/>
<xsl:param name="ditaFileDir" select="''"/>
Expand Down
2 changes: 1 addition & 1 deletion src/docbkx/resources/asdoctemplate/class-summary.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
exclude-result-prefixes="saxon xs ifn">
<xsl:import href="asdoc-util.xslt"/>
<xsl:output encoding="UTF-8" method="html" use-character-maps="disable"/>
Expand Down
4 changes: 2 additions & 2 deletions src/docbkx/resources/asdoctemplate/fieldSummary.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
xmlns:ditaarch="http://dita.oasis-open.org/architecture/2005/" exclude-result-prefixes="saxon xs ifn ditaarch">
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
xmlns:ditaarch="https://dita.oasis-open.org/architecture/2005/" exclude-result-prefixes="saxon xs ifn ditaarch">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
<xsl:param name="ditaFileDir" select="''"/>
<xsl:variable name="isConst" select="'false'"/>
Expand Down
4 changes: 2 additions & 2 deletions src/docbkx/resources/asdoctemplate/methodSummary.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
in accordance with the terms of the license agreement accompanying it.

-->
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="http://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
xmlns:ditaarch="http://dita.oasis-open.org/architecture/2005/" exclude-result-prefixes="saxon xs ifn ditaarch">
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:saxon="https://sf.net/saxon" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ifn="urn:internal:functions"
xmlns:ditaarch="https://dita.oasis-open.org/architecture/2005/" exclude-result-prefixes="saxon xs ifn ditaarch">
<xsl:character-map name="disable">
<xsl:output-character character="&#146;" string="&apos;"/>
</xsl:character-map>
Expand Down
Loading