summaryrefslogtreecommitdiff
path: root/common/content
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2011-02-06 20:18:12 -0500
committerKris Maglione <maglione.k@gmail.com>2011-02-06 20:18:12 -0500
commit2a99de96a0985794ba2a1977e68d6e875b42e020 (patch)
tree427215105a4d103510994b6bfbaca5d2f2b45f4b /common/content
parent83738de1639c5018c5017b2373b81e96bb86dfeb (diff)
downloadpentadactyl-2a99de96a0985794ba2a1977e68d6e875b42e020.tar.gz
Adjust some API names to make things more consistent and less confusing.
--HG-- branch : groups
Diffstat (limited to 'common/content')
-rw-r--r--common/content/autocommands.js4
-rw-r--r--common/content/contexts.js40
-rw-r--r--common/content/mappings.js6
3 files changed, 25 insertions, 25 deletions
diff --git a/common/content/autocommands.js b/common/content/autocommands.js
index 3d1db6e2..0f01779a 100644
--- a/common/content/autocommands.js
+++ b/common/content/autocommands.js
@@ -73,10 +73,10 @@ var AutoCmdHive = Class("AutoCmdHive", {
*/
var AutoCommands = Module("autocommands", {
init: function () {
- this.user = contexts.subGroup.autocmd.user;
+ this.user = contexts.hives.autocmd.user;
},
- hives: Group.SubGroup("autocmd", AutoCmdHive),
+ hives: Group.Hive("autocmd", AutoCmdHive),
get activeHives() contexts.activeGroups("autocmd").map(function (h) h.autocmd).filter(function (h) h._store.length),
diff --git a/common/content/contexts.js b/common/content/contexts.js
index 1233121d..2fc81bba 100644
--- a/common/content/contexts.js
+++ b/common/content/contexts.js
@@ -11,13 +11,13 @@ var Group = Class("Group", {
this.description = description;
this.filter = filter || Group.defaultFilter;
this.persist = persist || false;
- this.subGroups = [];
+ this.hives = [];
},
cleanup: function cleanup() {
- for (let subGroup in values(this.subGroups))
- if (subGroup.cleanup)
- subGroup.cleanup();
+ for (let hive in values(this.hives))
+ if (hive.cleanup)
+ hive.cleanup();
},
argsExtra: function argsExtra() ({}),
@@ -26,7 +26,7 @@ var Group = Class("Group", {
get builtin() contexts.builtinGroups.indexOf(this) >= 0,
- subGroups: {}
+ hives: {}
}, {
compileFilter: function (patterns) {
@@ -56,9 +56,9 @@ var Group = Class("Group", {
defaultFilter: Class.memoize(function () this.compileFilter(["*"])),
- subGroupMap: {},
+ hiveMap: {},
- SubGroup: Class("SubGroup", Class.Property, {
+ Hive: Class("Hive", Class.Property, {
init: function init(name, constructor) {
const self = this;
if (this.Group)
@@ -73,13 +73,13 @@ var Group = Class("Group", {
this.name = name;
memoize(Group.prototype, name, function () {
let group = constructor(this);
- this.subGroups.push(group);
+ this.hives.push(group);
return group;
});
- memoize(Group.subGroupMap, name,
- function () Object.create(Object.create(contexts.subGroupProto,
- { _subGroup: { value: name } })));
+ memoize(Group.hiveMap, name,
+ function () Object.create(Object.create(contexts.hiveProto,
+ { _hive: { value: name } })));
memoize(Group.groupsProto, name,
function () [group[name] for (group in values(this.groups)) if (set.has(group, name))]);
@@ -93,7 +93,7 @@ var Contexts = Module("contexts", {
init: function () {
this.groupList = [];
this.groupMap = {};
- this.subGroupProto = {};
+ this.hiveProto = {};
this.builtin = this.addGroup("builtin", "Builtin items");
this.user = this.addGroup("user", "User-defined items", null, true);
@@ -110,11 +110,11 @@ var Contexts = Module("contexts", {
groups: { value: this.activeGroups() }
})),
- activeGroups: function (subgroup)
- let (need = subgroup ? [subgroup] : Object.keys(this.subGroup))
+ activeGroups: function (hive)
+ let (need = hive ? [hive] : Object.keys(this.hives))
this.groupList.filter(function (group) need.some(function (name) set.has(group, name))),
- get subGroup() Group.subGroupMap,
+ get hives() Group.hiveMap,
addGroup: function addGroup(name, description, filter, persist) {
this.removeGroup(name);
@@ -122,7 +122,7 @@ var Contexts = Module("contexts", {
let group = Group(name, description, filter, persist);
this.groupList.unshift(group);
this.groupMap[name] = group;
- this.subGroupProto.__defineGetter__(name, function () group[this._subGroup]);
+ this.hiveProto.__defineGetter__(name, function () group[this._hive]);
return group;
},
@@ -146,19 +146,19 @@ var Contexts = Module("contexts", {
this.context.group = null;
delete this.groupMap[name];
- delete this.subGroupProto[name];
+ delete this.hiveProto[name];
delete this.groups;
return group;
},
- getGroup: function getGroup(name, subGroup) {
+ getGroup: function getGroup(name, hive) {
if (name === "default")
var group = this.context && this.context.context && this.context.context.GROUP;
else
group = array.nth(this.groupList, function (h) h.name == name, 0) || null;
- if (group && subGroup)
- return group[subGroup];
+ if (group && hive)
+ return group[hive];
return group;
},
diff --git a/common/content/mappings.js b/common/content/mappings.js
index e350a863..c1171158 100644
--- a/common/content/mappings.js
+++ b/common/content/mappings.js
@@ -301,13 +301,13 @@ var MapHive = Class("MapHive", {
*/
var Mappings = Module("mappings", {
init: function () {
- this.user = contexts.subGroup.mappings.user;
- this.builtin = contexts.subGroup.mappings.builtin;
+ this.user = contexts.hives.mappings.user;
+ this.builtin = contexts.hives.mappings.builtin;
},
repeat: Modes.boundProperty(),
- hives: Group.SubGroup("mappings", MapHive),
+ hives: Group.Hive("mappings", MapHive),
get allHives() contexts.allGroups.mappings,