Re: Assembler Class loading

2015-05-09 Thread Claude Warren
assertFalse( "something has pre-loaded Trivial, so we can't test if it gets loaded", loaded ); is triggered. This used to work -- perhaps a difference in how java 8 loads classes. It might make sense to move the "Trivial" class to a different file. Claude On Sat, May 9, 2015

Assembler Class loading

2015-05-09 Thread Claude Warren
Has the assembler class loading strategy changed? I have two tests that were working but now fail because the object of the ja:loadClass is loaded before a call to a.open( root ). Claude -- I like: Like Like - The likeliest place on the web LinkedIn: http://www.link

Re: jena-permissions POM and plugin

2015-05-09 Thread Claude Warren
Should I add the build-helper-maven-plugin to jena-parent? Seems like the MIT license would require that all modules that use it will be required to update their notice files. On the other hand, I see that it is better to have all plugins managed in one place. Claude On Fri, May 1, 2015 at 2:37

Re: jena-permissions POM and plugin

2015-05-09 Thread Claude Warren
Andy, I have added you to the cc list as I am so tardy in replying. I am checking the license and I can only find the MIT reference (which is, from my reading, category-a). I will be checking directly with the dev team to find out what license they are currently under. How did you get Eclipse t

Re: What can be removed/simplified ?

2015-05-08 Thread Claude Warren
t; > A read only graph returns: > > EnumSet.of(AccessMode.Read); > > An append only graph returns: > > EnumSet.of(AccessMode.Append); > > etc. > > Rob > > On 30/04/2015 21:55, "Andy Seaborne" wrote: > > >On 30/04/15 21:33, Claude Warren wr

Re: another clean up suggestion: dead code and its resuscitation

2015-05-08 Thread Claude Warren
I think the catch of execptions that can not be thrown can be safely removed. I would also vote up removal of private methods that are never used. fields are a bit trickier, but then I am probably thinking of parameters and matching an interface... Yeah, I would vote up removing unused methods.

Re: What can be removed/simplified ?

2015-05-02 Thread Claude Warren
ok at what's going on at: > > https://github.com/apache/jena/pull/55 > > and please comment! As a Jena newbie, I need comments. {grin} > > --- > A. Soroka > The University of Virginia Library > > On May 1, 2015, at 12:19 PM, Claude Warren wrote: > > > An ex

Re: What can be removed/simplified ?

2015-05-01 Thread Claude Warren
a 8 Predicate is just an interface that looks much like Jena's > Filter, which can benefit from the -> lamda syntax and which is designed to > fit into the Java 8 language APIs (e.g. for use with Streams). > > --- > A. Soroka > The University of Virginia Library > > On May 1

Re: What can be removed/simplified ?

2015-05-01 Thread Claude Warren
edback. > > --- > A. Soroka > The University of Virginia Library > > On May 1, 2015, at 11:47 AM, Claude Warren wrote: > > > I don't see any reason not to remove the Node functions. > > > > As for the Filter implementation. will that be transparant t

Re: What can be removed/simplified ?

2015-05-01 Thread Claude Warren
I don't see any reason not to remove the Node functions. As for the Filter implementation. will that be transparant to filter implementations? I assume so. On Fri, May 1, 2015 at 4:16 PM, Andy Seaborne wrote: > (mainly for Claude - I did check jena-pemissions and didn't see any usage) > >

Re: What can be removed/simplified ?

2015-04-30 Thread Claude Warren
Yes, inference graphs are the one case I know of where deleting all the rows does not result in an empty graph. On Wed, Apr 29, 2015 at 8:58 PM, Andy Seaborne wrote: > On 29/04/15 18:17, Claude Warren wrote: > >> I use the following: >> >> addAllowed() is used by contra

Re: What can be removed/simplified ?

2015-04-30 Thread Claude Warren
So if a graph allows adding but not deleting how does it respond to the isReadOnly() method? On Thu, Apr 30, 2015 at 9:13 PM, Andy Seaborne wrote: > On 29/04/15 20:58, Andy Seaborne wrote: > >> On 29/04/15 18:17, Claude Warren wrote: >> >>> I use the following: &g

