[topbraid-users] How to associate a constraint with a property?

2016-06-08 Thread Jack Hodges
I am building some constraints using ASK templates. In the myPurchases example when the checkInvoiceAge ASK template (an invoice with no paidDate is > 90 days old) is applied to the purchases:MaterialsPurchase class errors show up next to the invoiceDate and paidDate properties. I am guessing

Re: [topbraid-users] general constraint checking 'library'?

2016-06-08 Thread Jack Hodges
are listed in the SPARQL Functions Reference. > > Regards, > > Irene Polikoff > > > From: Jack Hodges <jhodg...@gmail.com > > Reply-To: <topbrai...@googlegroups.com > > Date: Wednesday, June 8, 2016 at 12:04 PM > To: TopBraid Suite Users <topbrai...@googlegro

[topbraid-users] general constraint checking 'library'?

2016-06-07 Thread Jack Hodges
Topbraid Composer has several SPIN functions that are pretty specific to defining constraints for model testing. Examples are spl:instanceOf, spl:hasValueOfType, smf:definedIn, smf:min/maxCardinality, smf:qname, spif:localName, spin:constructViolations, spin:violatesConstraints, etc. It seems

Re: [topbraid-users] How to associate a constraint with a property?

2016-06-10 Thread Jack Hodges
es using > spin:violationPath property. This means that the violation can be shown for > some other resource, but I am not sure this is what you are asking for. > > > Irene Polikoff > From: Jack Hodges <jhodg...@gmail.com > > Reply-To: <topbrai...@googlegroups.com >

Re: [topbraid-users] general constraint checking 'library'?

2016-06-21 Thread Jack Hodges
Cool, thanks! On Monday, June 20, 2016 at 4:12:07 PM UTC-7, Martynas Jusevicius wrote: > > There is also the Data Quality Constraints Library: > http://semwebquality.org/ontologies/dq-constraints > > On Wednesday, June 8, 2016 at 6:04:45 PM UTC+2, Jack Hodges wrote: >> &

[topbraid-users] SHACL SPIN and JENA

2016-07-31 Thread Jack Hodges
Following recommendations I have shifted our implementation of constraints over to SHACL. I must admit that it is quite nice. Now I must ensure that I can execute the SHACL constraints from a Jena API since all of our work is implemented RESTfully outside of any TopQuadrant product. This is a

[topbraid-users] Re: SHACL Validation Report? How?

2016-08-02 Thread Jack Hodges
thought I could reuse from sml:CheckConstraints but I didn't find it. I also did not find a reference to ModelConstraintValidator in the SHACL W3C documentation. Jack On Monday, August 1, 2016 at 3:08:55 PM UTC-7, Jack Hodges wrote: > > I need to run a SHACL validation report outside of TB

Re: [topbraid-users] SHACL Validation Report? How?

2016-08-02 Thread Jack Hodges
grammatically, the SHACL API provides the class > ModelConstraintValidator. > > What would you like to do with the validation results, and which feature > do you think is missing? > > Holger > > > On 2/08/2016 8:08, Jack Hodges wrote: > > I need to run a SHACL valida

Re: [topbraid-users] SHACL validation report from ModelConstraintValidator example - Questions

2016-08-10 Thread Jack Hodges
Right, I forgot about that. I always hit the blue button. I'll try setting validateShapes to false. Thank you! Jack Sent from my iPad > On Aug 10, 2016, at 12:34 AM, Holger Knublauch <hol...@topquadrant.com> wrote: > > > >> On 10/08/2016 12:53, Jack Hodges wrote: >

Re: [topbraid-users] SHACL validation report from ModelConstraintValidator example - Questions

2016-08-09 Thread Jack Hodges
t I should be using the ResourceConstraintValidator instead of the ModelConstraintValidator? And if so, it takes a resource as the first argument unlike TBC which traverses the current graph. Jack On Monday, August 8, 2016 at 4:55:21 PM UTC-7, Jack Hodges wrote: > > We separate our schemes

[topbraid-users] Problem with sh:constraint definitions in TBC

2016-08-09 Thread Jack Hodges
Has anyone else noticed the following problem. I define an sh:constraint on a class and all is well. If I define a second one on the same class all is fine until I reload the graph, and then one of them 'disappears'. TBC knows that I had a second one, because it now tells me that I have an

