[tbc-users] SM Enter Literal

2008-11-17 Thread jlapalme
Hi, Is there a way to add a meaningful prompt for Enter Literal Modules in SM ? Cheers, James --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TopBraid Composer Users group. To post to this group, send email to

[tbc-users] Re: SM Enter Literal

2008-11-17 Thread jlapalme
Is there a feature for supporting a default value or even a drop-down list? Cheers, James On Nov 17, 10:05 am, Irene Polikoff [EMAIL PROTECTED] wrote: The pop-up dialog for the literal entry displays the label of a module. You can change the text of the label to be a better prompt.

[tbc-users] Re: JSP testing error

2008-11-17 Thread Scott Henninger
James; The output of clsRow.master is a Jena Literal, so you will need to add the ^^xsd type in the comparison. For example: c:if test=${clsRow.master == 'true^^http://www.w3.org/2001/ XMLSchema#boolean'}true/c:if -- Scott On Nov 17, 10:26 am, jlapalme [EMAIL PROTECTED] wrote: Hi, I have

[tbc-users] Re: Feature Request

2008-11-17 Thread jlapalme
Hi, another usefull feature would also be: -Better auto-completion and Highlighting in the SPARQL editor. The current version does no support auto-completion of variable name and some tokens such as UNION are not colored. Cheers, James On Nov 14, 12:12 pm, Holger Knublauch [EMAIL PROTECTED]

[tbc-users] Re: JSP testing error

2008-11-17 Thread Gokhan Soydan
Alternatively, if it is applicable, you can use the LET function: smf:if to do if conditionals in order to avoid complex JSP tags. Another way is using this pattern: OPTIONAL{ FILTER( ?master = true ) . # these triples will be matched only if ?master = true } OPTIONAL{ FILTER(

[tbc-users] Using SPARQL to query for inferred triples

2008-11-17 Thread Paul
Hello, I am new to Semantic Web using TBC. I am looking for the best approach to query for inferred triples from a JSP. I had originally thought SPARQL supported this natively and I could pass in through a TBC taglib, but my understanding is that I have to use a SPARQLMotion script or third

[tbc-users] Re: Using SPARQL to query for inferred triples

2008-11-17 Thread Schmitz, Jeffrey A
Hi Paul, While SPARQL doesn't itself support 'built-in' inferencing, it can be run on a model that does support inferencing. To me it's pretty much the same effect as saying SPARQL with inferencing, but you will be corrected if you say SPARQL supports inferencing. One way to do what you

[tbc-users] Re: Using SPARQL to query for inferred triples

2008-11-17 Thread Holger Knublauch
Based on Scott's description, you can do the following: 1) run the inferences you like 2) manually execute the JSP page using Script Generate file from JSP. - the JSP tags will operate on the whole RDF graph, including the inferences This way you don't need SPARQLMotion. SM on the other hand

[tbc-users] Re: Feature Request

2008-11-17 Thread Scott Henninger
James; Highlighting in the SPARQL is complete for the upcoming Alpha release. I'm less sure about autocomplete on variables, as this is a dynamic list (of completion) instead of a static one. -- Scott On Nov 17, 6:51 pm, jlapalme [EMAIL PROTECTED] wrote: Hi, another usefull feature would