This file contains hidden or 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
function remplazar(){ | |
remplazarUna( document.getElementById("textarea").value, document.getElementById("findWorld").value, document.getElementById("replaceWorld").value); | |
} | |
function remplazarUna(text, busca, reemplaza ){ | |
text = text.toString().replace(busca,reemplaza); | |
//return text; | |
document.getElementById("textarea").value = text; |
This file contains hidden or 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
function remplazar(){ | |
remplazarUna( document.getElementById("textarea").value, document.getElementById("findWorld").value, document.getElementById("replaceWorld").value); | |
} | |
function remplazarUna(text, busca, reemplaza ){ | |
text = text.toString().replace(busca,reemplaza); | |
//return text; | |
document.getElementById("textarea").value = text; |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Practica 7</title> | |
<link href="css/bootstrap.css" rel="stylesheet"> | |
<link href="css/bootstrap-responsive.css" rel="stylesheet"> | |
<style type="text/css"> | |
body { | |
padding-top: 60px; | |
padding-bottom: 40px; |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Master-Detail</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link href="css/bootstrap.css" rel="stylesheet"> | |
<style type="text/css"> | |
body { | |
padding-top: 60px;padding-bottom: 40px; |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> | |
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> | |
<menubar> | |
<menu label="Base de Datos"> | |
<menupopup/> | |
</menu> | |
<menu label="Tabla"> | |
<menupopup/> | |
</menu> |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> | |
<hbox> | |
<vbox id="vboxAcordeon"> | |
<tabbox id="tabBoxAcordeon" orient="vertical"> | |
<tabs id="tabAutores" hidden="false" orient="vertical"> | |
<tab label="Autores" id="tabAutores" linkedpanel="panelAutores"/> | |
<tab label="Libros" id="tabLibros"/> | |
<tab label="Editoriales" id="tabEditoriales"/> | |
<tab id="tabClasificacion" label="Clasificacion"/> |
This file contains hidden or 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
class File | |
open: -> | |
nsIFilePicker = Components.interfaces.nsIFilePicker | |
fp = Components.classes["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker) | |
fp.init(window, "Open File", nsIFilePicker.modeOpen) | |
fp.appendFilters(nsIFilePicker.filterText | nsIFilePicker.filterAll) | |
res = fp.show() | |
if (res == nsIFilePicker.returnOK) | |
thefile = fp.file | |
data = @read(thefile.path) |
This file contains hidden or 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
<mockup version="1.0" skin="sketch" measuredW="788" measuredH="692" mockupW="771" mockupH="692"> | |
<controls> | |
<control controlID="35" controlTypeID="com.balsamiq.mockups::MenuBar" x="17" y="21" w="573" h="29" measuredW="568" measuredH="29" zOrder="2" locked="false" isInGroup="-1"> | |
<controlProperties> | |
<text>Archivo%2CEditar%2CVer%2CIr%2CMensaje%2CEventos%20y%20Tareas%2CHerramientas%2CAyuda</text> | |
</controlProperties> | |
</control> | |
<control controlID="38" controlTypeID="com.balsamiq.mockups::FieldSet" x="17" y="15" w="771" h="87" measuredW="200" measuredH="170" zOrder="1" locked="false" isInGroup="-1"> | |
<controlProperties> | |
<text/> |
NewerOlder