You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.2 KiB
93 lines
2.2 KiB
13 years ago
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||
|
<sect1 id="variables">
|
||
|
<sect1info>
|
||
|
<authorgroup>
|
||
|
<author
|
||
|
><firstname
|
||
|
>Keith</firstname
|
||
|
> <surname
|
||
|
>Isdale</surname
|
||
|
> <affiliation
|
||
|
> <address
|
||
|
><email
|
||
|
>k_isdale@tpg.com.au</email
|
||
|
></address>
|
||
|
</affiliation>
|
||
|
</author>
|
||
|
<othercredit role="translator"
|
||
|
><firstname
|
||
|
>José</firstname
|
||
|
><surname
|
||
|
>Pires</surname
|
||
|
><affiliation
|
||
|
><address
|
||
|
><email
|
||
|
>jncp@netcabo.pt</email
|
||
|
></address
|
||
|
></affiliation
|
||
|
><contrib
|
||
|
>Tradução</contrib
|
||
|
></othercredit
|
||
|
>
|
||
|
</authorgroup>
|
||
|
</sect1info>
|
||
|
|
||
|
<title
|
||
|
>Lidar com Variáveis</title>
|
||
|
|
||
|
<para
|
||
|
>Se a janela de inspecção não estiver visível use a opção <menuchoice
|
||
|
> <guimenu
|
||
|
>Ferramentas</guimenu
|
||
|
> <guimenuitem
|
||
|
>Mostrar os inspectores</guimenuitem
|
||
|
> </menuchoice
|
||
|
>. </para>
|
||
|
|
||
|
<para
|
||
|
>As variáveis locais e globais são mostradas numa página da janela de inspecção. O exemplo seguinte mostra um segmento de código de XSLT que declara uma variável global e uma local </para>
|
||
|
<informalexample>
|
||
|
<programlisting
|
||
|
><xsl:variable name="variavelglobal" select="'xpto'"/>
|
||
|
|
||
|
<xsl:template match="/"/>
|
||
|
<xsl:param name="variavellocal" select="'xpto2'"/>
|
||
|
</xsl:template match="/"/>
|
||
|
</programlisting>
|
||
|
</informalexample>
|
||
|
<para
|
||
|
>Se carregar com o rato numa variável da lista, irá mostrar uma informação de resumo no fundo da janela. Se uma variável tiver uma expressão de selecção, por exemplo </para>
|
||
|
<informalexample>
|
||
|
<programlisting
|
||
|
><xsl:variable name="alteravel" select="'valorAntigo'" />
|
||
|
</programlisting>
|
||
|
</informalexample>
|
||
|
<para
|
||
|
>então poderá ser escolhido um novo XPath com um novo valor para a <guilabel
|
||
|
>Expressão da variável</guilabel
|
||
|
>, carregando depois no botão <guibutton
|
||
|
>Definir a expressão</guibutton
|
||
|
>.</para>
|
||
|
|
||
|
<screenshot>
|
||
|
<screeninfo
|
||
|
>A página de Variáveis</screeninfo>
|
||
|
<mediaobject>
|
||
|
<imageobject>
|
||
|
<imagedata fileref="variables_window.png" format="PNG"/>
|
||
|
</imageobject>
|
||
|
<textobject
|
||
|
><phrase
|
||
|
>A Página de Variáveis</phrase
|
||
|
></textobject>
|
||
|
<caption
|
||
|
><para
|
||
|
>A Página de Variáveis</para
|
||
|
></caption>
|
||
|
</mediaobject>
|
||
|
</screenshot>
|
||
|
|
||
|
<para
|
||
|
>Se carregar num item de uma variável na lista mostrada fará com que o cursor da janela principal passe para o ficheiro e número de linha indicados. </para>
|
||
|
</sect1>
|