[jira] [Resolved] (JENA-925) QueryBuilder (Extrascomponent) does not handle namespaces in filters.

2015-04-30 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-925?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren resolved JENA-925. Resolution: Fixed Fix Version/s: Jena 2.13.0 Jena 3.0.0

[jira] [Updated] (JENA-925) QueryBuilder (Extrascomponent) does not handle namespaces in filters.

2015-04-30 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-925?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren updated JENA-925: --- Attachment: JENA-925-2.13.0.patch Patch for Jena 2.13.0 > QueryBuilder (Extrascomponent) does

Re: [jira] [Comment Edited] (JENA-925) QueryBuilder (Extrascomponent) does not handle namespaces in filters.

2015-04-30 Thread Claude Warren
gt; > Issue Type: Bug > > Components: Jena > >Affects Versions: Jena 2.13.0, Jena 2.13.1, Jena 3.0.0 > > Environment: all > >Reporter: Claude Warren > >Assignee: Claude Warren > >Priority:

[jira] [Created] (JENA-925) QueryBuilder (Extrascomponent) does not handle namespaces in filters.

2015-04-30 Thread Claude Warren (JIRA)
Claude Warren created JENA-925: -- Summary: QueryBuilder (Extrascomponent) does not handle namespaces in filters. Key: JENA-925 URL: https://issues.apache.org/jira/browse/JENA-925 Project: Apache Jena

Re: What can be removed/simplified ?

2015-04-29 Thread Claude Warren
While we are at it I would like to see that restriction that requires Grahp.getStatisticsHandler() to return the same instance every time removed. It makes proxies much more difficult. On Wed, Apr 29, 2015 at 8:58 PM, Andy Seaborne wrote: > On 29/04/15 18:17, Claude Warren wrote: > &g

Re: What can be removed/simplified ?

2015-04-29 Thread Claude Warren
to support literal typing this can be removed. On Wed, Apr 29, 2015 at 4:14 PM, Andy Seaborne wrote: > On 29/04/15 16:04, Claude Warren wrote: > >> I have no problem retiring FileGraph >> >> Capabilities is another issue. I have used it and it is used in several >&g

Re: What can be removed/simplified ?

2015-04-29 Thread Claude Warren
I have no problem retiring FileGraph Capabilities is another issue. I have used it and it is used in several places in the contract tests where we have to know if the graph supports transactions and the like. I find it useful. In addtion the information containd in the capabilities is often not

Re: filegraph error?

2015-04-29 Thread Claude Warren
The short answer is that the filegraph does not meet the contract of the Graph interface. On Wed, Apr 29, 2015 at 1:14 PM, Andy Seaborne wrote: > On 29/04/15 07:06, Claude Warren wrote: > >> Information I should have provided: >> >> The error oc

Re: filegraph error?

2015-04-29 Thread Claude Warren
ymous node the getURI() returns null. Claude On Tue, Apr 28, 2015 at 10:47 PM, Claude Warren wrote: > I'm not sure this is an error so I thought I'd see what the consensus is > here before I do anything. > > My understanding is that the Graph interface has no restrictions

filegraph error?

2015-04-28 Thread Claude Warren
I'm not sure this is an error so I thought I'd see what the consensus is here before I do anything. My understanding is that the Graph interface has no restrictions on the types of objects in the subject, predicate or object. That is that I could store an anonymous node as the predicate in a trip

Re: New module : jena-base

2015-04-28 Thread Claude Warren
Stian, Good question. I was thinking that it would be usefull for some of the testing code to depend on it, but as I think of it your point that everthing is dependent upon core anyway raised doubts in my mind. I have not looked into base yet to see what is there. Claude On Tue, Apr 28, 2015 a

Re: contract tests.

2015-04-27 Thread Claude Warren
ut I'm not wedded to it. Just my opinion. Claude On Mon, Apr 27, 2015 at 1:29 PM, Andy Seaborne wrote: > On 27/04/15 13:16, Claude Warren wrote: > >> On the other side of the discussion I would prefer that TC and TS be >> suffixes so we can find all tests for common compon

Re: contract tests.

