Skip to content

Commit

Permalink
Add files for legacy_articles-14781
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanketio committed Mar 25, 2019
1 parent 20c087c commit c93394e
Show file tree
Hide file tree
Showing 7 changed files with 413 additions and 0 deletions.
Binary file added popuplinks/example_popup.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions popuplinks/example_popup.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>a popup apart</title>
<style type="text/css">
html, body {
margin: 0;
padding: 0;
}

img {
background-color: #c30;
}
</style>
<script type="text/javascript" src="lib.js"></script>
<script type="text/javascript">
listen('load', window, function() {
getElem('img').style.backgroundColor = '#' + location.search.substring(1);
});
</script>
</head>

<body>

<img id="img" src="example_popup.gif" alt="a popup apart" />

</body>
</html>
17 changes: 17 additions & 0 deletions popuplinks/example_popup_nojs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>a popup apart</title>
<script type="text/javascript">
location = 'example_popup.html';
</script>
</head>

<body>

<p>You should only see this page with javascript disabled.
</p>

</body>
</html>
126 changes: 126 additions & 0 deletions popuplinks/examples.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>popup examples</title>
<style type="text/css">
ul {
margin: 22px 10%;
padding: 0;
}

li {
list-style: none;
margin: 0;
padding: 4px 0;
}

a {
border: 1px solid #bbb;
padding: 4px 7px;
background: #eee;
color: #777;
display: block;
text-decoration: none;
}

a code {
color: #444;
}

a:hover {
border-color: #99c;
background: #ddf;
color: #669;
}

a:hover code {
color: #335;
}

</style>
<script type="text/javascript" src="lib.js"></script>
<script type="text/javascript" src="popup.js"></script>
<script type="text/javascript" >

// redefining default features
var _POPUP_FEATURES = 'location=0,statusbar=0,menubar=0,width=190,height=140';

listen('load', window, function() {
listen('click', 'popup-listen', event_popup );
listen('click', 'popup-feat' , event_popup_features('location=0,statusbar=1,menubar=1,width=190,height=300') );
mlisten('click', getElementsByClass('popup','a'), event_popup );
});

</script>
</head>

<body>

<ul>
<li>
<a
href="javascript:raw_popup('example_popup.html'); void(0)">
the wrong method.<br />
test its accessibility downfalls</a>
</li>
<li>
<a
href="example_popup_nojs.html"
onclick="raw_popup('example_popup.html'); return false"
>
<code>raw_popup</code> using a different page for javascript disabled users<br />
</a>
</li>
<li>
<a
href="example_popup.html"
onclick="link_popup(this); return false"
>
<code>link_popup</code><br />
</a>
</li>
<li>
<a
id="popup-listen"
href="example_popup.html" >
<code>event_popup</code>: using event listeners
</a>
</li>
<li>
<a
id="popup-feat"
href="example_popup.html" >
<code>event_popup_features</code>: specifying window features with event listeners
</a>
</li>
<li>
<a
href="example_popup.html?099" class="popup" target="a_popup_window">
named target windows
</a>
</li>
<li>
<a
href="example_popup.html?009" class="popup" target="a_popup_window">
named target windows (same target)
</a>
</li>
<li>
<a
href="example_popup.html?909" class="popup" target="a_popup_window">
named target windows (same target)
</a>
</li>
<li>
<a
href="example_popup.html?990" class="popup" target="another_popup_window">
named target windows (different target)
</a>
</li>
</ul>


</body>
</html>

