diff options
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', + }, +}); |
