<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wikiprogramming.alfredgg.dev/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wikiprogramming.alfredgg.dev/feed.php">
        <title>Programming fw:others</title>
        <description></description>
        <link>https://wikiprogramming.alfredgg.dev/</link>
        <image rdf:resource="https://wikiprogramming.alfredgg.dev/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-05-13T10:33:37+0000</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:cake&amp;rev=1589016310&amp;do=diff"/>
                <rdf:li rdf:resource="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:html5fw&amp;rev=1589016310&amp;do=diff"/>
                <rdf:li rdf:resource="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:jquery&amp;rev=1589016310&amp;do=diff"/>
                <rdf:li rdf:resource="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:jquerylibs&amp;rev=1589016310&amp;do=diff"/>
                <rdf:li rdf:resource="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:less&amp;rev=1589016310&amp;do=diff"/>
                <rdf:li rdf:resource="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:webpy&amp;rev=1589016310&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wikiprogramming.alfredgg.dev/lib/tpl/dokuwiki/images/favicon.ico">
        <title>Programming</title>
        <link>https://wikiprogramming.alfredgg.dev/</link>
        <url>https://wikiprogramming.alfredgg.dev/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:cake&amp;rev=1589016310&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-05-09T09:25:10+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>CakePHP</title>
        <link>https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:cake&amp;rev=1589016310&amp;do=diff</link>
        <description>CakePHP

Instalación

	*  Al descomprimir te toparás con 3 carpetas. En la carpeta app será donde la aplicación sea desarrollada, en cake donde está el código de CakePHP y en vendors donde podemos colocar otras librerías.
	*  Se basa en el patrón MVC (Modelo Vista Controlador) y por ello existen clases Modelo, clases Vista y clases Controlador que se guardan en los directorios /app/models, /app/view y /app/controllers respectivamente.</description>
    </item>
    <item rdf:about="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:html5fw&amp;rev=1589016310&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-05-09T09:25:10+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>HTML5 wrappers y utilidades</title>
        <link>https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:html5fw&amp;rev=1589016310&amp;do=diff</link>
        <description>HTML5 wrappers y utilidades

Utilidades

Modernizr

Para la visualización de páginas HTML5 en navegadores que no lo soporten.

	*  &lt;http://www.modernizr.com/&gt;

Checkear el soporte para...

Geolocation:


if (Modernizr.geolocation) {
  // let's find out where you are!
} else {
  // no native geolocation support available :(
  // maybe try Gears or another third-party solution
}</description>
    </item>
    <item rdf:about="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:jquery&amp;rev=1589016310&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-05-09T09:25:10+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>jQuery</title>
        <link>https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:jquery&amp;rev=1589016310&amp;do=diff</link>
        <description>jQuery

Es una pequeña pero potente librería para agilizar las acciones de JavaScript sobre el DOM de la página, que se basa en el enlace de funciones a eventos o acciones del DOM. 

Básico

Utilización

Para utilizarlo en nuestro código indicaremos en una tag script habiendo incluido previamente el archivo que contiene jquery en la ruta seleccionada:</description>
    </item>
    <item rdf:about="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:jquerylibs&amp;rev=1589016310&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-05-09T09:25:10+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Librerías de jQuery y JavaScript</title>
        <link>https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:jquerylibs&amp;rev=1589016310&amp;do=diff</link>
        <description>Librerías de jQuery y JavaScript

Librerías de jQuery

Table Sorter

	*  Función: Crear una tabla con la posibilidad de ordenar. 
	*  Link: &lt;http://tablesorter.com/docs/&gt;
	*  [Ficheros]

Es necesario que la tabla tenga las tags THEAD y TBODY. 

Para agregar la ordenación a la tabla:


$(document).ready(function() 
    { 
        $(&quot;#myTable&quot;).tablesorter(); 
    } 
);</description>
    </item>
    <item rdf:about="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:less&amp;rev=1589016310&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-05-09T09:25:10+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>LESS</title>
        <link>https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:less&amp;rev=1589016310&amp;do=diff</link>
        <description>LESS

Es un lenguaje que compila a CSS.

	*  Página oficial
	*  Wiki

Página basada en: &lt;http://www.genbetadev.com/desarrollo-web/less-el-lenguaje-de-hojas-de-estilo-dinamico&gt;.

Uso

Agregar LESS

En JavaScript


&lt;link rel=&quot;stylesheet/less&quot; type=&quot;text/css&quot; href=&quot;styles.less&quot;&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;less-1.1.3.js&quot;&gt;&lt;/script&gt;&lt;/link&gt;


A partir del compilador</description>
    </item>
    <item rdf:about="https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:webpy&amp;rev=1589016310&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-05-09T09:25:10+0000</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>web.py</title>
        <link>https://wikiprogramming.alfredgg.dev/doku.php?id=fw:others:webpy&amp;rev=1589016310&amp;do=diff</link>
        <description>web.py

	*  Web
	*  Documentación

Uso

Cómo funciona?

web.py se basa en la estructura de las URL de la página web. Para trabajar con este tendremos que...

	*  Importar el módulo web.
	*  Indicar la estructura de la URL. 
	*  Indicar qué clases se utilizarán mediante</description>
    </item>
</rdf:RDF>