2015-04-27 Thread Claude Warren
g that we use TS_ and TC_ as prefix, I'd prefer a CT_ prefix rather > than _CT, just to follow a convention. > Bruno > > From: Claude Warren > To: dev@jena.apache.org; Bruno P. Kinoshita > Sent: Monday, April 27, 2015 6:33 PM > Subject: contract tests. > > I have

Re: jena3 branch ready for merging into master

2015-04-27 Thread Claude Warren
issue. The old JENA-380 branch can be left there as > reference to what was done, and what should be avoided. > What do you think? > Bruno > > From: Claude Warren > To: dev@jena.apache.org > Sent: Monday, April 27, 2015 9:43 PM > Subject: Re: jena3 branch ready for m

Re: jena3 branch ready for merging into master

2015-04-27 Thread Claude Warren
Bruno, is branch JENA-380 now working against the jena3 package names? Claude On Mon, Apr 27, 2015 at 10:39 AM, Andy Seaborne wrote: > On 26/04/15 22:33, Bruno P. Kinoshita wrote: > >> Andy >> Would it be possible to set up a job in Jenkins pointing to a new branch >> for JENA-380? >> >> We c

Re: Implementing CSV on the Web | Gregg Kellogg

2015-04-26 Thread Claude Warren
Bruno, If you use Jackson to produce/consume json you can also produce/consume csv and do it in a streaming manner. The only problem that I can see is that the Jackson license is not easy to find so I don;t know if it is an Apache license and can be used in Jena. Claude On Sun, Apr 26, 2015 at

contract tests.

2015-04-26 Thread Claude Warren
I have added a contract testing branch and have added the contract tests for all graphs in the core code. I also have contract tests for several other interfaces defined but no suites to exercise them. I recall a recent conversation where tile names were given TS_ prefix for "test suite". I am t

Re: New module : jena-base

2015-04-26 Thread Claude Warren
jena-base shouldn't need to depend on jena-iri; the > "file:" is string mangling, not deeper parsing. > > Andy > > > On 26/04/15 13:44, Claude Warren wrote: > >> I see it as being very small but included in a lot of other test packages. >> so

Change in Jena3?

2015-04-26 Thread Claude Warren
Given the following triples 'simple' 'simple'^^xsd:string A couple of questions: 1) are they the same in Jena3 -- I seem to recall that they should be. 2) assuming they are inserted in that order should the object value be 'simple' or 'simple'^^xsd:string? Claude -- I like: Like Like - The

Re: New module : jena-base

2015-04-26 Thread Claude Warren
n base code directly, but taht's just first reaction. > > What do you see the options as being? > > Andy > > > On 26/04/15 07:49, Claude Warren wrote: > >> So the base test helper code I was talking about yesterday -- do you see >> this going into jena

permissions issues?

2015-04-26 Thread Claude Warren
I see you commented out the permissions. I assume there is a problem. I'm on IRC #jena if you want to chat about the issues. Perhaps we can coordinate our work today and move things forward more quickly. Claude -- I like: Like Like - The likeliest place on the web

Re: New module : jena-base

2015-04-25 Thread Claude Warren
So the base test helper code I was talking about yesterday -- do you see this going into jena-base test branch? If I understand what you are suggesting, I think I do. Claude On Sat, Apr 25, 2015 at 10:32 PM, Andy Seaborne wrote: > As part of rearranging the code, I'd like to propose we have mo

Re: jena3 branch ready for merging into master

2015-04-25 Thread Claude Warren
a.ext package. Claude On Fri, Apr 24, 2015 at 10:40 PM, Claude Warren wrote: > I'm working on changing the packages for the permissions package. but > my system is dog slow > > On 4/24/15, Andy Seaborne wrote: > > OK - I'm about ready to put jena3 onto master. > &g

Re: new tests and GraphHelper class

2015-04-25 Thread Claude Warren
t our test code to be dependent upon code in a package outside of the core. Claude On Sat, Apr 25, 2015 at 2:53 PM, Andy Seaborne wrote: > On 25/04/15 13:17, Claude Warren wrote: > >> Bruno, >> >> When I was working on the tests I moved many of the methods that were in >

