Skip to content

Commit f97e8bf

Browse files
author
Yehonal
committed
update all repository after message changing
1 parent 37ab3dd commit f97e8bf

File tree

7 files changed

+18
-17
lines changed

7 files changed

+18
-17
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ local.properties
7575

7676

7777
#
78-
# Hw2Core files
78+
# HWCore files
7979
#
8080

8181
.htaccess

Class.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
'use strict';
77

8-
hw2.include([
9-
'hw2!{PATH_CORE}modules/js/modules/weakmap/index.js'
8+
hwc.include([
9+
'hwc!{PATH_CORE}modules/js/modules/weakmap/index.js'
1010
]).define(function () {
1111
var $ = this;
1212

@@ -347,6 +347,7 @@ hw2.include([
347347
enumerable: true
348348
});
349349

350+
// TODO: test
350351
Object.defineProperty(__Object, "__createInstance", {value: function () {
351352
var Temp = function () {
352353
}, inst, ret; // other vars

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
HW2CORE - JS CLASS
1+
HWCORE - JS CLASS
22
===========
33

44
== JS Class ==
55

6-
This is the class module of hw2-core for javascript
6+
This is the class module of hw-core for javascript
77
It is required by most js libraries.
88

99
It can be used both on browser and server ( nodejs tested )
1010

11-
#### [>>> documentation <<<](https://hw2-core.github.io/js-library-class) ##
11+
#### [>>> documentation <<<](https://hw-core.github.io/js-library-class) ##

fSyntax.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
'use strict';
77

8-
hw2.define([
9-
"hw2!{PATH_JS_LIB}class/Class.js"
8+
hwc.define([
9+
"hwc!{PATH_JS_LIB}class/Class.js"
1010
], function () {
1111
var $ = this;
1212

include.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
'use strict';
77

88
/*
9-
hw2.define([
9+
hwc.define([
1010
// nothing to do for now
1111
],function () {
1212
var $ = this;

index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
'use strict';
77

8-
hw2.define([
9-
'hw2!{PATH_JS_LIB}class/include.js',
10-
'hw2!{PATH_JS_LIB}class/Class.js',
11-
'hw2!{PATH_JS_LIB}class/fSyntax.js'
8+
hwc.define([
9+
'hwc!{PATH_JS_LIB}class/include.js',
10+
'hwc!{PATH_JS_LIB}class/Class.js',
11+
'hwc!{PATH_JS_LIB}class/fSyntax.js'
1212
],function (a,b,c) {
1313
var $ = this;
1414
});

upt.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "hw2/modules/js/src/library/class",
2+
"name": "hwcore/modulesjs/src/library/class",
33
"license": "http://www.hyperweb2.com/terms",
44
"dependencies": {
5-
"%init": "hw2-core/js-kernel#*"
5+
"%init": "hw-core/js-kernel#*"
66
},
77
"devDependencies": {
8-
"%tests": "hw2-core/js-library-class#tests",
9-
"%doc": "hw2-core/js-library-class#gh-pages"
8+
"%tests": "hw-core/js-library-class#tests",
9+
"%doc": "hw-core/js-library-class#gh-pages"
1010
},
1111
"_comment_keep": "ensure we keep the right git repository configurations",
1212
"keep": [

0 commit comments

Comments
 (0)