
| Automatic | Human review | |
|---|---|---|
| Priority 1 | 30 | 86 |
| Priority 2 | 2 | 125 |
| Priority 3 | 0 | 40 |

















gravelmuncha



Hola, he estado programando un script para conectar por wpa a civugr-v2, ya que aun no tengo ni idea de como conectar a la red mediante network manager, os explico un poco lo que hice:
· Cree un archivo de configuración para wpa_supplicant (que posteriormente cargaré) y lo guardé en /scripts/
· Cree un archivo tipo script para que usase dicho archivo de configuración y solicitase una ip mediante el cliente dhclient.
· En último lugar, cree un lanzador en el escritorio de gnome, que fuese arrancado con gksu, así evitamos tener que usar varias contraseñas con dicho script.
Si alguien quiere información acerca de como hacer estos pasos los publicaré, incluidos los permisos de usuario.
Saludos
Yo he actualizado mi scrip para que conecte más rápido, ¿cuál es el tuyo?

El network manager no me llega a funcionar bien, y lo mismo ocurre con otro gestor de conexiones que instalé. Por cierto, que seguimos con el problema de que, con los el fichero de configuración que nos proporcionan hay que hacer:

para acceder a otras redes inalámbricas. ¿Alguien ha tenido tiempo de mirar una solución elegante a esto?
Buenas, yo he hecho uno script que genera un script de conexión (valga la redundancia ;-) ) Te pide que le des el nombre de la interfaz inalámbrica y que le des el nombre de tus redes y sus contraseñas, hombre el script no es la panacea pero está apañao pq el script que genera permite conectar fácilemente a las redes, a ver si me conecto luego desde linux y os pongo por aqui el script.
PD: incluso se me ocurre un script que te liste todas las redes, tu elijas una y si tiene clave se la des para que se conecte. Además, no es muy difícil de hacer, si tengo tiempo lo haré….
Un saludo
Minipunto por el kill, javism 


. Es una buena idea incluirlo en el script y no tener que llamarlo siempre.
Aprovecho para preguntar si alguien sabe cómo conectar a la cvi-ugr2 usando el applet del network manager (que ya lo pregunté por otra hebra y nadie supo nada). Lo he tratado de configurar varias veces y no vale «pa ná» 


. ¿Alguien ha tenido éxito?
Yo tampoco he tenido éxito a la hora de configurarlo por el network manager, simplemente hice un script que carga la configuración del wpa_supplicant, lo dejo por aquí.
#!/bin/sh
ifconfig eth1 down
ifconfig eth1 up
killall wpa_supplicant
killall dhclient
wpa_supplicant -c wpa_cviugr.conf -i eth1 -D wext -B
sleep 1
dhclient eth1
Le dais permiso de ejecución y arrancais como root.
PD: El archivo de configuración es el mismo que se ve en C.S.I.R.C.
hola a todos!
He hecho un programita para crear (1) el fichero de configuración, (2) el script que llama al wpa_supplicant y (3) un acceso directo en el escritorio para lanzarlo fácilmente.
Simplemente copias este programa Perl donde tú quieras, lo ejecutas, le indicas los datos que te pida, y ya está: doble clic al acceso directo del escritorio.
Como siempre digo: yo no he inventado nada, sólo he recopilado información de diversas fuentes, y he hecho la gaita de poner el acceso directo (que parece algo como más de alto nivel) 


#!/usr/bin/perl
print "\n\nIndica la red a la que quieres conectar:\n";
print "\n\t1. cviugr-v2";
print "\n\t2. otra red \n\n\t\t";
my $entrada = <STDIN>;
chop($entrada);