new tests and GraphHelper class

2015-04-25 Thread Claude Warren
Bruno, When I was working on the tests I moved many of the methods that were in the base test classes into classes in the testing_framework package. The packackage is visible at http://svn.apache.org/viewvc/jena/Experimental/new-test/src/test/java/com/hp/hpl/jena/testing_framework/?pathrev=152533

git permissions?

2015-04-24 Thread Claude Warren
I don't seem to have permissions to write to the git repository. What do I need to do to get permission? -- I like: Like Like - The likeliest place on the web LinkedIn: http://www.linkedin.com/in/claudewarren

Re: jena3 branch ready for merging into master

2015-04-24 Thread Claude Warren
I'm working on changing the packages for the permissions package. but my system is dog slow On 4/24/15, Andy Seaborne wrote: > OK - I'm about ready to put jena3 onto master. > > This is now the 24-48 (ish) hour slot for anyone who wants to inspect > the jena3 branch, which would be great. > > If

Re: Jena3 bootstrap process notes

2015-04-24 Thread Claude Warren
e to wait. A deprecation remove hunt howver, > should (!!) be on a lesser scale. > > Do shout if you think some/all of this is a bad way to proceed. > > Andy > > > > On 24/04/15 14:02, Claude Warren wrote: > >> Andy, >> >> Perfect. That was ex

Re: Jena3 bootstrap process notes

2015-04-24 Thread Claude Warren
Do we need to verify that the Jena2 branch "works". That is that fixes can be applied and the like? On Fri, Apr 24, 2015 at 2:06 PM, Andy Seaborne wrote: > The process is at this point: > > - > E/ Check and review > > Is 24 hours enough here? > I want to keep the window betw

Re: Jena3 bootstrap process notes

2015-04-24 Thread Claude Warren
implement contract test for specific implementations. Is there any objection to this? Claude On Fri, Apr 24, 2015 at 1:26 PM, Andy Seaborne wrote: > On 24/04/15 09:37, Claude Warren wrote: > >> This would be a good time to change "jena-security" to "jena-permissions". &g

Re: Jena3 bootstrap process notes

2015-04-24 Thread Claude Warren
This would be a good time to change "jena-security" to "jena-permissions". If there is no objection I will do that this weekend. On Fri, Apr 24, 2015 at 9:02 AM, Andy Seaborne wrote: > On 24/04/15 05:54, Bruno P. Kinoshita wrote: > >> Looking good so far Andy! I had a look at the imports and Ec

Re: Implementing CSV on the Web | Gregg Kellogg

2015-04-23 Thread Claude Warren
I wrote/extended a CSV to RDF processor when I was at DERI working on the Granatum project. That code was to be open source. If anyone is interested I could probably get a copy released. It handled things like a change in the format mid stream and was very configurable. On Wed, Apr 22, 2015 at

Re: Start Jena3

2015-04-22 Thread Claude Warren
java 8 changes the order of results returned by a hash map. I don't think this impacts us, though -- while they shouldn't -- some tests may depend on the order. On Wed, Apr 22, 2015 at 5:14 PM, Andy Seaborne wrote: > On 22/04/15 11:12, Claude Warren wrote: > >> +1 f

Re: Start Jena3

2015-04-22 Thread Claude Warren
+1 for the change to Jena3 The timeline looks ok to me. I like the idea of holding onto jena2 for awhile in case of emergencies. As for the testing. I think it is best to restart JENA-380 after the switch to jena3. This would effectively make JENA-380 both the conversion to Junit4 and the

Re: Work on JENA-380

2015-04-20 Thread Claude Warren
gt; 2/ Improving the quality of tests with contracts. >> >> that means (2) can proceed at it's own natural pace. >> >> Andy >> >> >> On 20/04/15 07:28, Claude Warren wrote: >> >>> Here is the svn link to the earlier work. >>>

Re: Work on JENA-380

2015-04-19 Thread Claude Warren
a/blob/281e655a0cc696b76006a7bda0582662eefd98de/jena-iri/src/test/java/org/apache/jena/iri/TestExample.java#L226 > > [3] > https://git1-us-west.apache.org/repos/asf?p=jena.git;a=shortlog;h=refs/heads/JENA-380 > > > > > -- > *From:* Claude Warren > *To:* Bruno P. Kinoshita

