aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/xpath/axes
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 14:46:51 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 14:46:51 +0100
commit8a5554c6fae83e92b10c8dbe5b82108cb44fad6c (patch)
tree616af8137d0e678ad2f9d515b7b68dc1b9738fca /files/es/web/xpath/axes
parenta55b575e8089ee6cab7c5c262a7e6db55d0e34d6 (diff)
downloadtranslated-content-8a5554c6fae83e92b10c8dbe5b82108cb44fad6c.tar.gz
translated-content-8a5554c6fae83e92b10c8dbe5b82108cb44fad6c.tar.bz2
translated-content-8a5554c6fae83e92b10c8dbe5b82108cb44fad6c.zip
unslug es: modify
Diffstat (limited to 'files/es/web/xpath/axes')
-rw-r--r--files/es/web/xpath/axes/ancestor-or-self/index.html3
-rw-r--r--files/es/web/xpath/axes/ancestor/index.html3
-rw-r--r--files/es/web/xpath/axes/attribute/index.html3
-rw-r--r--files/es/web/xpath/axes/child/index.html3
-rw-r--r--files/es/web/xpath/axes/descendant-or-self/index.html3
-rw-r--r--files/es/web/xpath/axes/descendant/index.html3
-rw-r--r--files/es/web/xpath/axes/following-sibling/index.html3
-rw-r--r--files/es/web/xpath/axes/following/index.html3
-rw-r--r--files/es/web/xpath/axes/index.html3
-rw-r--r--files/es/web/xpath/axes/namespace/index.html3
-rw-r--r--files/es/web/xpath/axes/parent/index.html3
-rw-r--r--files/es/web/xpath/axes/preceding-sibling/index.html3
-rw-r--r--files/es/web/xpath/axes/preceding/index.html3
13 files changed, 26 insertions, 13 deletions
diff --git a/files/es/web/xpath/axes/ancestor-or-self/index.html b/files/es/web/xpath/axes/ancestor-or-self/index.html
index 902aa3f6b9..f216eac6a6 100644
--- a/files/es/web/xpath/axes/ancestor-or-self/index.html
+++ b/files/es/web/xpath/axes/ancestor-or-self/index.html
@@ -1,7 +1,8 @@
---
title: ancestor-or-self
-slug: Web/XPath/Ejes/ancestor-or-self
+slug: Web/XPath/Axes/ancestor-or-self
translation_of: Web/XPath/Axes/ancestor-or-self
+original_slug: Web/XPath/Ejes/ancestor-or-self
---
<p>
</p><p>El nodo <code>ancestor-or-self</code> indica el nodo de contexto y todos sus antecesores, incluyendo el nodo raiz.
diff --git a/files/es/web/xpath/axes/ancestor/index.html b/files/es/web/xpath/axes/ancestor/index.html
index 5d7148e0bc..dfbcb73abd 100644
--- a/files/es/web/xpath/axes/ancestor/index.html
+++ b/files/es/web/xpath/axes/ancestor/index.html
@@ -1,7 +1,8 @@
---
title: ancestor
-slug: Web/XPath/Ejes/ancestor
+slug: Web/XPath/Axes/ancestor
translation_of: Web/XPath/Axes/ancestor
+original_slug: Web/XPath/Ejes/ancestor
---
<p>
</p><p>El eje <code>ancestor</code> indica todos los antecesores del nodo de contexto comenzando con el nodo padre y viajando hacia el nodo raiz.
diff --git a/files/es/web/xpath/axes/attribute/index.html b/files/es/web/xpath/axes/attribute/index.html
index 211ad7bc06..083faf50d1 100644
--- a/files/es/web/xpath/axes/attribute/index.html
+++ b/files/es/web/xpath/axes/attribute/index.html
@@ -1,7 +1,8 @@
---
title: attribute
-slug: Web/XPath/Ejes/attribute
+slug: Web/XPath/Axes/attribute
translation_of: Web/XPath/Axes/attribute
+original_slug: Web/XPath/Ejes/attribute
---
<p>
</p><p>El eje <code>attribute</code> indica los atributos del nodo de contexto. Sólo los elementos tienen atributos. Este eje se puede abreviar con el signo (<code>@</code>).
diff --git a/files/es/web/xpath/axes/child/index.html b/files/es/web/xpath/axes/child/index.html
index 97ded1fcb4..a201d8561c 100644
--- a/files/es/web/xpath/axes/child/index.html
+++ b/files/es/web/xpath/axes/child/index.html
@@ -1,7 +1,8 @@
---
title: child
-slug: Web/XPath/Ejes/child
+slug: Web/XPath/Axes/child
translation_of: Web/XPath/Axes/child
+original_slug: Web/XPath/Ejes/child
---
<p>
</p><p>El eje <code>child</code> indica el hijo del nodo de contexto. Si una expresión XPath no especifica un eje, se entiende por defecto. Ya que sólo los nodos raiz o los nodos elementos tienen hijos, cualquier otro uso no seleccionará nada.
diff --git a/files/es/web/xpath/axes/descendant-or-self/index.html b/files/es/web/xpath/axes/descendant-or-self/index.html
index 42061ddf67..fae156641a 100644
--- a/files/es/web/xpath/axes/descendant-or-self/index.html
+++ b/files/es/web/xpath/axes/descendant-or-self/index.html
@@ -1,7 +1,8 @@
---
title: descendant-or-self
-slug: Web/XPath/Ejes/descendant-or-self
+slug: Web/XPath/Axes/descendant-or-self
translation_of: Web/XPath/Axes/descendant-or-self
+original_slug: Web/XPath/Ejes/descendant-or-self
---
<p>
</p><p>El eje <code>descendant-or-self</code> indica el nodo de contexto y todos sus descendientes. <b>No</b> se incluyen los nodos atributos y namespaces - el <code>parent</code> de un nodo <code>attribute</code> es un nodo elemento, pero los nodos <code>attribute</code> no son los hijos de sus padres.
diff --git a/files/es/web/xpath/axes/descendant/index.html b/files/es/web/xpath/axes/descendant/index.html
index c6fcc26970..cb436671e7 100644
--- a/files/es/web/xpath/axes/descendant/index.html
+++ b/files/es/web/xpath/axes/descendant/index.html
@@ -1,7 +1,8 @@
---
title: descendant
-slug: Web/XPath/Ejes/descendant
+slug: Web/XPath/Axes/descendant
translation_of: Web/XPath/Axes/descendant
+original_slug: Web/XPath/Ejes/descendant
---
<p>
</p><p>El eje <code>descendant</code> indica todos los hijos del nodo de contexto, y todos sus hijos y así sucesivamente. <b>No</b> se incluyen los atributos y namespaces - el <code>parent</code> de un nodo <code>attribute</code> es un nodo elemento, pero los nodos <code>attribute</code> no son los hijos de sus padres.
diff --git a/files/es/web/xpath/axes/following-sibling/index.html b/files/es/web/xpath/axes/following-sibling/index.html
index 73e42a2e7d..c4b6d0da24 100644
--- a/files/es/web/xpath/axes/following-sibling/index.html
+++ b/files/es/web/xpath/axes/following-sibling/index.html
@@ -1,7 +1,8 @@
---
title: following-sibling
-slug: Web/XPath/Ejes/following-sibling
+slug: Web/XPath/Axes/following-sibling
translation_of: Web/XPath/Axes/following-sibling
+original_slug: Web/XPath/Ejes/following-sibling
---
<p>
El eje <code>following-sibling</code> indica todos los nodos que tienen el mismo padre que el nodo de contexto y aparecen después del nodo de contexto en el documento de origen.
diff --git a/files/es/web/xpath/axes/following/index.html b/files/es/web/xpath/axes/following/index.html
index 190491a345..2c762be4ea 100644
--- a/files/es/web/xpath/axes/following/index.html
+++ b/files/es/web/xpath/axes/following/index.html
@@ -1,7 +1,8 @@
---
title: following
-slug: Web/XPath/Ejes/following
+slug: Web/XPath/Axes/following
translation_of: Web/XPath/Axes/following
+original_slug: Web/XPath/Ejes/following
---
<p>
El eje <code>following</code> indica todos los nodos que aparecen después del nodo de contexto, excepto cualquier nodo <code>descendant</code>, <code>attribute</code> y <code>namespace</code>.
diff --git a/files/es/web/xpath/axes/index.html b/files/es/web/xpath/axes/index.html
index ebaed0b7be..a8ad7aac9c 100644
--- a/files/es/web/xpath/axes/index.html
+++ b/files/es/web/xpath/axes/index.html
@@ -1,11 +1,12 @@
---
title: Ejes
-slug: Web/XPath/Ejes
+slug: Web/XPath/Axes
tags:
- Todas_las_Categorías
- XPath
- XSLT
translation_of: Web/XPath/Axes
+original_slug: Web/XPath/Ejes
---
<p>{{XsltRef}}Existen trece ejes diferentes en la especificación <a href="es/XPath">XPath</a>. Un eje representa una relación con el nodo de contexto, y se utiliza para localizar nodos relativos a ese nodo en el arbol. Lo siguiente es una descripción resumida de los trece ejes disponibles y el grado de soporte disponible en <a href="es/Gecko">Gecko</a>.</p>
diff --git a/files/es/web/xpath/axes/namespace/index.html b/files/es/web/xpath/axes/namespace/index.html
index aa24e4ac1f..0504ff600d 100644
--- a/files/es/web/xpath/axes/namespace/index.html
+++ b/files/es/web/xpath/axes/namespace/index.html
@@ -1,7 +1,8 @@
---
title: namespace
-slug: Web/XPath/Ejes/namespace
+slug: Web/XPath/Axes/namespace
translation_of: Web/XPath/Axes/namespace
+original_slug: Web/XPath/Ejes/namespace
---
<p>
<i>(not supported)</i>
diff --git a/files/es/web/xpath/axes/parent/index.html b/files/es/web/xpath/axes/parent/index.html
index ad56a7ec63..a9dda727e7 100644
--- a/files/es/web/xpath/axes/parent/index.html
+++ b/files/es/web/xpath/axes/parent/index.html
@@ -1,7 +1,8 @@
---
title: parent
-slug: Web/XPath/Ejes/parent
+slug: Web/XPath/Axes/parent
translation_of: Web/XPath/Axes/parent
+original_slug: Web/XPath/Ejes/parent
---
<p>
El eje <code>parent</code> indica el único nodo que es el padre del nodo de contexto. Se puede abreviar con dos puntos (<code>..</code>).
diff --git a/files/es/web/xpath/axes/preceding-sibling/index.html b/files/es/web/xpath/axes/preceding-sibling/index.html
index d713cfcdf5..0811a4c324 100644
--- a/files/es/web/xpath/axes/preceding-sibling/index.html
+++ b/files/es/web/xpath/axes/preceding-sibling/index.html
@@ -1,7 +1,8 @@
---
title: preceding-sibling
-slug: Web/XPath/Ejes/preceding-sibling
+slug: Web/XPath/Axes/preceding-sibling
translation_of: Web/XPath/Axes/preceding-sibling
+original_slug: Web/XPath/Ejes/preceding-sibling
---
<p>
El eje <code>preceding-sibling</code> indica todos los nodos que tienen el mismo padre que el nodo de contexto y aparecen antes que el nodo de contexto en el documento de origen.
diff --git a/files/es/web/xpath/axes/preceding/index.html b/files/es/web/xpath/axes/preceding/index.html
index cd4b702ca2..034af30ba6 100644
--- a/files/es/web/xpath/axes/preceding/index.html
+++ b/files/es/web/xpath/axes/preceding/index.html
@@ -1,7 +1,8 @@
---
title: preceding
-slug: Web/XPath/Ejes/preceding
+slug: Web/XPath/Axes/preceding
translation_of: Web/XPath/Axes/preceding
+original_slug: Web/XPath/Ejes/preceding
---
<p>
El eje <code>preceding</code> indica todos los nodos que preceden al nodo de contexto en el documento excepto cualquier nodo <code>ancestor</code>, <code>attribute</code> y <code>namespace</code>.