You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(22) |
Nov
(85) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(47) |
Feb
(127) |
Mar
(268) |
Apr
(78) |
May
(47) |
Jun
(38) |
Jul
(131) |
Aug
(221) |
Sep
(187) |
Oct
(54) |
Nov
(111) |
Dec
(84) |
2011 |
Jan
(152) |
Feb
(106) |
Mar
(94) |
Apr
(90) |
May
(53) |
Jun
(20) |
Jul
(24) |
Aug
(37) |
Sep
(32) |
Oct
(70) |
Nov
(22) |
Dec
(15) |
2012 |
Jan
(33) |
Feb
(110) |
Mar
(24) |
Apr
(1) |
May
(11) |
Jun
(8) |
Jul
(12) |
Aug
(37) |
Sep
(39) |
Oct
(81) |
Nov
(38) |
Dec
(50) |
2013 |
Jan
(23) |
Feb
(53) |
Mar
(23) |
Apr
(5) |
May
(19) |
Jun
(16) |
Jul
(16) |
Aug
(9) |
Sep
(21) |
Oct
(1) |
Nov
(2) |
Dec
(8) |
2014 |
Jan
(16) |
Feb
(6) |
Mar
(27) |
Apr
(1) |
May
(10) |
Jun
(1) |
Jul
(4) |
Aug
(10) |
Sep
(19) |
Oct
(22) |
Nov
(4) |
Dec
(6) |
2015 |
Jan
(3) |
Feb
(6) |
Mar
(9) |
Apr
|
May
(11) |
Jun
(23) |
Jul
(14) |
Aug
(10) |
Sep
(10) |
Oct
(9) |
Nov
(18) |
Dec
(4) |
2016 |
Jan
(5) |
Feb
(5) |
Mar
|
Apr
(2) |
May
(15) |
Jun
(2) |
Jul
(8) |
Aug
(2) |
Sep
(6) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
(2) |
Feb
(12) |
Mar
(22) |
Apr
(6) |
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(5) |
Oct
(2) |
Nov
|
Dec
|
2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
(3) |
Aug
|
Sep
(7) |
Oct
(19) |
Nov
|
Dec
|
2021 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Loren C. <lor...@gm...> - 2011-04-13 15:42:37
|
I am thinking that we should add the option of URL rewriting for each package in the Package Repository. Requiring the editing controller-config.xml after using this nice package interface to load an application seems wrong. I am thinking that we add a URL rewrite filed to the Package Repository screen. e.g. Package a is loaded into /db/foo and you want the localhost URL to be http://localhost:8080/exist/bar. That would currently require an entry of <root pattern="/bar" path="xmldb:exist:///db/foo/"/> in the controller-config.xml file. If we had /bar in an editable filed in the Package Repository, then the URL rewriting would look in the package repository code to see if it has a match and then redirect to that collection. Loren |
From: Wolfgang M. <wol...@ex...> - 2011-04-11 20:26:44
|
> I am uploading a package from my own directory and I am getting the following error when I try to install: I downloaded and deployed the package on my linux machine. It installed correctly. Looks like this is another variant of the directory moving issue reported by Ron (though you are on a mac)? Wolfgang |
From: Loren C. <lor...@gm...> - 2011-04-11 19:52:24
|
I am in the process of creating a Hello World EXPath project. I am uploading a package from my own directory and I am getting the following error when I try to install: Package Repository An error occurred while processing the action: Package http://expath.org/helloworld not found [at line 96, column 49, source: /Users/lcahlander/Documents/workspace/exist/webapp/admin/repo.xqm] In function: repomanager:activate() [152:17:/Users/lcahlander/Documents/workspace/exist/webapp/admin/repo.xqm] Name Description Date Installed Status Action http://expath.org/helloworld application Example Hello World Application. 2011-04-11T14:29:30.485-05:00 Not Installed Install | Remove Important: Installed XQuery libraries written in Java only become visible after a restart of eXist-db. Under: Version: 1.5.0dev SVN Revision: 14153 Build: 20110411 User: admin It does not work even if the file is uploaded from the webapp/repo/packages. Is there a bug in the repo.xqm file? Here is the structure of the build: HelloWorld.xpr (generated by oXygen XML) build.xml expath-pkg.xml repo.xml hw/controller.xql hw/index.xq build.xml <?xml version="1.0" encoding="UTF-8"?> <project default="xar" name="Hello World"> <target name="xar"> <delete file="hello-world-1.0.xar" failonerror="false"/> <zip destfile="hello-world-1.0.xar"> <fileset dir="." excludes=".svn,HelloWorld.xpr"/> </zip> </target> </project> expath-pkg.xml <?xml version="1.0" encoding="UTF-8"?> <package xmlns="http://expath.org/ns/pkg" name="http://expath.org/helloworld" abbrev="hw" version="0.1" spec="1.0"> <title>Hello World</title> </package> repo.xml <?xml version="1.0" encoding="UTF-8"?> <meta xmlns="http://exist-db.org/xquery/repo"> <author>Loren Cahlander</author> <website>http://www.syntactica.com</website> <license>GNU-LGPL</license> <copyright>true</copyright> <description>Example Hello World Application.</description> <type>application</type> <status>experimental</status> </meta> hw/controller.xql xquery version "1.0"; (:~ controller.xql for URL rewriting. :) if ($exist:path eq '/') then <dispatch xmlns="http://exist.sourceforge.net/NS/exist"> <redirect url="index.xq"/> </dispatch> hw/index.xq xquery version "1.0"; let $title := "Hello World" return <html> <head> <title>{$title}</title> </head> <body> <h1>{$title}</h1> </body> </html> |
From: Dave F. <dav...@gm...> - 2011-04-08 15:11:40
|
It worked! Thanks, Dmitriy! On Fri, Apr 8, 2011 at 1:03 AM, Dmitriy Shabanov <sha...@gm...>wrote: > On Fri, Apr 8, 2011 at 8:41 AM, Loren Cahlander <lor...@gm... > > wrote: > >> I am having a problem with DBBroker.getOrCreateCollection(Txn transaction, >> XmldbURI name). I pass in the following URI for the new collection * >> xmldb:exist:///db/cms/apps/foo/data/70/PUBLIC/Sections* and get the >> following collection being created * >> /db/db/cms/apps/foo/data/70/PUBLIC/Sections.* The collection that is >> created has an extra */db* in the start of the path. I will be looking >> into it tomorrow. If anyone else has the time to take a look at it in the >> mean time, I would appreciate it. >> > > Try uri without "xmldb:exist://" part. "* > /db/cms/apps/foo/data/70/PUBLIC/Sections*" should be ok. > > -- > Dmitriy Shabanov > -- David Finton |
From: Adam R. <ad...@ex...> - 2011-04-08 14:57:29
|
I did not plan for a teleconf today as I have not seen any requests for one until now. However I am happy to host discussion, do I will contact you both at 5pm CEST. Anyone else? Cheers Adam. On 8 April 2011 16:43, Loren Cahlander <lor...@gm...> wrote: > I am online, but invisible. Please add me to the call when it starts. > > On Apr 8, 2011, at 8:10 AM, Joern Turner wrote: > >> Hi guys, >> >> is there a telco today? Is it still Skype and how do i join? >> >> Joern >> >> ------------------------------------------------------------------------------ >> Xperia(TM) PLAY >> It's a major breakthrough. An authentic gaming >> smartphone on the nation's most reliable network. >> And it wants your games. >> http://p.sf.net/sfu/verizon-sfdev >> _______________________________________________ >> Exist-development mailing list >> Exi...@li... >> https://lists.sourceforge.net/lists/listinfo/exist-development > > > ------------------------------------------------------------------------------ > Xperia(TM) PLAY > It's a major breakthrough. An authentic gaming > smartphone on the nation's most reliable network. > And it wants your games. > http://p.sf.net/sfu/verizon-sfdev > _______________________________________________ > Exist-development mailing list > Exi...@li... > https://lists.sourceforge.net/lists/listinfo/exist-development > -- Adam Retter eXist Developer { United Kingdom } ad...@ex... irc://irc.freenode.net/existdb |
From: Loren C. <lor...@gm...> - 2011-04-08 14:43:30
|
I am online, but invisible. Please add me to the call when it starts. On Apr 8, 2011, at 8:10 AM, Joern Turner wrote: > Hi guys, > > is there a telco today? Is it still Skype and how do i join? > > Joern > > ------------------------------------------------------------------------------ > Xperia(TM) PLAY > It's a major breakthrough. An authentic gaming > smartphone on the nation's most reliable network. > And it wants your games. > http://p.sf.net/sfu/verizon-sfdev > _______________________________________________ > Exist-development mailing list > Exi...@li... > https://lists.sourceforge.net/lists/listinfo/exist-development |
From: Joern T. <joe...@go...> - 2011-04-08 13:10:30
|
Hi guys, is there a telco today? Is it still Skype and how do i join? Joern |
From: Dmitriy S. <sha...@gm...> - 2011-04-08 06:03:45
|
On Fri, Apr 8, 2011 at 8:41 AM, Loren Cahlander <lor...@gm...>wrote: > I am having a problem with DBBroker.getOrCreateCollection(Txn transaction, > XmldbURI name). I pass in the following URI for the new collection * > xmldb:exist:///db/cms/apps/foo/data/70/PUBLIC/Sections* and get the > following collection being created * > /db/db/cms/apps/foo/data/70/PUBLIC/Sections.* The collection that is > created has an extra */db* in the start of the path. I will be looking > into it tomorrow. If anyone else has the time to take a look at it in the > mean time, I would appreciate it. > Try uri without "xmldb:exist://" part. "* /db/cms/apps/foo/data/70/PUBLIC/Sections*" should be ok. -- Dmitriy Shabanov |
From: Loren C. <lor...@gm...> - 2011-04-08 03:41:13
|
Hello folks, I am having a problem with DBBroker.getOrCreateCollection(Txn transaction, XmldbURI name). I pass in the following URI for the new collection xmldb:exist:///db/cms/apps/foo/data/70/PUBLIC/Sections and get the following collection being created /db/db/cms/apps/foo/data/70/PUBLIC/Sections. The collection that is created has an extra /db in the start of the path. I will be looking into it tomorrow. If anyone else has the time to take a look at it in the mean time, I would appreciate it. You will find the method that I am using and the resulting log file below. Here is the version information: project.version=1.5.0dev project.build=20110315 svn.revision=13997 Loren public static boolean storeMemtreeDocument(BrokerPool brokerPool, org.exist.memtree.DocumentImpl document, String collectionPath, String docName) { if (LOG.isDebugEnabled()) { LOG.debug("==========================================================================="); LOG.debug("==========================================================================="); LOG.debug("==========================================================================="); LOG.debug("==========================================================================="); LOG.debug("==========================================================================="); LOG.debug("Attempting to create document: " + collectionPath + "/" + docName); } boolean status = true; TransactionManager transact = null; Txn txn = null; Collection collection = null; XmldbURI collectionURI = null; XmldbURI docURI = null; IndexInfo info = null; DBBroker broker = null; Realm securityRealm = brokerPool.getSecurityManager().getRealm(RealmImpl.ID); Subject systemSubject = brokerPool.getSecurityManager().getSystemSubject(); Account owner = securityRealm.getAccount(systemSubject, ""); try { broker = brokerPool.get(systemSubject); collectionURI = XmldbURI.xmldbUriFor(collectionPath); LOG.debug("collectionURI: " + collectionURI); docURI = XmldbURI.xmldbUriFor(docName); LOG.debug("docURI: " + docURI); try { transact = brokerPool.getTransactionManager(); if (transact != null) { txn = transact.beginTransaction(); if (txn != null) { collection = broker.getOrCreateCollection(txn, collectionURI); LOG.debug("collection: " + collection); if (collection == null) { LOG.error("Failure to find collection: " + collectionPath); return false; } broker.saveCollection(txn, collection); collection.getLock().acquire(Lock.WRITE_LOCK); info = collection.validateXMLResource(txn, broker, docURI, document); collection.store(txn, broker, info, document, false); transact.commit(txn); LOG.info("INFO: " + info.toString()); } } } catch (Exception e) { LOG.error(MessageFormat.format("Failure to store document ({0}) [{1}/{2}]", e.getClass().getName(), collectionPath, docName), e); if (transact != null && txn != null) transact.abort(txn); } finally { if (collection != null) collection.getLock().release(Lock.WRITE_LOCK); } LOG.debug(docName + " stored"); } catch (URISyntaxException e) { status = false; LOG.error(MessageFormat.format("Failure to store document ({0}) [{1}/{2}]", e.getClass().getName(), collectionPath, docName), e); if (transact != null && txn != null) transact.abort(txn); } catch (TransactionException e) { status = false; LOG.error(MessageFormat.format("Failure to store document ({0}) [{1}/{2}]", e.getClass().getName(), collectionPath, docName), e); if (transact != null && txn != null) transact.abort(txn); } catch (EXistException e) { status = false; LOG.error(MessageFormat.format("Failure to store document ({0}) [{1}/{2}]", e.getClass().getName(), collectionPath, docName), e); if (transact != null && txn != null) transact.abort(txn); } finally { brokerPool.release(broker); if (LOG.isDebugEnabled()) { LOG.debug("==========================================================================="); LOG.debug("==========================================================================="); LOG.debug("==========================================================================="); LOG.debug("==========================================================================="); LOG.debug("==========================================================================="); } } return status; } 2011-04-07 14:07:29,984 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:166) - =========================================================================== 2011-04-07 14:07:29,984 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:167) - =========================================================================== 2011-04-07 14:07:29,984 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:168) - =========================================================================== 2011-04-07 14:07:29,984 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:169) - =========================================================================== 2011-04-07 14:07:29,984 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:170) - Attempting to create document: xmldb:exist:///db/cms/apps/foo/data/70/PUBLIC/Sections/count.xml 2011-04-07 14:07:29,985 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:188) - collectionURI: xmldb:exist:///db/cms/apps/foo/data/70/PUBLIC/Sections 2011-04-07 14:07:29,985 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:190) - docURI: count.xml 2011-04-07 14:07:29,985 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:198) - collection: /db/db/cms/apps/foo/data/70/PUBLIC/Sections[count.xml] 2011-04-07 14:07:29,985 [exist_QuartzScheduler_Worker-2] DEBUG (Collection.java [checkPermissions]:1331) - Found old doc 3171 2011-04-07 14:07:29,985 [exist_QuartzScheduler_Worker-2] DEBUG (Collection.java [validateXMLResourceInternal]:1196) - Scanning document /db/db/cms/apps/foo/data/70/PUBLIC/Sections/count.xml 2011-04-07 14:07:29,986 [exist_QuartzScheduler_Worker-2] DEBUG (Collection.java [validateXMLResourceInternal]:1201) - removing old document count.xml 2011-04-07 14:07:29,986 [exist_QuartzScheduler_Worker-2] INFO (NativeBroker.java [removeXMLResource]:2162) - Removing document count.xml (3171) ... 2011-04-07 14:07:29,989 [exist_QuartzScheduler_Worker-2] DEBUG (NativeTextEngine.java [dropIndex]:1072) - Removing 0 tokens 2011-04-07 14:07:29,989 [exist_QuartzScheduler_Worker-2] DEBUG (NativeTextEngine.java [dropIndex]:1072) - Removing 0 tokens 2011-04-07 14:07:29,989 [exist_QuartzScheduler_Worker-2] DEBUG (NativeTextEngine.java [dropIndex]:1072) - Removing 0 tokens 2011-04-07 14:07:29,992 [exist_QuartzScheduler_Worker-2] DEBUG (NativeBroker.java [removeXMLResource]:2167) - removeDocument() - removing dom 2011-04-07 14:07:29,993 [exist_QuartzScheduler_Worker-2] DEBUG (NativeBroker.java [removeResourceMetadata]:2262) - Removing resource metadata for 3171 2011-04-07 14:07:29,993 [exist_QuartzScheduler_Worker-2] DEBUG (Collection.java [validateXMLResourceInternal]:1227) - removed old document count.xml 2011-04-07 14:07:29,993 [exist_QuartzScheduler_Worker-2] DEBUG (Collection.java [storeXMLInternal]:1006) - storing document 3171 ... 2011-04-07 14:07:29,999 [exist_QuartzScheduler_Worker-2] DEBUG (Collection.java [storeXMLInternal]:1019) - document stored. 2011-04-07 14:07:29,999 [exist_QuartzScheduler_Worker-2] INFO (FooJobUtility.java [storeMemtreeDocument]:208) - INFO: IndexInfo: Indexer: org.exist.Indexer@224577f9 DOMStreamer: org.exist.util.serializer.DOMStreamer@7ec78e02 DocumentTrigger: null IsCreating: falseCollectionConfiguration: Full-text index includeByDefault : false includeAttributes : false includeAlphaNum : true exclude : /auth 2011-04-07 14:07:29,999 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:219) - count.xml stored 2011-04-07 14:07:29,999 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:238) - =========================================================================== 2011-04-07 14:07:29,999 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:239) - =========================================================================== 2011-04-07 14:07:30,000 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:240) - =========================================================================== 2011-04-07 14:07:30,000 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:241) - =========================================================================== 2011-04-07 14:07:30,000 [exist_QuartzScheduler_Worker-2] DEBUG (FooJobUtility.java [storeMemtreeDocument]:242) - =========================================================================== |
From: Вячеслав С. <sch...@gm...> - 2011-04-06 03:20:52
|
i mean "Package Repository" page in eXist-db admin - good case to introduce both packaging system & betterforms at one step (if possible) 6 апреля 2011 г. 0:28 пользователь Joern Turner <joe...@go...> написал: > 2011/4/5 Вячеслав Седов <sch...@gm...>: >> maybe not so bad idea to combine betterform sample and packaging >> sample in one case - https://www.betterform.de/trac/wiki/XRX look >> little complex (to my mind) > Sorry - don't get it - what do you mean by combining 'sample and > packaging sample in one case' > > btw - the url you mention is a bit outdated. We have to rewrite that. > That's what i have on my list for the next days. > > Joern > >> >> 2011/4/5 Dmitriy Shabanov <sha...@gm...>: >>> On Tue, Mar 29, 2011 at 8:45 PM, Dannes Wessels <da...@ex...> wrote: >>>> >>>> On 29 Mar 2011, at 17:31 , Thomas White wrote: >>>> >>>> > I am in favour for adding attributes disabled="yes" >>>> >>>> I'd like to approach things in a more positive way: enabled="yes" (or >>>> true) >>> >>> So be. >>> -- >>> Dmitriy Shabanov >>> >>> ------------------------------------------------------------------------------ >>> Xperia(TM) PLAY >>> It's a major breakthrough. An authentic gaming >>> smartphone on the nation's most reliable network. >>> And it wants your games. >>> http://p.sf.net/sfu/verizon-sfdev >>> _______________________________________________ >>> Exist-development mailing list >>> Exi...@li... >>> https://lists.sourceforge.net/lists/listinfo/exist-development >>> >>> >> >> ------------------------------------------------------------------------------ >> Xperia(TM) PLAY >> It's a major breakthrough. An authentic gaming >> smartphone on the nation's most reliable network. >> And it wants your games. >> http://p.sf.net/sfu/verizon-sfdev >> _______________________________________________ >> Exist-development mailing list >> Exi...@li... >> https://lists.sourceforge.net/lists/listinfo/exist-development >> > |
From: Joern T. <joe...@go...> - 2011-04-05 20:28:53
|
2011/4/5 Вячеслав Седов <sch...@gm...>: > maybe not so bad idea to combine betterform sample and packaging > sample in one case - https://www.betterform.de/trac/wiki/XRX look > little complex (to my mind) Sorry - don't get it - what do you mean by combining 'sample and packaging sample in one case' btw - the url you mention is a bit outdated. We have to rewrite that. That's what i have on my list for the next days. Joern > > 2011/4/5 Dmitriy Shabanov <sha...@gm...>: >> On Tue, Mar 29, 2011 at 8:45 PM, Dannes Wessels <da...@ex...> wrote: >>> >>> On 29 Mar 2011, at 17:31 , Thomas White wrote: >>> >>> > I am in favour for adding attributes disabled="yes" >>> >>> I'd like to approach things in a more positive way: enabled="yes" (or >>> true) >> >> So be. >> -- >> Dmitriy Shabanov >> >> ------------------------------------------------------------------------------ >> Xperia(TM) PLAY >> It's a major breakthrough. An authentic gaming >> smartphone on the nation's most reliable network. >> And it wants your games. >> http://p.sf.net/sfu/verizon-sfdev >> _______________________________________________ >> Exist-development mailing list >> Exi...@li... >> https://lists.sourceforge.net/lists/listinfo/exist-development >> >> > > ------------------------------------------------------------------------------ > Xperia(TM) PLAY > It's a major breakthrough. An authentic gaming > smartphone on the nation's most reliable network. > And it wants your games. > http://p.sf.net/sfu/verizon-sfdev > _______________________________________________ > Exist-development mailing list > Exi...@li... > https://lists.sourceforge.net/lists/listinfo/exist-development > |
From: Вячеслав С. <sch...@gm...> - 2011-04-05 18:42:19
|
maybe not so bad idea to combine betterform sample and packaging sample in one case - https://www.betterform.de/trac/wiki/XRX look little complex (to my mind) 2011/4/5 Dmitriy Shabanov <sha...@gm...>: > On Tue, Mar 29, 2011 at 8:45 PM, Dannes Wessels <da...@ex...> wrote: >> >> On 29 Mar 2011, at 17:31 , Thomas White wrote: >> >> > I am in favour for adding attributes disabled="yes" >> >> I'd like to approach things in a more positive way: enabled="yes" (or >> true) > > So be. > -- > Dmitriy Shabanov > > ------------------------------------------------------------------------------ > Xperia(TM) PLAY > It's a major breakthrough. An authentic gaming > smartphone on the nation's most reliable network. > And it wants your games. > http://p.sf.net/sfu/verizon-sfdev > _______________________________________________ > Exist-development mailing list > Exi...@li... > https://lists.sourceforge.net/lists/listinfo/exist-development > > |
From: Pierrick B. <pie...@fr...> - 2011-04-05 17:57:32
|
Hi, Le 05/04/2011 19:17, Adam Retter a écrit : > It looks like you have not enabled the extension functions, you need to > enable both the spatial index and the spatial extensions functions and > then re-build. Yes indeed :-) Just what I was typing... cheers, p.b. |
From: Adam R. <ad...@ex...> - 2011-04-05 17:17:40
|
It looks like you have not enabled the extension functions, you need to enable both the spatial index and the spatial extensions functions and then re-build. On 5 April 2011 18:48, Loren Cahlander <lor...@gm...> wrote: > I am going to be making use of the spatial index. I have turned on the > spatial index and have run the unit tests. I will be fixing these tests, > but would like to get direction from the community before attempting it. > > Here are the test results: > > Unit Test Results. Designed for use with JUnit and Ant. > ------------------------------ > Class org.exist.indexing.spatial.AllSpatialTests NameTestsErrorsFailures > Time(s)Time StampHost AllSpatialTests80511.9872011-04-05T16:18:45 > henry3.zhcomputer.local Tests NameStatusTypeTime(s) testIndexDocument > Success10.666 testCheckIndexSuccess0.000 testScanIndexFailureUnknown > index: spatial-index [at line 1, column 306, source: String] > > junit.framework.AssertionFailedError: Unknown index: spatial-index [at line > 1, column 306, source: String] > at > org.exist.indexing.spatial.GMLIndexTest.testScanIndex(GMLIndexTest.java:218) > 1.143 testLowLevelSearchSuccess0.012 testHighLevelSearchFailureerr:XPST0017 > Call to undeclared function: spatial:equals [at line 1, column 192, source: > String] > > junit.framework.AssertionFailedError: err:XPST0017 Call to undeclared > function: spatial:equals [at line 1, column 192, source: String] > at > org.exist.indexing.spatial.GMLIndexTest.testHighLevelSearch(GMLIndexTest.java:374) > 0.018 testGeometricPropertiesFailureerr:XPST0017 Call to undeclared > function: spatial:getWKT [at line 1, column 192, source: String] > > junit.framework.AssertionFailedError: err:XPST0017 Call to undeclared > function: spatial:getWKT [at line 1, column 192, source: String] > at > org.exist.indexing.spatial.GMLIndexTest.testGeometricProperties(GMLIndexTest.java:731) > 0.005 testGMLProducersFailureerr:XPST0017 Call to undeclared function: > spatial:transform [at line 1, column 192, source: String] > > junit.framework.AssertionFailedError: err:XPST0017 Call to undeclared > function: spatial:transform [at line 1, column 192, source: String] > at > org.exist.indexing.spatial.GMLIndexTest.testGMLProducers(GMLIndexTest.java:999) > 0.004 testUpdateFailureerr:XPST0017 Call to undeclared function: > spatial:getArea [at line 1, column 222, source: String] > > junit.framework.AssertionFailedError: err:XPST0017 Call to undeclared > function: spatial:getArea [at line 1, column 222, source: String] > at > org.exist.indexing.spatial.GMLIndexTest.testUpdate(GMLIndexTest.java:1047) > 0.005 > > > > ------------------------------------------------------------------------------ > Xperia(TM) PLAY > It's a major breakthrough. An authentic gaming > smartphone on the nation's most reliable network. > And it wants your games. > http://p.sf.net/sfu/verizon-sfdev > _______________________________________________ > Exist-development mailing list > Exi...@li... > https://lists.sourceforge.net/lists/listinfo/exist-development > > -- Adam Retter eXist Developer { United Kingdom } ad...@ex... irc://irc.freenode.net/existdb |
From: Loren C. <lor...@gm...> - 2011-04-05 16:48:28
|
I am going to be making use of the spatial index. I have turned on the spatial index and have run the unit tests. I will be fixing these tests, but would like to get direction from the community before attempting it. Here are the test results: Unit Test Results. Designed for use with JUnit and Ant. Class org.exist.indexing.spatial.AllSpatialTests Name Tests Errors Failures Time(s) Time Stamp Host AllSpatialTests 8 0 5 11.987 2011-04-05T16:18:45 henry3.zhcomputer.local Tests Name Status Type Time(s) testIndexDocument Success 10.666 testCheckIndex Success 0.000 testScanIndex Failure Unknown index: spatial-index [at line 1, column 306, source: String] junit.framework.AssertionFailedError: Unknown index: spatial-index [at line 1, column 306, source: String] at org.exist.indexing.spatial.GMLIndexTest.testScanIndex(GMLIndexTest.java:218) 1.143 testLowLevelSearch Success 0.012 testHighLevelSearch Failure err:XPST0017 Call to undeclared function: spatial:equals [at line 1, column 192, source: String] junit.framework.AssertionFailedError: err:XPST0017 Call to undeclared function: spatial:equals [at line 1, column 192, source: String] at org.exist.indexing.spatial.GMLIndexTest.testHighLevelSearch(GMLIndexTest.java:374) 0.018 testGeometricProperties Failure err:XPST0017 Call to undeclared function: spatial:getWKT [at line 1, column 192, source: String] junit.framework.AssertionFailedError: err:XPST0017 Call to undeclared function: spatial:getWKT [at line 1, column 192, source: String] at org.exist.indexing.spatial.GMLIndexTest.testGeometricProperties(GMLIndexTest.java:731) 0.005 testGMLProducers Failure err:XPST0017 Call to undeclared function: spatial:transform [at line 1, column 192, source: String] junit.framework.AssertionFailedError: err:XPST0017 Call to undeclared function: spatial:transform [at line 1, column 192, source: String] at org.exist.indexing.spatial.GMLIndexTest.testGMLProducers(GMLIndexTest.java:999) 0.004 testUpdate Failure err:XPST0017 Call to undeclared function: spatial:getArea [at line 1, column 222, source: String] junit.framework.AssertionFailedError: err:XPST0017 Call to undeclared function: spatial:getArea [at line 1, column 222, source: String] at org.exist.indexing.spatial.GMLIndexTest.testUpdate(GMLIndexTest.java:1047) 0.005 |
From: Dmitriy S. <sha...@gm...> - 2011-04-05 16:47:51
|
On Tue, Mar 29, 2011 at 8:45 PM, Dannes Wessels <da...@ex...> wrote: > > On 29 Mar 2011, at 17:31 , Thomas White wrote: > > > I am in favour for adding attributes disabled="yes" > > I'd like to approach things in a more positive way: enabled="yes" (or true) > So be. -- Dmitriy Shabanov |
From: Joern T. <joe...@go...> - 2011-04-05 15:21:25
|
Hi Adam, On Tue, Mar 29, 2011 at 8:28 PM, Adam Retter <ad...@ex...> wrote: > Great Tobi, Thanks very much. > > Do you want to post a quick message in a new clean thread also, > advertising this fact and maybe explaining how people could get > started quickly with their first XForm in eXist-db+betterForm? Yes, that's high on the list but is probably my job to deliver. I'll try to write it down and send it. cheers, Joern > > > On 29 March 2011 17:29, Tobi Krebs <tob...@be...> wrote: >> On Tuesday 29 March 2011 14:54:40 Wolfgang Meier wrote: >>> > Well, I rather like in enabled by default. But this sort of question >>> > causes holy wars, so I will leave it entirely up to you ;-) >>> >>> I think it should be enabled by default. The goal is to make it easy >>> for new users to get started with xforms. >>> >>> Wolfgang >> >> Okay i committed both version to stable and trunk. >> >> I enabled the extension per default and set the XFormsFilter so it will react >> on XForms served from the Database ("/rest/db/*"). >> >> I hope that´s okay. >> >> If there are any problems concerning the extension feel free to contact us. >> >> Tobi >> > > > > -- > Adam Retter > > eXist Developer > { United Kingdom } > ad...@ex... > irc://irc.freenode.net/existdb > > ------------------------------------------------------------------------------ > Enable your software for Intel(R) Active Management Technology to meet the > growing manageability and security demands of your customers. Businesses > are taking advantage of Intel(R) vPro (TM) technology - will your software > be a part of the solution? Download the Intel(R) Manageability Checker > today! http://p.sf.net/sfu/intel-dev2devmar > _______________________________________________ > Exist-development mailing list > Exi...@li... > https://lists.sourceforge.net/lists/listinfo/exist-development > |
From: Joern T. <joe...@go...> - 2011-04-05 08:13:18
|
On Mon, Apr 4, 2011 at 5:57 PM, Henry S. Thompson <ht...@ma...> wrote: > Tobi Krebs <tob...@be...> writes: > >> On Tuesday 29 March 2011 14:54:40 Wolfgang Meier wrote: >>> > Well, I rather like in enabled by default. But this sort of question >>> > causes holy wars, so I will leave it entirely up to you ;-) >>> >>> I think it should be enabled by default. The goal is to make it easy >>> for new users to get started with xforms. >>> >>> Wolfgang >> >> Okay i committed both version to stable and trunk. > > I believe there's a bug in this release. > > Have you tried xforms/hello.xml ? > > Somewhat to my surprise, hello2.xml works, but hello.xml does not. hm, i wasn't aware that we still have those - i remember that we renamed those files to have an .xhtml suffix as there was a problem with eXist serving all .xml files as documentation and piping them through the documentation stylesheet. As a result the XFormsFilter got the transformed html instead of the plain xml file. We have now changed our filter mapping to only work on files located somewhere below the 'db' collection. This allows to have both XSLTForms and betterFORM and have them working side by side. As i just saw we do not have a hello.xml and hello2.xml any more in our repository. Tobi is on travel this week so i'm not completely sure what happened to them. > > The problem is in betterform-Full.js, which hits a bug, which blows out the > initialisation, which means that the default path (betterform/Flux) is > never overriden, leading to a 404 on > /betterform/Flux/call/plaincall/Flux.dispatchEventType.dwr > > To trigger this, I did svn update in the exist trunk, built exist and > confirmed that betterform was installed OK. Because bf now gets all > its resources from inside its jar file, I can't easily debug further. I remember to have promised a howto for working with eXist and betterFORM - of course there is a way to deploy an uncompressed version of the JS which in turn will allow debugging. I try to get this howto ready this week and you will find it on http://betterform.wordpress.com. Thanks for reporting this. Joern > > I do not have a completely vanilla web.xml, so it is possible there is > a confounding problem somewhere -- can anyone else reproduce, > i.e. does xforms/hello.xml work for you Tobias? > > ht > -- > Henry S. Thompson, Markup Systems Ltd. > Cavers Garden Farm, Denholm; by Hawick; TD9 8LN > +44 (0) 7866 471 388 > Fax: (44) 131 651-1426, e-mail: ht...@ma... > URL: http://www.markup.co.uk/ > [mail really from me _always_ has this .sig -- mail without it is forged spam] > > ------------------------------------------------------------------------------ > Create and publish websites with WebMatrix > Use the most popular FREE web apps or write code yourself; > WebMatrix provides all the features you need to develop and > publish your website. http://p.sf.net/sfu/ms-webmatrix-sf > _______________________________________________ > Exist-development mailing list > Exi...@li... > https://lists.sourceforge.net/lists/listinfo/exist-development > |
From: <ht...@ma...> - 2011-04-04 20:58:35
|
ht...@ma... (Henry S. Thompson) writes: > Tobi Krebs <tob...@be...> writes: > >> On Tuesday 29 March 2011 14:54:40 Wolfgang Meier wrote: >>> > Well, I rather like in enabled by default. But this sort of question >>> > causes holy wars, so I will leave it entirely up to you ;-) >>> >>> I think it should be enabled by default. The goal is to make it easy >>> for new users to get started with xforms. >>> >>> Wolfgang >> >> Okay i committed both version to stable and trunk. > > I believe there's a bug in this release. > > Have you tried xforms/hello.xml ? > > Somewhat to my surprise, hello2.xml works, but hello.xml does not. Ah. Fails in Chrome (10.0.648.204) and Opera (11.01), but works in Firefox (3.6.15) and IE8. ht -- Henry S. Thompson, Markup Systems Ltd. Cavers Garden Farm, Denholm; by Hawick; TD9 8LN +44 (0) 7866 471 388 Fax: (44) 131 651-1426, e-mail: ht...@ma... URL: http://www.markup.co.uk/ [mail really from me _always_ has this .sig -- mail without it is forged spam] |
From: <ht...@ma...> - 2011-04-04 15:58:07
|
Tobi Krebs <tob...@be...> writes: > On Tuesday 29 March 2011 14:54:40 Wolfgang Meier wrote: >> > Well, I rather like in enabled by default. But this sort of question >> > causes holy wars, so I will leave it entirely up to you ;-) >> >> I think it should be enabled by default. The goal is to make it easy >> for new users to get started with xforms. >> >> Wolfgang > > Okay i committed both version to stable and trunk. I believe there's a bug in this release. Have you tried xforms/hello.xml ? Somewhat to my surprise, hello2.xml works, but hello.xml does not. The problem is in betterform-Full.js, which hits a bug, which blows out the initialisation, which means that the default path (betterform/Flux) is never overriden, leading to a 404 on /betterform/Flux/call/plaincall/Flux.dispatchEventType.dwr To trigger this, I did svn update in the exist trunk, built exist and confirmed that betterform was installed OK. Because bf now gets all its resources from inside its jar file, I can't easily debug further. I do not have a completely vanilla web.xml, so it is possible there is a confounding problem somewhere -- can anyone else reproduce, i.e. does xforms/hello.xml work for you Tobias? ht -- Henry S. Thompson, Markup Systems Ltd. Cavers Garden Farm, Denholm; by Hawick; TD9 8LN +44 (0) 7866 471 388 Fax: (44) 131 651-1426, e-mail: ht...@ma... URL: http://www.markup.co.uk/ [mail really from me _always_ has this .sig -- mail without it is forged spam] |
From: Adam R. <ad...@ex...> - 2011-04-04 15:07:08
|
I have a feeling this is another regression with the urlrewrite stuff, did you make any progress on tracking this. I have a feeling if you disable urlrewrite then this still works, let me know... On 4 April 2011 12:01, Dannes Wessels <da...@ex...> wrote: > Hi, > > I just found out that response:stream-binary() does not set the content type > anymore. e.g. > > response:stream-binary( compression:zip(xxxxx) , "application/zip", > "filename.zip" ) > > yields into an xml content-type and not "application/zip". Anyone a clue > when this has changed? URLrewriter update? betterFORM integration? > > cheers > > Dannes > > -- > eXist-db Native XML Database - http://exist-db.org > Join us on linked-in: http://www.linkedin.com/groups?gid=35624 > > ------------------------------------------------------------------------------ > Create and publish websites with WebMatrix > Use the most popular FREE web apps or write code yourself; > WebMatrix provides all the features you need to develop and > publish your website. http://p.sf.net/sfu/ms-webmatrix-sf > > _______________________________________________ > Exist-development mailing list > Exi...@li... > https://lists.sourceforge.net/lists/listinfo/exist-development > > -- Adam Retter eXist Developer { United Kingdom } ad...@ex... irc://irc.freenode.net/existdb |
From: Dannes W. <da...@ex...> - 2011-04-04 13:52:58
|
Ps, these kind of messages should be posted on exist-open ; this ML is for developer discussions thnx Dannes 2011/4/4 Dannes Wessels <da...@ex...> > > 2011/4/4 Василий Старцев <wst...@gm...> > >> JMX has not info about HDD usage. but needed functionality is get info >> about free space on HDD on server with exist >> > -- eXist-db Native XML Database - http://exist-db.org Join us on linked-in: http://www.linkedin.com/groups?gid=35624 |
From: Dannes W. <da...@ex...> - 2011-04-04 13:52:16
|
Hi, 2011/4/4 Василий Старцев <wst...@gm...> > JMX has not info about HDD usage. but needed functionality is get info > about free space on HDD on server with exist > > please recheck with option -j I added the code myself, it is there. cheers Dannes -- eXist-db Native XML Database - http://exist-db.org Join us on linked-in: http://www.linkedin.com/groups?gid=35624 |
From: Василий С. <wst...@gm...> - 2011-04-04 13:29:59
|
JMX has not info about HDD usage. but needed functionality is get info about free space on HDD on server with exist -- С наилучшими пожеланиями Василий Старцев |
From: Dannes W. <da...@ex...> - 2011-04-04 10:59:14
|
sure, but it is already available via the JmX interface..... D. 2011/4/4 Вячеслав Седов <sch...@gm...> > probably not so bad idea to have Disk Memory Usage at System Status page > -- eXist-db Native XML Database - http://exist-db.org Join us on linked-in: http://www.linkedin.com/groups?gid=35624 |