209 changes: 209 additions & 0 deletions popuplinks/lib.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,209 @@
/*
This file contains only functions necessary for the article features
The full library code and enhanced versions of the functions present
here can be found at http://v2studio.com/k/code/lib/
ARRAY EXTENSIONS
push(item [,...,item])
Mimics standard push for IE5, which doesn't implement it.
find(value [, start])
searches array for value starting at start (if start is not provided,
searches from the beginning). returns value index if found, otherwise
returns -1;
has(value)
returns true if value is found in array, otherwise false;
FUNCTIONAL
map(list, func)
traverses list, applying func to list, returning an array of values returned
by func
if func is not provided, the array item is returned itself. this is an easy
way to transform fake arrays (e.g. the arguments object of a function or
nodeList objects) into real javascript arrays.
map also provides a safe way for traversing only an array's indexed items,
ignoring its other properties. (as opposed to how for-in works)
this is a simplified version of python's map. parameter order is different,
only a single list (array) is accepted, and the parameters passed to func
are different:
func takes the current item, then, optionally, the current index and a
reference to the list (so that func can modify list)
filter(list, func)
returns an array of values in list for which func is true
if func is not specified the values are evaluated themselves, that is,
filter will return an array of the values in list which evaluate to true
this is a similar to python's filter, but parameter order is inverted
DOM
getElem(elem)
returns an element in document. elem can be the id of such element or the
element itself (in which case the function does nothing, merely returning
it)
this function is useful to enable other functions to take either an element
directly or an element id as parameter.
if elem is string and there's no element with such id, it throws an error.
if elem is an object but not an Element, it's returned anyway
hasClass(elem, className)
Checks the class list of element elem or element of id elem for className,
if found, returns true, otherwise false.
The tested element can have multiple space-separated classes. className must
be a single class (i.e. can't be a list).
getElementsByClass(className [, tagName [, parentNode]])
Returns elements having class className, optionally being a tag tagName
(otherwise any tag), optionally being a descendant of parentNode (otherwise
the whole document is searched)
DOM EVENTS
listen(event,elem,func)
x-browser function to add event listeners
listens for event on elem with func
event is string denoting the event name without the on- prefix. e.g. 'click'
elem is either the element object or the element's id
func is the function to call when the event is triggered
in IE, func is wrapped and this wrapper passes in a W3CDOM_Event (a faux
simplified Event object)
mlisten(event, elem_list, func)
same as listen but takes an element list (a NodeList, Array, etc) instead of
an element.
W3CDOM_Event(currentTarget)
is a faux Event constructor. it should be passed in IE when a function
expects a real Event object. For now it only implements the currentTarget
property and the preventDefault method.
The currentTarget value must be passed as a paremeter at the moment of
construction.
MISC CLEANING-AFTER-MICROSOFT STUFF
isUndefined(v)
returns true if [v] is not defined, false otherwise
IE 5.0 does not support the undefined keyword, so we cannot do a direct
comparison such as v===undefined.
*/

// ARRAY EXTENSIONS

if (!Array.prototype.push) Array.prototype.push = function() {
for (var i=0; i<arguments.length; i++) this[this.length] = arguments[i];
return this.length;
}

Array.prototype.find = function(value, start) {
start = start || 0;
for (var i=start; i<this.length; i++)
if (this[i]==value)
return i;
return -1;
}

Array.prototype.has = function(value) {
return this.find(value)!==-1;
}

// FUNCTIONAL

function map(list, func) {
var result = [];
func = func || function(v) {return v};
for (var i=0; i < list.length; i++) result.push(func(list[i], i, list));
return result;
}

function filter(list, func) {
var result = [];
func = func || function(v) {return v};
map(list, function(v) { if (func(v)) result.push(v) } );
return result;
}


// DOM

function getElem(elem) {
if (document.getElementById) {
if (typeof elem == "string") {
elem = document.getElementById(elem);
if (elem===null) throw 'cannot get element: element does not exist';
} else if (typeof elem != "object") {
throw 'cannot get element: invalid datatype';
}
} else throw 'cannot get element: unsupported DOM';
return elem;
}

function hasClass(elem, className) {
return getElem(elem).className.split(' ').has(className);
}

function getElementsByClass(className, tagName, parentNode) {
parentNode = !isUndefined(parentNode)? getElem(parentNode) : document;
if (isUndefined(tagName)) tagName = '*';
return filter(parentNode.getElementsByTagName(tagName),
function(elem) { return hasClass(elem, className) });
}


// DOM EVENTS

function listen(event, elem, func) {
elem = getElem(elem);
if (elem.addEventListener) // W3C DOM
elem.addEventListener(event,func,false);
else if (elem.attachEvent) // IE DOM
elem.attachEvent('on'+event, function(){ func(new W3CDOM_Event(elem)) } );
// for IE we use a wrapper function that passes in a simplified faux Event object.
else throw 'cannot add event listener';
}

function mlisten(event, elem_list, func) {
map(elem_list, function(elem) { listen(event, elem, func) } );
}

function W3CDOM_Event(currentTarget) {
this.currentTarget = currentTarget;
this.preventDefault = function() { window.event.returnValue = false }
return this;
}


// MISC CLEANING-AFTER-MICROSOFT STUFF

function isUndefined(v) {
var undef;
return v===undef;
}

Loading

0 comments on commit c93394e

Please sign in to comment.