Re: Work on JENA-380

2015-04-18 Thread Claude Warren
I was working on this awhile back and got pulled away. I would like to work with you on this. I also think that we should develop contract tests for our SPI interfaces (like graph). https://github.com/Claudenw/junit-contracts On Sat, Apr 18, 2015 at 9:55 AM, Bruno P. Kinoshita wrote: > Hi al

Re: Ant colony optimisation for SPARQL queries?

2015-04-14 Thread Claude Warren
Looks like full text is available at: http://cse.cbu.edu.tr/~tekrei/dosyalar/yayinlar/MENDEL2012.pdf On Tue, Apr 14, 2015 at 12:47 AM, Rob Vesse wrote: > Hey folks > > Anyone seen this paper? > > An ant colony optimisation approach for optimising SPARQL queries by > reordering triple patterns ht

windows TDB testing

2015-03-12 Thread Claude Warren
First let me start with a disclaimer: I do not run windows, I have not attempted to run the windows TDB tests, I have only followed the conversation tangentially. My understanding of the testing issue is that Windows does not release the disk space associated with memory mapped files until after t

Re: download/maven.mdtext

2015-02-21 Thread Claude Warren
> On 16/02/15 12:41, Andy Seaborne wrote: > >> On 15/02/15 12:12, Claude Warren wrote: >> ... >> >> Is there any reason why the build system can not update the documentation >>> links when a new release is promoted? >>> >>> On a slightly dif

Re: svn commit: r1659913 - in /jena/site/trunk/content: documentation/javadoc/index.mdtext download/maven.mdtext

