diff options
author | Jesús <heckyel@hyperbola.info> | 2020-06-11 19:23:10 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-06-11 19:23:10 -0500 |
commit | dfc02453cc97c7c7762afbabb332fcad117492cd (patch) | |
tree | 3071bb30cdf8a21d34fa0e5cfd3ced4b63f75d8d /plugins | |
parent | b515791e70ed88894305481b2679f1f6b22dd124 (diff) | |
download | libretube-dfc02453cc97c7c7762afbabb332fcad117492cd.tar.lz libretube-dfc02453cc97c7c7762afbabb332fcad117492cd.tar.xz libretube-dfc02453cc97c7c7762afbabb332fcad117492cd.zip |
tipue-search: updated documentation
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/tipue-search/README.md | 69 |
1 files changed, 50 insertions, 19 deletions
diff --git a/plugins/tipue-search/README.md b/plugins/tipue-search/README.md index 1a2d615..b8b8da0 100644 --- a/plugins/tipue-search/README.md +++ b/plugins/tipue-search/README.md @@ -1,15 +1,28 @@ Tipue Search ============ -A Pelican plugin to serialize generated HTML to JSON that can be used by jQuery plugin - Tipue Search. +A Pelican plugin to serialize generated HTML to JSON. Copyright (c) Talha Mansoor +Copyright (c) 2020 - Jesús E. + +Original Autority +================= Author | Talha Mansoor ----------------|----- -Author Email | talha131@gmail.com -Author Homepage | http://onCrashReboot.com -Github Account | https://github.com/talha131 +Author Email | talha131@gmail.com +Author Homepage | http://onCrashReboot.com +Github Account | https://github.com/talha131 + +Modification +============ + +Author | Jesús E. +----------------|----- +Author Email | heckyel@hyperbola.info +Author Homepage | https://conocimientoslibres.tuxfamily.org/ +Github Account | https://libregit.org/heckyel Why do you need it? =================== @@ -37,21 +50,39 @@ How Tipue Search works Tipue Search serializes the generated HTML into JSON. Format of JSON is as follows ```python -{ - "pages": [ - { - "text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur sodales ligula in libero.", - "tags": "Example Category", - "url" : "http://oncrashreboot.com/plugin-example.html", - "title": "Everything you want to know about Lorem Ipsum" - }, - { - "text": "Sed dignissim lacinia nunc. Curabitur tortor. Pellentesque nibh. Aenean quam. In scelerisque sem at dolor. Maecenas mattis. Sed convallis tristique sem. Proin ut ligula vel nunc egestas porttitor. Morbi lectus risus, iaculis vel, suscipit quis, luctus non, massa. Fusce ac turpis quis ligula lacinia aliquet. Mauris ipsum. Nulla metus metus, ullamcorper vel, tincidunt sed, euismod in, nibh.", - "tags": "Example Category", - "url" : "http://oncrashreboot.com/plugin-example-2.html", - "title": "Review of the book Lorem Ipsum" - } - ] + + "videos": [ + { + "title": "Usar cuenta Jabber/XMPP", + "description": "Usar cuenta Jabber/XMPP Usar una cuenta de Jabber/XMPP es muy fácil. Instalar gajim en Hyperbola GNU/Linux-libre: $ sudo pacman -S gajim python2-axolotl Mostrar Más ¿Qué es Jabber/XMPP? Extensible Messaging and Presence Protocol, más conocido como XMPP (Protocolo extensible de mensajería y comunicación de presencia) (anteriormente llamado Jabber), es un protocolo abierto y extensible basado en XML, originalmente ideado para mensajería instantánea. Con el protocolo XMPP queda establecida una plataforma para el intercambio de datos XML que puede ser usada en aplicaciones de mensajería instantánea. Las características en cuanto a adaptabilidad y sencillez del XML son heredadas de este modo por el protocolo XMPP. A diferencia de los protocolos privativos de intercambio de mensajes como ICQ, Y! y Windows Live Messenger, se encuentra documentado y se insta a utilizarlo en cualquier proyecto. Existen servidores y clientes libres que pueden ser usados sin coste alguno. Tras varios años de su existencia, ha sido adoptado por empresas como Facebook, WhatsApp Messenger y Nimbuzz, entre otras, para su servicio de chat.", + "videoThumbnail": "https://lablibre.tuxfamily.org/theme/../wp-content/uploads/article/poster/2020/05/usar-xmpp.jpeg", + "formatStreams": { + "url": "https://archive.org/download/libreweb/uso-de-cuenta-xmpp.webm" + }, + "author": "Jesús E.", + "authorUrl": "https://lablibre.tuxfamily.org/author/jesus-e/", + "published": "2020-05-20T15:23:44+02:00", + "publishedText": "mié, 20 mayo, 2020", + "time": "16:51", + "tags": "Tutorial", + "url": "https://lablibre.tuxfamily.org/usar-cuenta-jabber-xmpp/" + }, + { + "title": "Happy Birthday To GNU", + "description": "Happy Birthday To GNU Sr. Stephen Fry introduces you to free software, and reminds you of a very special birthday. In this film, Stephen Fry, the actor, humorist and author introduces the viewer to free software and GNU. Along the way, he compares proprietary software to the 'tyranny' of scientific research that cannot be shared, studied and distributed by others. Show More Credits of video Free distros", + "videoThumbnail": "https://lablibre.tuxfamily.org/theme/../wp-content/uploads/article/poster/2008/09/happy-gnu.jpg", + "formatStreams": { + "url": "https://archive.org/download/libreweb/sf-large.webm" + }, + "author": "Free Software Foundation", + "authorUrl": "https://lablibre.tuxfamily.org/author/free-software-foundation/", + "published": "2008-09-02T21:04:48+02:00", + "publishedText": "mar, 02 septiembre, 2008", + "time": "5:51", + "tags": "GNU", + "url": "https://lablibre.tuxfamily.org/happy-birthday-to-gnu/" + } + ] } ``` |