Re: [topbraid-users] SHACL validation report from ModelConstraintValidator example - Questions

2016-08-09 Thread Jack Hodges
lt;hol...@topquadrant.com> wrote: > > > >> On 10/08/2016 2:51, Jack Hodges wrote: >> I need SPIN because my SHACL sh:constraint sh:sparql SPARQL query calls SPIN >> functions (some stock and some custom). > > The SPIN functions can be registered with the S

[topbraid-users] Re: SHACL Validation Report? How?

2016-08-03 Thread Jack Hodges
in the right direction. Jack On Monday, August 1, 2016 at 3:08:55 PM UTC-7, Jack Hodges wrote: > > I need to run a SHACL validation report outside of TBCME. I recall seeing > in one of the various forms of documentation that you can do this (maybe a > SPIN function that

Re: [topbraid-users] SHACL Validation Report? How?

2016-08-03 Thread Jack Hodges
ces the SHACL results format. Anyway, you'll > need to wait for the beta releases to try this out. > > Holger > > > On 3/08/2016 2:19, Jack Hodges wrote: > > Holger, > > I will look at sml:CheckConstraints for pointers. The documentation > suggests that there is a

Re: [topbraid-users] SHACL and existing models

2016-07-13 Thread Jack Hodges
id - is adding the sh:Shape > triple the issue? > > Having said this, different design patterns will emerge with SHACL. Some > people may indeed start from scratch and duplicate all their classes with > shapes. Others may put the SHACL related triples into other files/graphs. > > Holg

[topbraid-users] SHACL and existing models

2016-07-11 Thread Jack Hodges
All of the tutorial and help contents I have seen to date, regarding SHACL, suggest that one should build models from scratch using the SHACL 'api'. This is just not realistic. I can easily go into my models and add an sh:Shape rdf:type but I wouldn't want to recreate models as Shapes files.

[topbraid-users] SHACL validation report from ModelConstraintValidator example - Questions

2016-08-08 Thread Jack Hodges
this extra layer wouldn't be necessary, right? (3) In my current case I am getting a result: @base < http://example.org/random> . Is this the kind of result to expect if there are no constraint violations or have I done something wrong in the code fragment? Thanks to anyone for any pointers.

[topbraid-users] SPIN labelTemplate argument variable names substitution - more would be nice

2016-06-30 Thread Jack Hodges
The spin:labelTemplate property allows us to create display labels with input arguments (spin:constraints). This is helpful, but it would be even nicer if we could access any of the variables defined in the spin:body ASK statement. That way the constraint violation label could be very specific

[topbraid-users] Support for xsd:dateTimeStamp

2017-01-23 Thread Jack Hodges
Shouldn't/doesn't TBC have built-in support for all 41 (or so) xsd data types? Don't most ontologies import the xsd scheme type? Or do you mean something else? Jack -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include

Re: [topbraid-users] SHACL validation report from ModelConstraintValidator example - Questions

2016-08-15 Thread Jack Hodges
The SPINModuleRegistry.get().init() problem was a Siemens security issue which I got rid of but it didn't change the result I posted, which suggests that the SPIN functions are not available in the SPARQL queries in my SHACL templates. On Mon, Aug 15, 2016 at 5:07 PM, Jack Hodges <jhodg

[topbraid-users] QueryIterator exec error in SPINARQPFunction.java

2016-08-23 Thread Jack Hodges
I am seeing a compiler error in the QueryIterator exec method: public QueryIterator exec(Binding binding, PropFuncArg argSubject, Node predicate, PropFuncArg argObject, ExecutionContext context) { argObject = Substitute.substitute(argObject, binding); argSubject =

Re: [topbraid-users] SHACL ModelPrinter for JSON?

2016-08-23 Thread Jack Hodges
using > set(ModelPrinter). > > HTH > Holger > > > On 23/08/2016 10:20, Jack Hodges wrote: > > I see that the ModelPrinter in the shacl archive returns a string. Is > there one specific to JSON or do we have to write one ourselves? > > Jack > -- >

[topbraid-users] sh:argument for sh:sparql - requirements?

2016-08-29 Thread Jack Hodges
If I use the 'create argument' option for sh:argument and sh:sparql, are there any requirements that this definition must satisfy (other than have a legal namespace)? Does the argument have to be of any particular type (other than rdf:property)? Thank you. Jack Hodges Siemens WoS -- You

Re: [topbraid-users] 5.2 Beta on Macintosh?

2016-09-24 Thread Jack Hodges
After you unzip succesfully, you can change the setting back. > > Irene > > From: Jack Hodges <jhodg...@gmail.com > > Reply-To: <topbrai...@googlegroups.com > > Date: Friday, September 23, 2016 at 10:31 AM > To: TopBraid Suite Users <topbrai...@googlegroups.

Re: [topbraid-users] Add 3rd party inference engine support

2016-10-06 Thread Jack Hodges
Sign me up. Thanks. Jack -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include the TopBraid Suite family of products and its base technologies such as SPARQLMotion, SPARQL Web Pages and SPIN. To post to this group,

[topbraid-users] Re: TBL and Allegrograph

2016-10-08 Thread Jack Hodges
Do you mean TBC 5.1? Topbraid Live and Allegro are the same kind of product so you would have no need for both (but they could certainly be integrated through endpoints assuming that they are both working properly already), especially if you want the free Allegrograph. Jack Hodges On Friday

Re: [topbraid-users] SHACL under 5.2

2016-09-21 Thread Jack Hodges
his scenario seems to work fine for me, see the attached files. I would > need a copy of your files or comparable details to reproduce this. > > Holger > > > > On 21/09/2016 6:09, Jack Hodges wrote: > > I have SHACL (SPARQL) constraints that worked 'fine' under TBCME 5.1.3.

[topbraid-users] Re: More SHACL 5.2 ++

2016-09-21 Thread Jack Hodges
is that in 5.1.3 I could see my constraints being hit on a test file and in 5.2 I cannot. But I will happily send you what I have and revert to 5.1.3 in the interim. On Tuesday, September 20, 2016 at 5:31:10 PM UTC-7, Jack Hodges wrote: > > I am creating errors in test files and my

Re: [topbraid-users] SHACL under 5.2

2016-09-21 Thread Jack Hodges
I will check to make sure that my inheritance is correct. I think that what I need is better and more complete documentation of SHACL and SPARQL and SPIN interactions. -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which

[topbraid-users] 5.2 Beta on Macintosh?

2016-09-23 Thread Jack Hodges
is damaged. I have done this 3 times now. Has anyone successfully downloaded and launched the 5.2 beta on an Apple computer? Jack Hodges -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include the TopBraid Su

Re: [topbraid-users] SHACL under 5.2

2016-09-23 Thread Jack Hodges
really getting the focus node and the message. Maybe I can still access the query parameters from the violation. Jack Hodges On Wednesday, September 21, 2016 at 11:53:19 AM UTC-7, Jack Hodges wrote: > > I will check to make sure that my inheritance is correct. I think that > what I need

[topbraid-users] More SHACL 5.2 ++

2016-09-20 Thread Jack Hodges
I am creating errors in test files and my SHACL constraints are not being called. Only the canned constraints. -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include the TopBraid Suite family of products and its base

[topbraid-users] Re: Converting SHACL constraints (sh:sparql) to SHACL templates

2016-08-26 Thread Jack Hodges
Many apologies. I was not aware that 5.2 is available. I looked on the downloads page and didn't see it. Was there a pre-production beta version that you announced that I didn't see (or saw and forgot)? Jack On Thursday, August 25, 2016 at 1:01:47 PM UTC-7, Jack Hodges wrote: > >

[topbraid-users] Converting SHACL constraints (sh:sparql) to SHACL templates

2016-08-25 Thread Jack Hodges
I want to convert some of my SHACL sh:sparql queries into SHACL templates. When I do, at least in one case, I am getting a 'has no registered function factory' error. This template is defined in a .spin.ttl file but its rdf:type is sh:ConstraintTemplate. Could this be causing the problem? I can

Re: [topbraid-users] 5.2 Beta on Macintosh?

2016-09-28 Thread Jack Hodges
, Version 10.11.4. Jack On Saturday, September 24, 2016 at 9:48:00 AM UTC-7, Irene Polikoff wrote: > > I got exactly the same “damaged and you should move it to Trash” dialog. I > am not 100% sure if I got “verifying” dialog, but I think I did. > > > Irene > From: Jack Hodge

Re: [topbraid-users] SHACL under 5.2

2016-09-26 Thread Jack Hodges
Thank you for the links. Very informative. -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include the TopBraid Suite family of products and its base technologies such as SPARQLMotion, SPARQL Web Pages and SPIN. To post

Re: [topbraid-users] Re: TBL and Allegrograph

2016-10-10 Thread Jack Hodges
>From our perspective they are functionally identical and we are even at this >moment comparing them for a project. In both cases we can deploy the same >semantic apps. In both cases we have access to spin (according to both >companies). In both cases we have access to the triple store. In both

[topbraid-users] Suggested development features for TBC

2017-03-27 Thread Jack Hodges
. Respectfully submitted, Jack Hodges -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include the TopBraid Suite family of products and its base technologies such as SPARQLMotion, SPARQL Web Pages and SPIN. To post to

[topbraid-users] Re: Troubles with TopSPIN

2017-03-28 Thread Jack Hodges
:28 PM UTC-7, Jack Hodges wrote: > > I have been trying to do some inferencing on a graph and am getting > nothing. I have created a construct template in a .spin.ttl file. The > SPARQL in this template can be copied to TBCME and it executes on the > associated vocabulary

[topbraid-users] Re: Troubles with TopSPIN

2017-03-28 Thread Jack Hodges
I found the problem. Stupid mistake in one of the prefixes. But I learned about the SPIN Statistics tab along the way. Thank you! -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include the TopBraid Suite family of

[topbraid-users] Re: Suggested development features for TBC

2017-03-28 Thread Jack Hodges
of them to see. It is an improvement but still requires a lot of TLC. Thanks, Jack On Monday, March 27, 2017 at 11:12:53 AM UTC-7, Jack Hodges wrote: > > Frequently I end up with errors resulting from a graph not being able to > import another graph. Tracking down these errors is often q

[topbraid-users] Troubles with TopSPIN

2017-03-27 Thread Jack Hodges
I have been trying to do some inferencing on a graph and am getting nothing. I have created a construct template in a .spin.ttl file. The SPARQL in this template can be copied to TBCME and it executes on the associated vocabulary no problem (i.e., it constructs all of the correct triples). If

Re: [topbraid-users] No registered function factory for any user-defined functions or magic properties - occasionally

2017-04-17 Thread Jack Hodges
Hello Holger, I only name SPIN files with .spin.ttl now for quite some time, and these graphs are definitely imported by the vocabulary I am testing on as they were working just fine until they stopped working. In fact, I have 3 graphs open, the vocabulary, the spin file and the magic

[topbraid-users] Re: List difference - nope

2017-04-15 Thread Jack Hodges
it hasn't worked. Jack On Thursday, April 6, 2017 at 4:46:29 PM UTC-7, Jack Hodges wrote: > > I have 2 problems that I think might be related. > > First, if I write a SPIN function countEnumItems to count the number of > items in an enumeration: > > SELECT COUNT(

Re: [topbraid-users] List difference - nope

2017-04-15 Thread Jack Hodges
OK, i've got them working with multiple arguments. Thanks Holger and Irene! Jack On Sunday, April 9, 2017 at 3:47:49 PM UTC-7, Holger Knublauch wrote: > > Hi Jack, > > On 9/04/2017 2:14, Jack Hodges wrote: > > Thanks Irene. That is exactly what mine looks like, and it is ind

[topbraid-users] No registered function factory for any user-defined functions or magic properties - occasionally

2017-04-16 Thread Jack Hodges
Occasionally TBC will get itself into a mode where it suddenly refuses to acknowledge any of my SPIN functions or magic properties. It is infrequent enough that I forget the recipe to fix it, opting for ever increasingly drastic actions (starting with refreshing the registries, and sometimes

[topbraid-users] List difference - nope

2017-04-06 Thread Jack Hodges
I have 2 problems that I think might be related. First, if I write a SPIN function countEnumItems to count the number of items in an enumeration: SELECT COUNT(?known_dim) WHERE { ?known_dim a *?*dtype . } where ?dtype is an argument to the function, and I call this in a SPARQL window,

Re: [topbraid-users] List difference - nope

2017-04-08 Thread Jack Hodges
; > On Apr 6, 2017, at 7:46 PM, Jack Hodges <jhodg...@gmail.com > > wrote: > > I have 2 problems that I think might be related. > > First, if I write a SPIN function countEnumItems to count the number of > items in an enumeration: > > SELECT COUNT(?known_dim) &g

Re: [topbraid-users] Getting tangled in XML parsing and encoding

2017-06-30 Thread Jack Hodges
We have "Enable SPARQL Updates" enabled on our TBL instance, and they work just fine. We are using endpoints because this is a Web Service call and our TBL instance is behind a RESTful API firewall. Support@topquadrant is familiar with this workflow. Jack On Friday, June 30, 2017 at 9:55:07

Re: [topbraid-users] Getting tangled in XML parsing and encoding

2017-07-01 Thread Jack Hodges
Holger, thank you for your (very much appreciated) help. Because you asked why we are asking these questions, we (Steve and I) are collaborating on a system that uses TBL as a triple store and reasoner. It (TBL) is one component of a system and has a separate proxy web service as a front end.

[topbraid-users] Moving items from one graph to another

2017-04-25 Thread Jack Hodges
if it is still supported. Is it? Jack Hodges -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include the TopBraid Suite family of products and its base technologies such as SPARQLMotion, SPARQL Web Pages and SPI

[topbraid-users] Import tab-delimited data into vocab graph that imports a schema graph

2017-04-25 Thread Jack Hodges
it as a useful feature (since I just spent a large amount of time making this happen manually). Jack Hodges -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include the TopBraid Suite family of products an

[topbraid-users] Feature request: Can we have cancel actually cancel?

2017-04-26 Thread Jack Hodges
and that I don't have to kill a process to get the desired behavior. Could TQ maybe fix this sometime? Jack Hodges -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include the TopBraid Suite family of products an

[topbraid-users] Feature request - Select a workspace dialog

2017-04-26 Thread Jack Hodges
that? Can't you just put a horizontal scrollbar in or, alternately, a tool tip if I hover over the workspace name? Jack Hodges -- You received this message because you are subscribed to the Google Group "TopBraid Suite Users", the topics of which include the TopBraid Suite family o

Re: [topbraid-users] Feature request: Can we have cancel actually cancel?

2017-04-27 Thread Jack Hodges
quot;import" was this specifically? > > Thanks > Holger > > > On 27/04/2017 3:27, Jack Hodges wrote: > > I started an import yesterday and realized that I wanted to cancel it a > couple minutes in and hit the cancel button. That was 18 hours ago. I had > to kill

Re: [topbraid-users] Feature request - Select a workspace dialog

2017-04-27 Thread Jack Hodges
ure and thus unfortunately outside > of our control. > > Holger > > > On 27/04/2017 3:23, Jack Hodges wrote: > > I've been using TBC for many years and am always frustrated that when I go > to open a workspace from the Workspace Launcher that I cannot see the > ent

Re: [topbraid-users] Moving items from one graph to another

2017-04-27 Thread Jack Hodges
source (s) into the basket, select it and then from the menu > select “perform batch operations”. You will then see a choice of several > batch operations. > > On Apr 25, 2017, at 7:48 PM, Jack Hodges <jhodg...@gmail.com > > wrote: > > Back in 2012 there was an abili

Re: [topbraid-users] Moving items from one graph to another

2017-04-27 Thread Jack Hodges
n from the menu > select “perform batch operations”. You will then see a choice of several > batch operations. > > On Apr 25, 2017, at 7:48 PM, Jack Hodges <jhodg...@gmail.com > > wrote: > > Back in 2012 there was an ability in TBC to select items in a basket, or a

Re: [topbraid-users] Moving items from one graph to another

2017-04-28 Thread Jack Hodges
Hey guys, thanks for looking at this problem. @holger, I also usually use to raw view to move items around, but since the items are alphabetized I have to find the start and end points of the items to move and that can be time consuming. In this particular case it is the sheer number of items

Re: [topbraid-users] Clarification on calling a SPIN function

2017-08-02 Thread Jack Hodges
So if I want to call a SPIN function called 'jack' at a SPARQL endpoint (say with a GET) that is defined with 2 arguments, they would need to be provided in the order they were defined in rather than by their names? Example below: http://localhost:8383/queries/jack?foo="value1"="value2; This

[topbraid-users] Re: REST services for creating, importing data & updating a Taxonomy/Ontology

2017-09-13 Thread Jack Hodges
I haven't used EDG but we use Topbraid Live and there are no REST services to perform these necessary functions, only direct export from Topbraid Composer to TBL or direct import from a zipped Topbraid Composer project into TBL. If you find or build one please announce here. Thank you. Jack

Re: [topbraid-users] constraint violation

2017-08-26 Thread Jack Hodges
t the addressee or if this message was sent to you by mistake, you > are requested to inform the sender and delete the message. TNO accepts no > liability for the content of this e-mail, for the manner in which you use > it and for damage of any kind resulting from the risks inherent

[topbraid-users] constraint violation

2017-08-25 Thread Jack Hodges
Although I would do this kind of thing with SHACL I have a larger (I think) question. I see a lot of people embedding content logic in owl:equivalentClass expressions when they have no actual class. Why do people do that? Wouldn't it be better to have an area property and then define the

Re: [topbraid-users] Abridged summary of topbraid-users@googlegroups.com - 8 updates in 1 topic

2017-11-23 Thread Jack Hodges
Michel, Irene and TopQuadrant are not responsible for QUDT, though they are intimately familiar with it. She is addressing your general import question into TBC. For any QUDT import issues you would need to talk to someone in QUDT.org. Granted, at present Ralph knows more about the ontologies

Re: [topbraid-users] sh:datatype editting issue...

2017-11-17 Thread Jack Hodges
qudt:Unit ? -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to topbraid-users+unsubscr...@googlegroups.com. For more options, visit

[topbraid-users] import existing tbc project (managed by git) shows some files changed (? on folder, > on name)

2018-05-08 Thread Jack Hodges
this be similar? Thank you for any ideas/pointers... Jack Hodges Siemens AHI Group -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to topbraid-user

[topbraid-users] starting re-index ?

2018-04-27 Thread Jack Hodges
I am seeing a lot of "starting re-index" information messages in my TBC error log these days. When I open one of them there is very little information about what this about, and I do not recall ever receiving these kinds of messages in the past. Is there a link to documentation about these

Re: [topbraid-users] starting re-index ?

2018-04-28 Thread Jack Hodges
: > > > Thank you! > > Aaron > > ᐧ > > On Fri, Apr 27, 2018 at 1:01 PM, Jack Hodges <jhodg...@gmail.com > > wrote: > >> I am seeing a lot of "starting re-index" information messages in my TBC >> error log these days. When I open one of

Re: [topbraid-users] Abridged summary of topbraid-users@googlegroups.com - 2 updates in 1 topic

2018-05-23 Thread Jack Hodges
es > > Looking for advice on staged deployment strategies for production > environment > <http://groups.google.com/group/topbraid-users/t/11c5d486c6e46668?utm_source=digest_medium=email> > Jack Hodges <jhodgesa...@gmail.com>: May 22 11:08AM -0700 > > Hello, > > We are wo

[topbraid-users] Looking for advice on staged deployment strategies for production environment

2018-05-22 Thread Jack Hodges
. Thank you any/all for comments... Jack Hodges SIemens -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to topbraid-users+unsubscr...@google

Re: [topbraid-users] imported classes not showing up in classes list

2018-06-07 Thread Jack Hodges
That ontology has existed for several years and is in use in various projects so yes it is connected to owl:Thing and to rdfs:Class. But it occurred to me that perhaps the superclass of fonm:Concept, which is prov:Entity, might not have a prefix in the current graph so I created one and that

Re: [topbraid-users] Re: [tbc-users] Re: @prefix triples

2018-06-07 Thread Jack Hodges
And yes, I meant graph, but I used the graph’s namespace in the query. So, SELECT ?prefixes WHERE { spif:prefix ?prefixes . } -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop

Re: [topbraid-users] Re: [tbc-users] Re: @prefix triples

2018-06-07 Thread Jack Hodges
I thought I tried that (also a one-liner) yesterday with no results. I’ll try again. Thanks. -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [topbraid-users] imported classes not showing up in classes list

2018-06-08 Thread Jack Hodges
Yes, I am aware of this setting but thought it only affected instances and not the Classes view. I can check, but I normally up this value to 10,000. It might be back down to 1,000 which, if memory serves, is the default. -- You received this message because you are subscribed to the Google

Re: [topbraid-users] Re: [tbc-users] Re: @prefix triples

2018-06-07 Thread Jack Hodges
Jack On Thursday, June 7, 2018 at 6:15:10 AM UTC-7, Jack Hodges wrote: > > And yes, I meant graph, but I used the graph’s namespace in the query. So, > > SELECT ?prefixes > WHERE { > <http://mygraph> spif:prefix ?prefixes . > } -- You received this message because

[topbraid-users] Re: [tbc-users] Re: @prefix triples

2018-06-06 Thread Jack Hodges
I know that this is an ancient topic, but I have also seen that TQ added a couple of functions, smf:prefix that takes a namespace and returns the prefix, and spif:prefix that is a magic property that supposedly takes namespaces and returns prefixes. I was hoping that I could use one of these

[topbraid-users] Re: SWP question again

2018-06-01 Thread Jack Hodges
page source and I see that tbc has added , when my SWP has these already because I wanted to define some style values for the table. Might this be the problem? Can I move my ... definitions to ui:headIncludes? I'll try it just in case. On Friday, June 1, 2018 at 9:00:31 AM UTC-7, Jack Hodges wr

[topbraid-users] SWP question again

2018-06-01 Thread Jack Hodges
flaw in what I am trying to do. Comments, suggestions, criticisms? Jack Hodges Siemens CT US -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop receiving emails from it, send an email t

[topbraid-users] Re: SWP question again

2018-06-01 Thread Jack Hodges
vide all of the definitions for these if there > isn’t some obvious flaw in what I am trying to do. Comments, suggestions, > criticisms? > > Jack Hodges > Siemens CT US -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" grou

[topbraid-users] TBCME stability on OSX High Sierra?

2018-01-26 Thread Jack Hodges
I want to know what is going on here first. Thanks for any comments/assistance, Jack Hodges, Siemens -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop receiving emails from it, sen

[topbraid-users] Consolidated list of documentation locations for available functions?

2018-07-16 Thread Jack Hodges
Everyone who uses the Topbraid ecosystem has long lamented the documentation. One would think that a company that in some ways leads the industry in semantic modeling doesn’t eat its own dog food when it comes to its own models. Self-documenting models!!! You guys pretty much invented the idea,

Re: [topbraid-users] View classes by rdfs:label

2018-07-18 Thread Jack Hodges
Is this property set on individual ontologies? BFO and some other biomedically-inspired ontologies’ qnames may be unreadable but others are not. I am not convinced that being able to read BFO class names more easily is worth compromising the project view. If this is a per-ontology setting that

Re: [topbraid-users] OWLIM reasoner

2018-03-28 Thread Jack Hodges
In this business speed is a 'really' important consideration. Do either of you have benchmark results for speed comparisons for these (and other) reasoners on the TQ platform, or even for other platforms? Thanks. Jack On Tuesday, March 27, 2018 at 11:50:00 PM UTC-7, Paul Hermans wrote: > >

[topbraid-users] Re: Anyone using RDFa, Microdata and Atom/RSS import?

2018-03-26 Thread Jack Hodges
not with us. On Sunday, March 25, 2018 at 3:52:49 PM UTC-7, Holger Knublauch wrote: > > Dear TopBraid users, > > while reviewing our current set of features, I noticed that we have > supported importing of RDFa and Microdata as well as converting Atom and > RSS newsfeeds to RDF for many years.

[topbraid-users] imported classes not showing up in classes list

2018-04-25 Thread Jack Hodges
appreciated. Jack Hodges, Siemens -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to topbraid-users+unsubscr...@googlegroups.com. For more options, v

[topbraid-users] SPINMap diagram issues

2018-10-22 Thread Jack Hodges
that this has been a problem with the other diagram forever, but it is a serious bug nonetheless. Suggestion: (1) Add a 'refresh' button for SPINMap diagrams and never refresh until that button is selected (2) Allow the page to scroll when adding links Respectively submitted, Jack

Re: [topbraid-users] SPINMap diagram issues

2018-10-24 Thread Jack Hodges
Holger, you touch on a more touchy topic that just SPINMap and SHACL. Although I have heard many pundits claim that the global trend is away from desktop applications, I wonder how many of them are doing actual work. TBC consumes every ounce of power I can extract out of a desktop, and I have

Re: [topbraid-users] Abridged summary of topbraid-users@googlegroups.com - 2 updates in 1 topic

2019-01-05 Thread Jack Hodges
ed by magic property? > <http://groups.google.com/group/topbraid-users/t/ac3abf0853a3f24c?utm_source=digest_medium=email> > Jack Hodges : Jan 04 09:44AM -0800 > > I am trying to use 2 columns returned by a magic property (identifiers and > values, respectively) and to sum the v

[topbraid-users] Magic property example with multiple column return?

2018-11-26 Thread Jack Hodges
Does anyone have an example magic property example they can share that illustrates a multiple-column return set? I see from the documentation that it is possible but my examples don’t work. Thank you in advance. Jack Hodges Sent from my iPad -- You received this message because you

[topbraid-users] Recursion to sum values from rows returned by magic property?

2019-01-04 Thread Jack Hodges
0.4 It does not seem reasonable to convert the results of efunc:getQuantitySet to rdf:List, so I am looking into a Javascript version to take the original results of efunc:getQuantitySet and sum them. Any advice would be most appreciated. Jack Hodges, Siemens -- You received th

[topbraid-users] Re: Mapping to a standard

2019-04-06 Thread Jack Hodges
in the literature and you may already be familiar with them. Jack Hodges, Siemens On Friday, April 5, 2019 at 6:20:34 AM UTC-7, Pat Bell wrote: > > Apologies in advance because I suspect this question comes up quite often > but I haven't found anything directly appropriate. > > I have created

[topbraid-users] A tool or approach for managing ontologies?

2019-03-03 Thread Jack Hodges
from scratch only to learn that there is already a solution (no doubt better) that already exists. Jack Hodges, Siemens -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To unsubscribe from this group and stop receiving e

Re: [topbraid-users] A tool or approach for managing ontologies?

2019-03-04 Thread Jack Hodges
Ralph, Thanks for the reply. Can I run a SPARQL query on a graph that doesn’t load? But your answer tells me that you are not aware of such a tool and that goes a long way. Jack -- You received this message because you are subscribed to the Google Groups "TopBraid Suite Users" group. To

[topbraid-users] .project file disappeared, can I copy and edit one and still have the project work?

2019-06-17 Thread Jack Hodges
I am not sure what happened. I am running an older version of TBCME at home and brought my workspace to work (newer version) and 2 projects won't open because they have no .project files (I am wondering how that happened). I checked permissions on other projects that are open, copied and edited

Re: [topbraid-users] SWP not finding local images - how to reference

2019-08-02 Thread Jack Hodges
with .www. For example > > /root/myimages.www/test.png > > can usually be displayed using > > > > Holger > > > On 2/08/2019 08:53, Jack Hodges wrote: > > I forgot how to locate images in the local workspace in SWP. Luckily I had > some old examples w

[topbraid-users] Can ui:loadable apply over several sections of an SWP FullScreenBorderLayout?

2019-08-02 Thread Jack Hodges
I want to dynamically reload 2 sections of a FullScreenBorderLayout using ui:loadable and a single button-press event. Can I reuse the ui:loadId in different sections or wrap the ui:loadable around the entire FullScreenBorderLayout? Jack -- You received this message because you are

[topbraid-users] tbcme crashing on edit text

2019-07-31 Thread Jack Hodges
I recent times, when I edit a graph in text form, if I make a large cut of text TBCME almost always crashes. This often happens when I have the graph open in both forms (Topbraid and text) but it also happens even when only the text file is open. In earlier versions of TBCME this did not

[topbraid-users] SWP not finding local images - how to reference

2019-08-01 Thread Jack Hodges
I forgot how to locate images in the local workspace in SWP. Luckily I had some old examples where I had either gotten some assistance or figured it out (more likely the former), and got it to work, but am wondering where in the documentation this is to be found. Thank you! Jack -- You

[topbraid-users] Is there a condition-based iteration with SWP (beyond ui:foreach)?

2019-08-06 Thread Jack Hodges
I would like to perform a while or do-while iteration with SWP. That is, condition based rather than item based as in ui:foreach. I see nothing in the manual about it so I'll look in the libraries but thought I ask in parallel. I do not know if a ui:if and a ui:foreach can produce the same

[topbraid-users] All rules that determine whether something will have a function factory - where?

2019-07-17 Thread Jack Hodges
I continue to develop logic in spin functions and templates and sometimes I get a function factory and sometimes I don't. Is there document that says for a function or a template what rules must be satisfied to avoid the "X has no function factory" error? I am naming the files properly (e.g.,

<    1   2   3   >