You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(14) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(7) |
Feb
(16) |
Mar
(41) |
Apr
(19) |
May
(3) |
Jun
(34) |
Jul
(40) |
Aug
(40) |
Sep
(166) |
Oct
(78) |
Nov
(42) |
Dec
(54) |
2005 |
Jan
(2) |
Feb
(19) |
Mar
(19) |
Apr
(31) |
May
(50) |
Jun
(16) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(29) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
(5) |
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(6) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
(7) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Kurt R. <kr...@us...> - 2005-05-10 07:37:21
|
Update of /cvsroot/xframe/swing/src/net/sf/xframe/swing In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24911/src/net/sf/xframe/swing Modified Files: JXTable.java Log Message: fixed bug in method columnAtPoint (wrong calculation of x/y coordinates) Index: JXTable.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/JXTable.java,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** JXTable.java 10 May 2005 07:29:49 -0000 1.15 --- JXTable.java 10 May 2005 07:37:13 -0000 1.16 *************** *** 2556,2560 **** public int columnAtPoint(final Point point) { int lockedWidth = lockedTable.getWidth(); ! if (point.y < lockedWidth) { return lockedTable.columnAtPoint(point); } else { --- 2556,2560 ---- public int columnAtPoint(final Point point) { int lockedWidth = lockedTable.getWidth(); ! if (point.x < lockedWidth) { return lockedTable.columnAtPoint(point); } else { |
From: Kurt R. <kr...@us...> - 2005-05-10 07:29:58
|
Update of /cvsroot/xframe/swing/src/net/sf/xframe/swing In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23497/src/net/sf/xframe/swing Modified Files: JXTable.java Log Message: fixed bug in method columnAtPoint (wrong calculation of x/y coordinates) Index: JXTable.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/JXTable.java,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** JXTable.java 10 May 2005 07:20:40 -0000 1.14 --- JXTable.java 10 May 2005 07:29:49 -0000 1.15 *************** *** 2559,2563 **** return lockedTable.columnAtPoint(point); } else { ! Point p = new Point(point.x, point.y - lockedWidth); return frozenColumns + scrollTable.columnAtPoint(p); } --- 2559,2563 ---- return lockedTable.columnAtPoint(point); } else { ! Point p = new Point(point.x - lockedWidth, point.y); return frozenColumns + scrollTable.columnAtPoint(p); } *************** *** 2741,2744 **** --- 2741,2746 ---- } + + /** * Adds the specified mouse listener to receive mouse events from this |
From: Kurt R. <kr...@us...> - 2005-05-10 07:22:35
|
Update of /cvsroot/xframe/swing/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22277/xdocs Modified Files: site.jsl Log Message: multiple documentation updates Index: site.jsl =================================================================== RCS file: /cvsroot/xframe/swing/xdocs/site.jsl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** site.jsl 27 Dec 2004 14:58:56 -0000 1.2 --- site.jsl 10 May 2005 07:22:26 -0000 1.3 *************** *** 1,4 **** <?xml version="1.0"?> - <!-- * ======================================================================== --- 1,3 ---- *************** *** 188,191 **** --- 187,192 ---- </div> </j:if> + <jsl:applyTemplates select="$nav/body/search"/> + <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> <!-- Standard Maven Navigation --> <j:set var="fileName">${file}</j:set> *************** *** 198,205 **** </a> </j:if> ! <x:if select="$nav"> ! <jsl:applyTemplates select="$nav/body/search"/> ! <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> ! </x:if> <j:if test="${date == 'navigation-bottom'}"> <div id="lastPublished">Last published: ${build.date}</div> --- 199,205 ---- </a> </j:if> ! <a style="text-align: center;" id="sflogo" href="http://sourceforge.net" title="sourceforge.net"> ! <img alt="sourceforge.net Logo" width="88" height="31" src="http://sourceforge.net/sflogo.php?group_id=48863&type=1" /> ! </a> <j:if test="${date == 'navigation-bottom'}"> <div id="lastPublished">Last published: ${build.date}</div> |
From: Kurt R. <kr...@us...> - 2005-05-10 07:20:50
|
Update of /cvsroot/xframe/swing/src/net/sf/xframe/swing In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21898/src/net/sf/xframe/swing Modified Files: JXTable.java Log Message: support for the three listeners MouseListener, MouseMotionListener and MouseWheelListener added Index: JXTable.java =================================================================== RCS file: /cvsroot/xframe/swing/src/net/sf/xframe/swing/JXTable.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** JXTable.java 9 Apr 2005 12:48:13 -0000 1.13 --- JXTable.java 10 May 2005 07:20:40 -0000 1.14 *************** *** 21,24 **** --- 21,25 ---- package net.sf.xframe.swing; + import java.awt.AWTEventMulticaster; import java.awt.BorderLayout; import java.awt.Color; *************** *** 30,36 **** --- 31,43 ---- import java.awt.Rectangle; import java.awt.event.ActionEvent; + import java.awt.event.MouseEvent; + import java.awt.event.MouseListener; + import java.awt.event.MouseMotionListener; + import java.awt.event.MouseWheelEvent; + import java.awt.event.MouseWheelListener; import java.awt.geom.Rectangle2D; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; + import java.util.EventListener; import java.util.EventObject; *************** *** 149,152 **** --- 156,168 ---- private int frozenColumns = 1; + /** Reference to the mouse listener. */ + private transient MouseListener mouseListener; + + /** Reference to the mouse motion listener. */ + private transient MouseMotionListener mouseMotionListener; + + /** Reference to the mouse wheel listener. */ + private transient MouseWheelListener mouseWheelListener; + /** * Constructs a default <code>JTable</code> that is initialized with a default *************** *** 2724,2726 **** --- 2740,3080 ---- getScrollTable().setTransferHandler(newHandler); } + + /** + * Adds the specified mouse listener to receive mouse events from this + * component. If listener <code>l</code> is <code>null</code>, no + * exception is thrown and no action is performed. + * @param l the mouse listener + * @see java.awt.event.MouseEvent + * @see java.awt.event.MouseListener + * @see #removeMouseListener + * @see #getMouseListeners + * + * @see java.awt.Component#addMouseListener(java.awt.event.MouseListener) + */ + public synchronized void addMouseListener(final MouseListener l) { + if (l == null) { + return; + } + mouseListener = AWTEventMulticaster.add(mouseListener, l); + scrollTable.addMouseListener(new JXMouseMultiListener(l, KTable.TYPE_SCROLL)); + lockedTable.addMouseListener(new JXMouseMultiListener(l, KTable.TYPE_LOCKED)); + } + + /** + * Removes the specified mouse listener so that it no longer + * receives mouse events from this component. This method performs + * no function, nor does it throw an exception, if the listener + * specified by the argument was not previously added to this component. + * If listener <code>l</code> is <code>null</code>, + * no exception is thrown and no action is performed. + * + * @param l the mouse listener + * @see java.awt.event.MouseEvent + * @see java.awt.event.MouseListener + * @see #addMouseListener + * @see #getMouseListeners + * @see java.awt.Component#removeMouseListener(java.awt.event.MouseListener) + */ + public synchronized void removeMouseListener(final MouseListener l) { + if (l == null) { + return; + } + mouseListener = AWTEventMulticaster.remove(mouseListener, l); + } + + /** + * Returns an array of all the mouse listeners + * registered on this component. + * + * @return all of this component's <code>MouseListener</code>s + * or an empty array if no mouse + * listeners are currently registered + * + * @see #addMouseListener + * @see #removeMouseListener + * @since 1.4 + * @see java.awt.Component#getMouseListeners() + */ + public synchronized MouseListener[] getMouseListeners() { + return (MouseListener[]) getListeners(MouseListener.class); + } + + /** + * Adds the specified mouse motion listener to receive mouse motion + * events from this component. + * If listener <code>l</code> is <code>null</code>, + * no exception is thrown and no action is performed. + * + * @param l the mouse motion listener + * @see java.awt.event.MouseEvent + * @see java.awt.event.MouseMotionListener + * @see #removeMouseMotionListener + * @see #getMouseMotionListeners + * @see java.awt.Component#addMouseMotionListener(java.awt.event.MouseMotionListener) + */ + public synchronized void addMouseMotionListener(final MouseMotionListener l) { + if (l == null) { + return; + } + mouseMotionListener = AWTEventMulticaster.add(mouseMotionListener, l); + scrollTable.addMouseMotionListener(new JXMouseMultiListener(l, KTable.TYPE_SCROLL)); + lockedTable.addMouseMotionListener(new JXMouseMultiListener(l, KTable.TYPE_LOCKED)); + } + + /** + * Removes the specified mouse motion listener so that it no longer + * receives mouse motion events from this component. This method performs + * no function, nor does it throw an exception, if the listener + * specified by the argument was not previously added to this component. + * If listener <code>l</code> is <code>null</code>, + * no exception is thrown and no action is performed. + * + * @param l the mouse motion listener + * @see java.awt.event.MouseEvent + * @see java.awt.event.MouseMotionListener + * @see #addMouseMotionListener + * @see #getMouseMotionListeners + * @see java.awt.Component#removeMouseMotionListener(java.awt.event.MouseMotionListener) + */ + public synchronized void removeMouseMotionListener(final MouseMotionListener l) { + if (l == null) { + return; + } + mouseMotionListener = AWTEventMulticaster.remove(mouseMotionListener, l); + } + + /** + * Returns an array of all the mouse motion listeners + * registered on this component. + * + * @return all of this component's <code>MouseMotionListener</code>s + * or an empty array if no mouse motion + * listeners are currently registered + * + * @see #addMouseMotionListener + * @see #removeMouseMotionListener + * @see java.awt.Component#getMouseMotionListeners() + */ + public synchronized MouseMotionListener[] getMouseMotionListeners() { + return (MouseMotionListener[]) getListeners(MouseMotionListener.class); + } + + /** + * Adds the specified mouse wheel listener to receive mouse wheel events + * from this component. Containers also receive mouse wheel events from + * sub-components. + * If l is null, no exception is thrown and no action is performed. + * + * @param l the mouse wheel listener. + * @see java.awt.event.MouseWheelEvent + * @see java.awt.event.MouseWheelListener + * @see #removeMouseWheelListener + * @see #getMouseWheelListeners + * @see java.awt.Component#addMouseWheelListener(java.awt.event.MouseWheelListener) + */ + public synchronized void addMouseWheelListener(final MouseWheelListener l) { + if (l == null) { + return; + } + mouseWheelListener = AWTEventMulticaster.add(mouseWheelListener, l); + scrollTable.addMouseWheelListener(new JXMouseMultiListener(l, KTable.TYPE_SCROLL)); + lockedTable.addMouseWheelListener(new JXMouseMultiListener(l, KTable.TYPE_LOCKED)); + } + + /** + * Removes the specified mouse wheel listener so that it no longer + * receives mouse wheel events from this component. This method performs + * no function, nor does it throw an exception, if the listener + * specified by the argument was not previously added to this component. + * If l is null, no exception is thrown and no action is performed. + * + * @param l the mouse wheel listener. + * @see java.awt.event.MouseWheelEvent + * @see java.awt.event.MouseWheelListener + * @see #addMouseWheelListener + * @see #getMouseWheelListeners + * @see java.awt.Component#removeMouseWheelListener(java.awt.event.MouseWheelListener) + */ + public synchronized void removeMouseWheelListener(final MouseWheelListener l) { + if (l == null) { + return; + } + mouseWheelListener = AWTEventMulticaster.remove(mouseWheelListener, l); + } + + /** + * Returns an array of all the mouse wheel listeners + * registered on this component. + * + * @return all of this component's <code>MouseWheelListener</code>s + * or an empty array if no mouse wheel + * listeners are currently registered + * + * @see #addMouseWheelListener + * @see #removeMouseWheelListener + * @see java.awt.Component#getMouseWheelListeners() + */ + public synchronized MouseWheelListener[] getMouseWheelListeners() { + return (MouseWheelListener[]) getListeners(MouseWheelListener.class); + } + + /** + * Returns an array of all the objects currently registered + * as <code><em>Foo</em>Listener</code>s + * upon this <code>Component</code>. + * <code><em>Foo</em>Listener</code>s are registered using the + * <code>add<em>Foo</em>Listener</code> method. + * + * <p> + * You can specify the <code>listenerType</code> argument + * with a class literal, such as + * <code><em>Foo</em>Listener.class</code>. + * For example, you can query a + * <code>Component</code> <code>c</code> + * for its mouse listeners with the following code: + * + * <pre>MouseListener[] mls = (MouseListener[])(c.getListeners(MouseListener.class));</pre> + * + * If no such listeners exist, this method returns an empty array. + * + * @param listenerType the type of listeners requested; this parameter + * should specify an interface that descends from + * <code>java.util.EventListener</code> + * @return an array of all objects registered as + * <code><em>Foo</em>Listener</code>s on this component, + * or an empty array if no such listeners have been added + * + * @see #getMouseListeners + */ + public EventListener[] getListeners(final Class listenerType) { + final EventListener l; + if (listenerType == MouseListener.class) { + l = mouseListener; + } else if (listenerType == MouseMotionListener.class) { + l = mouseMotionListener; + } else if (listenerType == MouseWheelListener.class) { + l = mouseWheelListener; + } else { + return super.getListeners(listenerType); + } + return AWTEventMulticaster.getListeners(l, listenerType); + } + + /** + * Internal mouse listener delegate for all three mouse listener interfaces. + */ + private final class JXMouseMultiListener implements MouseListener, MouseMotionListener, MouseWheelListener { + + /** Reference to the enclosing mouse listener. */ + private final transient EventListener parentEventListener; + + /** Type of tabel, can be {@link KTable#TYPE_LOCKED}, {@link KTable#TYPE_SCROLL} or {@link KTable#TYPE_NONE}. */ + private final int tableType; + + /** + * Constructor. + * @param l mouse listener of sourrounding JTable + * @param type table tye ({@link KTable#TYPE_LOCKED} or {@link KTable#TYPE_SCROLL}) + */ + private JXMouseMultiListener(final EventListener l, final int type) { + super(); + parentEventListener = l; + tableType = type; + } + + /** + * @see java.awt.event.MouseListener#mouseClicked(java.awt.event.MouseEvent) + */ + public void mouseClicked(final MouseEvent e) { + ((MouseListener) parentEventListener).mouseClicked(translateMouseEvent(e)); + } + + /** + * @see java.awt.event.MouseListener#mouseEntered(java.awt.event.MouseEvent) + */ + public void mouseEntered(final MouseEvent e) { + ((MouseListener) parentEventListener).mouseEntered(translateMouseEvent(e)); + } + + /** + * @see java.awt.event.MouseListener#mouseExited(java.awt.event.MouseEvent) + */ + public void mouseExited(final MouseEvent e) { + ((MouseListener) parentEventListener).mouseExited(translateMouseEvent(e)); + } + + /** + * @see java.awt.event.MouseListener#mousePressed(java.awt.event.MouseEvent) + */ + public void mousePressed(final MouseEvent e) { + ((MouseListener) parentEventListener).mousePressed(translateMouseEvent(e)); + } + + /** + * @see java.awt.event.MouseListener#mouseReleased(java.awt.event.MouseEvent) + */ + public void mouseReleased(final MouseEvent e) { + ((MouseListener) parentEventListener).mouseReleased(translateMouseEvent(e)); + } + + /** + * @see java.awt.event.MouseMotionListener#mouseDragged(java.awt.event.MouseEvent) + */ + public void mouseDragged(final MouseEvent e) { + ((MouseMotionListener) parentEventListener).mouseDragged(translateMouseEvent(e)); + } + + /** + * @see java.awt.event.MouseMotionListener#mouseMoved(java.awt.event.MouseEvent) + */ + public void mouseMoved(final MouseEvent e) { + ((MouseMotionListener) parentEventListener).mouseMoved(translateMouseEvent(e)); + } + + /** + * @see java.awt.event.MouseWheelListener#mouseWheelMoved(java.awt.event.MouseWheelEvent) + */ + public void mouseWheelMoved(final MouseWheelEvent e) { + ((MouseWheelListener) parentEventListener).mouseWheelMoved(translateMouseWheelEvent(e)); + } + + /** + * Translates the coordinates of a KTable's mouse event into + * coordinated of the surrounding JTable. + * + * @param e mouse event of KTable + * @return mouse event for JTable + */ + private MouseEvent translateMouseEvent(final MouseEvent e) { + final int x; + if (tableType == KTable.TYPE_LOCKED) { + x = e.getX(); + } else { + x = e.getX() + lockedTable.getWidth(); + } + return new MouseEvent( + e.getComponent(), e.getID(), e.getWhen(), e.getModifiers(), x, e.getY(), + e.getClickCount(), e.isPopupTrigger(), e.getButton()); + } + + /** + * Translates the coordinates of a KTable's mouse wheel event into + * coordinated of the surrounding JTable. + * + * @param e mouse event of KTable + * @return mouse event for JTable + */ + private MouseWheelEvent translateMouseWheelEvent(final MouseWheelEvent e) { + final int x; + if (tableType == KTable.TYPE_LOCKED) { + x = e.getX(); + } else { + x = e.getX() + lockedTable.getWidth(); + } + return new MouseWheelEvent( + e.getComponent(), e.getID(), e.getWhen(), e.getModifiers(), x, e.getY(), + e.getClickCount(), e.isPopupTrigger(), e.getScrollType(), e.getScrollAmount(), e.getWheelRotation()); + } + } } |
From: Kurt R. <kr...@us...> - 2005-05-09 23:09:28
|
Update of /cvsroot/xframe/xsddoc/samples/stress In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25031/samples/stress Modified Files: stress.xsd Log Message: some schema errors fixed Index: stress.xsd =================================================================== RCS file: /cvsroot/xframe/xsddoc/samples/stress/stress.xsd,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** stress.xsd 9 Dec 2004 13:30:42 -0000 1.24 --- stress.xsd 9 May 2005 23:09:18 -0000 1.25 *************** *** 143,151 **** <xs:element ref="st:includedElement"/> </xs:choice> - <xs:group ref="st:allGroup" minOccurs="0" maxOccurs="2"> - <xs:annotation> - <xs:documentation>This is the documentation of the concrete usage of the all-group.</xs:documentation> - </xs:annotation> - </xs:group> <xs:group ref="st:sequenceGroup" minOccurs="0" maxOccurs="2"> <xs:annotation> --- 143,146 ---- *************** *** 283,287 **** </xs:restriction> </xs:simpleType> ! <xs:element name="imported2Element" type="imported2DerivedType"> <xs:annotation> <xs:documentation>An element declaration derived from an imported type.</xs:documentation> --- 278,282 ---- </xs:restriction> </xs:simpleType> ! <xs:element name="imported2Element" type="i2:imported2DerivedType"> <xs:annotation> <xs:documentation>An element declaration derived from an imported type.</xs:documentation> *************** *** 533,546 **** </xs:complexType> </xs:element> - <xs:element name="substitutionGroupTest" substitutionGroup="st:node"> - <xs:annotation> - <xs:documentation>This element is a test of a substitution group.</xs:documentation> - </xs:annotation> - <xs:complexType> - <xs:sequence> - <xs:element ref="st:node"/> - </xs:sequence> - </xs:complexType> - </xs:element> <xs:complexType name="complexTypeWithAllAttributesTest" abstract="true" block="#all" final="#all" id="b2345" mixed="true"> <xs:annotation> --- 528,531 ---- |
From: Kurt R. <kr...@us...> - 2005-05-09 23:09:02
|
Update of /cvsroot/xframe/xsddoc/samples/soap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24910/samples/soap Added Files: envelope.xsd Log Message: readded --- NEW FILE: envelope.xsd --- <?xml version='1.0' encoding='UTF-8' ?> <!-- Schema for the SOAP/1.1 envelope This schema has been produced using W3C's SOAP Version 1.2 schema found at: http://www.w3.org/2001/06/soap-envelope Copyright 2001 Martin Gudgin, Developmentor. Changes made are the following: - reverted namespace to http://schemas.xmlsoap.org/soap/envelope/ - reverted mustUnderstand to only allow 0 and 1 as lexical values - made encodingStyle a global attribute 20020825 Further changes: - removed default value from mustUnderstand attribute declaration - 20030314 Original copyright: Copyright 2001 W3C (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/ This document is governed by the W3C Software License [1] as described in the FAQ [2]. [1] http://www.w3.org/Consortium/Legal/copyright-software-19980720 [2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD --> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.xmlsoap.org/soap/envelope" targetNamespace="http://schemas.xmlsoap.org/soap/envelope" > <!-- Envelope, header and body --> <xs:element name="Envelope" type="tns:Envelope" /> <xs:complexType name="Envelope" > <xs:sequence> <xs:element ref="tns:Header" minOccurs="0" /> <xs:element ref="tns:Body" minOccurs="1" /> <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" /> </xs:sequence> <xs:anyAttribute namespace="##other" processContents="lax" /> </xs:complexType> <xs:element name="Header" type="tns:Header" /> <xs:complexType name="Header" > <xs:sequence> <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" /> </xs:sequence> <xs:anyAttribute namespace="##other" processContents="lax" /> </xs:complexType> <xs:element name="Body" type="tns:Body" /> <xs:complexType name="Body" > <xs:sequence> <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" /> </xs:sequence> <xs:anyAttribute namespace="##any" processContents="lax" > <xs:annotation> <xs:documentation> Prose in the spec does not specify that attributes are allowed on the Body element </xs:documentation> </xs:annotation> </xs:anyAttribute> </xs:complexType> <!-- Global Attributes. The following attributes are intended to be usable via qualified attribute names on any complex type referencing them. --> <xs:attribute name="mustUnderstand" > <xs:simpleType> <xs:restriction base='xs:boolean'> <xs:pattern value='0|1' /> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="actor" type="xs:anyURI" /> <xs:simpleType name="encodingStyle" > <xs:annotation> <xs:documentation> 'encodingStyle' indicates any canonicalization conventions followed in the contents of the containing element. For example, the value 'http://schemas.xmlsoap.org/soap/encoding/' indicates the pattern described in SOAP specification </xs:documentation> </xs:annotation> <xs:list itemType="xs:anyURI" /> </xs:simpleType> <xs:attribute name="encodingStyle" type="tns:encodingStyle" /> <xs:attributeGroup name="encodingStyle" > <xs:attribute ref="tns:encodingStyle" /> </xs:attributeGroup> <xs:element name="Fault" type="tns:Fault" /> <xs:complexType name="Fault" final="extension" > <xs:annotation> <xs:documentation> Fault reporting structure </xs:documentation> </xs:annotation> <xs:sequence> <xs:element name="faultcode" type="xs:QName" /> <xs:element name="faultstring" type="xs:string" /> <xs:element name="faultactor" type="xs:anyURI" minOccurs="0" /> <xs:element name="detail" type="tns:detail" minOccurs="0" /> </xs:sequence> </xs:complexType> <xs:complexType name="detail"> <xs:sequence> <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" /> </xs:sequence> <xs:anyAttribute namespace="##any" processContents="lax" /> </xs:complexType> </xs:schema> |
From: Kurt R. <kr...@us...> - 2005-05-09 23:08:42
|
Update of /cvsroot/xframe/xsddoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24844 Modified Files: project.properties Log Message: multiple documentation updates Index: project.properties =================================================================== RCS file: /cvsroot/xframe/xsddoc/project.properties,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** project.properties 9 May 2005 22:47:01 -0000 1.8 --- project.properties 9 May 2005 23:08:34 -0000 1.9 *************** *** 37,41 **** # ------------------------------------------------------------------- maven.xsddoc.src=samples ! maven.xsddoc.include=soap/envelope.xsd,stress/stress.xsd,xsddoc/xsddoc.xsd,XMLSchema/XMLSchema.xsd,xhtml/xhtml1-strict.xsd maven.xsddoc.bottom=\ <font size="-1">\ --- 37,42 ---- # ------------------------------------------------------------------- maven.xsddoc.src=samples ! maven.xsddoc.xsd.dest=${maven.docs.dest}/xsd-src ! maven.xsddoc.include=**/*.xsd maven.xsddoc.bottom=\ <font size="-1">\ |
From: Kurt R. <kr...@us...> - 2005-05-09 23:08:23
|
Update of /cvsroot/xframe/maven-xsddoc-plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24778 Modified Files: project.xml Log Message: prepared for release 0.8 Index: project.xml =================================================================== RCS file: /cvsroot/xframe/maven-xsddoc-plugin/project.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** project.xml 26 Feb 2005 12:38:16 -0000 1.3 --- project.xml 9 May 2005 23:08:12 -0000 1.4 *************** *** 25,29 **** <name>Maven xsddoc Plug-in</name> <groupId>xsddoc</groupId> ! <currentVersion>0.7</currentVersion> <organization> <name>xframe</name> --- 25,29 ---- <name>Maven xsddoc Plug-in</name> <groupId>xsddoc</groupId> ! <currentVersion>0.8</currentVersion> <organization> <name>xframe</name> *************** *** 47,50 **** --- 47,55 ---- <tag>MAVEN_XSDDOC_PLUGIN_0_7</tag> </version> + <version> + <id>0.8</id> + <name>0.8</name> + <tag>MAVEN_XSDDOC_PLUGIN_0_8</tag> + </version> </versions> <inceptionYear>2004</inceptionYear> *************** *** 97,101 **** <groupId>xsddoc</groupId> <artifactId>xsddoc</artifactId> ! <version>0.7</version> <url>http://xframe.sourceforge.net/maven-xsddoc-plugin/index.html</url> </dependency> --- 102,106 ---- <groupId>xsddoc</groupId> <artifactId>xsddoc</artifactId> ! <version>0.8</version> <url>http://xframe.sourceforge.net/maven-xsddoc-plugin/index.html</url> </dependency> |
From: Kurt R. <kr...@us...> - 2005-05-09 23:03:03
|
Update of /cvsroot/xframe/maven-xsddoc-plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23593 Modified Files: plugin.properties project.properties plugin.jelly Log Message: impl for feature request [1176236] Add option to include raw XSDs in docs and equal bug report [1188658] Option to include XSDs in generated docs Index: project.properties =================================================================== RCS file: /cvsroot/xframe/maven-xsddoc-plugin/project.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** project.properties 3 Nov 2004 17:23:47 -0000 1.2 --- project.properties 9 May 2005 23:02:52 -0000 1.3 *************** *** 29,34 **** maven.xdoc.date=left maven.xdoc.version=${pom.currentVersion} ! maven.xdoc.jsl = xdocs/site.jsl ! # maven.xdoc.developmentProcessUrl = ! ! google.ad.client = pub-3210557671772622 --- 29,35 ---- maven.xdoc.date=left maven.xdoc.version=${pom.currentVersion} ! maven.xdoc.jsl=xdocs/site.jsl ! maven.xsddoc.header= ! maven.xsddoc.bottom= ! maven.xsddoc.footer= ! google.ad.client=pub-3210557671772622 Index: plugin.properties =================================================================== RCS file: /cvsroot/xframe/maven-xsddoc-plugin/plugin.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** plugin.properties 26 Feb 2005 14:43:41 -0000 1.3 --- plugin.properties 9 May 2005 23:02:52 -0000 1.4 *************** *** 29,32 **** maven.xsddoc.exclude= maven.xsddoc.dest=${maven.docs.dest}/xsddocs maven.xsddoc.summary=true ! maven.xsddoc.css= \ No newline at end of file --- 29,36 ---- maven.xsddoc.exclude= maven.xsddoc.dest=${maven.docs.dest}/xsddocs + maven.xsddoc.xsd.dest=${maven.docs.dest}/xsd-src maven.xsddoc.summary=true ! maven.xsddoc.css= ! maven.xsddoc.header= ! maven.xsddoc.bottom= ! maven.xsddoc.footer= Index: plugin.jelly =================================================================== RCS file: /cvsroot/xframe/maven-xsddoc-plugin/plugin.jelly,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** plugin.jelly 26 Feb 2005 14:43:41 -0000 1.8 --- plugin.jelly 9 May 2005 23:02:52 -0000 1.9 *************** *** 52,55 **** --- 52,60 ---- description="Generate XML Schema documentation using xsddoc tool."> ${systemScope.setProperty('javax.xml.transform.TransformerFactory', 'org.apache.xalan.processor.TransformerFactoryImpl')} + <ant:copy todir="${maven.xsddoc.xsd.dest}"> + <ant:fileset dir="${maven.xsddoc.src}"> + <ant:patternset includes="${maven.xsddoc.include}"/> + </ant:fileset> + </ant:copy> <ant:fileScanner var="xsdFiles"> <ant:fileset dir="${maven.xsddoc.src}"> *************** *** 65,78 **** <j:set var="sourcefile" value="${srcbasepath}/${relpath}"/> <j:set var="targetpath" value="${maven.xsddoc.dest}/${relpath}"/> <ant:echo>Processing schema ${relpath}</ant:echo> <ant:mkdir dir="${targetpath}"/> <j:new className="net.sf.xframe.xsddoc.Processor" var="xsddocprocessor"/> <j:set var="result" value="${xsddocprocessor.setDebug(true)}"/> ! <j:set var="result" value="${xsddocprocessor.setTitle(targetpath)}"/> <j:set var="result" value="${xsddocprocessor.setSchemaLocation(sourcefile)}"/> <j:set var="result" value="${xsddocprocessor.setOut(targetpath)}"/> <j:set var="result" value="${xsddocprocessor.setCss(maven.xsddoc.css)}"/> ! <j:set var="result" value="${xsddocprocessor.setProxyHost(maven.proxy.host)}"/> ! <j:set var="result" value="${xsddocprocessor.setProxyPort(maven.proxy.port)}"/> <j:invoke method="run" on="${xsddocprocessor}" var="xsddocresult"/> <j:file name="${targetpath}.txt" var="log" omitXmlDeclaration="true" outputMode="HTML"> --- 70,93 ---- <j:set var="sourcefile" value="${srcbasepath}/${relpath}"/> <j:set var="targetpath" value="${maven.xsddoc.dest}/${relpath}"/> + <j:set var="css" value="${maven.xsddoc.css}"/> + <j:set var="header" value="${maven.xsddoc.header}"/> + <j:set var="footer" value="${maven.xsddoc.footer}"/> + <j:set var="bottom" value="${maven.xsddoc.bottom}"/> + <j:set var="proxy.host" value="${maven.proxy.host}"/> + <j:set var="proxy.port" value="${maven.proxy.port}"/> <ant:echo>Processing schema ${relpath}</ant:echo> <ant:mkdir dir="${targetpath}"/> <j:new className="net.sf.xframe.xsddoc.Processor" var="xsddocprocessor"/> <j:set var="result" value="${xsddocprocessor.setDebug(true)}"/> ! <j:set var="result" value="${xsddocprocessor.setDoctitle(relpath)}"/> <j:set var="result" value="${xsddocprocessor.setSchemaLocation(sourcefile)}"/> <j:set var="result" value="${xsddocprocessor.setOut(targetpath)}"/> <j:set var="result" value="${xsddocprocessor.setCss(maven.xsddoc.css)}"/> ! <j:set var="result" value="${xsddocprocessor.setHeader(relpath)}"/> ! <j:set var="result" value="${xsddocprocessor.setBottom(bottom)}"/> ! <j:set var="result" value="${xsddocprocessor.setFooter(footer)}"/> ! <j:set var="result" value="${xsddocprocessor.setCss(css)}"/> ! <j:set var="result" value="${xsddocprocessor.setProxyHost(proxy.host)}"/> ! <j:set var="result" value="${xsddocprocessor.setProxyPort(proxy.port)}"/> <j:invoke method="run" on="${xsddocprocessor}" var="xsddocresult"/> <j:file name="${targetpath}.txt" var="log" omitXmlDeclaration="true" outputMode="HTML"> *************** *** 97,113 **** <j:choose> <j:when test="${xsddocresult.indexOf('xsddoc failed with exception') > 0}"> ! <xsddoc schema="${maven.xsddoc.src}/${relpath}" report="${relpath}" result="failed" linkcheck="${xsddoclinkcheck}"/> </j:when> <j:when test="${xsddocresult.indexOf('xsddoc caused a fatal error') > 0}"> ! <xsddoc schema="${maven.xsddoc.src}/${relpath}" report="${relpath}" result="fatal error" linkcheck="${xsddoclinkcheck}"/> </j:when> <j:when test="${xsddocresult.indexOf('xsddoc caused an error') > 0}"> ! <xsddoc schema="${maven.xsddoc.src}/${relpath}" report="${relpath}" result="error" linkcheck="${xsddoclinkcheck}"/> </j:when> <j:when test="${xsddocresult.indexOf('xsddoc caused a warning') > 0}"> ! <xsddoc schema="${maven.xsddoc.src}/${relpath}" report="${relpath}" result="warning" linkcheck="${xsddoclinkcheck}"/> </j:when> <j:otherwise> ! <xsddoc schema="${maven.xsddoc.src}/${relpath}" report="${relpath}" result="success" linkcheck="${xsddoclinkcheck}"/> </j:otherwise> </j:choose> --- 112,128 ---- <j:choose> <j:when test="${xsddocresult.indexOf('xsddoc failed with exception') > 0}"> ! <xsddoc schema="${maven.xsddoc.dest.xsd}/${relpath}" report="${relpath}" result="failed" linkcheck="${xsddoclinkcheck}"/> </j:when> <j:when test="${xsddocresult.indexOf('xsddoc caused a fatal error') > 0}"> ! <xsddoc schema="${maven.xsddoc.dest.xsd}/${relpath}" report="${relpath}" result="fatal error" linkcheck="${xsddoclinkcheck}"/> </j:when> <j:when test="${xsddocresult.indexOf('xsddoc caused an error') > 0}"> ! <xsddoc schema="${maven.xsddoc.dest.xsd}/${relpath}" report="${relpath}" result="error" linkcheck="${xsddoclinkcheck}"/> </j:when> <j:when test="${xsddocresult.indexOf('xsddoc caused a warning') > 0}"> ! <xsddoc schema="${maven.xsddoc.dest.xsd}/${relpath}" report="${relpath}" result="warning" linkcheck="${xsddoclinkcheck}"/> </j:when> <j:otherwise> ! <xsddoc schema="${maven.xsddoc.dest.xsd}/${relpath}" report="${relpath}" result="success" linkcheck="${xsddoclinkcheck}"/> </j:otherwise> </j:choose> |
From: Kurt R. <kr...@us...> - 2005-05-09 22:48:48
|
Update of /cvsroot/xframe/maven-xsddoc-plugin/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20121/xdocs Modified Files: site.jsl Log Message: multiple documentation updates Index: site.jsl =================================================================== RCS file: /cvsroot/xframe/maven-xsddoc-plugin/xdocs/site.jsl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** site.jsl 4 Nov 2004 09:49:58 -0000 1.2 --- site.jsl 9 May 2005 22:48:37 -0000 1.3 *************** *** 188,191 **** --- 188,195 ---- </div> </j:if> + <x:if select="$nav"> + <jsl:applyTemplates select="$nav/body/search"/> + <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> + </x:if> <!-- Standard Maven Navigation --> <j:set var="fileName">${file}</j:set> *************** *** 198,205 **** </a> </j:if> ! <x:if select="$nav"> ! <jsl:applyTemplates select="$nav/body/search"/> ! <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> ! </x:if> <j:if test="${date == 'navigation-bottom'}"> <div id="lastPublished">Last published: ${build.date}</div> --- 202,208 ---- </a> </j:if> ! <a style="text-align: center;" id="sflogo" href="http://sourceforge.net" title="sourceforge.net"> ! <img alt="sourceforge.net Logo" width="88" height="31" src="http://sourceforge.net/sflogo.php?group_id=48863&type=1" /> ! </a> <j:if test="${date == 'navigation-bottom'}"> <div id="lastPublished">Last published: ${build.date}</div> |
From: Kurt R. <kr...@us...> - 2005-05-09 22:48:35
|
Update of /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20081/src/net/sf/xframe/xsddoc Modified Files: Processor.java Log Message: fail safe against null values for footer and bottom properties Index: Processor.java =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/Processor.java,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** Processor.java 6 May 2005 09:29:20 -0000 1.40 --- Processor.java 9 May 2005 22:48:26 -0000 1.41 *************** *** 1131,1137 **** transformer.setParameter("footer", this.footer); } else { ! transformer.setParameter("footer", this.doctitle); } - transformer.setParameter("bottom", this.bottom); transformer.setParameter("hideSubTypes", this.hideSubTypes ? "true" : "false"); transformer.setParameter("hideLocalUsage", this.hideLocalUsage ? "true" : "false"); --- 1131,1141 ---- transformer.setParameter("footer", this.footer); } else { ! transformer.setParameter("footer", ""); ! } ! if (this.bottom != null) { ! transformer.setParameter("bottom", this.bottom); ! } else { ! transformer.setParameter("bottom", ""); } transformer.setParameter("hideSubTypes", this.hideSubTypes ? "true" : "false"); transformer.setParameter("hideLocalUsage", this.hideLocalUsage ? "true" : "false"); |
From: Kurt R. <kr...@us...> - 2005-05-09 22:47:10
|
Update of /cvsroot/xframe/xsddoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19758 Modified Files: project.xml readme.txt project.properties Log Message: multiple documentation updates Index: project.properties =================================================================== RCS file: /cvsroot/xframe/xsddoc/project.properties,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** project.properties 22 Apr 2005 14:40:59 -0000 1.7 --- project.properties 9 May 2005 22:47:01 -0000 1.8 *************** *** 34,41 **** # ------------------------------------------------------------------- ! # X S D D O C # ------------------------------------------------------------------- maven.xsddoc.src=samples ! maven.xsddoc.include=stress/stress.xsd,xsddoc/xsddoc.xsd,XMLSchema/XMLSchema.xsd # ------------------------------------------------------------------- --- 34,54 ---- # ------------------------------------------------------------------- ! # X S D D O C # ------------------------------------------------------------------- maven.xsddoc.src=samples ! maven.xsddoc.include=soap/envelope.xsd,stress/stress.xsd,xsddoc/xsddoc.xsd,XMLSchema/XMLSchema.xsd,xhtml/xhtml1-strict.xsd ! maven.xsddoc.bottom=\ ! <font size="-1">\ ! Submit a \ ! <a target="_blank" href="http://sourceforge.net/tracker/?atid=454391&group_id=48863&func=browse">bug</a> or a \ ! <a target="_blank" href="http://sourceforge.net/tracker/?atid=454394&group_id=48863&func=browse">feature</a>.<br/>\ ! Created by \ ! <a target="_blank" href="http://xframe.sourceforge.net/xsddoc.html">xsddoc</a>, a sub project of \ ! <a href="http://xframe.sourceforge.net" target="_blank">xframe</a><br/>\ ! hosted at<br/>\ ! <a style="text-align: center;" id="sflogo" href="http://sourceforge.net" title="sourceforge.net">\ ! <img alt="sourceforge.net Logo" border="0" width="88" height="31" src="http://sourceforge.net/sflogo.php?group_id=48863&type=1" />\ ! </a>\ ! </font> # ------------------------------------------------------------------- *************** *** 84,95 **** #------------------------------------------------------------------ - # N S I S P R O P E R T I E S - #------------------------------------------------------------------ - # maven.nsis.src=${basedir}/src/installer/nsis - # maven.nsis.logo=${maven.nsis.src}/maven.bmp - # maven.nsis.logo.position=left - # maven.nsis.logo.widthHeight=70 - - #------------------------------------------------------------------ # H T M L 2 X D O C P R O P E R T I E S #------------------------------------------------------------------ --- 97,100 ---- *************** *** 103,106 **** --- 108,116 ---- maven.pdf.navigationFile=navigation-pdf.xml + # ------------------------------------------------------------------- + # L I N K C H E C K P R O P E R I E S + # ------------------------------------------------------------------- + maven.linkcheck.exclude=xsddoc.pdf,http://pagead2.googlesyndication.com/pagead/show_ads.js + #------------------------------------------------------------------ # L I C E N S E *************** *** 155,160 **** # ------------------------------------------------------------------- xhtml.exclude = apidocs/**/*.*,clover/**/*.*,xref/**/*.*,xref-test/**/*.* - #xhtml.workingdir = ${maven.build.dir}/xhtml - - maven.linkcheck.exclude=xsddoc.pdf,http://pagead2.googlesyndication.com/pagead/show_ads.js \ No newline at end of file --- 165,167 ---- Index: project.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/project.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** project.xml 22 Apr 2005 23:29:45 -0000 1.12 --- project.xml 9 May 2005 22:47:01 -0000 1.13 *************** *** 135,139 **** <groupId>xsddoc</groupId> <artifactId>maven-xsddoc-plugin</artifactId> ! <version>0.7</version> <type>plugin</type> </dependency> --- 135,139 ---- <groupId>xsddoc</groupId> <artifactId>maven-xsddoc-plugin</artifactId> ! <version>0.8</version> <type>plugin</type> </dependency> Index: readme.txt =================================================================== RCS file: /cvsroot/xframe/xsddoc/readme.txt,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** readme.txt 9 Dec 2004 12:44:12 -0000 1.13 --- readme.txt 9 May 2005 22:47:01 -0000 1.14 *************** *** 166,168 **** - search for help in our xsddoc forum at http://sourceforge.net/forum/forum.php?forum_id=318508 ! - send an email to the xframe team at http://sourceforge.net/users/kriede --- 166,168 ---- - search for help in our xsddoc forum at http://sourceforge.net/forum/forum.php?forum_id=318508 ! - ask a question to the xframe team in our xsddoc forum at http://sourceforge.net/forum/forum.php?forum_id=318508 |
From: Kurt R. <kr...@us...> - 2005-05-09 22:47:10
|
Update of /cvsroot/xframe/xsddoc/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19758/xdocs Modified Files: site.jsl Log Message: multiple documentation updates Index: site.jsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/site.jsl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** site.jsl 6 May 2005 09:29:44 -0000 1.3 --- site.jsl 9 May 2005 22:47:01 -0000 1.4 *************** *** 1,4 **** <?xml version="1.0"?> - <!-- * ======================================================================== --- 1,3 ---- |
From: Kurt R. <kr...@us...> - 2005-05-09 22:43:16
|
Update of /cvsroot/xframe/homepage In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18874 Modified Files: project.xml Log Message: multiple documentation updates Index: project.xml =================================================================== RCS file: /cvsroot/xframe/homepage/project.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** project.xml 12 Nov 2004 14:07:04 -0000 1.3 --- project.xml 9 May 2005 22:43:07 -0000 1.4 *************** *** 64,68 **** <name>Kurt Riede</name> <id>kriede</id> ! <email>kr...@us...</email> <roles> <role>Project Admin</role> --- 64,68 ---- <name>Kurt Riede</name> <id>kriede</id> ! <email>mailto:kr...@xn...</email> <roles> <role>Project Admin</role> |
From: Kurt R. <kr...@us...> - 2005-05-09 22:43:01
|
Update of /cvsroot/xframe/homepage/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18769/xdocs Modified Files: site.jsl xsddoc.xml xframe.xml swing.xml links.xml index.xml Log Message: multiple documentation updates Index: site.jsl =================================================================== RCS file: /cvsroot/xframe/homepage/xdocs/site.jsl,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** site.jsl 26 Feb 2005 13:42:34 -0000 1.4 --- site.jsl 9 May 2005 22:42:51 -0000 1.5 *************** *** 1,4 **** <?xml version="1.0"?> - <!-- * ======================================================================== --- 1,3 ---- *************** *** 188,191 **** --- 187,192 ---- </div> </j:if> + <jsl:applyTemplates select="$nav/body/search"/> + <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> <!-- Standard Maven Navigation --> <j:set var="fileName">${file}</j:set> *************** *** 198,205 **** </a> </j:if> ! <x:if select="$nav"> ! <jsl:applyTemplates select="$nav/body/search"/> ! <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> ! </x:if> <j:if test="${date == 'navigation-bottom'}"> <div id="lastPublished">Last published: ${build.date}</div> --- 199,205 ---- </a> </j:if> ! <a style="text-align: center;" id="sflogo" href="http://sourceforge.net" title="sourceforge.net"> ! <img alt="sourceforge.net Logo" width="88" height="31" src="http://sourceforge.net/sflogo.php?group_id=48863&type=1" /> ! </a> <j:if test="${date == 'navigation-bottom'}"> <div id="lastPublished">Last published: ${build.date}</div> Index: index.xml =================================================================== RCS file: /cvsroot/xframe/homepage/xdocs/index.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.xml 12 Nov 2004 14:06:42 -0000 1.2 --- index.xml 9 May 2005 22:42:52 -0000 1.3 *************** *** 23,27 **** <properties> <title>xsddoc</title> ! <author email="kr...@us...">Kurt Riede</author> </properties> <body> --- 23,27 ---- <properties> <title>xsddoc</title> ! <author email="mailto:kr...@xn...">Kurt Riede</author> </properties> <body> Index: swing.xml =================================================================== RCS file: /cvsroot/xframe/homepage/xdocs/swing.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** swing.xml 7 Oct 2004 23:06:22 -0000 1.1 --- swing.xml 9 May 2005 22:42:52 -0000 1.2 *************** *** 24,28 **** <properties> <title>xsddoc</title> ! <author email="kr...@us...">Kurt Riede</author> </properties> --- 24,28 ---- <properties> <title>xsddoc</title> ! <author email="mailto:kr...@xn...">Kurt Riede</author> </properties> Index: xframe.xml =================================================================== RCS file: /cvsroot/xframe/homepage/xdocs/xframe.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** xframe.xml 20 Nov 2004 13:09:49 -0000 1.1 --- xframe.xml 9 May 2005 22:42:52 -0000 1.2 *************** *** 23,27 **** <properties> <title>xsddoc</title> ! <author email="kr...@us...">Kurt Riede</author> </properties> <body> --- 23,27 ---- <properties> <title>xsddoc</title> ! <author email="mailto:kr...@xn...">Kurt Riede</author> </properties> <body> Index: links.xml =================================================================== RCS file: /cvsroot/xframe/homepage/xdocs/links.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** links.xml 20 Nov 2004 13:09:49 -0000 1.1 --- links.xml 9 May 2005 22:42:52 -0000 1.2 *************** *** 23,27 **** <properties> <title>xframe links</title> ! <author email="kr...@us...">Kurt Riede</author> </properties> <body> --- 23,27 ---- <properties> <title>xframe links</title> ! <author email="mailto:kr...@xn...">Kurt Riede</author> </properties> <body> Index: xsddoc.xml =================================================================== RCS file: /cvsroot/xframe/homepage/xdocs/xsddoc.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** xsddoc.xml 7 Oct 2004 23:06:22 -0000 1.1 --- xsddoc.xml 9 May 2005 22:42:52 -0000 1.2 *************** *** 24,28 **** <properties> <title>xsddoc</title> ! <author email="kr...@us...">Kurt Riede</author> </properties> --- 24,28 ---- <properties> <title>xsddoc</title> ! <author email="mailto:kr...@xn...">Kurt Riede</author> </properties> |
From: Kurt R. <kr...@us...> - 2005-05-09 08:56:43
|
Update of /cvsroot/xframe/xsddoc/samples/soap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4287/samples/soap Added Files: .cvsignore Log Message: samples readded --- NEW FILE: .cvsignore --- html |
From: Kurt R. <kr...@us...> - 2005-05-09 08:56:43
|
Update of /cvsroot/xframe/xsddoc/samples/xhtml In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4287/samples/xhtml Added Files: xml.xsd xhtml1-strict.xsd .cvsignore Log Message: samples readded --- NEW FILE: .cvsignore --- html doc src --- NEW FILE: xhtml1-strict.xsd --- <?xml version="1.0" encoding="UTF-8"?> <xs:schema targetNamespace="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="1.0" xml:lang="en"> <xs:annotation> <xs:documentation> XHTML 1.0 (Second Edition) Strict in XML Schema This is the same as HTML 4 Strict except for changes due to the differences between XML and SGML. Namespace = http://www.w3.org/1999/xhtml For further information, see: http://www.w3.org/TR/xhtml1 Copyright (c) 1998-2002 W3C (MIT, INRIA, Keio), All Rights Reserved. The DTD version is identified by the PUBLIC and SYSTEM identifiers: PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" [...2015 lines suppressed...] </xs:complexType> </xs:element> <xs:element name="td"> <xs:complexType mixed="true"> <xs:complexContent mixed="true"> <xs:extension base="Flow"> <xs:attributeGroup ref="attrs"/> <xs:attribute name="abbr" type="Text"/> <xs:attribute name="axis"/> <xs:attribute name="headers" type="xs:IDREFS"/> <xs:attribute name="scope" type="Scope"/> <xs:attribute name="rowspan" type="Number" default="1"/> <xs:attribute name="colspan" type="Number" default="1"/> <xs:attributeGroup ref="cellhalign"/> <xs:attributeGroup ref="cellvalign"/> </xs:extension> </xs:complexContent> </xs:complexType> </xs:element> </xs:schema> --- NEW FILE: xml.xsd --- <?xml version="1.0"?> <xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace" xmlns:xs="http://www.w3.org/2001/XMLSchema" xml:lang="en"> <xs:annotation> <xs:documentation>See http://www.w3.org/XML/1998/namespace.html and http://www.w3.org/TR/REC-xml for information about this namespace.</xs:documentation> </xs:annotation> <xs:annotation> <xs:documentation>This schema defines attributes and an attribute group suitable for use by schemas wishing to allow xml:base, xml:lang or xml:space attributes on elements they define. To enable this, such a schema must import this schema for the XML namespace, e.g. as follows: <schema . . .> . . . <import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/03/xml.xsd"/> Subsequently, qualified reference to any of the attributes or the group defined below will have the desired effect, e.g. <type . . .> . . . <attributeGroup ref="xml:specialAttrs"/> will define a type which will schema-validate an instance element with any of those attributes</xs:documentation> </xs:annotation> <xs:annotation> <xs:documentation>In keeping with the XML Schema WG's standard versioning policy, this schema document will persist at http://www.w3.org/2001/03/xml.xsd. At the date of issue it can also be found at http://www.w3.org/2001/xml.xsd. The schema document at that URI may however change in the future, in order to remain compatible with the latest version of XML Schema itself. In other words, if the XML Schema namespace changes, the version of this document at http://www.w3.org/2001/xml.xsd will change accordingly; the version at http://www.w3.org/2001/03/xml.xsd will not change.</xs:documentation> </xs:annotation> <xs:attribute name="lang" type="xs:language"> <xs:annotation> <xs:documentation>In due course, we should install the relevant ISO 2- and 3-letter codes as the enumerated possible values . . .</xs:documentation> </xs:annotation> </xs:attribute> <xs:attribute name="space" default="preserve"> <xs:simpleType> <xs:restriction base="xs:NCName"> <xs:enumeration value="default"/> <xs:enumeration value="preserve"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="base" type="xs:anyURI"> <xs:annotation> <xs:documentation>See http://www.w3.org/TR/xmlbase/ for information about this attribute.</xs:documentation> </xs:annotation> </xs:attribute> <xs:attributeGroup name="specialAttrs"> <xs:attribute ref="xml:base"/> <xs:attribute ref="xml:lang"/> <xs:attribute ref="xml:space"/> </xs:attributeGroup> </xs:schema> |
From: Kurt R. <kr...@us...> - 2005-05-06 11:16:40
|
Update of /cvsroot/xframe/xsddoc-compatibility-test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12105 Modified Files: project.xml Log Message: version upated to 0.8 Index: project.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc-compatibility-test/project.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** project.xml 10 Dec 2004 08:59:20 -0000 1.3 --- project.xml 6 May 2005 11:16:28 -0000 1.4 *************** *** 25,29 **** <name>xsddoc-compatibility-test</name> <groupId>xsddoc</groupId> ! <currentVersion>0.7</currentVersion> <organization> <name>xframe</name> --- 25,29 ---- <name>xsddoc-compatibility-test</name> <groupId>xsddoc</groupId> ! <currentVersion>0.8</currentVersion> <organization> <name>xframe</name> *************** *** 42,45 **** --- 42,50 ---- <tag>XSDDOC_COMPATIBILITY_TEST_0_7</tag> </version> + <version> + <id>0.8</id> + <name>0.8</name> + <tag>XSDDOC_COMPATIBILITY_TEST_0_8</tag> + </version> </versions> <inceptionYear>2004</inceptionYear> |
From: Kurt R. <kr...@us...> - 2005-05-06 11:15:29
|
Update of /cvsroot/xframe/xsddoc-compatibility-test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11864 Modified Files: project.properties Log Message: cleanup Index: project.properties =================================================================== RCS file: /cvsroot/xframe/xsddoc-compatibility-test/project.properties,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** project.properties 3 Nov 2004 17:48:12 -0000 1.2 --- project.properties 6 May 2005 11:15:15 -0000 1.3 *************** *** 34,42 **** maven.xdoc.date = left maven.xdoc.date.format = dd.MM.yyyy HH:mm z - - # Display the maven version the web site is documenting - #maven.xdoc.version = ${pom.currentVersion} maven.xdoc.jsl = xdocs/site.jsl - # maven.xdoc.developmentProcessUrl = google.ad.client = pub-3210557671772622 --- 34,38 ---- |
From: Kurt R. <kr...@us...> - 2005-05-06 11:05:16
|
Update of /cvsroot/xframe/xsddoc-compatibility-test/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9960/xdocs Modified Files: site.jsl Log Message: sf.net logo added Index: site.jsl =================================================================== RCS file: /cvsroot/xframe/xsddoc-compatibility-test/xdocs/site.jsl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** site.jsl 4 Nov 2004 09:52:01 -0000 1.2 --- site.jsl 6 May 2005 11:05:07 -0000 1.3 *************** *** 198,205 **** </a> </j:if> ! <x:if select="$nav"> ! <jsl:applyTemplates select="$nav/body/search"/> ! <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> ! </x:if> <j:if test="${date == 'navigation-bottom'}"> <div id="lastPublished">Last published: ${build.date}</div> --- 198,204 ---- </a> </j:if> ! <a style="text-align: center;" id="sflogo" href="http://sourceforge.net" title="sourceforge.net"> ! <img alt="sourceforge.net Logo" width="88" height="31" src="http://sourceforge.net/sflogo.php?group_id=48863&type=1" /> ! </a> <j:if test="${date == 'navigation-bottom'}"> <div id="lastPublished">Last published: ${build.date}</div> |
From: Kurt R. <kr...@us...> - 2005-05-06 09:29:54
|
Update of /cvsroot/xframe/xsddoc/xdocs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16521/xdocs Modified Files: site.jsl Log Message: sf.net log added Index: site.jsl =================================================================== RCS file: /cvsroot/xframe/xsddoc/xdocs/site.jsl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** site.jsl 4 Nov 2004 09:50:38 -0000 1.2 --- site.jsl 6 May 2005 09:29:44 -0000 1.3 *************** *** 188,191 **** --- 188,195 ---- </div> </j:if> + <x:if select="$nav"> + <jsl:applyTemplates select="$nav/body/search"/> + <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> + </x:if> <!-- Standard Maven Navigation --> <j:set var="fileName">${file}</j:set> *************** *** 198,205 **** </a> </j:if> ! <x:if select="$nav"> ! <jsl:applyTemplates select="$nav/body/search"/> ! <jsl:applyTemplates select="$nav/body/googleAdsenseLeft"/> ! </x:if> <j:if test="${date == 'navigation-bottom'}"> <div id="lastPublished">Last published: ${build.date}</div> --- 202,208 ---- </a> </j:if> ! <a style="text-align: center;" id="sflogo" href="http://sourceforge.net" title="sourceforge.net"> ! <img alt="sourceforge.net Logo" width="88" height="31" src="http://sourceforge.net/sflogo.php?group_id=48863&type=1" /> ! </a> <j:if test="${date == 'navigation-bottom'}"> <div id="lastPublished">Last published: ${build.date}</div> |
From: Kurt R. <kr...@us...> - 2005-05-06 09:29:31
|
Update of /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16441/src/net/sf/xframe/xsddoc Modified Files: Processor.java Log Message: default values to prevent certain NPEs. Index: Processor.java =================================================================== RCS file: /cvsroot/xframe/xsddoc/src/net/sf/xframe/xsddoc/Processor.java,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** Processor.java 22 Apr 2005 15:11:32 -0000 1.39 --- Processor.java 6 May 2005 09:29:20 -0000 1.40 *************** *** 172,176 **** /** documentation footer. */ ! private String footer; /** Documentation Title. */ --- 172,176 ---- /** documentation footer. */ ! private String footer = ""; /** Documentation Title. */ *************** *** 178,185 **** /** Documentation header. */ ! private String header; /** Documentation bottom. */ ! private String bottom; /** out folder. */ --- 178,185 ---- /** Documentation header. */ ! private String header = ""; /** Documentation bottom. */ ! private String bottom = ""; /** out folder. */ |
From: Kurt R. <kr...@us...> - 2005-04-22 23:29:56
|
Update of /cvsroot/xframe/xsddoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15518 Modified Files: project.xml Log Message: added prunge as contributor Index: project.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/project.xml,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** project.xml 22 Apr 2005 16:08:42 -0000 1.11 --- project.xml 22 Apr 2005 23:29:45 -0000 1.12 *************** *** 104,107 **** --- 104,119 ---- <timezone/> </contributor> + <contributor> + <name>Peter Runge</name> + <id>prunge</id> + <email>pr...@us...</email> + <organization>Private</organization> + <roles> + <role>developer</role> + <role>tester</role> + </roles> + <url>http://www.ozemail.com.au/~prunge/</url> + <timezone>10</timezone> + </contributor> </contributors> <dependencies> |
From: Kurt R. <kr...@us...> - 2005-04-22 16:08:51
|
Update of /cvsroot/xframe/xsddoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31833 Modified Files: project.xml Log Message: version updated to uncoming release 0.8beta Index: project.xml =================================================================== RCS file: /cvsroot/xframe/xsddoc/project.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** project.xml 26 Feb 2005 12:39:02 -0000 1.10 --- project.xml 22 Apr 2005 16:08:42 -0000 1.11 *************** *** 25,29 **** <name>xsddoc</name> <groupId>xsddoc</groupId> ! <currentVersion>0.7</currentVersion> <organization> <name>xframe</name> --- 25,29 ---- <name>xsddoc</name> <groupId>xsddoc</groupId> ! <currentVersion>0.8</currentVersion> <organization> <name>xframe</name> *************** *** 47,50 **** --- 47,55 ---- <tag>XSDDOC_0_7</tag> </version> + <version> + <id>0.8</id> + <name>0.8</name> + <tag>XSDDOC_0_8</tag> + </version> </versions> <inceptionYear>2004</inceptionYear> |
From: Kurt R. <kr...@us...> - 2005-04-22 16:07:28
|
Update of /cvsroot/xframe/xsddoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31204 Modified Files: build.version Log Message: version updated to uncoming release 0.8beta Index: build.version =================================================================== RCS file: /cvsroot/xframe/xsddoc/build.version,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** build.version 9 Dec 2004 12:44:12 -0000 1.7 --- build.version 22 Apr 2005 16:07:20 -0000 1.8 *************** *** 1 **** ! build.version=0.7-beta --- 1 ---- ! build.version=0.8-beta |