summaryrefslogtreecommitdiff
path: root/Cydia.app/menes
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2008-11-21 17:32:48 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2010-09-30 07:08:59 +0000
commitfd7853a6d1e9ce1485eaedd132eb94c64a70ce77 (patch)
tree5ec18dac627f21c91177b66fdb35219bdbdcb121 /Cydia.app/menes
parent0c7c905239c4d54b2103b814d3a537a75a9f2774 (diff)
Rapid release for iPhoneOS 2.2.
Diffstat (limited to 'Cydia.app/menes')
-rw-r--r--Cydia.app/menes/chevron.png (renamed from Cydia.app/menes/listArrow.png)bin289 -> 289 bytes
-rw-r--r--Cydia.app/menes/menes.js236
-rw-r--r--Cydia.app/menes/style.css102
3 files changed, 231 insertions, 107 deletions
diff --git a/Cydia.app/menes/listArrow.png b/Cydia.app/menes/chevron.png
index 6ff8205..6ff8205 100644
--- a/Cydia.app/menes/listArrow.png
+++ b/Cydia.app/menes/chevron.png
Binary files differ
diff --git a/Cydia.app/menes/menes.js b/Cydia.app/menes/menes.js
index f314227..8148d8d 100644
--- a/Cydia.app/menes/menes.js
+++ b/Cydia.app/menes/menes.js
@@ -1,10 +1,12 @@
-var _assert = function (expr) {
+/* XXX: this message is ultra-lame */
+var _assert = function (expr, value) {
if (!expr) {
- var message = "_assert(" + expr + ")";
- alert(message);
+ var message = "_assert(" + value + ")";
+ console.log(message);
throw message;
}
}
+
// Compatibility {{{
if (typeof Array.prototype.push != "function")
Array.prototype.push = function (value) {
@@ -16,26 +18,29 @@ var $ = function (arg, doc) {
if (this.magic_ != $.prototype.magic_)
return new $(arg);
+ if (arg == null)
+ arg = [];
+
var type = $.type(arg);
if (type == "function")
$.ready(arg);
else if (type == "string") {
- if (doc == undefined)
+ if (typeof doc == 'undefined')
doc = document;
if (arg.charAt(0) == '#') {
- var node = doc.getElementById(arg.substring(1));
- return $(node == null ? [] : [node]);
- } else if (arg.charAt(0) == '.') {
- var nodes = doc.getElementsByClassName(arg.substring(1));
- return $(nodes == null ? [] : nodes);
- } else
+ /* XXX: this is somewhat incorrect-a-porter */
+ var element = doc.getElementById(arg.substring(1));
+ return $(element == null ? [] : [element]);
+ } else if (arg.charAt(0) == '.')
+ return $(doc.getElementsByClassName(arg.substring(1)));
+ else
return $([doc]).descendants(arg);
- } else {
- _assert(doc == undefined);
- this.set($.array(arg));
+ } else if (typeof arg.length != 'undefined') {
+ _assert(typeof doc == 'undefined', "non-query with document to $");
+ this.set(arg);
return this;
- }
+ } else _assert(false, "unknown argument to $: " + typeof arg);
};
$.xml = function (value) {
@@ -51,14 +56,13 @@ $.xml = function (value) {
$.type = function (value) {
var type = typeof value;
- if (
- type == "function" &&
- value.toString != null &&
- value.toString().substring(0, 8) == "[object "
- )
- return "object";
- else
- return type;
+ if ((type == "function" || type == "object") && value.toString != null) {
+ var string = value.toString();
+ if (string.substring(0, 8) == "[object ")
+ return string.substring(8, string.length - 1);
+ }
+
+ return type;
};
(function () {
@@ -95,6 +99,7 @@ $.map = function (values, _function, arg0, arg1, arg2) {
$.array = function (values) {
if (values.constructor == Array)
return values;
+ _assert(typeof values.length != 'undefined', "$.array on underlying non-array");
var array = [];
for (var i = 0; i != values.length; ++i)
array.push(values[i]);
@@ -110,11 +115,30 @@ $.document = function (node) {
}
};
+$.reclass = function (_class) {
+ return new RegExp('(\\s|^)' + _class + '(\\s|$)');
+};
+
$.prototype = {
magic_: 2041085062,
add: function (nodes) {
- Array.prototype.push.apply(this, nodes);
+ Array.prototype.push.apply(this, $.array(nodes));
+ },
+
+ at: function (name, value) {
+ if (typeof value == 'undefined')
+ return $.map(this, function (node) {
+ return node.getAttribute(name);
+ });
+ else if (value == null)
+ $.each(this, function (node) {
+ node.removeAttribute();
+ });
+ else
+ $.each(this, function (node) {
+ node.setAttribute(name, value);
+ });
},
set: function (nodes) {
@@ -122,14 +146,52 @@ $.prototype = {
this.add(nodes);
},
+ /* XXX: verify arg3 overflow */
+ each: function (_function, arg0, arg1, arg2) {
+ $.each(this, function (node) {
+ _function($([node]), arg0, arg1, arg2);
+ });
+ },
+
css: function (name, value) {
$.each(this, function (node) {
node.style[name] = value;
});
},
+ addClass: function (_class) {
+ $.each(this, function (node) {
+ if (!$([node]).hasClass(_class)[0])
+ node.className += " " + _class;
+ });
+ },
+
+ blur: function () {
+ $.each(this, function (node) {
+ node.blur();
+ });
+ },
+
+ focus: function () {
+ $.each(this, function (node) {
+ node.focus();
+ });
+ },
+
+ removeClass: function (_class) {
+ $.each(this, function (node) {
+ node.className = node.className.replace($.reclass(_class), ' ');
+ });
+ },
+
+ hasClass: function (_class) {
+ return $.map(this, function (node) {
+ return node.className.match($.reclass(_class));
+ });
+ },
+
append: function (html) {
- $.each(this, $.type(html) == "string" ? function (node) {
+ $.each(this, function (node) {
var doc = $.document(node);
// XXX: implement wrapper system
@@ -140,24 +202,15 @@ $.prototype = {
var child = div.childNodes[0];
node.appendChild(child);
}
- } : function (node) {
- $.each(html, function (value) {
- node.appendChild(value);
- });
});
},
- clone: function (deep) {
- return $($.map(this, function (node) {
- return node.cloneNode(deep);
- }));
- },
-
descendants: function (expression) {
var descendants = $([]);
$.each(this, function (node) {
- descendants.add(node.getElementsByTagName(expression));
+ var nodes = node.getElementsByTagName(expression);
+ descendants.add(nodes);
});
return descendants;
@@ -167,31 +220,6 @@ $.prototype = {
$.each(this, function (node) {
node.parentNode.removeChild(node);
});
- },
-
- parent: function () {
- return $($.map(this, function (node) {
- return node.parentNode;
- }));
- },
-
- xpath: function (expression) {
- var value = $([]);
-
- $.each(this, function (node) {
- var doc = $.document(node);
- var result = doc.evaluate(expression, node, null, XPathResult.ANY_TYPE, null);
-
- if (result.resultType == XPathResult.UNORDERED_NODE_ITERATOR_TYPE)
- for (;;) {
- var next = result.iterateNext();
- if (next == null)
- break;
- value.add([next]);
- }
- });
-
- return value;
}
};
@@ -201,7 +229,7 @@ $.scroll = function (x, y) {
// XXX: document.all?
$.all = function (doc) {
- if (doc == undefined)
+ if (typeof doc == 'undefined')
doc = document;
return $(doc.getElementsByTagName("*"));
};
@@ -209,7 +237,7 @@ $.all = function (doc) {
$.inject = function (a, b) {
if ($.type(a) == "string") {
$.prototype[a] = function (value) {
- if (value == undefined)
+ if (typeof value == 'undefined')
return $.map(this, function (node) {
return b.get(node);
});
@@ -223,6 +251,15 @@ $.inject = function (a, b) {
};
$.inject({
+ _default: {
+ get: function (node) {
+ return node.style.defaultValue;
+ },
+ set: function (node, value) {
+ node.style.defaultValue = value;
+ }
+ },
+
display: {
get: function (node) {
return node.style.display;
@@ -250,12 +287,18 @@ $.inject({
}
},
- id: {
+ name: {
get: function (node) {
- return node.id;
+ return node.name;
},
set: function (node, value) {
- node.id = value;
+ node.name = value;
+ }
+ },
+
+ parent: {
+ get: function (node) {
+ return node.parentNode;
}
},
@@ -268,16 +311,73 @@ $.inject({
}
},
+ type: {
+ get: function (node) {
+ return node.localName;
+ }
+ },
+
value: {
get: function (node) {
return node.value;
},
set: function (node, value) {
- node.value = value;
+ // XXX: do I really need this?
+ if (true || node.localName != "select")
+ node.value = value;
+ else {
+ var options = node.options;
+ for (var i = 0, e = options.length; i != e; ++i)
+ if (options[i].value == value) {
+ if (node.selectedIndex != i)
+ node.selectedIndex = i;
+ break;
+ }
+ }
+ }
+ },
+
+ width: {
+ get: function (node) {
+ return node.offsetWidth;
}
}
});
+// Query String Parsing {{{
+$.query = function () {
+ var args = {};
+
+ var search = location.search;
+ if (search != null) {
+ _assert(search[0] == "?", "query string without ?");
+
+ var values = search.substring(1).split("&");
+ for (var index in values) {
+ var value = values[index]
+ var equal = value.indexOf("=");
+ var name;
+
+ if (equal == -1) {
+ name = value;
+ value = null;
+ } else {
+ name = value.substring(0, equal);
+ value = value.substring(equal + 1);
+ value = decodeURIComponent(value);
+ }
+
+ name = decodeURIComponent(name);
+ if (typeof args[name] == "undefined")
+ args[name] = [];
+ if (value != null)
+ args[name].push(value);
+ }
+ }
+
+ return args;
+};
+// }}}
// Event Registration {{{
// XXX: unable to remove registration
$.prototype.event = function (event, _function) {
@@ -297,8 +397,8 @@ $.each([
"click", "load", "submit"
], function (event) {
$.prototype[event] = function (_function) {
- if (_function == undefined)
- _assert(false);
+ if (typeof _function == 'undefined')
+ _assert(false, "undefined function to $.[event]");
else
this.event(event, _function);
};
diff --git a/Cydia.app/menes/style.css b/Cydia.app/menes/style.css
index a0bb3d2..223c975 100644
--- a/Cydia.app/menes/style.css
+++ b/Cydia.app/menes/style.css
@@ -65,6 +65,13 @@
vertical-align: baseline;
}
+sup {
+ font-size: smaller;
+ margin-top: -6px;
+ position: relative;
+ top: -6px;
+}
+
select {
border: 1px solid #999999;
}
@@ -112,6 +119,10 @@ pre {
letter-spacing: -2px;
}
+.default {
+ color: #aaaabb;
+}
+
/* #toolbar {{{ */
dialog > toolbar {
background: url(toolbar.png) #6d84a2 repeat-x;
@@ -181,6 +192,22 @@ dialog > panel > fieldset {
margin: 9px;
}
+dialog > panel > input[type="submit"] {
+ /*-webkit-border-image: url(whiteButton.png) 0 12 0 12;
+ -webkit-border-radius: 0;
+ border-width: 0px 12px;*/
+ border: none;
+ color: #000000;
+ display: block;
+ font-size: 20px;
+ font-weight: bold;
+ margin: 9px;
+ height: 44px;
+ padding: 10px;
+ text-align: center;
+ width: 302px;
+}
+
dialog > panel > label {
display: block;
margin: 13px 0 -4px 27px;
@@ -233,37 +260,39 @@ fieldset > div > ul:last-child {
margin-bottom: 0;
}
-dialog > fieldset > a {
- background: 295px 13px no-repeat url(listArrow.png);
-}
-
-dialog > panel > fieldset > a {
- background: 275px 13px no-repeat url(listArrow.png);
-}
-
fieldset > a {
color: inherit;
display: block;
}
-dialog > fieldset > div > select {
+fieldset > textarea,
+fieldset > div > input,
+fieldset > div > select {
background: none;
- margin: -13px -17px -13px 86px;
- border-left: 0;
- border-right: 0;
- height: 44px;
- width: 217px;
+ -webkit-box-shadow: none;
+ -webkit-appearance: none;
}
-dialog > panel > fieldset > div > select {
- margin: -5px -10px -5px 86px;
- -webkit-border-radius: 5px;
- width: 190px;
+fieldset > a,
+fieldset > div > select {
+ background: no-repeat url(chevron.png);
+ background-position-y: 13px;
}
-fieldset > textarea,
-fieldset > div > input {
- background: none;
+dialog > fieldset > a {
+ background-position-x: 295px;
+}
+
+dialog > panel > fieldset > a {
+ background-position-x: 275px;
+}
+
+dialog > fieldset > div > select {
+ background-position-x: 192px;
+}
+
+dialog > panel > fieldset > div > select {
+ background-position-x: 172px;
}
fieldset > textarea,
@@ -280,35 +309,30 @@ fieldset > div > select {
font-size: 16px;
}
+fieldset > div > select,
fieldset > div > input {
border: none;
- height: 45px;
- margin: -13px -18px;
- padding: 13px 10px 0 111px;
-}
-
-fieldset > textarea {
- padding: 10px;
- width: 320px;
+ height: 44px;
+ margin: -13px -17px -13px 86px;
}
+dialog > panel > fieldset > div > select,
dialog > panel > fieldset > div > input {
- width: 302px;
+ width: 187px;
}
+dialog > fieldset > div > select,
dialog > fieldset > div > input {
- width: 320px;
+ width: 207px;
}
-fieldset > div > input[type="submit"] {
- border-width: 0 12px;
- color: #000000;
- display: block;
- font-size: 20px;
- font-weight: bold;
+fieldset > div > input {
+ padding: 13px 7px;
+}
+
+fieldset > textarea {
padding: 10px;
- text-align: center;
- -webkit-border-image: url(whiteButton.png) 0 12 0 12;
+ width: 320px;
}
fieldset > a > label,