Commit 0efce702 authored by Ivan.Shulga's avatar Ivan.Shulga Committed by Alexander Trofimov

git-svn-id:...

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@52652 954022d7-b5bf-4e40-9824-e11837661b57
parent 1647f87d
This diff is collapsed.
...@@ -1256,9 +1256,9 @@ ...@@ -1256,9 +1256,9 @@
</xsl:call-template> </xsl:call-template>
</w:tblPr> </w:tblPr>
<w:tblGrid> <w:tblGrid>
<!--<xsl:call-template name="setTableGrid"> <xsl:call-template name="setTableGrid">
<xsl:with-param name="node" select="."/> <xsl:with-param name="node" select="."/>
</xsl:call-template>--> </xsl:call-template>
</w:tblGrid> </w:tblGrid>
<!--<xsl:apply-templates mode="table"> <!--<xsl:apply-templates mode="table">
...@@ -2702,16 +2702,28 @@ ...@@ -2702,16 +2702,28 @@
<xsl:text>top</xsl:text> <xsl:text>top</xsl:text>
</wp:align> </wp:align>
</wp:positionV> </wp:positionV>
<wp:extent> <wp:extent>
<xsl:attribute name="cx"> <xsl:attribute name="cx">
<xsl:choose>
<xsl:when test="$width != ''">
<xsl:value-of select="$width"/> <xsl:value-of select="$width"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute> </xsl:attribute>
<xsl:attribute name="cy"> <xsl:attribute name="cy">
<xsl:choose>
<xsl:when test="$height != ''">
<xsl:value-of select="$height"/> <xsl:value-of select="$height"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute> </xsl:attribute>
</wp:extent> </wp:extent>
<wp:effectExtent l="0" t="0" r="0" b="0"/> <wp:effectExtent l="0" t="0" r="0" b="0"/>
<wp:wrapSquare wrapText="bothSides"/> <wp:wrapSquare wrapText="bothSides"/>
<wp:docPr> <wp:docPr>
...@@ -2779,10 +2791,24 @@ ...@@ -2779,10 +2791,24 @@
<a:off x="0" y="0"/> <a:off x="0" y="0"/>
<a:ext> <a:ext>
<xsl:attribute name="cx"> <xsl:attribute name="cx">
<xsl:choose>
<xsl:when test="$width != ''">
<xsl:value-of select="$width"/> <xsl:value-of select="$width"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute> </xsl:attribute>
<xsl:attribute name="cy"> <xsl:attribute name="cy">
<xsl:choose>
<xsl:when test="$height != ''">
<xsl:value-of select="$height"/> <xsl:value-of select="$height"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute> </xsl:attribute>
</a:ext> </a:ext>
</a:xfrm> </a:xfrm>
...@@ -2807,13 +2833,26 @@ ...@@ -2807,13 +2833,26 @@
<w:drawing> <w:drawing>
<wp:inline distT="0" distB="0" distL="0" distR="0"> <wp:inline distT="0" distB="0" distL="0" distR="0">
<wp:extent> <wp:extent>
<xsl:attribute name="cx"> <xsl:attribute name="cx">
<xsl:choose>
<xsl:when test="$width != ''">
<xsl:value-of select="$width"/> <xsl:value-of select="$width"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute> </xsl:attribute>
<xsl:attribute name="cy"> <xsl:attribute name="cy">
<xsl:choose>
<xsl:when test="$height != ''">
<xsl:value-of select="$height"/> <xsl:value-of select="$height"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute> </xsl:attribute>
</wp:extent> </wp:extent>
<wp:effectExtent l="0" t="0" r="0" b="0"/> <wp:effectExtent l="0" t="0" r="0" b="0"/>
...@@ -2882,10 +2921,24 @@ ...@@ -2882,10 +2921,24 @@
<a:off x="0" y="0"/> <a:off x="0" y="0"/>
<a:ext> <a:ext>
<xsl:attribute name="cx"> <xsl:attribute name="cx">
<xsl:choose>
<xsl:when test="$width != ''">
<xsl:value-of select="$width"/> <xsl:value-of select="$width"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute> </xsl:attribute>
<xsl:attribute name="cy"> <xsl:attribute name="cy">
<xsl:choose>
<xsl:when test="$height != ''">
<xsl:value-of select="$height"/> <xsl:value-of select="$height"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0"/>
</xsl:otherwise>
</xsl:choose>
</xsl:attribute> </xsl:attribute>
</a:ext> </a:ext>
</a:xfrm> </a:xfrm>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment