I'm currently conducting a heuristic evaluation on the Marmotta admin
interface to identify the most important starting points for improvements.
You can find information on the heuristic evaluation in general in the
introduction (HE_introduction.pdf).
I've also provided you with an exemplary evaluation of mine
(HE_janner.pdf) and some test data (sample.ttl) for the interface.
I'd really appreciate every participant. The whole evaluation usually
takes about an hour if you aren't experienced with the method yet.
If you can't find that much time a short list of issues and ideas you've
got in mind already would still be better than nothing.
If you have any further queries, please do not hesitate to contact me.
--
Oliver Janner
User Interface Design @ KMT
Salzburg Research Forschungsgesellschaft mbH
Jakob-Haringer-Straße 5/3 | 5020 Salzburg, Austria
T: +43.662.2288-249
[email protected]
http://www.salzburgresearch.at
@prefix vCard: <http://www.w3.org/2001/vcard-rdf/3.0#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix info: <http://somewhere/peopleInfo#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
<http://somewhere/MattJones>
rdf:type vCard:Individual ;
vCard:FN "Matt Jones" ;
info:hobby "Ski"@de , "Ski"@en, "Fußball"@en, "Soccer"@en ;
info:age "21" ;
vCard:N [ vCard:Family
"Jones" ;
vCard:Given
"Matthew"
] .
<http://somewhere/MarySmith>
rdf:type vCard:Individual ;
vCard:FN "Mary Smith" ;
info:age "29" ;
vCard:N [ vCard:Family
"Smith" ;
vCard:Given
"Rebecca"
] .
<http://somewhere/JohnSmith>
rdf:type vCard:Individual ;
vCard:FN "John Smith" ;
info:age "32" ;
info:marriedTo <http://somewhere/MarySmith> ;
vCard:N [ vCard:Family
"Smith" ;
vCard:Given
"John"
] .
<http://somewhere/SarahJones>
rdf:type vCard:Individual ;
vCard:FN "Sarah Jones" ;
vCard:N [ vCard:Family
"Jones" ;
vCard:Given
"Sarah"
] .
<http://somewhere/JohnDoe>
rdf:type foaf:Person ;
foaf:knows <http://somewhere/MarySmith> ;
foaf:name "John Doe" .
<http://somewhere/PeteDoe>
rdf:type foaf:Person ;
foaf:knows <http://somewhere/JohnDoe> ;
foaf:name "Pete Doe" .
<http://somewhere/AnnaDoe>
rdf:type foaf:Person ;
foaf:knows <http://somewhere/PeteDoe> ;
foaf:name "Pete Doe" .