2015-02-15 Thread Claude Warren
Indeed I did. :( Should be fixed now. Is there any reason why the build system can not update the documentation links when a new release is promoted? On a slightly different front, I worked out a script that allowed me to generate the list of modules from the POM files, updating the list automa

Re: Fuseki 2 packages

2015-02-14 Thread Claude Warren
e the SNAPSHOT version. Claude On Sat, Feb 14, 2015 at 1:08 PM, Andy Seaborne wrote: > On 14/02/15 11:44, Claude Warren wrote: > >> I was looking to download some components (specifically Security and >> Fuseki >> 2.x). I found them in the SNAPSHOT repository (

Fuseki 2 packages

2015-02-14 Thread Claude Warren
I was looking to download some components (specifically Security and Fuseki 2.x). I found them in the SNAPSHOT repository (as expected) but the https://repository.apache.org/content/repositories/snapshots/org/apache/jena/jena-fuseki/2.0.0-SNAPSHOT/ directory only contains POMs and not packages as

rename jena-security as jena-permissions

2015-01-28 Thread Claude Warren
jena-security was a poorly chosen name. The package only really does permisisons checking and provides an SPI to hook into an existing authorization system. I think the name and package should change. I would suggest the name change for the next release and the package change for Jena v3.

Re: Assembler black magic????

2015-01-27 Thread Claude Warren
Perhaps "assemblers" is another space where we can clean up for v3. But for v2, there are no magical caches or such that I can code the Mode to say "don't bother calling the real assembler if there already is one of these built.", I have to handle it in my assembler (or in some code the assembler

Re: Jena3 planning

2015-01-26 Thread Claude Warren
I still think we need SDB or an SDB like package. My reasoning is that there are a number of places (think cloud providers, think large corporations that have internal data centers) where you can get a standard DB with all the backup and restore capability built in. The ability to deploy on an e

Re: Jena3 : core/arq split

2015-01-26 Thread Claude Warren
+1 for option 2 as well. Lets get all the pain done at once. On Mon, Jan 26, 2015 at 10:57 PM, Rob Vesse wrote: > Comments inline: > > On 26/01/2015 14:12, "Stian Soiland-Reyes" wrote: > > >If we move out jena-riot, what is the gain? It relies on jena-core, and > >the > >core kind of needs rea

Assembler black magic????

2015-01-26 Thread Claude Warren
I have spent a bit of time in the last few days looking at assemblers particularly with respect to the Mode object. It seems this object gives a hint as to whether or not to create a new object or reuse an old one. but only one assembler seems to use it (File I think). >From what I recall, TDB d

[jira] [Closed] (JENA-396) Request for Info

2015-01-24 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-396?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren closed JENA-396. -- Resolution: Not a Problem > Request for Info > > > K

Re: Strange close() behaviour

2015-01-24 Thread Claude Warren
Removing closable from TDBGraph? No. Removing closable from the proxy? No, It proxies all the interfaces from the original object so that the contracts of the original object are not broken. I changed the proxy so that if a method with the same signature is found it calls the one on the secured

[jira] [Commented] (JENA-861) org.apache.jena.security.impl.SecuredItemInvoker uses wrong method

2015-01-24 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-861?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14290545#comment-14290545 ] Claude Warren commented on JENA-861: Background: 1. TDBGraph implem

Strange close() behaviour

2015-01-24 Thread Claude Warren
Background: 1. TDBGraph implements org.apache.jena.atlas.lib.Closable which defines a close() method 2. Graph does not. 3. DatasetGraphMaker.close() calls close() on the defaultGraph. The security system creates dynamic proxies. When a TDBGraph is closed the method that is being atte

[jira] [Created] (JENA-861) org.apache.jena.security.impl.SecuredItemInvoker uses wrong method

2015-01-24 Thread Claude Warren (JIRA)
Claude Warren created JENA-861: -- Summary: org.apache.jena.security.impl.SecuredItemInvoker uses wrong method Key: JENA-861 URL: https://issues.apache.org/jira/browse/JENA-861 Project: Apache Jena

Re: [jira] [Commented] (JENA-626) SPARQL Query Caching

2015-01-23 Thread Claude Warren
ated to Fuseki responses and > will take it up once I complete this jira issue. > > https://issues.apache.org/jira/browse/JENA-388 > > Regards > Saikat > > > On Fri, Jan 23, 2015 at 8:37 PM, Claude Warren wrote: > > > So if local is on the server then remote must

Re: [jira] [Commented] (JENA-626) SPARQL Query Caching

2015-01-23 Thread Claude Warren
hes > and it will be in server side. > > Regards > Saikat > > > > On Fri, Jan 23, 2015 at 6:39 PM, Claude Warren wrote: > > > In memory local? > > > > Does this mean you are looking at client side caching? > > > > The rest make se

Re: [jira] [Commented] (JENA-626) SPARQL Query Caching

2015-01-23 Thread Claude Warren
time to live. > 5. We will add Tests to validate different cache store operations. > 6. I am still evaluating the changes required to accommodate different > datasets. > > Please let me know if there are changes required in the implementation. > > Regards > S

[jira] [Commented] (JENA-626) SPARQL Query Caching

2015-01-23 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-626?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14289054#comment-14289054 ] Claude Warren commented on JENA-626: The security layer needs the ability to dis

[jira] [Created] (JENA-859) Add logging to jena-security

2015-01-22 Thread Claude Warren (JIRA)
Claude Warren created JENA-859: -- Summary: Add logging to jena-security Key: JENA-859 URL: https://issues.apache.org/jira/browse/JENA-859 Project: Apache Jena Issue Type: Improvement

Re: documentation?

2015-01-22 Thread Claude Warren
er to cache your > credentials) > > Rob > > On 21/01/2015 21:34, "Andy Seaborne" wrote: > > >On 21/01/15 21:30, Claude Warren wrote: > >> I know that we don't have documentation in git due to tooling issues, > >>but > >> for the life o

documentation?

2015-01-21 Thread Claude Warren
I know that we don't have documentation in git due to tooling issues, but for the life of me I can not find the info so that I can update the Security documentation. Does anybody have the URL and any suggestions? Claude -- I like: Like Like - The likeliest place on the web

Re: Build failed in Jenkins: Jena_Development_Deploy #839

2015-01-21 Thread Claude Warren
Thank you for the fix and the note on how to check. I thought I caught them all. :( On Wed, Jan 21, 2015 at 10:34 AM, Andy Seaborne wrote: > Claude, > > Missing license headers. I've fixed these. > > Rob setup the Jena build process to automatically check for files which > should have license h

[jira] [Resolved] (JENA-855) Security does not properly filter Listner results

2015-01-21 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-855?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren resolved JENA-855. Resolution: Fixed SecurityEvaluator API was modified to take principal object as an argument to

[jira] [Resolved] (JENA-856) Missing Jars when Fuseki2.0 is used with Jena Security

2015-01-21 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren resolved JENA-856. Resolution: Fixed Modified security POM to reference managed jars. Added commons-collections4 to

[jira] [Resolved] (JENA-857) Switch jena-security to using managed dependency commons.lang3

2015-01-21 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-857?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren resolved JENA-857. Resolution: Fixed Issue is resolved byt the patch from Andy. My code change is for revision 2.12.2

[jira] [Updated] (JENA-856) Missing Jars when Fuseki2.0 is used with Jena Security

2015-01-20 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren updated JENA-856: --- Affects Version/s: (was: Fuseki 1.1.1) (was: Jena 2.12.1

[jira] [Updated] (JENA-856) Missing Jars when Fuseki2.0 is used with Jena Security

2015-01-20 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren updated JENA-856: --- Priority: Trivial (was: Major) > Missing Jars when Fuseki2.0 is used with Jena Secur

[jira] [Updated] (JENA-856) Missing Jars when Fuseki2.0 is used with Jena Security

2015-01-20 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren updated JENA-856: --- Component/s: Security Affects Version/s: Jena 2.12.1 Fuseki 1.1.1

[jira] [Reopened] (JENA-856) Missing Jars when Fuseki2.0 is used with Jena Security

2015-01-20 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren reopened JENA-856: Assignee: Claude Warren (was: Andy Seaborne) Reopening to provide a tracking bug for Security to

Re: jena git commit: JENA-854 : Temporary kludge to git inconsistencey problem.

2015-01-20 Thread Claude Warren
Andy, Did I not check in the StaticSecurityEvaluator this AM? I thought I did it before I left for work. Claude On Tue, Jan 20, 2015 at 10:06 AM, wrote: > Repository: jena > Updated Branches: > refs/heads/master 43382fa07 -> 8b4624a09 > > > JENA-854 : Temporary kludge to git inconsistencey

[jira] [Created] (JENA-855) Security does not properly filter Listner results

2015-01-20 Thread Claude Warren (JIRA)
Claude Warren created JENA-855: -- Summary: Security does not properly filter Listner results Key: JENA-855 URL: https://issues.apache.org/jira/browse/JENA-855 Project: Apache Jena Issue Type

[jira] [Assigned] (JENA-854) The generic assembler for SecurityEvaluators does not handle non string args correctly

2015-01-20 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-854?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren reassigned JENA-854: -- Assignee: Claude Warren > The generic assembler for SecurityEvaluators does not handle

[jira] [Created] (JENA-854) The generic assembler for SecurityEvaluators does not handle non string args correctly

2015-01-19 Thread Claude Warren (JIRA)
Claude Warren created JENA-854: -- Summary: The generic assembler for SecurityEvaluators does not handle non string args correctly Key: JENA-854 URL: https://issues.apache.org/jira/browse/JENA-854 Project

snapshot downloads

2015-01-19 Thread Claude Warren
Is there a download location for the latest build? -- I like: Like Like - The likeliest place on the web LinkedIn: http://www.linkedin.com/in/claudewarren

[jira] [Closed] (JENA-839) E_Regex only works with XSDstring.

2015-01-18 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-839?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren closed JENA-839. -- Issue is resoved and complete > E_Regex only works with XSDstr

[jira] [Resolved] (JENA-839) E_Regex only works with XSDstring.

2015-01-18 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-839?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren resolved JENA-839. Resolution: Fixed Fix Version/s: Jena 2.12.2 code change and test added to build and correctly

[jira] [Created] (JENA-851) com.hp.hpl.jena.n3.IRIResolver.resolveFileURL does not correctly resolve file URL when file is in a jar.

2015-01-18 Thread Claude Warren (JIRA)
Claude Warren created JENA-851: -- Summary: com.hp.hpl.jena.n3.IRIResolver.resolveFileURL does not correctly resolve file URL when file is in a jar. Key: JENA-851 URL: https://issues.apache.org/jira/browse/JENA-851

[jira] [Created] (JENA-850) The return type of the SecurityEvaluator.getPrincipal() is to restrictive.

2015-01-18 Thread Claude Warren (JIRA)
Claude Warren created JENA-850: -- Summary: The return type of the SecurityEvaluator.getPrincipal() is to restrictive. Key: JENA-850 URL: https://issues.apache.org/jira/browse/JENA-850 Project: Apache

[jira] [Resolved] (JENA-847) There is a need for a generic assembler for SecurityEvaluators.

2015-01-16 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-847?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren resolved JENA-847. Resolution: Fixed Fix Version/s: Fuseki 1.1.2 Jena 2.12.2 Code completed

[jira] [Closed] (JENA-847) There is a need for a generic assembler for SecurityEvaluators.

2015-01-16 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-847?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Claude Warren closed JENA-847. -- Closing as completed > There is a need for a generic assembler for SecurityEvaluat

[jira] [Commented] (JENA-839) E_Regex only works with XSDstring.

2015-01-13 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-839?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14275938#comment-14275938 ] Claude Warren commented on JENA-839: A quick check shows: Use

[jira] [Created] (JENA-847) There is a need for a generic assembler for SecurityEvaluators.

2015-01-13 Thread Claude Warren (JIRA)
Claude Warren created JENA-847: -- Summary: There is a need for a generic assembler for SecurityEvaluators. Key: JENA-847 URL: https://issues.apache.org/jira/browse/JENA-847 Project: Apache Jena

Apache Con NA 2015

2015-01-10 Thread Claude Warren
Is anyone here thinking about attending ApacheCon NA 2015 ? I am considering submitting a talk on the query engine I built for Granatum as part of the medical emphasis. I am considering submitting a talk on the Jena Security layer. I am considering submitting a talk about PA4RDF. (Persistence An

Re: [ANNOUNCE] Apache Science and Healthcare Track @ApacheCon NA 2015

2015-01-09 Thread Claude Warren
alks? Any assistance in this matter would be appreciated. Claude Warren On Fri, Jan 9, 2015 at 2:47 AM, Lewis John Mcgibbney < lewis.mcgibb...@gmail.com> wrote: > Hi Folks, > > Apologies for cross posting :( > > As some of you may already know, @ApacheCon NA 2015 is happening

[jira] [Comment Edited] (JENA-839) E_Regex only works with XSDstring.

2015-01-03 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-839?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14263492#comment-14263492 ] Claude Warren edited comment on JENA-839 at 1/3/15 10:5

[jira] [Commented] (JENA-839) E_Regex only works with XSDstring.

2015-01-03 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-839?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14263492#comment-14263492 ] Claude Warren commented on JENA-839: I'll try to build a list of all the int

[jira] [Commented] (JENA-839) E_Regex only works with XSDstring.

2015-01-02 Thread Claude Warren (JIRA)
[ https://issues.apache.org/jira/browse/JENA-839?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14262829#comment-14262829 ] Claude Warren commented on JENA-839: Both SPARQL 1.0 defines {{regex}} as: {nofo

[jira] [Created] (JENA-839) E_Regex only works with XSDstring.

2014-12-30 Thread Claude Warren (JIRA)
Claude Warren created JENA-839: -- Summary: E_Regex only works with XSDstring. Key: JENA-839 URL: https://issues.apache.org/jira/browse/JENA-839 Project: Apache Jena Issue Type: Bug

Re: [VOTE] Rename RDF Tools for Apache Hadoop

2014-12-17 Thread Claude Warren
Elephas On Wed, Dec 17, 2014 at 10:38 AM, Rob Vesse wrote: > > This is a vote to choose a new name snappier and more memorable name for > the > experimental RDF Tools for Apache Hadoop modules > > The options shown here have been suggested and discussed by the community > and are ordered alphabet

<    2   3   4   5   6   7   8   9   10   11   >