-
geovah committed revision 146 to the Strip-it SVN repository, changing 4 files.
2009-05-07 20:49:14 UTC in Strip-it
-
geovah committed revision 145 to the Strip-it SVN repository, changing 1 files.
2009-05-07 20:46:35 UTC in Strip-it
-
Sorry, I didn't see that i have re-opened the bug...
Yes, it's more a configuration problem than a bug, but since the same code was working in 1.1 Out of the box and doesn't work anymore in 1.2 ...
I have a "bean unit test" to reproduce it, i will attach or send it directly to you tomorrow.
2008-02-28 09:38:53 UTC in Azuki Framework
-
Hi,
You tips is not exactly the solution, but it gives me good input to correct the bug ...
So here is my command line option:
-Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl
Thanks for the JAXP debug output, I found that this factory is not the same from Azuki 1.1.
For information, my java :
[geovah@geovah azuki]$ java...
2008-02-27 19:33:39 UTC in Azuki Framework
-
In version 1.1, the next code (in a bean constructor) is working :
====
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setValidating(false);
factory.setNamespaceAware(true);
SchemaFactory schemaFactory =
SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
Schema sc = schemaFactory.newSchema(
new Source[] {new...
2008-02-26 20:09:09 UTC in Azuki Framework
-
Si je crois en votre definition d'azuki et "Separation of concerns :
[...]
# Develop commons technical libraries
# Develop business services
# Develop graphical user interface
[...]
The aim of the Azuki framework is also to support a methodology that defines concept like beans, universe, aspects, schemas and layers organizing components in a way allowing a clear separation of the...
2008-02-11 14:27:42 UTC in Azuki Framework
-
Ce n'est pas professionellement, plus un projet perso (oui! en esperant pas vous decevoir :-p ),
Je voulais tester votre framework pour moi meme, en faisant un jeu de stratégie en tour par tour en ligne ;-)
Le but était plus de faire un framework de stratégie en tour par tour, donc facilement adaptable sur des nouvelles regles de bataille, etc... et justement azuki me paraissait...
2008-02-11 10:50:55 UTC in Azuki Framework
-
Il semblerait que le support de GWT se profile ...
Est-ce que l'on peut commencer à faire joujou avec ?
Est-ce que vous avez un sample ?
Merci d'avance :-D.
2008-02-11 09:04:21 UTC in Azuki Framework
-
Logged In: YES
user_id=272477
You said :
primarily "//" is discouraged because of performance
implications and some complexity issues with nested element
deletes
But in this case, the attribute is a leaf/final node, so it
seems the problem of nested element is less complex for
attribute than for classic node.
Our scenario is to remove all specific dateTime attribute
from one...
2005-11-17 16:16:40 UTC in libxmlpatch
-
I want to remove all dateTime attribute from a xml
so here is my patch.xml :
but it doen't work...
I have a look at
http://www.w3schools.com/xpath/xpath_syntax.asp
which seems that //@dateTime is a correct xpath
It is a problem of xmlpatch or libxml ?
Do you have another solution to do it ?
Thanks for all.
2005-11-16 10:38:16 UTC in libxmlpatch