diff options
| author | garbash <dor.garbash@gmail.com> | 2015-05-03 18:40:34 +0300 |
|---|---|---|
| committer | garbash <dor.garbash@gmail.com> | 2015-05-03 18:40:34 +0300 |
| commit | 59aeb194b03096cdfa086522bbdf688396d3731d (patch) | |
| tree | 581b495da9bdb76a2ce0ccc466878a115fc77577 /src | |
| parent | 4fb6f35ec9255f812ef1c1e6ddb3018696022adb (diff) | |
Adding TAMI specific conf
Diffstat (limited to 'src')
| -rw-r--r-- | src/local/domain/rhizi.tami.org.il/domain_types.js | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/local/domain/rhizi.tami.org.il/domain_types.js b/src/local/domain/rhizi.tami.org.il/domain_types.js new file mode 100644 index 00000000..40ca8a75 --- /dev/null +++ b/src/local/domain/rhizi.tami.org.il/domain_types.js @@ -0,0 +1,54 @@ +define({ + type_attributes: [ + ['collaborator', { + 'title': 'Human', + 'attributes': ['affiliation', + 'description', + 'email', + 'image-url', + 'name', + 'url' + ], + }], + ['keyword', { + 'title': 'Keyword', + 'attributes': ['description', 'url', 'image-url'], + }], + ['project', { + 'title': 'Project', + 'attributes': ['description', 'url', 'rhizi-url', 'image-url'], + }], + ['idea', { + 'title': 'Idea', + 'attributes': ['description', 'url', 'image-url'], + }], + ['skill', { + 'title': 'Skill', + 'attributes': ['description', 'url', 'image-url'], + }], + ['resource', { + 'title': 'Tool', + 'attributes': ['description', 'url', 'image-url'], + }] + ], + attribute_titles: { + 'affiliation': 'Affiliation', + 'description': 'Description', + 'email': 'Email', + 'name': 'Name', + 'type': 'Type', + 'url': 'URL', + 'image-url': 'Image URL', + 'rhizi-url': 'Rhizi URL', + }, + attribute_ui: { + 'affiliation': 'textarea', + 'description': 'textarea', + 'email': 'input', + 'name': 'input', + 'type': 'type', + 'image-url': 'image', + 'url': 'url', + 'rhizi-url': 'rhizi-url', + }, +}); |
