-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert /web/xslt folder to Markdown (es) (#8154)
Original PR by: Queen Vinyl Da.i'gyu-Kazotetsu <[email protected]>
- Loading branch information
Showing
48 changed files
with
1,097 additions
and
1,145 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
title: apply-imports | ||
slug: Web/XSLT/Element/apply-imports | ||
tags: | ||
- Todas_las_Categorías | ||
- XSLT | ||
translation_of: Web/XSLT/Element/apply-imports | ||
original_slug: Web/XSLT/apply-imports | ||
--- | ||
{{XsltRef}} | ||
|
||
El elemento `<xsl:apply-imports>` es complejo en su uso, y es utilizado mayoritariamente en hojas de estilo muy complejas. La precedencia de importación indica que las plantillas en la hoja de estilo principal tienen mayor precedencia que las plantillas en las hojas de estilo importadas. Sin embargo, en ocasiones es útil forzar al procesador para que aplique una plantilla de menor procedencia contenida en la hoja de estilo importada en lugar de una plantilla equivalente en la hoja de estilo principal. | ||
|
||
### Sintaxis | ||
|
||
<xsl:apply-imports/> | ||
|
||
### Atributos requeridos | ||
|
||
Ninguno. | ||
|
||
### Atributos opcionales | ||
|
||
Ninguno. | ||
|
||
### Tipo | ||
|
||
Instrucción, aparece dentro de una plantilla. | ||
|
||
### Definido | ||
|
||
XSLT, sección 5.6. | ||
|
||
### Soporte en Gecko | ||
|
||
Soportado. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: apply-templates | ||
slug: Web/XSLT/Element/apply-templates | ||
tags: | ||
- Todas_las_Categorías | ||
- XSLT | ||
translation_of: Web/XSLT/Element/apply-templates | ||
original_slug: Web/XSLT/apply-templates | ||
--- | ||
{{XsltRef}} | ||
|
||
El elemento `<xsl:apply-templates>` selecciona un conjunto de nodos del documento de entrada e instruye al procesador para aplicar las plantillas apropiadas a ellos. | ||
|
||
### Sintaxis | ||
|
||
<xsl:apply-templates select=EXPRESION mode=NOMBRE> | ||
<xsl:with-param> [opcional] | ||
<xsl:sort> [opcional] | ||
</xsl:apply-templates> | ||
|
||
### Atributos requeridos | ||
|
||
Ninguno. | ||
|
||
### Atributos opcionales | ||
|
||
- `select` | ||
- : Usa una expresión XPath para indicar los nodos a ser procesados. Un asterisco(`*`) selecciona por completo el conjunto de nodos. Si el atributo no se establece, todos los nodos hijos del nodo actual son seleccionados. | ||
- `mode` | ||
- : Si existend diferentes maneras definidas de procesar el mismo nodo, se distingue entre ellas. | ||
|
||
### Tipo | ||
|
||
Instrucción, aparece dentro de una plantilla. | ||
|
||
### Definido | ||
|
||
XSLT sección 5.4. | ||
|
||
### Soporte en Gecko | ||
|
||
Soportado. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
title: attribute-set | ||
slug: Web/XSLT/Element/attribute-set | ||
tags: | ||
- Todas_las_Categorías | ||
- XSLT | ||
translation_of: Web/XSLT/Element/attribute-set | ||
original_slug: Web/XSLT/attribute-set | ||
--- | ||
{{XsltRef}} | ||
|
||
El elemento `<xsl:attribute-set>` genera un conjunto con nombre de atributos, el cual puede ser aplicado al documento de salida, de una manera similar a los estilos con nombre dentro de CSS. | ||
|
||
### Sintaxi | ||
|
||
<xsl:attribute-set name=NOMBRE use-attribute-sets=LISTA-DE-NOMBRES> | ||
<xsl:attribute> | ||
</xsl:attribute-set> | ||
|
||
### Atributos requeridos | ||
|
||
- `name` | ||
- : Indica el nombre del conjunto de elementos. El nombre debe seguir las reglas QName. | ||
|
||
### Atributos opcionales | ||
|
||
- `use-attribute-sets` | ||
- : Genera un conjunto de elementos a partir de otros conjuntos de atributos. Los nombres de los conjuntos deben estar separados por espacios en blanco y no se deben solapar directa o indirectamente. | ||
|
||
### Tipo | ||
|
||
Debe ser hijo del elemento `<xsl:stylesheet>` o `<xsl:transform>`. | ||
|
||
### Definido | ||
|
||
XSLT, sección 7.1.4. | ||
|
||
### Soporte en Gecko | ||
|
||
Soportado |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
title: attribute | ||
slug: Web/XSLT/Element/attribute | ||
tags: | ||
- Todas_las_Categorías | ||
- XSLT | ||
translation_of: Web/XSLT/Element/attribute | ||
original_slug: Web/XSLT/attribute | ||
--- | ||
{{XsltRef}} | ||
|
||
El elemento `<xsl:attribute>` genera un atributo en el documento de salida, usando cualquier valor que puede ser accedido desde la hoja de estilo. Este elemento tiene que ser la primer cosa que se encuentre dentro del elemento del documento de salida para el cual se desea generar el atributo. | ||
|
||
### Sintaxis | ||
|
||
<xsl:attribute name=NOMBRE namespace=URI> | ||
PLANTILLA | ||
</xsl:attribute> | ||
|
||
### Atributos requeridos | ||
|
||
- `name` | ||
- : Indica el nombre del atributo a ser generado en el documento de salida. El nombre debe seguir las reglas de QName. | ||
|
||
### Atributos opcionales | ||
|
||
- `namespace` | ||
- : Define el URI del nombre de espacio para el atributo en el documento de salida. No se puede especificar el prefijo del nombre de espacio con este elemento. | ||
|
||
### Tipo | ||
|
||
Instrucción, aparece dentro de una plantilla o dentro del elemento `<xsl:attribute-set>`. | ||
|
||
### Definido | ||
|
||
XSLT, sección 7.1.3. | ||
|
||
### Soporte en Gecko | ||
|
||
Soportado. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.