All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.semanticwb.portal.resources.WBSiteMap.xml Maven / Gradle / Ivy

The newest version!
<?xml version="1.0" encoding="ISO-8859-1"?>
<admresource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <xslfile>admresource.xslt</xslfile>
    <form name="frmAdmRes" action="true" method="POST" enctype="multipart/form-data" jsframework="dojo" >
        <admdbconnmgr defconn="true"/>
        <fieldset legend="Aspecto">
            <input type="file" name="template" label="Plantilla (xsl, xslt)" filetype="xsl|xslt" jsrequired="false" showfile="true" isshowfiletype="true" isremovefile="true" showmsg="Ver plantilla..." editmsg="Editar plantilla..." removemsg="Quitar plantilla" msg="Plantilla actual: " bydefault="{@webpath}/swbadmin/xsl/WBSiteMap/WBSiteMap.xsls" msgbydefault="Plantilla por defecto: " />
            <input type="text" name="title" label="T?tulo:" maxlength="60" promptMessage="T?tulo" />
            <input type="text" name="level" label="Nivel de despliegue:" value="1" maxlength="3" jsvaltype="js_numbers" invalidMessage="Nivel debe ser un valor num?rico" promptMessage="Nivel de despliegue" />
            <input type="text" name="home" label="Identificador de la secci?n inicial:" maxlength="50" promptMessage="Identificador de la secci?n inicial del mapa"/>
        </fieldset>

        <fieldset legend="Configuraci?n de estrategia">
            <statictext name="txtTarget">?C?mo desea acceder al recurso de mapa de sitio?:</statictext>
            <input type="text" name="lnktexto" label="Texto de la liga:" maxlength="50" promptMessage="Texto de la liga" />
            <input type="text" name="btntexto" label="Etiqueta del bot?n:" maxlength="50" promptMessage="Etiqueta del bot?n" />
            <input type="file" name="img" label="Imagen (gif, jpg, jpeg, png):" filetype="jpg|jpeg|gif|png" showfile="true" isshowfiletype="true" isremovefile="true" removemsg="Quitar imagen" />
            <input type="text" name="alt" label="Texto alterno:" maxlength="50" promptMessage="Texto alterno para la imagen. Pauta de accesibilidad" />

            <statictext name="note">
            <![CDATA[
                <font style="color: #428AD4; font-family: Verdana; font-size:10px;">
                * Dato requerido
                </font>
            ]]>
            </statictext>
        </fieldset>

        <fieldset>
            <input type="submit" value="Guardar" onclick="jsValida(this.form)" />
            <input type="reset" value="Restablecer"/>
        </fieldset>
    </form>

    <script type="text/javascript">
        <![CDATA[
        function jsValida(frm) {
            if( !frm.lnktexto.value && !frm.btntexto.value && !frm.img.value  && !dojo.byId('wbNoFile_img') ) {
                alert('Indique el mecanismo para acceder al recurso de mapa de sitio.');
                frm.lnktexto.focus();
                return false;
            }
            if( frm.img.value && !frm.alt.value ) {
                alert('Indique el texto alterno para la imagen.');
                frm.alt.focus();
                return false;
            }
            return true;
        }
        ]]>
    </script>
</admresource>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy