Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(2) |
Feb
(8) |
Mar
|
Apr
|
May
(2) |
Jun
(4) |
Jul
(1) |
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
(2) |
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
2007 |
Jan
(12) |
Feb
(17) |
Mar
(13) |
Apr
(20) |
May
(36) |
Jun
(5) |
Jul
(3) |
Aug
(1) |
Sep
(1) |
Oct
|
Nov
(11) |
Dec
(5) |
2008 |
Jan
(9) |
Feb
(3) |
Mar
(19) |
Apr
(20) |
May
(8) |
Jun
(18) |
Jul
(1) |
Aug
|
Sep
(2) |
Oct
(2) |
Nov
(4) |
Dec
|
2009 |
Jan
|
Feb
|
Mar
(3) |
Apr
(6) |
May
(12) |
Jun
(6) |
Jul
(2) |
Aug
(2) |
Sep
(5) |
Oct
(4) |
Nov
(2) |
Dec
(2) |
2010 |
Jan
|
Feb
(2) |
Mar
(6) |
Apr
(3) |
May
(5) |
Jun
(2) |
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(3) |
Nov
|
Dec
(3) |
2011 |
Jan
(2) |
Feb
(10) |
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(7) |
Oct
(4) |
Nov
|
Dec
|
2013 |
Jan
|
Feb
(3) |
Mar
(1) |
Apr
(13) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(5) |
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(17) |
2015 |
Jan
(28) |
Feb
(33) |
Mar
(1) |
Apr
|
May
(1) |
Jun
|
Jul
(2) |
Aug
(2) |
Sep
|
Oct
(2) |
Nov
(2) |
Dec
(1) |
2016 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(1) |
Nov
(1) |
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
(1) |
18
(1) |
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
|
|
|
|
|
|
From: Stefan Bodewig <bodewig@ap...> - 2010-02-18 14:54:07
|
On 2010-02-17, Nicholas W <4407@...> wrote: > I can check that a piece of XML validates with an XSD that I have in a > jar like this: [snip] > And I can assert that two pieces of XML are similar like this: [snip] > But how can I compare two XML strings that are conformant to an XSD in > a jar? I'm not sure I understand what you want. You've already shown how two compare two XML strings so what else do you need? Are you looking for a way to assert that two pieces of XML conform to the same schema and are similar? There is no built-in way to do that, you have to implement it in three steps just as you've shown. Stefan |
From: Nicholas W <4407@lo...> - 2010-02-17 16:06:32
|
I can check that a piece of XML validates with an XSD that I have in a jar like this: InputSource xmlSource = resourceAsInputSource(resourcepath); InputSource xsdInputSource = resourceAsInputSource(XsdPath); xsdInputSource.setSystemId(xsduri); assertNotNull(xsdInputSource); Validator validator = new Validator(xmlSource); validator.useXMLSchema(true); validator.setJAXP12SchemaSource(xsdInputSource); assertXMLValid(validator); And I can assert that two pieces of XML are similar like this: assertNotNull(result); assertNotNull(resourcelocation); log.debug(String.format("AssertStringXMLLikeResourceXML(%s)",resourcelocation)); saveResultCopy(result, resourcelocation); InputStream resourceAsStream = this.getClass().getClassLoader() .getResourceAsStream(resourcelocation); assertNotNull(resourceAsStream); String readerToString = FileIO.readerToString(new BufferedReader( new InputStreamReader(resourceAsStream,"utf-8"))); log.debug(String.format("expected XML - %s",readerToString)); assertXMLEqual(readerToString,result); But how can I compare two XML strings that are conformant to an XSD in a jar? I need to do this as the XSD use xs:all and minOccurs=0 in the xs:element to indicate that some elements are optional and can appear in any order. The XMLs I wish to compare do have the elements in a different order, but need to be considered the same and the test should pass. Thanks in advance for your help, Regards, |