aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/api')
-rw-r--r--files/es/web/api/datatransfer/index.html2
-rw-r--r--files/es/web/api/document/cookie/index.html2
-rw-r--r--files/es/web/api/file/using_files_from_web_applications/index.html8
-rw-r--r--files/es/web/api/html_drag_and_drop_api/index.html3
-rw-r--r--files/es/web/api/touch_events/index.html2
-rw-r--r--files/es/web/api/websockets_api/index.html2
-rw-r--r--files/es/web/api/window/open/index.html2
7 files changed, 0 insertions, 21 deletions
diff --git a/files/es/web/api/datatransfer/index.html b/files/es/web/api/datatransfer/index.html
index 8d8a6a5b1d..01c9ba4fbf 100644
--- a/files/es/web/api/datatransfer/index.html
+++ b/files/es/web/api/datatransfer/index.html
@@ -143,8 +143,6 @@ translation_of: Web/API/DataTransfer
<p>Holds a list of the format types of the data that is stored for the first item, in the same order the data was added. An empty list will be returned if no data was added.</p>
-<p>{{ gecko_minversion_note("1.9.2", 'The string "Files" is included in this list if files are included in the drag.') }}</p>
-
<p>{{ h3_gecko_minversion("mozCursor", "1.9.1", "mozCursor") }}</p>
<p>The drag cursor's state. This is primarily used to control the cursor during tab drags.</p>
diff --git a/files/es/web/api/document/cookie/index.html b/files/es/web/api/document/cookie/index.html
index 631756f64e..1269f8d8a9 100644
--- a/files/es/web/api/document/cookie/index.html
+++ b/files/es/web/api/document/cookie/index.html
@@ -53,8 +53,6 @@ original_slug: DOM/document.cookie
</li>
</ul>
-<div class="geckoVersionNote">{{ gecko_callout_heading("6.0") }}</div>
-
<div class="geckoVersionNote">Nótese que previamente a Gecko 6.0 {{ geckoRelease("6.0") }}, rutas que contenían comillas eran tratadas como si las comillas fueran parte de la cadena, en lugar de considerarse como un delimitador de la ruta actual. Esto ya ha sido arreglado.</div>
<h2 id="Ejemplos">Ejemplos</h2>
diff --git a/files/es/web/api/file/using_files_from_web_applications/index.html b/files/es/web/api/file/using_files_from_web_applications/index.html
index 5aceed9d6a..8f89722251 100644
--- a/files/es/web/api/file/using_files_from_web_applications/index.html
+++ b/files/es/web/api/file/using_files_from_web_applications/index.html
@@ -34,8 +34,6 @@ translation_of: Web/API/File/Using_files_from_web_applications
<p>En este caso, la lista de ficheros pasada a la función <code>handleFiles() </code>contiene un objeto <a href="/en/DOM/File" title="en/DOM/File"><code>File </code></a>por cada fichero seleccionado por el usuario. </p>
-<p>{{ h2_gecko_minversion("Using hidden file input elements using the click() method", "2.0") }}</p>
-
<p>Comenzando en Gecko 2.0 {{ geckoRelease("2.0") }}, se puede ocultar el realmente feo {{ HTMLElement("input") }} y representar tu propio interfaz para abrir el picker de ficheros y pintar que fichero o ficheros ha seleccionado el usuario. Esto se puede hacer añadiendo al elemento input la característica "display:none" en su css, o estilo y llamando al método <code>click() </code>del elemento {{ HTMLElement("input") }}.</p>
<p>Como aparece en este HTML:</p>
@@ -75,8 +73,6 @@ function handleFiles() {
<p>Nota: en este caso, la función <code>handleFiles() </code>mira la lista de ficheros con la finalidad de aceptar un parametro, mientras los eventos listeners sean añadidos de esta manera no pueden aceptar un parametro del input.</p>
-<p>{{ h1_gecko_minversion("Using blob URLs", "2.0") }}</p>
-
<p>Gecko 2.0 {{ geckoRelease("2.0") }} introduce soporte para los métodos de DOM {{ domxref("window.createBlobURL()") }} y {{ domxref("window.revokeBlobURL()") }}. El cual te permite crear un simple string con la URL que referenciar cualquier dato que pueda referenciar usando un objeto <a href="/en/DOM/File" title="en/DOM/File"><code>File</code></a> DOM, esto incluye los ficheros locales del usuario del dispositivo.</p>
<p>Cuando tienes un objeto<a href="/en/DOM/File" title="en/DOM/File"><code> File</code></a> te gusta poder referenciarlo con una URL desde el HTML, la manera de crear tu propio blob URL para poder hacer esto es la siguiente:</p>
@@ -192,8 +188,6 @@ function dragover(e) {
<p>A continuación establecemos el <a href="/en/DOM/FileReader" title="en/DOM/FileReader"><code>FileReader</code></a> para controlar la carga de la imagen de forma asíncrona y enlazarla con el elemento <code>img</code>. Después de crear el nuevo objeto <code>FileReader</code>, configuramos su función <code>onload</code>, luego llamamos a <code>readAsDataURL()</code> para comenzar la operación de lectura en segundo plano. Cuando el contenido completo de la imagen ha sido cargado, se convierte a  <code>data:</code> URL, el cuál es pasado al callback <code>onload</code>. Nuestra implementación de esta rutina simplemente establece el atributo <code>src</code> del elemento <code>img</code> cargado, cuyo resultado es la imagen apareciendo en la miniatura en la pantalla del usuario.</p>
-<p>{{ h1_gecko_minversion("Example: Using blob URLs to display images", "2.0") }}</p>
-
<p>Este ejemplo el objeto blob URLs para mostrar las miniaturas de las imágenes. Además, se muestra otra información del archivo incluyendo sus nombres y tamaños. Tú puedes <a href="/samples/domref/file-click-demo.html" title="https://developer.mozilla.org/samples/domref/file-click-demo.html">ver el ejemplo</a> (tenga en cuenta que se requiere una versión <a class="external" href="http://nightly.mozilla.org/" title="http://nightly.mozilla.org/">Nghtly</a> de Firefox del 23 de september 23 o mas reciente, o Firefox 4.0 beta 7).</p>
<p>El HTML que representa la interfaz es::</p>
@@ -368,5 +362,3 @@ function dragover(e) {
<li><a href="/En/XMLHttpRequest/Using_XMLHttpRequest" title="En/Using XMLHttpRequest">Usando XMLHttpRequest</a></li>
<li><a href="/en/XMLHttpRequest" title="en/XMLHttpRequest"><code>XMLHttpRequest</code></a></li>
</ul>
-
-<p>{{ HTML5ArticleTOC() }}</p>
diff --git a/files/es/web/api/html_drag_and_drop_api/index.html b/files/es/web/api/html_drag_and_drop_api/index.html
index c40c43a5bb..e4e06907e3 100644
--- a/files/es/web/api/html_drag_and_drop_api/index.html
+++ b/files/es/web/api/html_drag_and_drop_api/index.html
@@ -53,6 +53,3 @@ original_slug: DragDrop/Drag_and_Drop
<dt>dragend</dt>
<dd>El origen del arrastre recibirá un evento dragend cuando la operación se haya completado, tanto si tuvo éxito como si no. Consulta <a href="/en-US/docs/DragDrop/Drag_Operations#dragend" title="/en-US/docs/DragDrop/Drag_Operations#dragend">Finalizar una operación de arrastre</a> si deseas más información.</dd>
</dl>
-
-
-<div>{{ HTML5ArticleTOC () }}</div>
diff --git a/files/es/web/api/touch_events/index.html b/files/es/web/api/touch_events/index.html
index 0b45057ef7..91d5631401 100644
--- a/files/es/web/api/touch_events/index.html
+++ b/files/es/web/api/touch_events/index.html
@@ -285,8 +285,6 @@ original_slug: DOM/Touch_events
<p>La preferencia <code>dom.w3c_touch_events.enabled</code> puede ser utilizada para activar o desactivar el soporte de eventos de toque estándares; por defecto, están activados.</p>
<div class="geckoVersionNote" style="">
-<p>{{ gecko_callout_heading("12.0") }}</p>
-
<p>Antes de Gecko 12.0 {{ geckoRelease("12.0") }}, Gecko no soportaba multi-toques; solo un toque cada vez era reportado.</p>
</div>
diff --git a/files/es/web/api/websockets_api/index.html b/files/es/web/api/websockets_api/index.html
index e1c339558f..f4ce5224fc 100644
--- a/files/es/web/api/websockets_api/index.html
+++ b/files/es/web/api/websockets_api/index.html
@@ -168,5 +168,3 @@ translation_of: Web/API/WebSockets_API
<p>Starting in Gecko 11.0, the WebSocket API is no longer prefixed.</p>
<div class="warning"><strong>Warning:</strong> Among other things, a key reason WebSockets was disabled by default in Firefox 4 and 5 is the discovery of a <a class="external" href="http://www.ietf.org/mail-archive/web/hybi/current/msg04744.html" title="http://www.ietf.org/mail-archive/web/hybi/current/msg04744.html">security issue in the protocol's design</a>. This was fixed in Firefox 6 by implementing a newer version of the protocol that corrects the problem.</div>
-
-<div>{{HTML5ArticleTOC}}</div>
diff --git a/files/es/web/api/window/open/index.html b/files/es/web/api/window/open/index.html
index 8e0376ee75..11bd6fbeb6 100644
--- a/files/es/web/api/window/open/index.html
+++ b/files/es/web/api/window/open/index.html
@@ -77,8 +77,6 @@ function openRequestedPopup() {
<h3 id="Position_and_size_features" name="Position_and_size_features">Características de posición y tamaño</h3>
-<div>{{gecko_minversion_note("1.9.2", "Starting in Gecko 1.9.2 (Firefox 3.6), overriding the position of a window using window features will not change the persisted values saved by the session store feature. That means the next time the window is opened, it will still open in the saved location.")}}</div>
-
<p><a href="#Note_on_position_and_dimension_error_correction">Note on position and dimension error correction</a></p>
<div class="bug">{{bug(176320)}}</div>