rint "\nPara las redes con clave WEP o WPA (sin id.) usa el \"wifi-radar\" ";
xit(0);
}
my $usuario="";
my $clave="";
if($entrada eq "1" 


{


rint "\n\nIndique el nombre de usuario: ";
usuario = <STDIN>; chop($usuario);
rint "\n\nIndique la clave de usuario: ";
clave = <STDIN>; chop($clave);
onfigurar_wpa_usuario_clave( $usuario , $clave );
}
print "\n\n";
################################################ #########################
sub configurar_wpa_usuario_clave {
my ($usuario,$clave)=@_;
my @output = `pwd`;
my $directorio_actual = $output[0];
chop($directorio_actual);
my @output = `cd ; pwd`;
my $accesodirecto = $output[0];
chop($accesodirecto);
# CREAR EL SCRIPT wpa_cviugrv2.sh
# PARA LA CONEXIÓN CVIUGR-V2
open(F,">wpa_cviugrv2.sh" 


;
print F "#!/bin/sh \n";
print F "ifconfig eth1 down \n";
print F "ifconfig eth1 up \n";
print F "killall wpa_supplicant \n";
print F "killall dhclient \n";
print F "wpa_supplicant -c $directorio_actual/wpa_cviugrv2.conf -i eth1 -D wext -B \n";
print F "sleep 1 \n";
print F "dhclient eth1 \n";
close(F);
# CREAR EL FICHERO wpa_cviugrv2.conf
# PARA LA CONEXIÓN CVIUGR-V2
open(F,">wpa_cviugrv2.conf" 


;
print F "ctrl_interface=/var/run/wpa_supplicant \n";
print F "eapol_version=1 \n";
print F "ap_scan=1 \n";
print F "network={ \n";
print F " ssid=\"cviugr-v2\" \n";
print F "key_mgmt=WPA-EAP \n";
print F "proto=WPA \n";
print F "eap=TTLS \n";
print F "anonymous_identity=\"anonymous\@ugr.es\" \n";
print F "identity=\"$usuario\" \n";
print F "password=\"$clave\" \n";
print F "priority=2 \n";
print F "phase2=\"auth=PAP\" \n";
print F "} \n";
close(F);
$accesodirecto = "$accesodirecto/Desktop/conectar_a_cviugrv2.desktop";
open(F,">$accesodirecto" 


;
print F "\n[Desktop Entry]\n";
print F "Encoding=UTF-8\n";
print F "Version=1.0\n";
print F "Type=Application\n";
print F "Terminal=false\n";
print F "Exec=gksudo perl $directorio_actual/wpa_cviugrv2.sh\n";
print F "Name[es_ES]=conectar_a_cviugrv2\n";
print F "Icon[es_ES]=/usr/share/pixmaps/gksu.png\n";
print F "Name=conectar_a_cviugrv2\n";
print F "Icon=/usr/share/pixmaps/gksu.png\n";
close(F);
print "\n\nPuedes conectar a la red $red tecleando \" sudo perl wpa_cviugrv2.sh \" ";
print "\no bien a través del acceso directo creado en el escritorio.";
}
########################################################### ##############
hola de nuevo...
creo que no ha sido buena idea copiar el script directamente.
Os lo dejo en:


http://atc.ugr.es/~pedro/docencia/config_wpa.txt
Lo descargáis en vuestro portátil, en vuestra cuenta, y lo ejecutáis de la siguiente forma:


perl config_wpa.txt
con eso os crea los ficheros necesarios y el enlace directo en el escritorio.
un saludo
Gracias, yo ya lo tengo configurado, pero es un buen script.
-
eldiegoj (tecnología, cultura y sociedad comentadas desde una óptica tecnófila)
Hola, he estado probando el Script y funciona correctamente, el enlace del escritorio es lo único que no me funciona, así que tengo que ejecutarlo dos veces, desde el terminal, para que este arranque, pero funciona a la perfección, un 10 para el Script.
Gracias por el script Pedro, funciona a la perfección.
Como comentarios decir que quizás alguno tengáis que modificar las líneas en las que aparece eth1 y sustituirlas por vuestro interfaz de red y que en mi caso he tenido que añadir al script de conexión un killall NetworkManager ya que si no no se conectaba...
No he probado el enlace del escritorio así que no lo comento.
Añado que uso el script desde Debian Etch. ¿Aún no se pueden editar los mensajes?
El Script ha sido probado desde un MacBook Santa Rosa 3.1 haciendo unas cuantas modificaciones y usando ndiswrapper con los drivers broadcomm, comentar que funciona a la perfección y sin ningún problema, gracias Pedro.
Saludos !
He probado el script de Pedro, he cambiado la interfaz de red a eth0, que es la que tengo yo, pero no sucede nada. No intenta conectarse ni se crea el icono en el escritorio.
Este script es bastante antiguo, si tienes Network Manager (el gestor de conexiones que usa Ubuntu, por ejemplo) es tan sencillo como configurar la conexión adecuadamente:
http://etsiit.ugr.es/FAQ/doku.php?id=cvi-ugr
Me lo contaron y lo olvidé. Lo vi y lo entendí. Lo hice y lo aprendí.
Os recomiendo que os instaleis un gestor de redes que se llama "wicd". No es compatible con network-manager, pero las conexiones a redes WPA son automáticas, sólo teneis que modificar un script de los que trae por defecto con los protocolos que usa la cviugr-v2 y ya esta.
Para mi gusto, es muchísimo mejor que estar lanzando el script cada vez que te conectas, simplemente le das a conectar y punto.
Willaco, con Network Manager también es simplemente darle a conectar (una vez que has configurado la conexión la primera vez con el menú que se ve en el enlace).
Me lo contaron y lo olvidé. Lo vi y lo entendí. Lo hice y lo aprendí.
No lo había visto, disculpas.
Desde que me configuré la cviugr-v2, sólo estaba el script para lanzarlo con wpasupplicant, y como ya me instalé wicd. . . desde entonces no había visto network-manger.
@Willaco: ¿podrías poner el script por aquí?
JJ
Por supuesto JJ.
La distro que uso actualmene es la Ubuntu 8.10 (lo digo por que lo mismo cambian los directorios en otra).
Los scripts de conexión de wicd están en /etc/wicd/encryption/templates
El archivo se llama ttls-pap y el contenido es el siguiente:

Lo único que hay que cambiar es tu usuario por <AQUI_TIENES_QUE_PONER_TU_USUARIO>, tu contraseña por <AQUI_TIENES_QUE_PONER_TU_CONTRASEÑA> y la ruta donde tengas descargado el certificado SCS_CAs.pem en el apartado ca_cert.
Saludos.
Gracias!










[WAI] Priority 1 accessibility issues. A Web content developer must satisfy this checkpoint. Otherwise, one or more groups will find it impossible to access information in the document. Satisfying this checkpoint is a basic requirement for some groups to be able to use Web documents. 30 automatically detected problems and 86 problems that require human review have been found.
Verify that text equivalent for image is useful
Line 36: <img src="../../images/common/escudoetsiit.png">
Line 37: <img src="../../images/common/escudougr.png">
Line 190: <img src="/icons/smileys/6.png" />
Line 190: <img src="/icons/smileys/1.png" />
Line 247: <img src="/icons/smileys/1.png" />
Line 252: <img src="/icons/smileys/6.png" />
Line 256: <img src="/icons/smileys/6.png" />
Line 269: <img src="/icons/smileys/6.png" />
Line 279: <img src="/icons/smileys/6.png" />
Line 295: <img src="/icons/smileys/6.png" />
If describing the image will add information, you need to provide a description of the image with a valid longdesc attribute (56)
Line 36: <img src="../../images/common/escudoetsiit.png">
Line 37: <img src="../../images/common/escudougr.png">
Line 89: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 111: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 118: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 148: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 155: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 173: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 180: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 190: <img src="/icons/smileys/6.png" />
Line 190: <img src="/icons/smileys/1.png" />
Line 198: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 205: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 230: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 237: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 247: <img src="/icons/smileys/1.png" />
Line 252: <img src="/icons/smileys/6.png" />
Line 256: <img src="/icons/smileys/6.png" />
Line 269: <img src="/icons/smileys/6.png" />
Line 279: <img src="/icons/smileys/6.png" />
Line 295: <img src="/icons/smileys/6.png" />
Line 316: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 323: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 345: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 352: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 371: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 378: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 396: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 403: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 421: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 428: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 446: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 453: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 471: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 478: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 496: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 503: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 522: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 529: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 547: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 554: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 572: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 579: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 598: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 605: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 623: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 630: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 671: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 678: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 695: <img src="../../images/common/info1.png" alt="contactar con equipo web" title="contactar con equipo web"/>
Line 696: <img src="../../images/common/info2.png" title="contactar con secretaria" alt="contactar con secretaria" />
Line 701: <img src="../../images/common/logopie.gif" alt="logo ETSIIT" />
Line 704: <img src="../../images/common/xhtml_valid.png" alt="xhtml valid" />
Line 705: <img src="../../images/common/taw3_valid.png" alt="taw3 valid" />
Line 706: <img src="../../images/common/css_valid.gif" alt="css valid" />
Line 707: <img src="../../images/common/firefox.png" alt="Optimizado para firefox" />
Verify that valid text equivalents are provided for PRE and XMP elements used to create ASCII art (4)
Line 252: <pre class="pre">
Line 256: <pre class="pre">
Line 335: <pre class="pre">
Line 336: <pre class="pre">
Verify that dynamic content is accessible or provide an alternative. (4)
Line 12: <script type="text/javascript" src="../../js_loader.php?md5=a608e0526243627fa63451399d145262">
Line 14: <script language="javascript">
Line 728: <script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript">
Line 730: <script type="text/javascript">
Missing NOSCRIPT element with accessible alternative content for scripts in this page. Verify if it is needed (4)
Line 12: <script type="text/javascript" src="../../js_loader.php?md5=a608e0526243627fa63451399d145262">
Line 14: <script language="javascript">
Line 728: <script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript">
Line 730: <script type="text/javascript">
Line 88: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('gravelmuncha');">
Line 117: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(436);">
Line 154: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Tarnum');">
Line 179: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Alfonso');">
Line 204: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('gravelmuncha');">
Line 236: <a class="tiponombre" href="javascript:void(null);" onclick="showFicha(1443);">
Line 322: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(1443);">
Line 351: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Diego J.');">
Line 377: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('gravelmuncha');">
Line 402: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Extremeño');">
Line 427: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Extremeño');">
Line 452: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Mr. X');">
Line 477: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('leynar');">
Line 502: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('J. L. PiNo');">
Line 528: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Willaco');">
Line 553: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('J. L. PiNo');">
Line 578: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Willaco');">
Line 604: <a class="tiponombre" href="javascript:void(null);" onclick="showFicha(1313);">
Line 629: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(716);">
Line 677: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(1313);">
Check it through the whole document
Check it through the whole document
Ensure this document can be read without style sheets (4)
Line 10: <link rel="stylesheet" type="text/css" href="../../css_loader.php?md5=61f14a4aff3edf9cf6808debae4e01bf" title="default" />
Line 129: <div style="font-family: 'Courier New', Courier, monospace;">
Line 137: <div style="font-family: 'Courier New', Courier, monospace;">
Line 641: <div style="font-family: 'Courier New', Courier, monospace;">
Verify that equivalents of dynamic content are updated and avaliable as often as the dynamic content. (4)
Line 12: <script type="text/javascript" src="../../js_loader.php?md5=a608e0526243627fa63451399d145262">
Line 14: <script language="javascript">
Line 728: <script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript">
Line 730: <script type="text/javascript">
Check it through the whole document
This element may not be accesible to all users. Please ensure there is an accesible interface to this object (4)
Line 12: <script type="text/javascript" src="../../js_loader.php?md5=a608e0526243627fa63451399d145262">
Line 14: <script language="javascript">
Line 728: <script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript">
Line 730: <script type="text/javascript">
Check it through the whole document
Check it through the whole document
[WAI] Priority 2 accessibility issues. A Web content developer should satisfy this checkpoint. Otherwise, one or more groups will find it difficult to access information in the document. Satisfying this checkpoint will remove significant barriers to accessing Web documents. 2 automatically detected problems and 125 problems that require human review have been found.
Verify that all headers are properly marked up ("h1"-"h6" elements).
Line 698: <h3>
Line 14: <script language="javascript">
Poor visibility between text and background colors (56)
Line 36: <img src="../../images/common/escudoetsiit.png">
Line 37: <img src="../../images/common/escudougr.png">
Line 89: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 111: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 118: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 148: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 155: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 173: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 180: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 190: <img src="/icons/smileys/6.png" />
Line 190: <img src="/icons/smileys/1.png" />
Line 198: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 205: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 230: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 237: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 247: <img src="/icons/smileys/1.png" />
Line 252: <img src="/icons/smileys/6.png" />
Line 256: <img src="/icons/smileys/6.png" />
Line 269: <img src="/icons/smileys/6.png" />
Line 279: <img src="/icons/smileys/6.png" />
Line 295: <img src="/icons/smileys/6.png" />
Line 316: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 323: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 345: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 352: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 371: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 378: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 396: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 403: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 421: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 428: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 446: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 453: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 471: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 478: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 496: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 503: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 522: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 529: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 547: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 554: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 572: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 579: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 598: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 605: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 623: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 630: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 671: <img src="http://etsiit.ugr.es/icons/16x16/actions/attach.png" alt="Enlace permanente" title="Enlace permanente"/>
Line 678: <img src="/icons/16x16/actions/mail_new.png" alt="Enviar mensaje" title="Enviar mensaje" />
Line 695: <img src="../../images/common/info1.png" alt="contactar con equipo web" title="contactar con equipo web"/>
Line 696: <img src="../../images/common/info2.png" title="contactar con secretaria" alt="contactar con secretaria" />
Line 701: <img src="../../images/common/logopie.gif" alt="logo ETSIIT" />
Line 704: <img src="../../images/common/xhtml_valid.png" alt="xhtml valid" />
Line 705: <img src="../../images/common/taw3_valid.png" alt="taw3 valid" />
Line 706: <img src="../../images/common/css_valid.gif" alt="css valid" />
Line 707: <img src="../../images/common/firefox.png" alt="Optimizado para firefox" />
When an appropriate markup language exits, use markup rather than images to convey information.
Verify that the document validates to published formal grammars (HTML-XHTML, CSS).
Verify absolute units of measure are not used on stylesheets (1)
Line 10: <link rel="stylesheet" type="text/css" href="../../css_loader.php?md5=61f14a4aff3edf9cf6808debae4e01bf" title="default" />
Verify that all lists are properly marked up ("ul","ol","dl" elements).
Verify that all the quotations have been properly marked up ("q","blockquote" elements).
For scripts and applets, ensure that event handlers are input device-independent (4)
Line 12: <script type="text/javascript" src="../../js_loader.php?md5=a608e0526243627fa63451399d145262">
Line 14: <script language="javascript">
Line 728: <script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript">
Line 730: <script type="text/javascript">
For non-decorative effects provide redundant event handlers to ensure device-independent. (21)
Line 44: <input type="text" name="login_username" size="10" title="Dominio opcional. Dominios válidos: turing y etsiit" onclick="if(document.getElementById('login_username').value=='login ') document.getElementById('login_username').value='';" maxlength="32" id="login_username" value="login "/>
Line 88: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('gravelmuncha');">
Line 117: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(436);">
Line 154: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Tarnum');">
Line 179: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Alfonso');">
Line 204: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('gravelmuncha');">
Line 236: <a class="tiponombre" href="javascript:void(null);" onclick="showFicha(1443);">
Line 322: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(1443);">
Line 351: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Diego J.');">
Line 377: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('gravelmuncha');">
Line 402: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Extremeño');">
Line 427: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Extremeño');">
Line 452: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Mr. X');">
Line 477: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('leynar');">
Line 502: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('J. L. PiNo');">
Line 528: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Willaco');">
Line 553: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('J. L. PiNo');">
Line 578: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Willaco');">
Line 604: <a class="tiponombre" href="javascript:void(null);" onclick="showFicha(1313);">
Line 629: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(716);">
Line 677: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(1313);">
Verify that there is no blinking content in the page.
Verify whether there is no moving content in the page, or there is a way to freeze the movement.
This element may not be accesible to all users. Please ensure there is an accesible interface to this object (4)
Line 12: <script type="text/javascript" src="../../js_loader.php?md5=a608e0526243627fa63451399d145262">
Line 14: <script language="javascript">
Line 728: <script src="https://ssl.google-analytics.com/urchin.js" type="text/javascript">
Line 730: <script type="text/javascript">
For scripts, specify logical event handlers rather than device-dependent event handlers (21)
Line 44: <input type="text" name="login_username" size="10" title="Dominio opcional. Dominios válidos: turing y etsiit" onclick="if(document.getElementById('login_username').value=='login ') document.getElementById('login_username').value='';" maxlength="32" id="login_username" value="login "/>
Line 88: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('gravelmuncha');">
Line 117: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(436);">
Line 154: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Tarnum');">
Line 179: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Alfonso');">
Line 204: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('gravelmuncha');">
Line 236: <a class="tiponombre" href="javascript:void(null);" onclick="showFicha(1443);">
Line 322: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(1443);">
Line 351: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Diego J.');">
Line 377: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('gravelmuncha');">
Line 402: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Extremeño');">
Line 427: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Extremeño');">
Line 452: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Mr. X');">
Line 477: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('leynar');">
Line 502: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('J. L. PiNo');">
Line 528: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Willaco');">
Line 553: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('J. L. PiNo');">
Line 578: <a class="tipoalias" href="javascript:void(null);" onclick="showFichaAlias('Willaco');">
Line 604: <a class="tiponombre" href="javascript:void(null);" onclick="showFicha(1313);">
Line 629: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(716);">
Line 677: <a class="tiponick" href="javascript:void(null);" onclick="showFicha(1313);">
This anchor element will open a new window that can disorient some users (4)
Line 190: <a href="http://misvaguedades.blogspot.com" class="urlextern" target="_blank" title="http://misvaguedades.blogspot.com" rel="nofollow">
Line 363: <a href="http://www.eldiegoj.blogspot.com/" class="urlextern" target="_blank" title="http://www.eldiegoj.blogspot.com/" rel="nofollow">
Line 488: <a href="http://elrincondeleynar.blogspot.com/" class="urlextern" target="_blank" title="http://elrincondeleynar.blogspot.com/" rel="nofollow">
Line 514: <a href="http://etsiit.ugr.es/FAQ/doku.php?id=cvi-ugr" class="urlextern" target="_blank" title="http://etsiit.ugr.es/FAQ/doku.php?id=cvi-ugr" rel="nofollow">
Verify that this label is positioned close to its corresponding form controls (2)
Line 43: <label for="login_username">
Line 46: <label for="login_password">
Check it through the whole document
Ensure that each link clearly identify its target.
Check it through the whole document
Check it through the whole document
Check it through the whole document
[WAI] Priority 3 accessibility issues. A Web content developer may address this checkpoint. Otherwise, one or more groups will find it somewhat difficult to access information in the document. Satisfying this checkpoint will improve access to Web documents. No automatically detected problems and 40 problems that require human review have been found.
Check it through the whole document
Specify the expansion of each abbrevation or acronym in a document where it first occurs
There is no tab order in this document. A tab order makes controls easier to navigate for many users
There are no keyboard shortcut keys to any of the controls in this document. Verify if they are needed.
If these sequential links do not have separation characters, include non-link printable character between them (23)
Line 37: <a href="http://www.ugr.es">
Line 89: <a href="../../apps/mensajes/index.php?action=enviar&alias=gravelmuncha">
Line 118: <a href="../../apps/mensajes/index.php?action=enviar&nick=javism@turing">
Line 155: <a href="../../apps/mensajes/index.php?action=enviar&alias=Tarnum">
Line 180: <a href="../../apps/mensajes/index.php?action=enviar&alias=Alfonso">
Line 205: <a href="../../apps/mensajes/index.php?action=enviar&alias=gravelmuncha">
Line 237: <a href="../../apps/mensajes/index.php?action=enviar&nick=castillo@etsiit">
Line 323: <a href="../../apps/mensajes/index.php?action=enviar&nick=castillo@etsiit">
Line 352: <a href="../../apps/mensajes/index.php?action=enviar&alias=Diego J.">
Line 378: <a href="../../apps/mensajes/index.php?action=enviar&alias=gravelmuncha">
Line 403: <a href="../../apps/mensajes/index.php?action=enviar&alias=Extremeño">
Line 428: <a href="../../apps/mensajes/index.php?action=enviar&alias=Extremeño">
Line 453: <a href="../../apps/mensajes/index.php?action=enviar&alias=Mr. X">
Line 478: <a href="../../apps/mensajes/index.php?action=enviar&alias=leynar">
Line 503: <a href="../../apps/mensajes/index.php?action=enviar&alias=J. L. PiNo">
Line 529: <a href="../../apps/mensajes/index.php?action=enviar&alias=Willaco">
Line 554: <a href="../../apps/mensajes/index.php?action=enviar&alias=J. L. PiNo">
Line 579: <a href="../../apps/mensajes/index.php?action=enviar&alias=Willaco">
Line 605: <a href="../../apps/mensajes/index.php?action=enviar&nick=jmerelo@etsiit">
Line 630: <a href="../../apps/mensajes/index.php?action=enviar&nick=djwill@turing">
Line 678: <a href="../../apps/mensajes/index.php?action=enviar&nick=jmerelo@etsiit">
Line 705: <a href="http://www.tawdis.net/taw3/online?nivel=3&url=https://etsiit.ugr.es/apps/foro/index.php?idhebra=1355">
Line 707: <a href="http://www.spreadfirefox.com/">
Check it through the whole document
Check it through the whole document
Check it through the whole document
If this form is used to submit a search, verify that enable a variety of skill levels and preferences (1)
Line 41: <form action="https://etsiit.ugr.es/apps/foro/index.php?idhebra=1355" method="post" id="login_form">
Check it through the whole document
If the page is part of a document collection, verify that you provide information about the collection.
Check it through the whole document
Consistent page layout and recognizable graphics benefit all users. In particular, they help people with cognitive disabilities or who have difficulty reading (1)
Line 10: <link rel="stylesheet" type="text/css" href="../../css_loader.php?md5=61f14a4aff3edf9cf6808debae4e01bf" title="default" />
Verify that a means to skip over multi-line "ASCII art" is provided.
A link must be provided to skip over this character based (ASCII art) artwork (4)
Line 252: <pre class="pre">
Line 256: <pre class="pre">
Line 335: <pre class="pre">
Line 336: <pre class="pre">