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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xml:lang="es" lang="es" xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> | |
<title>AESA CSS</title> | |
<link rel="shortcut icon" href="/favicon.ico" /> | |
<link rel="stylesheet" type="text/css" media="screen" href="css/reset.css" /> | |
<link rel="stylesheet" type="text/css" media="screen" href="css/text.css" /> | |
<link rel="stylesheet" type="text/css" media="screen" href="css/960.css" /> | |
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css" /> |
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
<?php | |
namespace Symfomanos\WebsiteBundle\Entity; | |
use FOS\UserBundle\Entity\User as BaseUser; | |
/** | |
* @orm:Entity | |
*/ | |
class User extends BaseUser |
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
osukaru@osukaru-VirtualBox:~/www/Symfomanos$ git remote show origin | |
* remote origin | |
Fetch URL: http://github.com/Osukaru/Symfomanos.git | |
Push URL: http://github.com/Osukaru/Symfomanos.git | |
HEAD branch: master | |
Remote branches: | |
#39 tracked | |
dev tracked | |
master tracked | |
Local branches configured for 'git pull': |
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
CREATE OR REPLACE PACKAGE BODY AEGPA_EP.mod_licencias_test IS | |
v_numero_test mod_licencias_test_results.numero_test%TYPE; | |
v_nombre_funcion mod_licencias_test_results.nombre_funcion%TYPE; | |
v_descripcion_test mod_licencias_test_results.descripcion_test%TYPE; | |
v_resultado mod_licencias_test_results.resultado%TYPE; | |
v_resultado_esperado mod_licencias_test_results.resultado_esperado%TYPE; | |
v_test_ok mod_licencias_test_results.test_ok%TYPE; | |
PROCEDURE inicializar_test IS | |
BEGIN |
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
CREATE OR REPLACE PACKAGE BODY AEGPA_EP.mod_licencias IS | |
PROCEDURE entrada (name_array IN OUT OWA.vc_arr, | |
value_array IN OUT OWA.vc_arr) | |
IS | |
submitAction VARCHAR2(255) := pspgen_parameter.get_value(name_array, value_array, 'submitAction'); | |
BEGIN | |
IF submitAction IS NOT NULL THEN | |
mod_licencias_validators.entrada(name_array, value_array); | |
IF pspgen_parameter.get_value(name_array, value_array, '_form_action') IS NOT NULL THEN |
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
CREATE OR REPLACE PROCEDURE MEDICINAV2."MED_EXP_LISTA" (nif IN VARCHAR2, | |
nuevo_exp IN VARCHAR2, | |
msg IN VARCHAR2, | |
dni_original IN VARCHAR2) | |
IS | |
smsg VARCHAR2 (100) := NULL; | |
stramitar VARCHAR2 (1) := NULL; | |
nro_exp NUMBER (4) := NULL; | |
nro_doc_borrador NUMBER (2) := NULL; | |
sid_exp VARCHAR2 (4) := NULL; |
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
concatena = function (obj, sep) { | |
var separator = ""; | |
desarraygar = function (obj) { | |
var result = ""; | |
if (({}).toString.call(obj).match(/\s([a-z|A-Z]+)/)[1].toLowerCase() == "string") { | |
result += separator + obj; | |
separator = sep || ","; | |
} | |
else { | |
for (var i=0; i<obj.length; i++) { |
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
maximoNumeroVocales = function (obj) { | |
maximo = 0; | |
contarVocales = function (obj) { | |
var objNormalizado = obj.toLowerCase().replace(/[á]/, "a").replace(/[é]/,"e").replace(/[í]/, "i").replace(/[ó]/, "o").replace(/[úü]/, "u"), | |
vocales = ["a", "e", "i", "o", "u"], | |
contador = 0, | |
lugarVocal; | |
for (var i = 0; i < obj.length; i++) { | |
lugarVocal = vocales.indexOf(objNormalizado [i]); | |
if (lugarVocal != -1) { |
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 PintarEnConsolaLos100PrimerosNumeros() { | |
console.log(1); | |
console.log(2); | |
console.log(3); | |
console.log(4); | |
console.log(5); | |
console.log(6); | |
console.log(7); | |
console.log(8); | |
console.log(9); |
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( window, undefined ){ | |
// ... jQuery code ... | |
window.HelperJS= window.HJS = HelperJS; | |
})( window ); |
OlderNewer