gloria.tv downloader

'Dump Document in a New Window - JavaScript Source' tutorial was cited in a gloria.tv download source code in 2011.

The Dump Document in a New Window - JavaScript Source tutorial was cited in a gloria.tv download source code in 2011.

Subject:  gloria.tv downloader
Date: Aug 7, 2011
Author: Alexandre Magno
Source: http://userscripts.org/scripts/review/105866

// gloria.tv-downloader.user.js
//
// ==UserScript==
// @name          gloria.tv downloader
// @description	  Show links of video as text
// @namespace     http://www.google.com
// @include       http://*.gloria.tv/?media=*
// @source        http://userscripts.org/scripts/show/105866
// @author        Alexandre Magno
// @version       0.2
// @date          2011-08-06
// ==/UserScript==
...

// Function source code:
// https://www.herongyang.com/JavaScript
// /DOM-Specification-Dump-Document-Example.html
function nodeToXML(node, indentation, out) {
   out += indentation+"<"+node.nodeName.toLowerCase();
   if (node.attributes!=null) {
      for (var i=0; i<node.attributes.length; i++) {
         var item = node.attributes.item(i);
         var value = item.nodeValue;
         if (value==null) value = "";
         out += " "+item.nodeName+"=\""+value+"\"";
      }
   }
   out += ">\n";
   for (var i=0; i<node.childNodes.length; i++) {
      var item = node.childNodes.item(i);
      out = nodeToXML(item, indentation+"   ", out);
   }
   if (node.nodeValue!=null)
      out += indentation+"   "+node.nodeValue+"\n";
   out += indentation+"</"+node.nodeName.toLowerCase()+">\n";
   return out;
}
...

Table of Contents

 About This Book

 Reference Citations in 2023

 Reference Citations in 2022

 Reference Citations in 2021

 Reference Citations in 2020

 Reference Citations in 2019

 Reference Citations in 2018

 Reference Citations in 2017

 Reference Citations in 2016

 Reference Citations in 2015

 Reference Citations in 2014

 Reference Citations in 2013

 Reference Citations in 2012

Reference Citations in 2011

 Simplified Chinese Unicode table

 How to Edit a Mobile Registry With Commander

 OpenSSL in Ruby

 Utilisation de la JVisualVM en remote via jstatd

 OpenOffice.org Newsletter - April 2011

 AES Encryption / Decryption with Java 1.5 and ActionScript as3crypto

 problem in insert into database

 2X Gateway SSL

 Creating Installer

 Implement statement batch for Connector C++

 Twitter OAuth Library/HUD

 How to connect Oracle data base

 regexParser.cpp

gloria.tv downloader

 SET IDENTITY_INSERT for table fails

 Winsock TCP buffering behaviour

 Passing Array in Function

 Reference Citations in 2010

 Reference Citations in 2009

 Reference Citations in 2008

 Reference Citations in 2007

 Reference Citations in 2006

 Reference Citations in 2005

 Reference Citations in 2004

 Reference Citations in 2003