Skip to content

Commit f2b0fe3

Browse files
committed
Added URL for name in credits
1 parent d902b52 commit f2b0fe3

38 files changed

+39
-39
lines changed

_experimental/array/list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function list () {
22
// http://kevin.vanzonneveld.net
3-
// + original by: Brett Zamir
3+
// + original by: Brett Zamir (http://brettz9.blogspot.com)
44
// % note 1: Only works in global context and deviates (by necessity) from
55
// % note 1: PHP version by adding the array (which in PHP is an rvalue
66
// % note 1: separate from the list() lvalue) as the last argument

_experimental/classobj/call_user_method.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function call_user_method(method, obj) {
22
// http://kevin.vanzonneveld.net
3-
// + original by: Brett Zamir
3+
// + original by: Brett Zamir (http://brettz9.blogspot.com)
44
// % note 1: Deprecated in PHP
55
// * example 1: call_user_method('alert', 'window', 'Hello!');
66
// * returns 1: 'Hello!'

_experimental/classobj/call_user_method_array.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function call_user_method_array(method, obj, params) {
22
// http://kevin.vanzonneveld.net
3-
// + original by: Brett Zamir
3+
// + original by: Brett Zamir (http://brettz9.blogspot.com)
44
// % note 1: Deprecated in PHP
55
// * example 1: call_user_method_array('alert', 'window', ['Hello!']);
66
// * returns 1: 'Hello!'

_experimental/datetime/date_create.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function date_create (time, timezone) {var __ = Relator.$();
22
// http://kevin.vanzonneveld.net
3-
// + original by: Brett Zamir
3+
// + original by: Brett Zamir (http://brettz9.blogspot.com)
44
// Incomplete
55

66
// Begin static

_experimental/datetime/date_format.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function date_format (obj, format) {
22
// http://kevin.vanzonneveld.net
3-
// + original by: Brett Zamir
3+
// + original by: Brett Zamir (http://brettz9.blogspot.com)
44
// - depends on: date() (and an object passed in which was created by the DateTime class--e.g., date_create)
55
// Note: finished but basically useless until date_create() is implemented
66
return date(format, obj.getTimestamp());

_experimental/datetime/timezone_name_from_abbr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function timezone_name_from_abbr (abbr, gmtOffset, isdst) {
22
// http://kevin.vanzonneveld.net
3-
// + original by: Brett Zamir
3+
// + original by: Brett Zamir (http://brettz9.blogspot.com)
44
// - depends on: timezone_abbreviations_list
55
// * example 1: timezone_name_from_abbr('CET');
66
// * returns 1: 'Europe/Berlin'

_experimental/datetime/timezone_open.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function timezone_open(timezone) { var __ = Relator.$();
22
// http://kevin.vanzonneveld.net
3-
// + original by: Brett Zamir
3+
// + original by: Brett Zamir (http://brettz9.blogspot.com)
44
// + improved by: Andrea Giammarchi
55
// - depends on: timezone_abbreviations_list(), timezone_identifiers_list(), timezone_transitions_get()
66
// % note 1: Creates a DateTimeZone() object as in PHP, but we really need to implement DateTime() and possibly fix some methods here

_experimental/datetime/timezone_transitions_get.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function timezone_transitions_get (dtzObj, begin, end) {
22
// http://kevin.vanzonneveld.net
3-
// + original by: Brett Zamir
3+
// + original by: Brett Zamir (http://brettz9.blogspot.com)
44
// * example 1: var list = timezone_transitions_get(new DateTimeZone('Africa/Accra')); // See timezone_open()
55
// * example 1: list[1].abbr;
66
// * return 1: 'GHST'

_experimental/funchand/register_shutdown_function.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function register_shutdown_function (cb) {
22
// http://kevin.vanzonneveld.net
3-
// + original by: Brett Zamir
3+
// + original by: Brett Zamir (http://brettz9.blogspot.com)
44
// * example 1: register_shutdown_function(function(first, middle, last) {alert('Goodbye '+first+' '+middle+' '+last+'!');}, 'Kevin', 'van', 'Zonneveld');
55
// * returns 1: 'Goodbye Kevin van Zonneveld!'
66
var args=[];

_experimental/info/phpcredits.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function phpcredits(flag) {
22
// http://kevin.vanzonneveld.net
33
// + original by: Philip Peterson
4-
// + improved by: Brett Zamir
4+
// + improved by: Brett Zamir (http://brettz9.blogspot.com)
55
// - depends on: echo
66
// * example 1: phpcredits();
77
// * returns 1: true

0 commit comments

Comments
 (0)