meeting-pane
Version:
Solid-compatible Panes: meeting collaborative tool
83 lines (68 loc) • 2.32 kB
JavaScript
module.exports = `@prefix : <http://www.w3.org/ns/ui#> .
#> .
#>.
#>.
#> .
#> .
#>.
#>.
#>.
f:main a :Form;
cal:summary "Meeting Details";
:part f:titleField, f:locationField, f:startField,
f:endField, f:eventComment, f:colorField .
f:titleField a :SingleLineTextField;
:maxLength 256;
:property cal:summary;
:label "Name of meeting";
:size 80 .
f:locationField a :SingleLineTextField;
:maxLength 128;
:property cal:location;
:size 40 .
f:startField a :DateField;
:label "Start";
:property cal:dtstart .
f:endField a :DateField;
:label "End";
:property cal:dtend .
f:colorField a :ColorField;
:label "Tab color";
# :default "#ddddcc"^^xsd:color;
:property ui:backgroundColor .
f:eventComment
a ui:MultiLineTextField;
# ui:maxLength
# "1048";
# ui:size
# "40".
ui:property
cal:comment.
###################################################
f:settings a :Form;
dc:title "Tab settings";
:part f:labelField, f:targetField, f:viewField.
f:labelField a :SingleLineTextField;
:maxLength 128;
:property rdfs:label;
:label "Label on tab";
:size 40 .
f:targetField a :NamedNodeURIField;
:maxLength 1024; # Longer?
:property meeting:target;
:label "URL of resource";
:size 80 .
f:colorField2 a :ColorField;
:label "Tab color";
# :default "#ddddcc"^^xsd:color;
:property ui:backgroundColor .
f:viewField a :SingleLineTextField;
:maxLength 128;
:property meeting:view;
:label "View mode (experts only)";
:size 40 .
#
`