You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(157) |
Nov
(121) |
Dec
(19) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(34) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <rga...@us...> - 2002-10-20 21:55:50
|
Update of /cvsroot/csms/csms-core/src/java/org/fanfoot/scoring
In directory usw-pr-cvs1:/tmp/cvs-serv21209
Modified Files:
ScoringConfiguration.java
Log Message:
Correcting checkstyle errors
Index: ScoringConfiguration.java
===================================================================
RCS file: /cvsroot/csms/csms-core/src/java/org/fanfoot/scoring/ScoringConfiguration.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ScoringConfiguration.java 18 Oct 2002 14:56:45 -0000 1.1
--- ScoringConfiguration.java 20 Oct 2002 21:55:47 -0000 1.2
***************
*** 53,60 ****
private String xSLURL;
! static final Logger logger = Logger.getLogger("org.fanfoot.scoring");
/** Creates a new instance of ScoreConfiguration
! * @param strURL the url of the XSL stylesheet to generate scores from <code>Events</code>
*/
public ScoringConfiguration(String strURL) {
--- 53,62 ----
private String xSLURL;
! /** where to write logging inofrmation */
! final Logger logger = Logger.getLogger("org.fanfoot.scoring");
/** Creates a new instance of ScoreConfiguration
! * @param strURL the url of the XSL stylesheet to generate
! * scores from <code>Events</code>
*/
public ScoringConfiguration(String strURL) {
***************
*** 82,86 ****
* DOM documents into a score DOM document.
* @return scores as a dom Document
! * @throws ScoringConfigurtionException if unable to load the XSL file
* @refactor many times the XSL will not have changed so there is no need
* to relod the document. Cache it here.
--- 84,88 ----
* DOM documents into a score DOM document.
* @return scores as a dom Document
! * @throws ScoringConfigurationException if unable to load the XSL file
* @refactor many times the XSL will not have changed so there is no need
* to relod the document. Cache it here.
***************
*** 91,102 ****
doc = org.saafe.utils.XMLUtils.parseXML(xSLURL);
} catch (javax.xml.parsers.ParserConfigurationException pce) {
! logger.log(Level.WARNING, "Unable to parse scoring XSL", pce);
! throw new ScoringConfigurationException("Unable to parse scoring XSL", pce);
} catch ( org.xml.sax.SAXException se) {
! logger.log(Level.WARNING, "Unable to parse scoring XSL", se);
! throw new ScoringConfigurationException("Unable to parse scoring XSL", se);
} catch (java.io.IOException ioe) {
! logger.log(Level.WARNING, "Unable to parse scoring XSL", ioe);
! throw new ScoringConfigurationException("Unable to parse scoring XSL", ioe);
}
--- 93,109 ----
doc = org.saafe.utils.XMLUtils.parseXML(xSLURL);
} catch (javax.xml.parsers.ParserConfigurationException pce) {
! String strError = "Unable to parse scoring XSL";
! logger.log(Level.SEVERE, strError, pce);
! throw new ScoringConfigurationException(strError,
! pce);
} catch ( org.xml.sax.SAXException se) {
! String strError = "Unable to parse scoring XSL";
! logger.log(Level.SEVERE, strError, se);
! throw new ScoringConfigurationException(strError,
! se);
} catch (java.io.IOException ioe) {
! String strError = "Unable to parse scoring XSL";
! logger.log(Level.SEVERE, strError, ioe);
! throw new ScoringConfigurationException(strError, ioe);
}
|
|
From: <rga...@us...> - 2002-10-20 21:32:06
|
Update of /cvsroot/csms/csms-core/lib In directory usw-pr-cvs1:/tmp/cvs-serv5035 Added Files: xalan-2.3.1.jar xercesImpl-2.0.0.jar xml-apis.jar Log Message: Adding missing libraries from iniital import --- NEW FILE: xalan-2.3.1.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xercesImpl-2.0.0.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xml-apis.jar --- (This appears to be a binary file; contents omitted.) |
|
From: <rga...@us...> - 2002-10-20 21:31:26
|
Update of /cvsroot/csms/csms-core
In directory usw-pr-cvs1:/tmp/cvs-serv12713
Modified Files:
module.xml
Log Message:
Added dependcy on XML jars
Index: module.xml
===================================================================
RCS file: /cvsroot/csms/csms-core/module.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** module.xml 18 Oct 2002 14:40:32 -0000 1.2
--- module.xml 20 Oct 2002 21:31:23 -0000 1.3
***************
*** 58,62 ****
</credits>
! <project name="sportsModule-FantasyFootball">
<version major="0"
--- 58,62 ----
</credits>
! <project name="FantasyFootballSportsModule">
<version major="0"
***************
*** 72,75 ****
--- 72,78 ----
<depend project="jtidy" version="supplied" export="true"/>
<depend project="commons-jxpath" version="supplied" export="true"/>
+ <depend project="xml-apis" version="supplied" export="true"/>
+ <depend project="xercesImpl" version="supplied" export="true"/>
+ <depend project="xalan" version="supplied" export="true"/>
<depend project="junit" version="supplied" export="false"/>
|
|
From: <rga...@us...> - 2002-10-20 20:50:24
|
Update of /cvsroot/csms/csms-core/src/java/org/fanfoot/scoring
In directory usw-pr-cvs1:/tmp/cvs-serv30810
Modified Files:
Event.java
Log Message:
Correct error in recording the sorce of the event
Index: Event.java
===================================================================
RCS file: /cvsroot/csms/csms-core/src/java/org/fanfoot/scoring/Event.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Event.java 18 Oct 2002 17:37:59 -0000 1.2
--- Event.java 20 Oct 2002 20:50:21 -0000 1.3
***************
*** 220,224 ****
protected Element getSourceElement(Document doc) {
Element elem = doc.createElement("src");
! Text text = doc.createTextNode(this.getType());
elem.appendChild(text);
return elem;
--- 220,224 ----
protected Element getSourceElement(Document doc) {
Element elem = doc.createElement("src");
! Text text = doc.createTextNode(this.getSrc());
elem.appendChild(text);
return elem;
|
|
From: <rga...@us...> - 2002-10-18 21:21:34
|
Update of /cvsroot/csms/csms-core
In directory usw-pr-cvs1:/tmp/cvs-serv23430
Modified Files:
centibuild.xml
Log Message:
Added script cent (it automatically generates run scripts for us)
Index: centibuild.xml
===================================================================
RCS file: /cvsroot/csms/csms-core/centibuild.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** centibuild.xml 18 Oct 2002 20:24:43 -0000 1.2
--- centibuild.xml 18 Oct 2002 21:21:30 -0000 1.3
***************
*** 103,106 ****
--- 103,114 ----
</target>
+ <target name="pre-dist" depends="scripts"/>
+
+ <target name="scripts">
+ <antcall target="make-main-scripts">
+ <param name="scripts.cent.script.name" value="fanfoot"/>
+ <param name="scripts.cent.class" value="org.fanfoot.gui.ControlCentre"/>
+ </antcall>
+ </target>
</project>
|
|
From: <rga...@us...> - 2002-10-18 21:09:18
|
Update of /cvsroot/csms/csms-core/src/documentation
In directory usw-pr-cvs1:/tmp/cvs-serv18292
Modified Files:
Release-Checklist.txt
Log Message:
improve layout
Index: Release-Checklist.txt
===================================================================
RCS file: /cvsroot/csms/csms-core/src/documentation/Release-Checklist.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Release-Checklist.txt 18 Oct 2002 17:07:22 -0000 1.2
--- Release-Checklist.txt 18 Oct 2002 21:09:15 -0000 1.3
***************
*** 1,26 ****
- update docbook stylesheets (see bug 155 for process)
- cent clean all
- Check for any errors in the unit test reports
- correct any failures and start again from build clean
- update ./src/status.xml
- add date to release element
- move tasks to the necessary release element
- create a new release element (with a due date)
- update ./module.xml
- set version tag to beta, rc1, rc2 etc.
- check dependiencies list is complete
- update ./legal
- ensure licenses for all libs are included
- update the web site docs
- cent deploysite
- ensure CVS is up to date
- tag CVS (release_X_Y_Z, where X, Y and Z are version numbers)
- create a branch for this release?
! - sign distributions
- publish web site
- update ./module.xml
- increment version number and set tag to alpha
- Generate announcements and HEADER.html
- upload distributions to correct dir
- send announcements to ...
...
--- 1,39 ----
- update docbook stylesheets (see bug 155 for process)
+
- cent clean all
+
- Check for any errors in the unit test reports
- correct any failures and start again from build clean
+
- update ./src/status.xml
- add date to release element
- move tasks to the necessary release element
- create a new release element (with a due date)
+
- update ./module.xml
- set version tag to beta, rc1, rc2 etc.
- check dependiencies list is complete
+
- update ./legal
- ensure licenses for all libs are included
+
- update the web site docs
+
- cent deploysite
+
- ensure CVS is up to date
+
- tag CVS (release_X_Y_Z, where X, Y and Z are version numbers)
- create a branch for this release?
!
- publish web site
+
- update ./module.xml
- increment version number and set tag to alpha
+
- Generate announcements and HEADER.html
+
- upload distributions to correct dir
+
- send announcements to ...
...
|
|
From: <rga...@us...> - 2002-10-18 20:24:47
|
Update of /cvsroot/csms/csms-core
In directory usw-pr-cvs1:/tmp/cvs-serv4277
Modified Files:
centibuild.xml
Log Message:
Converting to use the new importcent feature of centipede
Index: centibuild.xml
===================================================================
RCS file: /cvsroot/csms/csms-core/centibuild.xml,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** centibuild.xml 17 Oct 2002 16:53:47 -0000 1.1.1.1
--- centibuild.xml 18 Oct 2002 20:24:43 -0000 1.2
***************
*** 33,43 ****
<import file="${ant.home}/src/core/xbuild.xml"/>
! <import file="${ant.home}/tools/cents/antidote.cent/xbuild.xml"/>
! <import file="${ant.home}/tools/cents/centipede.cent/xbuild.xml"/>
! <import file="${ant.home}/tools/cents/checkstyle.cent/xbuild.xml"/>
! <import file="${ant.home}/tools/cents/forrest.cent/xbuild.xml"/>
! <import file="${ant.home}/tools/cents/gump.cent/xbuild.xml"/>
! <import file="${ant.home}/tools/cents/javasrc.cent/xbuild.xml"/>
! <import file="${ant.home}/tools/cents/junit.cent/xbuild.xml"/>
<!-- =================================================================== -->
--- 33,46 ----
<import file="${ant.home}/src/core/xbuild.xml"/>
! <taskdef file="${ant.home}/src/core/tasks.properties"/>
!
! <importcent name="centipede"/>
! <importcent name="antidote"/>
! <importcent name="checkstyle"/>
! <importcent name="forrest"/>
! <importcent name="gump"/>
! <importcent name="javasrc"/>
! <importcent name="junit"/>
! <importcent name="scripts"/>
<!-- =================================================================== -->
|
|
From: <rga...@us...> - 2002-10-18 17:38:02
|
Update of /cvsroot/csms/csms-core/src/java/org/fanfoot/scoring
In directory usw-pr-cvs1:/tmp/cvs-serv11435
Modified Files:
Event.java
Log Message:
Removed checkstyle errors
Index: Event.java
===================================================================
RCS file: /cvsroot/csms/csms-core/src/java/org/fanfoot/scoring/Event.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Event.java 18 Oct 2002 14:56:45 -0000 1.1
--- Event.java 18 Oct 2002 17:37:59 -0000 1.2
***************
*** 43,47 ****
import org.w3c.dom.Text;
import java.util.logging.Logger;
- import java.util.logging.Level;
/**
--- 43,46 ----
***************
*** 50,54 ****
*/
public class Event {
! /** Holds value of property src which indicates where this event record came from. */
private String src = "";
--- 49,54 ----
*/
public class Event {
! /** Holds value of property src which indicates
! * where this event record came from. */
private String src = "";
***************
*** 59,70 ****
Hashtable parts = new Hashtable();
! /** Holds value of property UID. */
! private String UID = "";
final Logger logger = Logger.getLogger("org.fanfoot.scoring");
/** Creates a new instance of Event of the type indicated
* @param strType the type of this event
- * @param strGroupUID a unique identifier for the group of events that
*this event belongs to. From this a unique event identifier will be
*created.
--- 59,70 ----
Hashtable parts = new Hashtable();
! /** Holds value of property uid. */
! private String uid = "";
+ /** Where to write log entries to */
final Logger logger = Logger.getLogger("org.fanfoot.scoring");
/** Creates a new instance of Event of the type indicated
* @param strType the type of this event
*this event belongs to. From this a unique event identifier will be
*created.
***************
*** 128,132 ****
/**
* Get all the parts for this event.
! * @retrun Hashtable containing all the parts, indexed by part name
*/
public Hashtable getParts() {
--- 128,132 ----
/**
* Get all the parts for this event.
! * @return Hashtable containing all the parts, indexed by part name
*/
public Hashtable getParts() {
***************
*** 145,148 ****
--- 145,150 ----
/** Return an XML DOM representation of this event
* @return Document XML DOM representation of this event
+ * @throws ParserConfigurationException if there is a
+ * problem with the XML Parser
*/
public Document toXMLDoc() throws ParserConfigurationException {
***************
*** 152,156 ****
appendXMLTo(doc);
! logger.finest("Root element of document is named " + doc.getDocumentElement().getNodeName());
logger.exiting("org.fanfoot.scoring.Event", "toXMLDoc()");
return doc;
--- 154,159 ----
appendXMLTo(doc);
! logger.finest("Root element of document is named "
! + doc.getDocumentElement().getNodeName());
logger.exiting("org.fanfoot.scoring.Event", "toXMLDoc()");
return doc;
***************
*** 168,187 ****
}
! Element elem = doc.createElement("uid");
! Text text = doc.createTextNode(this.getUID());
! elem.appendChild(text);
! root.appendChild(elem);
!
! elem=doc.createElement("type");
! text = doc.createTextNode(this.getType());
! elem.appendChild(text);
! root.appendChild(elem);
!
! elem=doc.createElement("src");
! text = doc.createTextNode(this.getSrc());
! elem.appendChild(text);
! root.appendChild(elem);
!
Enumeration enuPartNames = this.getPartNames();
String strPartName;
String strPartValue;
--- 171,181 ----
}
! root.appendChild(getUIDElement(doc));
! root.appendChild(getTypeElement(doc));
! root.appendChild(getSourceElement(doc));
!
Enumeration enuPartNames = this.getPartNames();
+ Element elem;
+ Text text;
String strPartName;
String strPartValue;
***************
*** 197,200 ****
--- 191,228 ----
}
}
+
+ /** Get the UID XML ELement
+ * @param doc the document this element will be a part of
+ * @return Element representing the UID of this event
+ */
+ protected Element getUIDElement(Document doc) {
+ Element elem = doc.createElement("uid");
+ Text text = doc.createTextNode(this.getUID());
+ elem.appendChild(text);
+ return elem;
+ }
+
+ /** Get the type XML ELement
+ * @param doc the document this element will be a part of
+ * @return Element representing the type of this event
+ */
+ protected Element getTypeElement(Document doc) {
+ Element elem = doc.createElement("type");
+ Text text = doc.createTextNode(this.getType());
+ elem.appendChild(text);
+ return elem;
+ }
+
+ /** Get the source XML ELement
+ * @param doc the document this element will be a part of
+ * @return Element representing the source of this event
+ */
+ protected Element getSourceElement(Document doc) {
+ Element elem = doc.createElement("src");
+ Text text = doc.createTextNode(this.getType());
+ elem.appendChild(text);
+ return elem;
+ }
+
/** Getter for property UID.
***************
*** 203,215 ****
*/
public String getUID() {
! return this.UID;
}
/** Setter for property UID.
! * @param UID New value of property UID.
*
*/
! public void setUID(String UID) {
! this.UID = UID;
}
--- 231,243 ----
*/
public String getUID() {
! return this.uid;
}
/** Setter for property UID.
! * @param uid New value of property UID.
*
*/
! public void setUID(String uid) {
! this.uid = uid;
}
|
|
From: <rga...@us...> - 2002-10-18 17:07:25
|
Update of /cvsroot/csms/csms-core/src/documentation
In directory usw-pr-cvs1:/tmp/cvs-serv32302
Modified Files:
Release-Checklist.txt
Log Message:
Changed instructions to reflect Centipede rather than Ant build tool
Added deploysite task
Index: Release-Checklist.txt
===================================================================
RCS file: /cvsroot/csms/csms-core/src/documentation/Release-Checklist.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Release-Checklist.txt 18 Oct 2002 15:13:09 -0000 1.1
--- Release-Checklist.txt 18 Oct 2002 17:07:22 -0000 1.2
***************
*** 1,8 ****
- update docbook stylesheets (see bug 155 for process)
! - build clean
! - build all
- Check for any errors in the unit test reports
- correct any failures and start again from build clean
- - update ./src/documentation/xdocs/management/milestones.xml
- update ./src/status.xml
- add date to release element
--- 1,6 ----
- update docbook stylesheets (see bug 155 for process)
! - cent clean all
- Check for any errors in the unit test reports
- correct any failures and start again from build clean
- update ./src/status.xml
- add date to release element
***************
*** 14,17 ****
--- 12,17 ----
- update ./legal
- ensure licenses for all libs are included
+ - update the web site docs
+ - cent deploysite
- ensure CVS is up to date
- tag CVS (release_X_Y_Z, where X, Y and Z are version numbers)
***************
*** 24,36 ****
- upload distributions to correct dir
- send announcements to ...
! - news to newsgroups: comp.lang.java.softwaretools
- post stories on
! *) jakarta news page
! *) theserverside.com
*) freshmeat.net
- *) www.javaworld.com
- *) www.javalobby.com
- *) www.jguru.com
*) www.slashdot.org
- *) pat...@cs...
(and follow them up)
--- 24,31 ----
- upload distributions to correct dir
- send announcements to ...
! ...
- post stories on
! *) Sourceforge
*) freshmeat.net
*) www.slashdot.org
(and follow them up)
|
|
From: <rga...@us...> - 2002-10-18 17:04:06
|
Update of /cvsroot/csms/csms-core/legal In directory usw-pr-cvs1:/tmp/cvs-serv30998 Added Files: LICENSE.commons-jxpath LICENSE.jtidy LICENSE.saafe-commons LICENSE.xmlunit Log Message: License files for used libraries. --- NEW FILE: LICENSE.commons-jxpath --- /* * $Header: /cvsroot/csms/csms-core/legal/LICENSE.commons-jxpath,v 1.1 2002/10/18 17:04:03 rgardler Exp $ * $Revision: 1.1 $ * $Date: 2002/10/18 17:04:03 $ * * ==================================================================== * * The Apache Software License, Version 1.1 * * Copyright (c) 1999-2001 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, if * any, must include the following acknowlegement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowlegement may appear in the software itself, * if and wherever such third-party acknowlegements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived * from this software without prior written permission. For written * permission, please contact ap...@ap.... * * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written * permission of the Apache Group. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. * */ --- NEW FILE: LICENSE.jtidy --- Java HTML Tidy - JTidy HTML parser and pretty printer Copyright (c) 1998-2000 World Wide Web Consortium (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. Contributing Author(s): Dave Raggett <ds...@w3...> Andy Quick <ac....@sy...> (translation to Java) Gary L Peskin <ga...@fi...> (Java development) Sami Lempinen <sa...@le...> (release management) The contributing author(s) would like to thank all those who helped with testing, bug fixes, and patience. This wouldn't have been possible without all of you. COPYRIGHT NOTICE: This software and documentation is provided "as is," and the copyright holders and contributing author(s) make no representations or warranties, express or implied, including but not limited to, warranties of merchantability or fitness for any particular purpose or that the use of the software or documentation will not infringe any third party patents, copyrights, trademarks or other rights. The copyright holders and contributing author(s) will not be liable for any direct, indirect, special or consequential damages arising out of any use of the software or documentation, even if advised of the possibility of such damage. Permission is hereby granted to use, copy, modify, and distribute this source code, or portions hereof, documentation and executables, for any purpose, without fee, subject to the following restrictions: 1. The origin of this source code must not be misrepresented. 2. Altered versions must be plainly marked as such and must not be misrepresented as being the original source. 3. This Copyright notice may not be removed or altered from any source or altered source distribution. The copyright holders and contributing author(s) specifically permit, without fee, and encourage the use of this source code as a component for supporting the Hypertext Markup Language in commercial products. If you use this source code in a product, acknowledgment is not required but would be appreciated. --- NEW FILE: LICENSE.saafe-commons --- /* * This license is derived from the Apache Software License, Version 1.1 * * ===================================================================== * The WkWyW.net Software License, Version 1.0 * * Copyright (c) 2002 WkWyW.net. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "WkWyW.net", "WkWyW.com", "SAAfE.org", "SAAfE" * "We know What you Want .net", "We know What you Want .com", * "We know What you Want" and "Scalable and Agile Architectures for * flexible EBusiness" must not be used to endorse or promote products * derived from this software without prior written permission. For * written permission, please contact ad...@wk.... * * 5. Products derived from this software may not be called "SAAfE", * "WkWyW", nor may "SAAfE" or "WkWyW" appear in their name, without * prior written permission of WkWyW.net * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the WkWyW.net. For more * information on WkWyW.net, please see * <http://www.wkwyw.net/>. * * This software consists of voluntary contributions made by many * individuals on behalf of many open source software projects * please consult the license files in the legal directory for more * information. * */ --- NEW FILE: LICENSE.xmlunit --- /* ****************************************************************** Copyright (c) 2001, Jeff Martin, Tim Bacon All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the xmlunit.sourceforge.net nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ****************************************************************** */ |
Update of /cvsroot/csms/csms-core/lib In directory usw-pr-cvs1:/tmp/cvs-serv22136 Added Files: commons-jxpath-patched.jar jtidy-04aug2000r7-dev.jar saafe-commons-0.1.0-alpha-dev-200210171832.jar xmlunit0.7.jar Log Message: JAr files the application is dependant on --- NEW FILE: commons-jxpath-patched.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: jtidy-04aug2000r7-dev.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: saafe-commons-0.1.0-alpha-dev-200210171832.jar --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xmlunit0.7.jar --- (This appears to be a binary file; contents omitted.) |
|
From: <rga...@us...> - 2002-10-18 15:19:12
|
Update of /cvsroot/csms/csms-core/src/documentation/images In directory usw-pr-cvs1:/tmp/cvs-serv19444 Removed Files: group-logo.gif project-logo.gif Log Message: Removinf Forrest logo's --- group-logo.gif DELETED --- --- project-logo.gif DELETED --- |
|
From: <rga...@us...> - 2002-10-18 15:13:12
|
Update of /cvsroot/csms/csms-core/src/documentation
In directory usw-pr-cvs1:/tmp/cvs-serv16881
Added Files:
Release-Checklist.txt
Log Message:
Initial import
--- NEW FILE: Release-Checklist.txt ---
- update docbook stylesheets (see bug 155 for process)
- build clean
- build all
- Check for any errors in the unit test reports
- correct any failures and start again from build clean
- update ./src/documentation/xdocs/management/milestones.xml
- update ./src/status.xml
- add date to release element
- move tasks to the necessary release element
- create a new release element (with a due date)
- update ./module.xml
- set version tag to beta, rc1, rc2 etc.
- check dependiencies list is complete
- update ./legal
- ensure licenses for all libs are included
- ensure CVS is up to date
- tag CVS (release_X_Y_Z, where X, Y and Z are version numbers)
- create a branch for this release?
- sign distributions
- publish web site
- update ./module.xml
- increment version number and set tag to alpha
- Generate announcements and HEADER.html
- upload distributions to correct dir
- send announcements to ...
- news to newsgroups: comp.lang.java.softwaretools
- post stories on
*) jakarta news page
*) theserverside.com
*) freshmeat.net
*) www.javaworld.com
*) www.javalobby.com
*) www.jguru.com
*) www.slashdot.org
*) pat...@cs...
(and follow them up)
|
|
From: <rga...@us...> - 2002-10-18 15:06:22
|
Update of /cvsroot/csms/csms-core/src/test/src/org/fanfoot/scoring In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/src/org/fanfoot/scoring Added Files: TestEvent.java TestEventParser.java TestEventParserConfiguration.java TestEventParserConfigurationException.java TestEventPattern.java TestEvents.java TestScores.java TestScoringConfiguration.java TestScoringConfigurationException.java Log Message: Initial test code for scoring application --- NEW FILE: TestEvent.java --- /* * File is generated by 'Unit Tests Generator' developed under * 'Web Test Tools' project at http://sf.net/projects/wttools/ * Copyright (C) 2001 "Artur Hefczyc" <ko...@us...> * to all 'Web Test Tools' subprojects. * * No rigths to files and no responsibility for code generated * by this tool are belonged to author of 'unittestsgen' utility. * * $Id: TestEvent.java,v 1.1 2002/10/18 15:06:18 rgardler Exp $ * $Author: rgardler $ * $Date: 2002/10/18 15:06:18 $ */ package org.fanfoot.scoring; import junit.framework.*; import junit.extensions.*; import java.awt.Toolkit; import java.awt.AWTEvent; import java.awt.event.AWTEventListener; import java.awt.event.WindowEvent; /** * File <code>TestEvent.java</code> is automaticaly generated by * 'unittestsgen' application. Code generator is created for java * sources and for 'junit' package by "Artur Hefczyc" * <ko...@us...><br/> * You should fulfil test methods with proper code for testing * purpose. All methods where you should put your code are below and * their names starts with 'test'.<br/> * You can run unit tests in many ways, however prefered are: * <ul> * <li>Run tests for one class only, for example for this class you * can run tests with command: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" org.fanfoot.scoring.TestEvent * </pre> * </li> * <li>Run tests for all classes in one command call. Code generator * creates also <code>TestAll.class</code> which runs all * available tests: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" TestAll * </pre> * </li> * <li>But the most prefered way is to run all tests from * <em>Ant</em> just after compilation process finished.<br/> * To do it. You need: * <ol> * <li>Ant package from * <a href="http://jakarta.apache.org/">Ant</a> * </li> * <li>JUnit package from * <a href="http://www.junit.org/">JUnit</a> * </li> * <li>Put some code in your <code>build.xml</code> file * to tell Ant how to test your package. Sample code for * Ant's <code>build.xml</code> you can find in created file: * <code>sample-junit-build.xml</code>. And remember to have * <code>junit.jar</code> in CLASSPATH <b>before</b> you run Ant. * To generate reports by ant you must have <code>xalan.jar</code> * in your <code>ANT_HOME/lib/</code> directory. * </li> * </ol> * </li> * </ul> */ public class TestEvent extends org.custommonkey.xmlunit.XMLTestCase { /** * Instance of tested class. */ protected Event varEvent; // Control XML docs String strType = "test"; String strPart1Name = "part1"; String strPart1Value = "valuePart1"; String strPart2Name = "part2"; String strPart2Value = "valuePart2"; String strPart3Name = "part3"; String strPart3Value = ""; String strControl1 = "<event>" + "<uid/>" + "<type>" + strType + "</type>" + "<src/>" + "<" + strPart1Name + ">" + strPart1Value + "</" + strPart1Name + ">" + "<" + strPart2Name + ">" + strPart2Value + "</" + strPart2Name + ">" + "<" + strPart3Name + ">" + strPart3Value + "</" + strPart3Name + ">" + "</event>"; org.w3c.dom.Document docControl1; /** * Public constructor for creating testing class. */ public TestEvent(String name) { super(name); } // end of TestEvent(String name) /** * This main method is used for run tests for this class only * from command line. */ public static void main(String[] args) { junit.textui.TestRunner.run(suite()); } // end of main(Stringp[] args) /** * This method is called every time before particular test execution. * It creates new instance of tested class and it can perform some more * actions which are necessary for performs tests. */ protected void setUp() { setIgnoreWhitespace(true); varEvent = new Event(strType); varEvent.putPart(strPart1Name, strPart1Value); varEvent.putPart(strPart2Name, strPart2Value); varEvent.putPart(strPart3Name, strPart3Value); try { docControl1 = org.saafe.utils.XMLUtils.stringToXML(strControl1); } catch (Exception e) { e.printStackTrace(); fail("Failed to create control documents"); } } // end of setUp() /** * Returns all tests which should be performed for testing class. * By default it returns only name of testing class. Instance of this * is then created with its constructor. */ public static Test suite() { return new TestSuite(TestEvent.class); } // end of suite() /** * for classes which doesn't contain any methods here is one additional * method for performing test on such classes. */ public void testNoMethods() { } /** * Method for testing how works original method: * void appendXMLTo(org.w3c.dom.Document) * from tested class */ public void testAppendXMLTo9554056() { } // end of testAppendXMLTo9554056(org.w3c.dom.Document) /** * Method for testing how works original method: * java.lang.String getPart(java.lang.String) * from tested class */ public void testGetPart1195259493() { } // end of testGetPart1195259493(java.lang.String) /** * Method for testing how works original method: * java.util.Enumeration getPartNames() * from tested class */ public void testGetPartNames() { } // end of testGetPartNames() /** * Method for testing how works original method: * java.util.Hashtable getParts() * from tested class */ public void testGetParts() { } // end of testGetParts() /** * Method for testing how works original method: * java.lang.String getSrc() * from tested class */ public void testGetSrc() { } // end of testGetSrc() /** * Method for testing how works original method: * java.lang.String getType() * from tested class */ public void testGetType() { } // end of testGetType() /** * Method for testing how works original method: * java.lang.String getUID() * from tested class */ public void testGetUID() { } // end of testGetUID() /** * Method for testing how works original method: * void putPart(java.lang.String, java.lang.String) * from tested class */ public void testPutPart11952594931195259493() { } // end of testPutPart11952594931195259493(java.lang.String, java.lang.String) /** * Method for testing how works original method: * void setSrc(java.lang.String) * from tested class */ public void testSetSrc1195259493() { } // end of testSetSrc1195259493(java.lang.String) /** * Method for testing how works original method: * void setType(java.lang.String) * from tested class */ public void testSetType1195259493() { } // end of testSetType1195259493(java.lang.String) /** * Method for testing how works original method: * void setUID(java.lang.String) * from tested class */ public void testSetUID1195259493() { } // end of testSetUID1195259493(java.lang.String) /** * Method for testing how works original method: * org.w3c.dom.Document toXMLDoc() * from tested class */ public void testToXMLDoc() { try { assertXMLEqual("Testing to XML", docControl1, varEvent.toXMLDoc()); } catch (Exception e) { e.printStackTrace(); fail("Failed to convert event to XML Document"); } } // end of testToXMLDoc() } // end of TestEvent --- NEW FILE: TestEventParser.java --- /* * File is generated by 'Unit Tests Generator' developed under * 'Web Test Tools' project at http://sf.net/projects/wttools/ * Copyright (C) 2001 "Artur Hefczyc" <ko...@us...> * to all 'Web Test Tools' subprojects. * * No rigths to files and no responsibility for code generated * by this tool are belonged to author of 'unittestsgen' utility. * * $Id: TestEventParser.java,v 1.1 2002/10/18 15:06:18 rgardler Exp $ * $Author: rgardler $ * $Date: 2002/10/18 15:06:18 $ */ package org.fanfoot.scoring; import java.awt.AWTEvent; import java.awt.Toolkit; import java.awt.event.AWTEventListener; import java.awt.event.WindowEvent; import junit.extensions.*; import junit.framework.*; /** * File <code>TestEventParser.java</code> is automaticaly generated by * 'unittestsgen' application. Code generator is created for java * sources and for 'junit' package by "Artur Hefczyc" * <ko...@us...><br/> * You should fulfil test methods with proper code for testing * purpose. All methods where you should put your code are below and * their names starts with 'test'.<br/> * You can run unit tests in many ways, however prefered are: * <ul> * <li>Run tests for one class only, for example for this class you * can run tests with command: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" org.fanfoot.scoring.TestEventParser * </pre> * </li> * <li>Run tests for all classes in one command call. Code generator * creates also <code>TestAll.class</code> which runs all * available tests: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" TestAll * </pre> * </li> * <li>But the most prefered way is to run all tests from * <em>Ant</em> just after compilation process finished.<br/> * To do it. You need: * <ol> * <li>Ant package from * <a href="http://jakarta.apache.org/">Ant</a> * </li> * <li>JUnit package from * <a href="http://www.junit.org/">JUnit</a> * </li> * <li>Put some code in your <code>build.xml</code> file * to tell Ant how to test your package. Sample code for * Ant's <code>build.xml</code> you can find in created file: * <code>sample-junit-build.xml</code>. And remember to have * <code>junit.jar</code> in CLASSPATH <b>before</b> you run Ant. * To generate reports by ant you must have <code>xalan.jar</code> * in your <code>ANT_HOME/lib/</code> directory. * </li> * </ol> * </li> * </ul> */ public class TestEventParser extends TestCase { protected String strConfURL = "file:///home/rgardler/projects/fanfoot/src/testcases/resources/conf/footballEvents.xml"; protected String strBBCTestURL = "file:///home/rgardler/projects/fanfoot/src/testcases/resources/testHTML/testCommentary_BBC_2.html"; protected String strBBCType = "BBC Text Commentary"; // Events details String strEventsUID="_Sunday, 15 September, 2002" + "_Barclaycard Premiership" + "_Tottenham Hotspur" + "_West Ham Utd"; // Match Details protected int intIndexMatchResult = 0; protected String strMatchHomeTeam = "Tottenham Hotspur"; protected String strMatchHomeScore = "3"; protected String strMatchDate = "Sunday, 15 September, 2002"; protected String strMatchAwayTeam = "West Ham Utd"; protected String strMatchAwayScore = "2"; // Goal 5 details protected int intIndexGoal5 = 0; protected String strNormalTimeMinutesGoal5 = "88"; protected String strNormalTimeSecondsGoal5 = "17"; protected String strInjuryTimeMinutesGoal5 = ""; protected String strInjuryTimeSecondsGoal5 = ""; protected String strGoalScorer5 = "Anthony Gardner"; protected String strScoringTeam5 = "Tottenham"; // Goal 4 details protected int intIndexGoal4 = 1; protected String strNormalTimeMinutesGoal4 = "75"; protected String strNormalTimeSecondsGoal4 = "43"; protected String strInjuryTimeMinutesGoal4 = ""; protected String strInjuryTimeSecondsGoal4 = ""; protected String strGoalScorer4 = "Trevor Sinclair"; // Goal 3 details protected int intIndexGoal3 = 2; protected String strNormalTimeMinutesGoal3 = "69"; protected String strNormalTimeSecondsGoal3 = "57"; protected String strInjuryTimeMinutesGoal3 = ""; protected String strInjuryTimeSecondsGoal3 = ""; protected String strGoalScorer3 = "Teddy Sheringham"; // Goal 2 details protected int intIndexGoal2 = 3; protected String strNormalTimeMinutesGoal2 = "65"; protected String strNormalTimeSecondsGoal2 = "42"; protected String strInjuryTimeMinutesGoal2 = ""; protected String strInjuryTimeSecondsGoal2 = ""; protected String strGoalScorer2 = "Frederic Kanoute"; // Goal 1 details protected int intIndexGoal1 = 4; protected String strNormalTimeMinutesGoal1 = "61"; protected String strNormalTimeSecondsGoal1 = "28"; protected String strInjuryTimeMinutesGoal1 = ""; protected String strInjuryTimeSecondsGoal1 = ""; protected String strGoalScorer1 = "Simon Davies"; // Assist 1 details protected int intIndexAssist1 = 0; protected String strAssistPlayer1 = "Paolo Di Canio"; // Assist 2 details protected int intIndexAssist2 = 1; protected String strAssistPlayer2 = "Paolo Di Canio"; // Assist 3 details protected int intIndexAssist3 = 2; protected String strAssistPlayer3 = "Matthew Etherington"; // Booking 1 details protected int intIndexBooking1 = 0; protected String strBookingPlayer1 = "Jamie Redknapp"; // Booking 2 details protected int intIndexBooking2 = 1; protected String strBookingPlayer2 = "Frederic Kanoute"; // Booking 3 details protected int intIndexBooking3 = 2; protected String strBookingPlayer3 = "Trevor Sinclair"; // Booking 4 details protected int intIndexBooking4 = 3; protected String strBookingPlayer4 = "Goran Bunjevcevic"; // Sending Off 1 details protected int intIndexSendingOff1 = 0; protected String strSendingOffPlayer1 = "Ian Pearce"; protected String strNormalTimeMinutesSendingOff1 = "69"; protected String strNormalTimeSecondsSendingOff1 = "15"; protected String strInjuryTimeMinutesSendingOff1 = ""; protected String strInjuryTimeSecondsSendingOff1 = ""; // Substitution 1 details protected int intIndexSubstitution1 = 0; protected String strSubstitutionPlayerOff1 = "Matthew Etherington"; protected String strSubstitutionPlayerOn1 = "Steffen Iversen"; protected String strNormalTimeMinutesSubstitution1 = "84"; protected String strNormalTimeSecondsSubstitution1 = "25"; protected String strInjuryTimeMinutesSubstitution1 = ""; protected String strInjuryTimeSecondsSubstitution1 = ""; protected String strSubstitutionReason1 = "tactical"; // Substitution 2 details protected int intIndexSubstitution2 = 1; protected String strSubstitutionPlayerOff2 = "Paolo Di Canio"; protected String strSubstitutionPlayerOn2 = "Michael Carrick"; protected String strNormalTimeMinutesSubstitution2 = "78"; protected String strNormalTimeSecondsSubstitution2 = "45"; protected String strInjuryTimeMinutesSubstitution2 = ""; protected String strInjuryTimeSecondsSubstitution2 = ""; protected String strSubstitutionReason2 = "tactical"; // Substitution 3 details protected int intIndexSubstitution3 = 2; protected String strSubstitutionPlayerOff3 = "Mauricio Taricco"; protected String strSubstitutionPlayerOn3 = "Ben Thatcher"; protected String strNormalTimeMinutesSubstitution3 = "45"; protected String strNormalTimeSecondsSubstitution3 = "00"; protected String strInjuryTimeMinutesSubstitution3 = ""; protected String strInjuryTimeSecondsSubstitution3 = ""; protected String strSubstitutionReason3 = "injury"; // Substitution 4 details protected int intIndexSubstitution4 = 3; protected String strSubstitutionPlayerOff4 = "Chris Perry"; protected String strSubstitutionPlayerOn4 = "Gary Doherty"; protected String strNormalTimeMinutesSubstitution4 = "31"; protected String strNormalTimeSecondsSubstitution4 = "47"; protected String strInjuryTimeMinutesSubstitution4 = ""; protected String strInjuryTimeSecondsSubstitution4 = ""; protected String strSubstitutionReason4 = "serious injury"; // Substitution 5 details protected int intIndexSubstitution5 = 4; protected String strSubstitutionPlayerOff5 = "Tomas Repka"; protected String strSubstitutionPlayerOn5 = "Nigel Winterburn"; protected String strNormalTimeMinutesSubstitution5 = "9"; protected String strNormalTimeSecondsSubstitution5 = "20"; protected String strInjuryTimeMinutesSubstitution5 = ""; protected String strInjuryTimeSecondsSubstitution5 = ""; protected String strSubstitutionReason5 = "serious injury"; // Substitution 6 details protected int intIndexSubstitution6 = 5; protected String strSubstitutionPlayerOff6 = "Frederic Kanoute"; protected String strSubstitutionPlayerOn6 = "Jermain Defoe"; protected String strNormalTimeMinutesSubstitution6 = "84"; protected String strNormalTimeSecondsSubstitution6 = "25"; protected String strInjuryTimeMinutesSubstitution6 = ""; protected String strInjuryTimeSecondsSubstitution6 = ""; protected String strSubstitutionReason6 = "tactical"; // TeamStarter Team 1 - Player 1 protected int intIndexTeamStarter1 = 0; protected String strNameTeamStarter1 = "Keller"; /** * Instance of tested class. */ protected EventParser varEventParser; /** * Public constructor for creating testing class. */ public TestEventParser(String name) { super(name); } // end of TestEventParser(String name) /** * This main method is used for run tests for this class only * from command line. */ public static void main(String[] args) { junit.textui.TestRunner.run(suite()); } // end of main(Stringp[] args) /** * This method is called every time before particular test execution. * It creates new instance of tested class and it can perform some more * actions which are necessary for performs tests. */ protected void setUp() { Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener() { public void eventDispatched(AWTEvent event) { WindowEvent we = (WindowEvent) event; if (we.getID() == WindowEvent.WINDOW_OPENED) { we.getWindow().dispose(); } } }, AWTEvent.WINDOW_EVENT_MASK); varEventParser = new org.fanfoot.scoring.EventParser(); try { varEventParser.loadConfiguration(strConfURL); } catch (EventParserConfigurationException epc) { fail("Cannot load parser config file"); } } // end of setUp() /** * Returns all tests which should be performed for testing class. * By default it returns only name of testing class. Instance of this * is then created with its constructor. */ public static Test suite() { return new TestSuite(TestEventParser.class); } // end of suite() /** * for classes which doesn't contain any methods here is one additional * method for performing test on such classes. */ public void testNoMethods() { } /** * Method for testing how works original method: * org.fanfoot.scoring.Events parse(java.lang.String, java.lang.String) * from tested class */ public void testParse11952594931195259493() { Events evts = null; // all the events java.util.ArrayList alEvts; // all the events of a given type Event evt = null; // a single event we are processing try { evts = varEventParser.parse(strBBCTestURL, strBBCType); } catch (Exception e) { e.printStackTrace(); fail("Exception thrown: " + e.toString()); } //Verify events ID assertEquals("Events UID", strEventsUID, evts.getUID()); //Verify game results alEvts = evts.getEventsByType("result"); evt = (Event)alEvts.get(intIndexMatchResult); assertEquals("Home team", strMatchHomeTeam, evt.getPart("homeTeam")); assertEquals("Home score", strMatchHomeScore, evt.getPart("homeScore")); assertEquals("Away team", strMatchAwayTeam, evt.getPart("awayTeam")); assertEquals("Away score", strMatchAwayScore, evt.getPart("awayScore")); assertEquals("Match Date", strMatchDate, evt.getPart("date")); // Verify goals alEvts = evts.getEventsByType("goal"); // Verify the fifth goal details evt = (Event)alEvts.get(intIndexGoal5); assertEquals("Time of Goal 5", strNormalTimeMinutesGoal5, evt.getPart("normalTimeMinutes")); assertEquals("Time of Goal 5", strNormalTimeSecondsGoal5, evt.getPart("normalTimeSeconds")); assertEquals("Time of Goal 5", strInjuryTimeMinutesGoal5, evt.getPart("injuryTimeMinutes")); assertEquals("Time of Goal 5", strInjuryTimeSecondsGoal5, evt.getPart("injuryTimeSeconds")); assertEquals("Goal scorer 5", strGoalScorer5, evt.getPart("player")); // FIXME check the scoring team is captured //assertEquals("Scoring Team goal 5", strScoringTeam5, evt.getPart("scoringTeam")); // Verify the fourth goal details evt = (Event)alEvts.get(intIndexGoal4); assertEquals("Time of Goal 5", strNormalTimeMinutesGoal4, evt.getPart("normalTimeMinutes")); assertEquals("Time of Goal 5", strNormalTimeSecondsGoal4, evt.getPart("normalTimeSeconds")); assertEquals("Time of Goal 5", strInjuryTimeMinutesGoal4, evt.getPart("injuryTimeMinutes")); assertEquals("Time of Goal 5", strInjuryTimeSecondsGoal4, evt.getPart("injuryTimeSeconds")); assertEquals("Goal scorer 4", strGoalScorer4, evt.getPart("player")); // Verify the third goal details evt = (Event)alEvts.get(intIndexGoal3); assertEquals("Time of Goal 5", strNormalTimeMinutesGoal3, evt.getPart("normalTimeMinutes")); assertEquals("Time of Goal 5", strNormalTimeSecondsGoal3, evt.getPart("normalTimeSeconds")); assertEquals("Time of Goal 5", strInjuryTimeMinutesGoal3, evt.getPart("injuryTimeMinutes")); assertEquals("Time of Goal 5", strInjuryTimeSecondsGoal3, evt.getPart("injuryTimeSeconds")); assertEquals("Goal scorer 3", strGoalScorer3, evt.getPart("player")); // Verify the second goal details evt = (Event)alEvts.get(intIndexGoal2); assertEquals("Time of Goal 5", strNormalTimeMinutesGoal2, evt.getPart("normalTimeMinutes")); assertEquals("Time of Goal 5", strNormalTimeSecondsGoal2, evt.getPart("normalTimeSeconds")); assertEquals("Time of Goal 5", strInjuryTimeMinutesGoal2, evt.getPart("injuryTimeMinutes")); assertEquals("Time of Goal 5", strInjuryTimeSecondsGoal2, evt.getPart("injuryTimeSeconds")); assertEquals("Goal scorer 2", strGoalScorer2, evt.getPart("player")); // Verify the first goal details evt = (Event)alEvts.get(intIndexGoal1); assertEquals("Time of Goal 5", strNormalTimeMinutesGoal1, evt.getPart("normalTimeMinutes")); assertEquals("Time of Goal 5", strNormalTimeSecondsGoal1, evt.getPart("normalTimeSeconds")); assertEquals("Time of Goal 5", strInjuryTimeMinutesGoal1, evt.getPart("injuryTimeMinutes")); assertEquals("Time of Goal 5", strInjuryTimeSecondsGoal1, evt.getPart("injuryTimeSeconds")); assertEquals("Goal scorer 1", strGoalScorer1, evt.getPart("player")); // Verify assists alEvts = evts.getEventsByType("assist"); //Verify Assist 1 evt = (Event)alEvts.get(intIndexAssist1); assertEquals("Player for assist 1", strAssistPlayer1, evt.getPart("player")); //Verify Assist 2 evt = (Event)alEvts.get(intIndexAssist2); assertEquals("Player for assist 2", strAssistPlayer2, evt.getPart("player")); //Verify Assist 3 evt = (Event)alEvts.get(intIndexAssist3); assertEquals("Player for assist 3", strAssistPlayer3, evt.getPart("player")); // Verify booking alEvts = evts.getEventsByType("booking"); //Verify Booking 1 evt = (Event)alEvts.get(intIndexBooking1); assertEquals("Player for Booking 1", strBookingPlayer1, evt.getPart("player")); //Verify Booking 2 evt = (Event)alEvts.get(intIndexBooking2); assertEquals("Player for Booking 2", strBookingPlayer2, evt.getPart("player")); //Verify Booking 3 evt = (Event)alEvts.get(intIndexBooking3); assertEquals("Player for Booking 3", strBookingPlayer3, evt.getPart("player")); //Verify Booking 4 evt = (Event)alEvts.get(intIndexBooking4); assertEquals("Player for Booking 4", strBookingPlayer4, evt.getPart("player")); // Verify sendingOff alEvts = evts.getEventsByType("sendingOff"); //Verify Sending Off 1 evt = (Event)alEvts.get(intIndexSendingOff1); assertEquals("Player for Sending Off 1", strSendingOffPlayer1, evt.getPart("player")); assertEquals("Time for Sending Off 1)", strNormalTimeMinutesSendingOff1, evt.getPart("normalTimeMinutes")); assertEquals("Time for Sending Off 1)", strNormalTimeSecondsSendingOff1, evt.getPart("normalTimeSeconds")); assertEquals("Time for Sending Off 1)", strInjuryTimeMinutesSendingOff1, evt.getPart("injuryTimeMinutes")); assertEquals("Time for Sending Off 1)", strInjuryTimeSecondsSendingOff1, evt.getPart("injuryTimeSeconds")); // Verify substitution alEvts = evts.getEventsByType("substitution"); //Verify Substitution 1 evt = (Event)alEvts.get(intIndexSubstitution1); assertEquals("Player Off for Substitution 1", strSubstitutionPlayerOff1, evt.getPart("playerOff")); assertEquals("Player On for Substitution 1", strSubstitutionPlayerOn1, evt.getPart("playerOn")); assertEquals("Time for Substitution 1)", strNormalTimeMinutesSubstitution1, evt.getPart("normalTimeMinutes")); assertEquals("Time for Substitution 1)", strNormalTimeSecondsSubstitution1, evt.getPart("normalTimeSeconds")); assertEquals("Time for Substitution 1)", strInjuryTimeMinutesSubstitution1, evt.getPart("injuryTimeMinutes")); assertEquals("Time for Substitution 1)", strInjuryTimeSecondsSubstitution1, evt.getPart("injuryTimeSeconds")); assertEquals("Reason for Substitution 1", strSubstitutionReason1, evt.getPart("reason")); //Verify Substitution 2 evt = (Event)alEvts.get(intIndexSubstitution2); assertEquals("Player Off for Substitution 2", strSubstitutionPlayerOff2, evt.getPart("playerOff")); assertEquals("Player On for Substitution 2", strSubstitutionPlayerOn2, evt.getPart("playerOn")); assertEquals("Time for Substitution 1)", strNormalTimeMinutesSubstitution2, evt.getPart("normalTimeMinutes")); assertEquals("Time for Substitution 1)", strNormalTimeSecondsSubstitution2, evt.getPart("normalTimeSeconds")); assertEquals("Time for Substitution 1)", strInjuryTimeMinutesSubstitution2, evt.getPart("injuryTimeMinutes")); assertEquals("Time for Substitution 1)", strInjuryTimeSecondsSubstitution2, evt.getPart("injuryTimeSeconds")); assertEquals("Reason for Substitution 2", strSubstitutionReason2, evt.getPart("reason")); //Verify Substitution 3 evt = (Event)alEvts.get(intIndexSubstitution3); assertEquals("Player Off for Substitution 3", strSubstitutionPlayerOff3, evt.getPart("playerOff")); assertEquals("Player On for Substitution 3", strSubstitutionPlayerOn3, evt.getPart("playerOn")); assertEquals("Time for Substitution 1)", strNormalTimeMinutesSubstitution3, evt.getPart("normalTimeMinutes")); assertEquals("Time for Substitution 1)", strNormalTimeSecondsSubstitution3, evt.getPart("normalTimeSeconds")); assertEquals("Time for Substitution 1)", strInjuryTimeMinutesSubstitution3, evt.getPart("injuryTimeMinutes")); assertEquals("Time for Substitution 1)", strInjuryTimeSecondsSubstitution3, evt.getPart("injuryTimeSeconds")); assertEquals("Reason for Substitution 3", strSubstitutionReason3, evt.getPart("reason")); //Verify Substitution 4 evt = (Event)alEvts.get(intIndexSubstitution4); assertEquals("Player Off for Substitution 4", strSubstitutionPlayerOff4, evt.getPart("playerOff")); assertEquals("Player On for Substitution 4", strSubstitutionPlayerOn4, evt.getPart("playerOn")); assertEquals("Time for Substitution 1)", strNormalTimeMinutesSubstitution4, evt.getPart("normalTimeMinutes")); assertEquals("Time for Substitution 1)", strNormalTimeSecondsSubstitution4, evt.getPart("normalTimeSeconds")); assertEquals("Time for Substitution 1)", strInjuryTimeMinutesSubstitution4, evt.getPart("injuryTimeMinutes")); assertEquals("Time for Substitution 1)", strInjuryTimeSecondsSubstitution4, evt.getPart("injuryTimeSeconds")); assertEquals("Reason for Substitution 4", strSubstitutionReason4, evt.getPart("reason")); //Verify Substitution 5 evt = (Event)alEvts.get(intIndexSubstitution5); assertEquals("Player Off for Substitution 5", strSubstitutionPlayerOff5, evt.getPart("playerOff")); assertEquals("Player On for Substitution 5", strSubstitutionPlayerOn5, evt.getPart("playerOn")); assertEquals("Time for Substitution 1)", strNormalTimeMinutesSubstitution5, evt.getPart("normalTimeMinutes")); assertEquals("Time for Substitution 1)", strNormalTimeSecondsSubstitution5, evt.getPart("normalTimeSeconds")); assertEquals("Time for Substitution 1)", strInjuryTimeMinutesSubstitution5, evt.getPart("injuryTimeMinutes")); assertEquals("Time for Substitution 1)", strInjuryTimeSecondsSubstitution5, evt.getPart("injuryTimeSeconds")); assertEquals("Reason for Substitution 5", strSubstitutionReason5, evt.getPart("reason")); //Verify Substitution 6 evt = (Event)alEvts.get(intIndexSubstitution6); assertEquals("Player Off for Substitution 6", strSubstitutionPlayerOff6, evt.getPart("playerOff")); assertEquals("Player On for Substitution 6", strSubstitutionPlayerOn6, evt.getPart("playerOn")); assertEquals("Time for Substitution 1)", strNormalTimeMinutesSubstitution6, evt.getPart("normalTimeMinutes")); assertEquals("Time for Substitution 1)", strNormalTimeSecondsSubstitution6, evt.getPart("normalTimeSeconds")); assertEquals("Time for Substitution 1)", strInjuryTimeMinutesSubstitution6, evt.getPart("injuryTimeMinutes")); assertEquals("Time for Substitution 1)", strInjuryTimeSecondsSubstitution6, evt.getPart("injuryTimeSeconds")); assertEquals("Reason for Substitution 6", strSubstitutionReason6, evt.getPart("reason")); // Verify team starters alEvts = evts.getEventsByType("teamStarter"); //Verify team starter 1 evt = (Event)alEvts.get(intIndexTeamStarter1); assertEquals("Player for Team Starter 1", strNameTeamStarter1, evt.getPart("player")); } // end of testParse11952594931195259493(java.lang.String, java.lang.String) } // end of TestEventParser --- NEW FILE: TestEventParserConfiguration.java --- /* * File is generated by 'Unit Tests Generator' developed under * 'Web Test Tools' project at http://sf.net/projects/wttools/ * Copyright (C) 2001 "Artur Hefczyc" <ko...@us...> * to all 'Web Test Tools' subprojects. * * No rigths to files and no responsibility for code generated * by this tool are belonged to author of 'unittestsgen' utility. * * $Id: TestEventParserConfiguration.java,v 1.1 2002/10/18 15:06:18 rgardler Exp $ * $Author: rgardler $ * $Date: 2002/10/18 15:06:18 $ */ package org.fanfoot.scoring; import java.util.ArrayList; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; import junit.textui.TestRunner; import org.w3c.dom.Node; /** * File <code>TestEventParserConfiguration.java</code> is automaticaly generated by * 'unittestsgen' application. Code generator is created for java * sources and for 'junit' package by "Artur Hefczyc" * <ko...@us...><br/> * You should fulfil test methods with proper code for testing * purpose. All methods where you should put your code are below and * their names starts with 'test'.<br/> * You can run unit tests in many ways, however prefered are: * <ul> * <li>Run tests for one class only, for example for this class you * can run tests with command: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" org.fanfoot.scoring.TestEventParserConfiguration * </pre> * </li> * <li>Run tests for all classes in one command call. Code generator * creates also <code>TestAll.class</code> which runs all * available tests: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" TestAll * </pre> * </li> * <li>But the most prefered way is to run all tests from * <em>Ant</em> just after compilation process finished.<br/> * To do it. You need: * <ol> * <li>Ant package from * <a href="http://jakarta.apache.org/">Ant</a> * </li> * <li>JUnit package from * <a href="http://www.junit.org/">JUnit</a> * </li> * <li>Put some code in your <code>build.xml</code> file * to tell Ant how to test your package. Sample code for * Ant's <code>build.xml</code> you can find in created file: * <code>sample-junit-build.xml</code>. And remember to have * <code>junit.jar</code> in CLASSPATH <b>before</b> you run Ant. * To generate reports by ant you must have <code>xalan.jar</code> * in your <code>ANT_HOME/lib/</code> directory. * </li> * </ol> * </li> * </ul> */ public class TestEventParserConfiguration extends TestCase { /** * Instance of tested class. */ protected EventParserConfiguration varEventParserConfiguration; protected String strURL = "file:///home/rgardler/projects/fanfoot/src/testcases/resources/conf/footballEvents.xml"; protected String strBBCCommentaryType = "BBC Text Commentary"; /** * Public constructor for creating testing class. */ public TestEventParserConfiguration(String name) { super(name); } // end of TestEventParserConfiguration(String name) /** * This main method is used for run tests for this class only * from command line. */ public static void main(String[] args) { TestRunner.run(suite()); } // end of main(Stringp[] args) /** * This method is called every time before particular test execution. * It creates new instance of tested class and it can perform some more * actions which are necessary for performs tests. */ protected void setUp() { try { varEventParserConfiguration = new EventParserConfiguration(strURL); } catch (Exception e) { e.printStackTrace(); fail(); } } // end of setUp() /** * Returns all tests which should be performed for testing class. * By default it returns only name of testing class. Instance of this * is then created with its constructor. */ public static Test suite() { return new TestSuite(TestEventParserConfiguration.class); } // end of suite() /** * for classes which doesn't contain any methods here is one additional * method for performing test on such classes. */ public void testNoMethods() { } public void testGetPatternsForType() { ArrayList al = varEventParserConfiguration.getPatternsForType(strBBCCommentaryType); org.fanfoot.scoring.EventPattern p = (org.fanfoot.scoring.EventPattern)al.get(0); this.assertNotNull("Should have event pattern", p); } public void testGetDuplicateDetectionParts() { java.util.Iterator it = varEventParserConfiguration.getDuplicateDetectionParts("goal"); this.assertTrue("There should be a list of parts to use for duplicate detection on goal events", it.hasNext()); this.assertEquals("First part should be normalTimeMinutes", ("normalTimeMinutes"), (String)it.next()); } public void testGetEventsUIDPattern() { EventPattern pattern = null; try { pattern = varEventParserConfiguration.getEventsUIDPattern(strBBCCommentaryType); } catch (Exception e) { e.printStackTrace(); fail("Threw an exception whilst retrieving Events UID Pattern"); } this.assertNotNull("Should have Events UID node", pattern); } } // end of TestEventParserConfiguration --- NEW FILE: TestEventParserConfigurationException.java --- /* * File is generated by 'Unit Tests Generator' developed under * 'Web Test Tools' project at http://sf.net/projects/wttools/ * Copyright (C) 2001 "Artur Hefczyc" <ko...@us...> * to all 'Web Test Tools' subprojects. * * No rigths to files and no responsibility for code generated * by this tool are belonged to author of 'unittestsgen' utility. * * $Id: TestEventParserConfigurationException.java,v 1.1 2002/10/18 15:06:19 rgardler Exp $ * $Author: rgardler $ * $Date: 2002/10/18 15:06:19 $ */ package org.fanfoot.scoring; import junit.framework.*; import junit.extensions.*; import java.awt.Toolkit; import java.awt.AWTEvent; import java.awt.event.AWTEventListener; import java.awt.event.WindowEvent; /** * File <code>TestEventParserConfigurationException.java</code> is automaticaly generated by * 'unittestsgen' application. Code generator is created for java * sources and for 'junit' package by "Artur Hefczyc" * <ko...@us...><br/> * You should fulfil test methods with proper code for testing * purpose. All methods where you should put your code are below and * their names starts with 'test'.<br/> * You can run unit tests in many ways, however prefered are: * <ul> * <li>Run tests for one class only, for example for this class you * can run tests with command: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" org.fanfoot.scoring.TestEventParserConfigurationException * </pre> * </li> * <li>Run tests for all classes in one command call. Code generator * creates also <code>TestAll.class</code> which runs all * available tests: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" TestAll * </pre> * </li> * <li>But the most prefered way is to run all tests from * <em>Ant</em> just after compilation process finished.<br/> * To do it. You need: * <ol> * <li>Ant package from * <a href="http://jakarta.apache.org/">Ant</a> * </li> * <li>JUnit package from * <a href="http://www.junit.org/">JUnit</a> * </li> * <li>Put some code in your <code>build.xml</code> file * to tell Ant how to test your package. Sample code for * Ant's <code>build.xml</code> you can find in created file: * <code>sample-junit-build.xml</code>. And remember to have * <code>junit.jar</code> in CLASSPATH <b>before</b> you run Ant. * To generate reports by ant you must have <code>xalan.jar</code> * in your <code>ANT_HOME/lib/</code> directory. * </li> * </ol> * </li> * </ul> */ public class TestEventParserConfigurationException extends TestCase { /** * Instance of tested class. */ protected EventParserConfigurationException varEventParserConfigurationException; /** * Public constructor for creating testing class. */ public TestEventParserConfigurationException(String name) { super(name); } // end of TestEventParserConfigurationException(String name) /** * This main method is used for run tests for this class only * from command line. */ public static void main(String[] args) { junit.textui.TestRunner.run(suite()); } // end of main(Stringp[] args) /** * This method is called every time before particular test execution. * It creates new instance of tested class and it can perform some more * actions which are necessary for performs tests. */ protected void setUp() { Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener() { public void eventDispatched(AWTEvent event) { WindowEvent we = ((WindowEvent) event); if (we.getID() == WindowEvent.WINDOW_OPENED) we.getWindow().dispose(); } }, AWTEvent.WINDOW_EVENT_MASK); varEventParserConfigurationException = new org.fanfoot.scoring.EventParserConfigurationException(); } // end of setUp() /** * Returns all tests which should be performed for testing class. * By default it returns only name of testing class. Instance of this * is then created with its constructor. */ public static Test suite() { return new TestSuite(TestEventParserConfigurationException.class); } // end of suite() /** * for classes which doesn't contain any methods here is one additional * method for performing test on such classes. */ public void testNoMethods() { } public void testGetMatchersForType() { } } // end of TestEventParserConfigurationException --- NEW FILE: TestEventPattern.java --- /* * File is generated by 'Unit Tests Generator' developed under * 'Web Test Tools' project at http://sf.net/projects/wttools/ * Copyright (C) 2001 "Artur Hefczyc" <ko...@us...> * to all 'Web Test Tools' subprojects. * * No rigths to files and no responsibility for code generated * by this tool are belonged to author of 'unittestsgen' utility. * * $Id: TestEventPattern.java,v 1.1 2002/10/18 15:06:19 rgardler Exp $ * $Author: rgardler $ * $Date: 2002/10/18 15:06:19 $ */ package org.fanfoot.scoring; import junit.framework.*; import junit.extensions.*; import java.awt.Toolkit; import java.awt.AWTEvent; import java.awt.event.AWTEventListener; import java.awt.event.WindowEvent; /** * File <code>TestEventPattern.java</code> is automaticaly generated by * 'unittestsgen' application. Code generator is created for java * sources and for 'junit' package by "Artur Hefczyc" * <ko...@us...><br/> * You should fulfil test methods with proper code for testing * purpose. All methods where you should put your code are below and * their names starts with 'test'.<br/> * You can run unit tests in many ways, however prefered are: * <ul> * <li>Run tests for one class only, for example for this class you * can run tests with command: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" org.fanfoot.scoring.TestEventPattern * </pre> * </li> * <li>Run tests for all classes in one command call. Code generator * creates also <code>TestAll.class</code> which runs all * available tests: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" TestAll * </pre> * </li> * <li>But the most prefered way is to run all tests from * <em>Ant</em> just after compilation process finished.<br/> * To do it. You need: * <ol> * <li>Ant package from * <a href="http://jakarta.apache.org/">Ant</a> * </li> * <li>JUnit package from * <a href="http://www.junit.org/">JUnit</a> * </li> * <li>Put some code in your <code>build.xml</code> file * to tell Ant how to test your package. Sample code for * Ant's <code>build.xml</code> you can find in created file: * <code>sample-junit-build.xml</code>. And remember to have * <code>junit.jar</code> in CLASSPATH <b>before</b> you run Ant. * To generate reports by ant you must have <code>xalan.jar</code> * in your <code>ANT_HOME/lib/</code> directory. * </li> * </ol> * </li> * </ul> */ public class TestEventPattern extends TestCase { /** * Instance of tested class. */ protected EventPattern varEventPattern; /** * Public constructor for creating testing class. */ public TestEventPattern(String name) { super(name); } // end of TestEventPattern(String name) /** * This main method is used for run tests for this class only * from command line. */ public static void main(String[] args) { junit.textui.TestRunner.run(suite()); } // end of main(Stringp[] args) /** * This method is called every time before particular test execution. * It creates new instance of tested class and it can perform some more * actions which are necessary for performs tests. */ protected void setUp() { // Initialize your variable(s) here // for example: // varEventPattern = new EventPattern(...); // But note that there is no default constructor in EventPattern } // end of setUp() /** * Returns all tests which should be performed for testing class. * By default it returns only name of testing class. Instance of this * is then created with its constructor. */ public static Test suite() { return new TestSuite(TestEventPattern.class); } // end of suite() /** * for classes which doesn't contain any methods here is one additional * method for performing test on such classes. */ public void testNoMethods() { } /** * Method for testing how works original method: * java.lang.String getCapturingGroup(int) * from tested class */ public void testGetCapturingGroup104431() { } // end of testGetCapturingGroup104431(int) /** * Method for testing how works original method: * java.lang.String getPartName(int) * from tested class */ public void testGetPartName104431() { } // end of testGetPartName104431(int) /** * Method for testing how works original method: * java.util.regex.Pattern getRegexPattern() * from tested class */ public void testGetRegexPattern() { } // end of testGetRegexPattern() /** * Method for testing how works original method: * java.lang.String getType() * from tested class */ public void testGetType() { } // end of testGetType() /** * Method for testing how works original method: * void setCapturingGroup(int, java.lang.String) * from tested class */ public void testSetCapturingGroup1044311195259493() { } // end of testSetCapturingGroup1044311195259493(int, java.lang.String) /** * Method for testing how works original method: * void setRegexPattern(java.util.regex.Pattern) * from tested class */ public void testSetRegexPattern2037224663() { } // end of testSetRegexPattern2037224663(java.util.regex.Pattern) /** * Method for testing how works original method: * void setType(java.lang.String) * from tested class */ public void testSetType1195259493() { } // end of testSetType1195259493(java.lang.String) } // end of TestEventPattern --- NEW FILE: TestEvents.java --- /* * File is generated by 'Unit Tests Generator' developed under * 'Web Test Tools' project at http://sf.net/projects/wttools/ * Copyright (C) 2001 "Artur Hefczyc" <ko...@us...> * to all 'Web Test Tools' subprojects. * * No rigths to files and no responsibility for code generated * by this tool are belonged to author of 'unittestsgen' utility. * * $Id: TestEvents.java,v 1.1 2002/10/18 15:06:19 rgardler Exp $ * $Author: rgardler $ * $Date: 2002/10/18 15:06:19 $ */ package org.fanfoot.scoring; import junit.framework.*; import junit.extensions.*; import java.awt.Toolkit; import java.awt.AWTEvent; import java.awt.event.AWTEventListener; import java.awt.event.WindowEvent; /** * File <code>TestEvents.java</code> is automaticaly generated by * 'unittestsgen' application. Code generator is created for java * sources and for 'junit' package by "Artur Hefczyc" * <ko...@us...><br/> * You should fulfil test methods with proper code for testing * purpose. All methods where you should put your code are below and * their names starts with 'test'.<br/> * You can run unit tests in many ways, however prefered are: * <ul> * <li>Run tests for one class only, for example for this class you * can run tests with command: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" org.fanfoot.scoring.TestEvents * </pre> * </li> * <li>Run tests for all classes in one command call. Code generator * creates also <code>TestAll.class</code> which runs all * available tests: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" TestAll * </pre> * </li> * <li>But the most prefered way is to run all tests from * <em>Ant</em> just after compilation process finished.<br/> * To do it. You need: * <ol> * <li>Ant package from * <a href="http://jakarta.apache.org/">Ant</a> * </li> * <li>JUnit package from * <a href="http://www.junit.org/">JUnit</a> * </li> * <li>Put some code in your <code>build.xml</code> file * to tell Ant how to test your package. Sample code for * Ant's <code>build.xml</code> you can find in created file: * <code>sample-junit-build.xml</code>. And remember to have * <code>junit.jar</code> in CLASSPATH <b>before</b> you run Ant. * To generate reports by ant you must have <code>xalan.jar</code> * in your <code>ANT_HOME/lib/</code> directory. * </li> * </ol> * </li> * </ul> */ public class TestEvents extends TestCase { /** * Instance of tested class. */ protected Events varEvents; /** * Public constructor for creating testing class. */ public TestEvents(String name) { super(name); } // end of TestEvents(String name) /** * This main method is used for run tests for this class only * from command line. */ public static void main(String[] args) { junit.textui.TestRunner.run(suite()); } // end of main(Stringp[] args) /** * This method is called every time before particular test execution. * It creates new instance of tested class and it can perform some more * actions which are necessary for performs tests. */ protected void setUp() { } // end of setUp() /** * Returns all tests which should be performed for testing class. * By default it returns only name of testing class. Instance of this * is then created with its constructor. */ public static Test suite() { return new TestSuite(TestEvents.class); } // end of suite() /** * for classes which doesn't contain any methods here is one additional * method for performing test on such classes. */ public void testNoMethods() { } /** * Method for testing how works original method: * org.fanfoot.scoring.Event getEvent(int) * from tested class */ public void testGetEvent104431() { } // end of testGetEvent104431(int) /** * Method for testing how works original method: * java.util.List getEvents() * from tested class */ public void testGetEvents() { } // end of testGetEvents() /** * Method for testing how works original method: * void putEvent(org.fanfoot.scoring.Event) * from tested class */ public void testPutEvent1547041308() { } // end of testPutEvent1547041308(org.fanfoot.scoring.Event) /** * Method for testing how works original method: * int size() * from tested class */ public void testSize() { } // end of testSize() } // end of TestEvents --- NEW FILE: TestScores.java --- /* * File is generated by 'Unit Tests Generator' developed under * 'Web Test Tools' project at http://sf.net/projects/wttools/ * Copyright (C) 2001 "Artur Hefczyc" <ko...@us...> * to all 'Web Test Tools' subprojects. * * No rigths to files and no responsibility for code generated * by this tool are belonged to author of 'unittestsgen' utility. * * $Id: TestScores.java,v 1.1 2002/10/18 15:06:19 rgardler Exp $ * $Author: rgardler $ * $Date: 2002/10/18 15:06:19 $ */ package org.fanfoot.scoring; import java.awt.AWTEvent; import java.awt.Toolkit; import java.awt.event.AWTEventListener; import java.awt.event.WindowEvent; import junit.extensions.*; import junit.framework.*; /** * File <code>TestScores.java</code> is automaticaly generated by * 'unittestsgen' application. Code generator is created for java * sources and for 'junit' package by "Artur Hefczyc" * <ko...@us...><br/> * You should fulfil test methods with proper code for testing * purpose. All methods where you should put your code are below and * their names starts with 'test'.<br/> * You can run unit tests in many ways, however prefered are: * <ul> * <li>Run tests for one class only, for example for this class you * can run tests with command: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" org.fanfoot.scoring.TestScores * </pre> * </li> * <li>Run tests for all classes in one command call. Code generator * creates also <code>TestAll.class</code> which runs all * available tests: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" TestAll * </pre> * </li> * <li>But the most prefered way is to run all tests from * <em>Ant</em> just after compilation process finished.<br/> * To do it. You need: * <ol> * <li>Ant package from * <a href="http://jakarta.apache.org/">Ant</a> * </li> * <li>JUnit package from * <a href="http://www.junit.org/">JUnit</a> * </li> * <li>Put some code in your <code>build.xml</code> file * to tell Ant how to test your package. Sample code for * Ant's <code>build.xml</code> you can find in created file: * <code>sample-junit-build.xml</code>. And remember to have * <code>junit.jar</code> in CLASSPATH <b>before</b> you run Ant. * To generate reports by ant you must have <code>xalan.jar</code> * in your <code>ANT_HOME/lib/</code> directory. * </li> * </ol> * </li> * </ul> */ public class TestScores extends org.custommonkey.xmlunit.XMLTestCase { /** * Instance of tested class. */ protected Scores varScores; String BBCTestScoringConfigURL = "file:///home/rgardler/projects/fanfoot/src/testcases/resources/conf/BBCTestScoringConfig.xsl"; org.w3c.dom.Document docControl1; String strControl1 = "<score>" + "It works!" + "</score>"; java.util.logging.Logger logger = java.util.logging.Logger.getLogger("org.fanfoot.scoring"); /** * Public constructor for creating testing class. */ public TestScores(String name) { super(name); } // end of TestScores(String name) /** * This main method is used for run tests for this class only * from command line. */ public static void main(String[] args) { junit.textui.TestRunner.run(suite()); } // end of main(Stringp[] args) /** * This method is called every time before particular test execution. * It creates new instance of tested class and it can perform some more * actions which are necessary for performs tests. */ protected void setUp() { setIgnoreWhitespace(true); Events evts = new Events(); Event evt = new Event("test1"); evt.putPart("part1", "value1"); evts.add(evt); try { docControl1 = org.saafe.utils.XMLUtils.stringToXML(strControl1); } catch (Exception e) { e.printStackTrace(); fail("Failed to create control documents: " + e); } ScoringConfiguration sc = new ScoringConfiguration( BBCTestScoringConfigURL); try { varScores = new Scores(evts, sc); } catch (Exception e) { fail("Unable to set up the scores object: " + e); } } // end of setUp() /** * Returns all tests which should be performed for testing class. * By default it returns only name of testing class. Instance of this * is then created with its constructor. */ public static Test suite() { return new TestSuite(TestScores.class); } // end of suite() /** * for classes which doesn't contain any methods here is one additional * method for performing test on such classes. */ public void testNoMethods() { } /** * Method for testing how works original method: * org.w3c.dom.Document calculate() * from tested class */ public void testCalculate() { } // end of testCalculate() /** * Method for testing how works original method: * org.fanfoot.scoring.ScoringConfiguration getConfiguration() * from tested class */ public void testGetConfiguration() { } // end of testGetConfiguration() /** * Method for testing how works original method: * org.fanfoot.scoring.Events getEvents() * from tested class */ public void testGetEvents() { } // end of testGetEvents() /** * Method for testing how works original method: * org.w3c.dom.Document getScoresDocument() * from tested class */ public void testGetScoresDocument() { org.w3c.dom.Document doc = varScores.getScoresDocument(); try { logger.finest("Scores XML is " + org.saafe.utils.XMLUtils.xmlToString(doc)); } catch (Exception e) { logger.warning("Unable to convert scores doc to a string (for logging purposes): " + e); // do nothing as this is nothing to do with the tests } assertXMLEqual("Generated scores document", docControl1, doc); } // end of testGetScoresDocument() /** * Method for testing how works original method: * void setConfiguration(org.fanfoot.scoring.ScoringConfiguration) * from tested class */ public void testSetConfiguration1814716963() { } // end of testSetConfiguration1814716963(org.fanfoot.scoring.ScoringConfiguration) /** * Method for testing how works original method: * void setEvents(org.fanfoot.scoring.Events) * from tested class */ public void testSetEvents713640177() { } // end of testSetEvents713640177(org.fanfoot.scoring.Events) /** * Method for testing how works original method: * void setScoresDocument(org.w3c.dom.Document) * from tested class */ public void testSetScoresDocument9554056() { } // end of testSetScoresDocument9554056(org.w3c.dom.Document) } // end of TestScores --- NEW ... [truncated message content] |
|
From: <rga...@us...> - 2002-10-18 15:06:22
|
Update of /cvsroot/csms/csms-core/src/test/src/org/fanfoot/gui In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/src/org/fanfoot/gui Added Files: TestControlCentre.java Log Message: Initial test code for scoring application --- NEW FILE: TestControlCentre.java --- /* * File is generated by 'Unit Tests Generator' developed under * 'Web Test Tools' project at http://sf.net/projects/wttools/ * Copyright (C) 2001 "Artur Hefczyc" <ko...@us...> * to all 'Web Test Tools' subprojects. * * No rigths to files and no responsibility for code generated * by this tool are belonged to author of 'unittestsgen' utility. * * $Id: TestControlCentre.java,v 1.1 2002/10/18 15:06:18 rgardler Exp $ * $Author: rgardler $ * $Date: 2002/10/18 15:06:18 $ */ package org.fanfoot.gui; import junit.framework.*; import junit.extensions.*; import java.awt.Toolkit; import java.awt.AWTEvent; import java.awt.event.AWTEventListener; import java.awt.event.WindowEvent; /** * File <code>TestControlCentre.java</code> is automaticaly generated by * 'unittestsgen' application. Code generator is created for java * sources and for 'junit' package by "Artur Hefczyc" * <ko...@us...><br/> * You should fulfil test methods with proper code for testing * purpose. All methods where you should put your code are below and * their names starts with 'test'.<br/> * You can run unit tests in many ways, however prefered are: * <ul> * <li>Run tests for one class only, for example for this class you * can run tests with command: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" org.fanfoot.gui.TestControlCentre * </pre> * </li> * <li>Run tests for all classes in one command call. Code generator * creates also <code>TestAll.class</code> which runs all * available tests: * <pre> * java -cp "jar/thisjarfile.jar;lib/junit.jar" TestAll * </pre> * </li> * <li>But the most prefered way is to run all tests from * <em>Ant</em> just after compilation process finished.<br/> * To do it. You need: * <ol> * <li>Ant package from * <a href="http://jakarta.apache.org/">Ant</a> * </li> * <li>JUnit package from * <a href="http://www.junit.org/">JUnit</a> * </li> * <li>Put some code in your <code>build.xml</code> file * to tell Ant how to test your package. Sample code for * Ant's <code>build.xml</code> you can find in created file: * <code>sample-junit-build.xml</code>. And remember to have * <code>junit.jar</code> in CLASSPATH <b>before</b> you run Ant. * To generate reports by ant you must have <code>xalan.jar</code> * in your <code>ANT_HOME/lib/</code> directory. * </li> * </ol> * </li> * </ul> */ public class TestControlCentre extends TestCase { /** * Instance of tested class. */ protected ControlCentre varControlCentre; /** * Public constructor for creating testing class. */ public TestControlCentre(String name) { super(name); } // end of TestControlCentre(String name) /** * This main method is used for run tests for this class only * from command line. */ public static void main(String[] args) { junit.textui.TestRunner.run(suite()); } // end of main(Stringp[] args) /** * This method is called every time before particular test execution. * It creates new instance of tested class and it can perform some more * actions which are necessary for performs tests. */ protected void setUp() { try { varControlCentre = new org.fanfoot.gui.ControlCentre(); } catch(Exception e){ varControlCentre = null; } } // end of setUp() /** * Returns all tests which should be performed for testing class. * By default it returns only name of testing class. Instance of this * is then created with its constructor. */ public static Test suite() { return new TestSuite(TestControlCentre.class); } // end of suite() /** * for classes which doesn't contain any methods here is one additional * method for performing test on such classes. */ public void testNoMethods() { } /** * Method for testing how works original method: * void access$000( ... ) * from tested class */ public void testAccess$000607584050671810214() { } // end of testAccess$000607584050671810214( ... ) /** * Method for testing how works original method: * void access$100( ... ) * from tested class */ public void testAccess$1006075840501002842412() { } // end of testAccess$1006075840501002842412( ... ) /** * Method for testing how works original method: * void access$200( ... ) * from tested class */ public void testAccess$2006075840501002842412() { } // end of testAccess$2006075840501002842412( ... ) /** * Method for testing how works original method: * void access$300( ... ) * from tested class */ public void testAccess$3006075840501002842412() { } // end of testAccess$3006075840501002842412( ... ) /** * Method for testing how works original method: * void access$400( ... ) * from tested class */ public void testAccess$4006075840501002842412() { } // end of testAccess$4006075840501002842412( ... ) /** * Method for testing how works original method: * java.lang.Class class$(java.lang.String) * from tested class */ public void testClass$1195259493() { } // end of testClass$1195259493(java.lang.String) /** * Method for testing how works original method: * void main(java.lang.String[]) * from tested class */ public void testMain1888107655() { } // end of testMain1888107655(java.lang.String[]) } // end of TestControlCentre |
Update of /cvsroot/csms/csms-core/src/test/resources/testHTML/testCommentary_BBC_3_files
In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/resources/testHTML/testCommentary_BBC_3_files
Added Files:
copyright_bbc.gif go.gif grey_pixel.gif livetext.gif
livetext_myclub_full.gif logo.gif news.gif nothing.gif
nothing_002.gif nothing_003.gif o.gif red_pixel.gif
sol_banner.gif sport.js sport_002.css sportacademy.gif
stats_banner.gif t.gif weather.gif
Log Message:
Initial test code for scoring application
--- NEW FILE: copyright_bbc.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: go.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: grey_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext_myclub_full.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: logo.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: news.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_002.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_003.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: o.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: red_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sol_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sport.js ---
/* pop-up code used by desktop scoreboard and ultra items */
function popup(url)
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=370,height=220');");
}
/* launch code for avconsole */
function launch_main_player()
{ clickmain=window.open("/sport3/worldcup2002/avconsole/avc_main.htm","clickmain","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,top=100,left=100,width=432,height=440");
}
function getPlatform()
{
var myUserAgent;
myUserAgent = navigator.userAgent.toLowerCase();
if ( (myUserAgent.indexOf("win") != -1) ||
(myUserAgent.indexOf("16bit") != -1)
)
{
return "win";
}
if (myUserAgent.indexOf("mac") != -1)
{
return "mac";
}
if (myUserAgent.indexOf("x11") != -1)
{
return "unx";
}
return "other";
}
function getBrowserType()
{
var myUserAgent;
var myMajor;
myUserAgent = navigator.userAgent.toLowerCase();
myMajor = parseInt(navigator.appVersion);
if( (myUserAgent.indexOf('mozilla') != -1) &&
(myUserAgent.indexOf('spoofer') == -1) &&
(myUserAgent.indexOf('compatible') == -1) &&
(myUserAgent.indexOf('opera') == -1) &&
(myUserAgent.indexOf('webtv') == -1)
)
{
if (myMajor > 3)
{
return "nav4";
}
return "nav";
}
if (myUserAgent.indexOf("msie") != -1)
{
if (myMajor > 3)
{
return "ie4";
}
return "ie";
}
return "other";
}
function request_launch()
{
if (getPlatform() != "other" &&
(getBrowserType() == "ie4" || getBrowserType() == "nav4")) {
launch_main_player();
} else {
self.location.href="/hi/english/static/audio_video/avconsole/old_browser.stm";
}
return;
}
function popUp(pageurl,width,height,scroll)
{
day = new Date();
id = day.getTime();
if (window.screen)
{
lpos = (screen.width/2)-(width/2);
hpos = (screen.height/2)-(height/2);
}
else
{
lpos = 1;
hpos = 1;
}
eval("bbcnews"+id+" = window.open('"+pageurl+"','"+id+"','toolbar=0,scrollbars="+scroll+",location=0,status=0,menubar=0,resizable=0,width="+width+",height="+height+",left="+lpos+",top="+hpos+"')");
}
--- NEW FILE: sport_002.css ---
BODY {
background-color: #FFFFCC;
margin:0px;
}
.idtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
B {
font-weight : bold;
}
TABLE, TD, TR {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
/*anchor cows */
A:link {
text-decoration : none;
color : #333366;
}
A:visited {
text-decoration : none;
color : #666699;
}
A:hover {
color : #CC3300;
}
A.index:link {
font-size : 11px;
color : #333366;
}
A.index:visited {
font-size : 11px;
color : #333366;
}
A.index:hover {
color : #CC3300;
}
/*storybody*/
TD {
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
FONT {
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.bodytext {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.headlinestory {
font-size : 130%;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
padding-bottom : 8px;
}
.inlineimage {
padding-bottom : 6px;
}
.caption {
color : #333333;
padding-top : 2px;
}
/*storyrhs*/
.puffbox {
font-family : Verdana, Arial, Helvetica, Sans-serif;
/* width : 170px; */
}
.rhslist {
background : #FFFFCC;
font-family : Verdana, Arial, Helvetica, Sans-serif;
width : 170px;
padding-bottom : 4px;
}
.rhshead {
color : #CC3300;
padding-top : 4px;
font-weight : bold;
}
.seealsodate {
background : #FFFFCC;
font-size : 11px;
}
.disclaimer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
.promotextbold {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 90%;
font-weight : bold;
color : #000000;
}
/*end of rhs*/
.fromnews {
font-size: 10px;
color : #999999;
padding-top : 4px;
font-weight : bold;
text-align : left;
}
.box {
width : 150px;
background : #FFFFCC;
background-image : url(/furniture/nothing.gif);
float : right;
text-align : left;
}
.itemsm {
padding-left : 8px;
background : #FFFFFF url("/furniture/aro_blue.gif") 2px 1px no-repeat;
}
.h1 {
font-size : 124%;
}
.h2 {
font-size : 112%;
}
.h3 {
font-size : 100%;
}
.factheader {
background-color : #003399;
font-weight : bold;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factboxbody {
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
background-color : #FFFFFF;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxhead {
background-color: #003399;
color : #FFFF66;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxbody {
padding : 5px;
letter-spacing: normal;
color : #999999;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-weight : bold;
font-size : 12px;
background-color : #FFFFFF;
}
.aitem {
margin-top : 1px;
padding-left : 12px;
background-image : url("/furniture/aro_blue.gif");
background-repeat: no-repeat;
/* aitem defined with no background colour - use inline definition */
}
.newsinvideo {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/video_icon.gif") no-repeat;
}
.newsindepth {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/indepth_icon.gif") no-repeat;
}
.newsinaudio {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/audio_icon.gif") no-repeat;
}
.newsintalkingpoint {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/talkingpoint_icon.gif") no-repeat;
}
.alsolist {
clear : both;
}
.avindex {
font-weight : normal;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666666;
}
.avreport {
padding : 3px;
letter-spacing: normal;
}
.alsohead {
margin-top : 2px;
margin-bottom : 2px;
color : #666666;
font-weight : bold;
font-size : 11px;
}
.head{
font-weight : bold;
color : #CC3300;
line-height : 12px;
font-size : 12px;
}
.avbutton {
width : 170px;
background : #CCCCFF;
font-size : 11px;
color : #666666;
text-align: right;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
}
.date {
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.sectiontitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 15px;
font-weight : bold;
color : #CC3300;
}
.crumbtraila {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color: #99CCCC;
font-size : 11px;
}
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
}
.footerarrow {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #CC3300;
font-weight : bold;
}
.footerpiping {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 100%;
color : #CC3333;
font-weight : bold;
}
.otherlanguages {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #CC6666;
}
.toprightnav {
font-size : 12px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.puffboxhead {
background-color: #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
.wsboxhead {
background-color: #FFFFFF;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
/*get rid of this*/
.wsbottombox {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 90%;
font-weight: bold;
color: #003366;
background-color : #CCCC99;
}
/* left nav old */
.rootSectionSelected {
font-weight : 600;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color : #FF9900;
text-align : right;
color : #333399;
}
.rootSection {
font-weight : 600;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
background-color : #FFFFCC;
}
.subList {
background-color: #FFCC00;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
}
.cc3300 {
background-color: #CC3300;
}
.ccoooo {
background-color: #CC0000;
}
.ffcc00 {
background-color: #FFCC00;
}
/* left nav new */
.sectionStyle
{
line-height : 15px;
letter-spacing : 0px;
font-weight : 600;
}
.sectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
font-weight : 600;
}
.sectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
font-weight : 600;
}
.Selected {
background-color : #CC3300;
font-size : 13px;
}
.nonSelected {
font-size : 13px;
}
.subSectionStyle
{
line-height : 15px;
letter-spacing : 0px;
}
.subSectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
}
.subSectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
}
/*av left hand side*/
.avbox {
background-color : #FFFFFF;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
margin-right : 2px;
margin-left : 2px;
width : 95px;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.avboxblue {
background-color : #003399;
}
.avtightgreycenter {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
text-align: center;
}
.avtightgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
}
.avgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #666666;
}
.tighterB {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
font-weight : 700;
}
.eventighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -2px;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.tighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.search {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
font-weight : bold;
color : #000000;
}
.liveandcoming {
background: #ffffff;
border: thin #000000;
width : 170px;
padding-left : 3px;
padding-right : 3px
}
.livecominghead {
color : #CC3300;
font-weight : bold;
}
.liveandcomingbutton {
width : 170px;
background : #CCCCFF;
font-size : 10px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
padding-left : 3px;
padding-right : 3px
}
/* sports */
.fixtureText {
font-size : 80%;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.statheader {
background-color : #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.statsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.qualifyText TD {
font-size : 80%;
}
.headlineindexa {
font-weight : bold;
font-size : 130%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexb {
font-weight : bold;
font-size : 110%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexc {
font-weight : bold;
font-size : 95%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.otherstorieshead {
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #CC3300;
font-size : 12px;
}
.specialstext{
padding : 10px
}
.extrastext {
color : #CC3300;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.resultstext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
.resultsscoretext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #999999
}
.narrowtext {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowtext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowgreytext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
color : #CCCCCC;
letter-spacing: -1pt;
}
.teamaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/aro_blue.gif") no-repeat;
}
.megaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.newmegaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.meganolink {
padding-left : 2px;
color: #999966;
}
.megawhite {
color: #FFFFFF;
font-weight : bold;
}
.megaheader {
font-family: Verdana, Arial, Helvetica;
padding-left : 2px;
color: #990000;
background: #FFFF99;
font-weight: bold;
}
.searchbanner {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #FFFFCC;
font-size : 11px;
}
.redstatsheader
{
font-family: Verdana, Arial, Helvetica;
color : #CC3300;
font-size : 11px;
}
.statstext TD
{
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
/*av rhs*/
.avheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #CCCCCC;
font-size: 11px;
font-weight: 600;
}
.avsubheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-size: 11px;
font-weight: 600;
}
.avtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
/* services nav */
.servicestitle {
color : #666666;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size:11px;
}
.servicesnav {
font-size:11px;
text-align:right;
padding-right:4px;
padding-top:2px;
padding-bottom:2px;
}
.fieldtitle {
font-weight : normal;
color : #000000;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.greentitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 12px;
font-weight : bold;
}
.redalert {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #cc3300;
font-size: 11px;
font-weight : bold;
}
.greentext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 11px;
}
.redtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
color : #CC3300;
}
.emailnewshead {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-weight: bold;
}
/*bbci additions*/
.bbcpageShadow { background:#666666 url(/furniture/nav/global_toolbar/bg.gif); }
.bbcpageShadowLeft {background:#999999 url(/furniture/nav/global_toolbar/bg.gif) repeat-y;}
.bbcpageBar { background:#999999 url(/furniture/nav/global_toolbar/v.gif) repeat-y; }
.bbcpageBar2 { background:#999999 url(/furniture/nav/global_toolbar/v.gif?) repeat-y; }
.bbcpageSearchL { background:#000099 url(/furniture/nav/global_toolbar/sl.gif) no-repeat;}
.bbcpageSearch { background:#000099 url(/furniture/nav/global_toolbar/st.gif) repeat-x;}
.bbcpageSearch2 { background:#000099 url(/furniture/nav/global_toolbar/st.gif?) repeat-x;}
.bbcpageSearchR { background:#999999 url(/furniture/nav/global_toolbar/sr.gif) no-repeat; }
.bbcpageBlack {background-color:#000000;}
.bbcpageGrey {background:#999999;}
.bbcpageGreyT {background:#999999 url(/furniture/nav/global_toolbar/t.gif)}
.bbcpageWhite,a.bbcpageWhite,a.bbcpageWhite:link,a.bbcpageWhite:hover,a.bbcpageWhite:visited{color:#ffffff;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
.bbcpageCream {color:#99CCCC;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
--- NEW FILE: sportacademy.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: stats_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: t.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: weather.gif ---
(This appears to be a binary file; contents omitted.)
|
Update of /cvsroot/csms/csms-core/src/test/resources/testHTML/testCommentary_BBC_2_files
In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/resources/testHTML/testCommentary_BBC_2_files
Added Files:
copyright_bbc.gif go.gif grey_pixel.gif livetext.gif
livetext_myclub_full.gif logo.gif news.gif nothing.gif
nothing_002.gif nothing_003.gif o.gif red_pixel.gif
sol_banner.gif sport.js sport_002.css sportacademy.gif
stats_banner.gif t.gif weather.gif
Log Message:
Initial test code for scoring application
--- NEW FILE: copyright_bbc.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: go.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: grey_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext_myclub_full.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: logo.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: news.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_002.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_003.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: o.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: red_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sol_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sport.js ---
/* pop-up code used by desktop scoreboard and ultra items */
function popup(url)
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=370,height=220');");
}
/* launch code for avconsole */
function launch_main_player()
{ clickmain=window.open("/sport3/worldcup2002/avconsole/avc_main.htm","clickmain","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,top=100,left=100,width=432,height=440");
}
function getPlatform()
{
var myUserAgent;
myUserAgent = navigator.userAgent.toLowerCase();
if ( (myUserAgent.indexOf("win") != -1) ||
(myUserAgent.indexOf("16bit") != -1)
)
{
return "win";
}
if (myUserAgent.indexOf("mac") != -1)
{
return "mac";
}
if (myUserAgent.indexOf("x11") != -1)
{
return "unx";
}
return "other";
}
function getBrowserType()
{
var myUserAgent;
var myMajor;
myUserAgent = navigator.userAgent.toLowerCase();
myMajor = parseInt(navigator.appVersion);
if( (myUserAgent.indexOf('mozilla') != -1) &&
(myUserAgent.indexOf('spoofer') == -1) &&
(myUserAgent.indexOf('compatible') == -1) &&
(myUserAgent.indexOf('opera') == -1) &&
(myUserAgent.indexOf('webtv') == -1)
)
{
if (myMajor > 3)
{
return "nav4";
}
return "nav";
}
if (myUserAgent.indexOf("msie") != -1)
{
if (myMajor > 3)
{
return "ie4";
}
return "ie";
}
return "other";
}
function request_launch()
{
if (getPlatform() != "other" &&
(getBrowserType() == "ie4" || getBrowserType() == "nav4")) {
launch_main_player();
} else {
self.location.href="/hi/english/static/audio_video/avconsole/old_browser.stm";
}
return;
}
function popUp(pageurl,width,height,scroll)
{
day = new Date();
id = day.getTime();
if (window.screen)
{
lpos = (screen.width/2)-(width/2);
hpos = (screen.height/2)-(height/2);
}
else
{
lpos = 1;
hpos = 1;
}
eval("bbcnews"+id+" = window.open('"+pageurl+"','"+id+"','toolbar=0,scrollbars="+scroll+",location=0,status=0,menubar=0,resizable=0,width="+width+",height="+height+",left="+lpos+",top="+hpos+"')");
}
--- NEW FILE: sport_002.css ---
BODY {
background-color: #FFFFCC;
margin:0px;
}
.idtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
B {
font-weight : bold;
}
TABLE, TD, TR {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
/*anchor cows */
A:link {
text-decoration : none;
color : #333366;
}
A:visited {
text-decoration : none;
color : #666699;
}
A:hover {
color : #CC3300;
}
A.index:link {
font-size : 11px;
color : #333366;
}
A.index:visited {
font-size : 11px;
color : #333366;
}
A.index:hover {
color : #CC3300;
}
/*storybody*/
TD {
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
FONT {
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.bodytext {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.headlinestory {
font-size : 130%;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
padding-bottom : 8px;
}
.inlineimage {
padding-bottom : 6px;
}
.caption {
color : #333333;
padding-top : 2px;
}
/*storyrhs*/
.puffbox {
font-family : Verdana, Arial, Helvetica, Sans-serif;
/* width : 170px; */
}
.rhslist {
background : #FFFFCC;
font-family : Verdana, Arial, Helvetica, Sans-serif;
width : 170px;
padding-bottom : 4px;
}
.rhshead {
color : #CC3300;
padding-top : 4px;
font-weight : bold;
}
.seealsodate {
background : #FFFFCC;
font-size : 11px;
}
.disclaimer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
.promotextbold {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 90%;
font-weight : bold;
color : #000000;
}
/*end of rhs*/
.fromnews {
font-size: 10px;
color : #999999;
padding-top : 4px;
font-weight : bold;
text-align : left;
}
.box {
width : 150px;
background : #FFFFCC;
background-image : url(/furniture/nothing.gif);
float : right;
text-align : left;
}
.itemsm {
padding-left : 8px;
background : #FFFFFF url("/furniture/aro_blue.gif") 2px 1px no-repeat;
}
.h1 {
font-size : 124%;
}
.h2 {
font-size : 112%;
}
.h3 {
font-size : 100%;
}
.factheader {
background-color : #003399;
font-weight : bold;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factboxbody {
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
background-color : #FFFFFF;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxhead {
background-color: #003399;
color : #FFFF66;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxbody {
padding : 5px;
letter-spacing: normal;
color : #999999;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-weight : bold;
font-size : 12px;
background-color : #FFFFFF;
}
.aitem {
margin-top : 1px;
padding-left : 12px;
background-image : url("/furniture/aro_blue.gif");
background-repeat: no-repeat;
/* aitem defined with no background colour - use inline definition */
}
.newsinvideo {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/video_icon.gif") no-repeat;
}
.newsindepth {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/indepth_icon.gif") no-repeat;
}
.newsinaudio {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/audio_icon.gif") no-repeat;
}
.newsintalkingpoint {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/talkingpoint_icon.gif") no-repeat;
}
.alsolist {
clear : both;
}
.avindex {
font-weight : normal;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666666;
}
.avreport {
padding : 3px;
letter-spacing: normal;
}
.alsohead {
margin-top : 2px;
margin-bottom : 2px;
color : #666666;
font-weight : bold;
font-size : 11px;
}
.head{
font-weight : bold;
color : #CC3300;
line-height : 12px;
font-size : 12px;
}
.avbutton {
width : 170px;
background : #CCCCFF;
font-size : 11px;
color : #666666;
text-align: right;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
}
.date {
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.sectiontitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 15px;
font-weight : bold;
color : #CC3300;
}
.crumbtraila {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color: #99CCCC;
font-size : 11px;
}
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
}
.footerarrow {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #CC3300;
font-weight : bold;
}
.footerpiping {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 100%;
color : #CC3333;
font-weight : bold;
}
.otherlanguages {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #CC6666;
}
.toprightnav {
font-size : 12px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.puffboxhead {
background-color: #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
.wsboxhead {
background-color: #FFFFFF;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
/*get rid of this*/
.wsbottombox {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 90%;
font-weight: bold;
color: #003366;
background-color : #CCCC99;
}
/* left nav old */
.rootSectionSelected {
font-weight : 600;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color : #FF9900;
text-align : right;
color : #333399;
}
.rootSection {
font-weight : 600;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
background-color : #FFFFCC;
}
.subList {
background-color: #FFCC00;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
}
.cc3300 {
background-color: #CC3300;
}
.ccoooo {
background-color: #CC0000;
}
.ffcc00 {
background-color: #FFCC00;
}
/* left nav new */
.sectionStyle
{
line-height : 15px;
letter-spacing : 0px;
font-weight : 600;
}
.sectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
font-weight : 600;
}
.sectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
font-weight : 600;
}
.Selected {
background-color : #CC3300;
font-size : 13px;
}
.nonSelected {
font-size : 13px;
}
.subSectionStyle
{
line-height : 15px;
letter-spacing : 0px;
}
.subSectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
}
.subSectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
}
/*av left hand side*/
.avbox {
background-color : #FFFFFF;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
margin-right : 2px;
margin-left : 2px;
width : 95px;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.avboxblue {
background-color : #003399;
}
.avtightgreycenter {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
text-align: center;
}
.avtightgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
}
.avgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #666666;
}
.tighterB {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
font-weight : 700;
}
.eventighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -2px;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.tighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.search {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
font-weight : bold;
color : #000000;
}
.liveandcoming {
background: #ffffff;
border: thin #000000;
width : 170px;
padding-left : 3px;
padding-right : 3px
}
.livecominghead {
color : #CC3300;
font-weight : bold;
}
.liveandcomingbutton {
width : 170px;
background : #CCCCFF;
font-size : 10px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
padding-left : 3px;
padding-right : 3px
}
/* sports */
.fixtureText {
font-size : 80%;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.statheader {
background-color : #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.statsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.qualifyText TD {
font-size : 80%;
}
.headlineindexa {
font-weight : bold;
font-size : 130%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexb {
font-weight : bold;
font-size : 110%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexc {
font-weight : bold;
font-size : 95%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.otherstorieshead {
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #CC3300;
font-size : 12px;
}
.specialstext{
padding : 10px
}
.extrastext {
color : #CC3300;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.resultstext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
.resultsscoretext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #999999
}
.narrowtext {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowtext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowgreytext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
color : #CCCCCC;
letter-spacing: -1pt;
}
.teamaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/aro_blue.gif") no-repeat;
}
.megaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.newmegaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.meganolink {
padding-left : 2px;
color: #999966;
}
.megawhite {
color: #FFFFFF;
font-weight : bold;
}
.megaheader {
font-family: Verdana, Arial, Helvetica;
padding-left : 2px;
color: #990000;
background: #FFFF99;
font-weight: bold;
}
.searchbanner {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #FFFFCC;
font-size : 11px;
}
.redstatsheader
{
font-family: Verdana, Arial, Helvetica;
color : #CC3300;
font-size : 11px;
}
.statstext TD
{
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
/*av rhs*/
.avheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #CCCCCC;
font-size: 11px;
font-weight: 600;
}
.avsubheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-size: 11px;
font-weight: 600;
}
.avtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
/* services nav */
.servicestitle {
color : #666666;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size:11px;
}
.servicesnav {
font-size:11px;
text-align:right;
padding-right:4px;
padding-top:2px;
padding-bottom:2px;
}
.fieldtitle {
font-weight : normal;
color : #000000;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.greentitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 12px;
font-weight : bold;
}
.redalert {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #cc3300;
font-size: 11px;
font-weight : bold;
}
.greentext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 11px;
}
.redtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
color : #CC3300;
}
.emailnewshead {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-weight: bold;
}
/*bbci additions*/
.bbcpageShadow { background:#666666 url(/furniture/nav/global_toolbar/bg.gif); }
.bbcpageShadowLeft {background:#999999 url(/furniture/nav/global_toolbar/bg.gif) repeat-y;}
.bbcpageBar { background:#999999 url(/furniture/nav/global_toolbar/v.gif) repeat-y; }
.bbcpageBar2 { background:#999999 url(/furniture/nav/global_toolbar/v.gif?) repeat-y; }
.bbcpageSearchL { background:#000099 url(/furniture/nav/global_toolbar/sl.gif) no-repeat;}
.bbcpageSearch { background:#000099 url(/furniture/nav/global_toolbar/st.gif) repeat-x;}
.bbcpageSearch2 { background:#000099 url(/furniture/nav/global_toolbar/st.gif?) repeat-x;}
.bbcpageSearchR { background:#999999 url(/furniture/nav/global_toolbar/sr.gif) no-repeat; }
.bbcpageBlack {background-color:#000000;}
.bbcpageGrey {background:#999999;}
.bbcpageGreyT {background:#999999 url(/furniture/nav/global_toolbar/t.gif)}
.bbcpageWhite,a.bbcpageWhite,a.bbcpageWhite:link,a.bbcpageWhite:hover,a.bbcpageWhite:visited{color:#ffffff;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
.bbcpageCream {color:#99CCCC;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
--- NEW FILE: sportacademy.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: stats_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: t.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: weather.gif ---
(This appears to be a binary file; contents omitted.)
|
Update of /cvsroot/csms/csms-core/src/test/resources/testHTML/SoutahamptonManCity5October_files
In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/resources/testHTML/SoutahamptonManCity5October_files
Added Files:
copyright_bbc.gif go.gif grey_pixel.gif livetext.gif
livetext_myclub_full.gif logo.gif news.gif nothing.gif
nothing_002.gif nothing_003.gif o.gif red_pixel.gif
sol_banner.gif sport.js sport_002.css sportacademy.gif
stats_banner.gif t.gif weather.gif
Log Message:
Initial test code for scoring application
--- NEW FILE: copyright_bbc.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: go.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: grey_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext_myclub_full.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: logo.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: news.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_002.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_003.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: o.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: red_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sol_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sport.js ---
/* pop-up code used by desktop scoreboard and ultra items */
function popup(url)
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=370,height=220');");
}
/* launch code for avconsole */
function launch_main_player()
{ clickmain=window.open("/sport3/worldcup2002/avconsole/avc_main.htm","clickmain","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,top=100,left=100,width=432,height=440");
}
function getPlatform()
{
var myUserAgent;
myUserAgent = navigator.userAgent.toLowerCase();
if ( (myUserAgent.indexOf("win") != -1) ||
(myUserAgent.indexOf("16bit") != -1)
)
{
return "win";
}
if (myUserAgent.indexOf("mac") != -1)
{
return "mac";
}
if (myUserAgent.indexOf("x11") != -1)
{
return "unx";
}
return "other";
}
function getBrowserType()
{
var myUserAgent;
var myMajor;
myUserAgent = navigator.userAgent.toLowerCase();
myMajor = parseInt(navigator.appVersion);
if( (myUserAgent.indexOf('mozilla') != -1) &&
(myUserAgent.indexOf('spoofer') == -1) &&
(myUserAgent.indexOf('compatible') == -1) &&
(myUserAgent.indexOf('opera') == -1) &&
(myUserAgent.indexOf('webtv') == -1)
)
{
if (myMajor > 3)
{
return "nav4";
}
return "nav";
}
if (myUserAgent.indexOf("msie") != -1)
{
if (myMajor > 3)
{
return "ie4";
}
return "ie";
}
return "other";
}
function request_launch()
{
if (getPlatform() != "other" &&
(getBrowserType() == "ie4" || getBrowserType() == "nav4")) {
launch_main_player();
} else {
self.location.href="/hi/english/static/audio_video/avconsole/old_browser.stm";
}
return;
}
function popUp(pageurl,width,height,scroll)
{
day = new Date();
id = day.getTime();
if (window.screen)
{
lpos = (screen.width/2)-(width/2);
hpos = (screen.height/2)-(height/2);
}
else
{
lpos = 1;
hpos = 1;
}
eval("bbcnews"+id+" = window.open('"+pageurl+"','"+id+"','toolbar=0,scrollbars="+scroll+",location=0,status=0,menubar=0,resizable=0,width="+width+",height="+height+",left="+lpos+",top="+hpos+"')");
}
--- NEW FILE: sport_002.css ---
BODY {
background-color: #FFFFCC;
margin:0px;
}
.idtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
B {
font-weight : bold;
}
TABLE, TD, TR {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
/*anchor cows */
A:link {
text-decoration : none;
color : #333366;
}
A:visited {
text-decoration : none;
color : #666699;
}
A:hover {
color : #CC3300;
}
A.index:link {
font-size : 11px;
color : #333366;
}
A.index:visited {
font-size : 11px;
color : #333366;
}
A.index:hover {
color : #CC3300;
}
/*storybody*/
TD {
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
FONT {
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.bodytext {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.headlinestory {
font-size : 130%;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
padding-bottom : 8px;
}
.inlineimage {
padding-bottom : 6px;
}
.caption {
color : #333333;
padding-top : 2px;
}
/*storyrhs*/
.puffbox {
font-family : Verdana, Arial, Helvetica, Sans-serif;
/* width : 170px; */
}
.rhslist {
background : #FFFFCC;
font-family : Verdana, Arial, Helvetica, Sans-serif;
width : 170px;
padding-bottom : 4px;
}
.rhshead {
color : #CC3300;
padding-top : 4px;
font-weight : bold;
}
.seealsodate {
background : #FFFFCC;
font-size : 11px;
}
.disclaimer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
.promotextbold {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 90%;
font-weight : bold;
color : #000000;
}
/*end of rhs*/
.fromnews {
font-size: 10px;
color : #999999;
padding-top : 4px;
font-weight : bold;
text-align : left;
}
.box {
width : 150px;
background : #FFFFCC;
background-image : url(/furniture/nothing.gif);
float : right;
text-align : left;
}
.itemsm {
padding-left : 8px;
background : #FFFFFF url("/furniture/aro_blue.gif") 2px 1px no-repeat;
}
.h1 {
font-size : 124%;
}
.h2 {
font-size : 112%;
}
.h3 {
font-size : 100%;
}
.factheader {
background-color : #003399;
font-weight : bold;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factboxbody {
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
background-color : #FFFFFF;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxhead {
background-color: #003399;
color : #FFFF66;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxbody {
padding : 5px;
letter-spacing: normal;
color : #999999;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-weight : bold;
font-size : 12px;
background-color : #FFFFFF;
}
.aitem {
margin-top : 1px;
padding-left : 12px;
background-image : url("/furniture/aro_blue.gif");
background-repeat: no-repeat;
/* aitem defined with no background colour - use inline definition */
}
.newsinvideo {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/video_icon.gif") no-repeat;
}
.newsindepth {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/indepth_icon.gif") no-repeat;
}
.newsinaudio {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/audio_icon.gif") no-repeat;
}
.newsintalkingpoint {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/talkingpoint_icon.gif") no-repeat;
}
.alsolist {
clear : both;
}
.avindex {
font-weight : normal;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666666;
}
.avreport {
padding : 3px;
letter-spacing: normal;
}
.alsohead {
margin-top : 2px;
margin-bottom : 2px;
color : #666666;
font-weight : bold;
font-size : 11px;
}
.head{
font-weight : bold;
color : #CC3300;
line-height : 12px;
font-size : 12px;
}
.avbutton {
width : 170px;
background : #CCCCFF;
font-size : 11px;
color : #666666;
text-align: right;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
}
.date {
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.sectiontitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 15px;
font-weight : bold;
color : #CC3300;
}
.crumbtraila {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color: #99CCCC;
font-size : 11px;
}
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
}
.footerarrow {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #CC3300;
font-weight : bold;
}
.footerpiping {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 100%;
color : #CC3333;
font-weight : bold;
}
.otherlanguages {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #CC6666;
}
.toprightnav {
font-size : 12px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.puffboxhead {
background-color: #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
.wsboxhead {
background-color: #FFFFFF;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
/*get rid of this*/
.wsbottombox {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 90%;
font-weight: bold;
color: #003366;
background-color : #CCCC99;
}
/* left nav old */
.rootSectionSelected {
font-weight : 600;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color : #FF9900;
text-align : right;
color : #333399;
}
.rootSection {
font-weight : 600;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
background-color : #FFFFCC;
}
.subList {
background-color: #FFCC00;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
}
.cc3300 {
background-color: #CC3300;
}
.ccoooo {
background-color: #CC0000;
}
.ffcc00 {
background-color: #FFCC00;
}
/* left nav new */
.sectionStyle
{
line-height : 15px;
letter-spacing : 0px;
font-weight : 600;
}
.sectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
font-weight : 600;
}
.sectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
font-weight : 600;
}
.Selected {
background-color : #CC3300;
font-size : 13px;
}
.nonSelected {
font-size : 13px;
}
.subSectionStyle
{
line-height : 15px;
letter-spacing : 0px;
}
.subSectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
}
.subSectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
}
/*av left hand side*/
.avbox {
background-color : #FFFFFF;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
margin-right : 2px;
margin-left : 2px;
width : 95px;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.avboxblue {
background-color : #003399;
}
.avtightgreycenter {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
text-align: center;
}
.avtightgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
}
.avgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #666666;
}
.tighterB {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
font-weight : 700;
}
.eventighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -2px;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.tighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.search {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
font-weight : bold;
color : #000000;
}
.liveandcoming {
background: #ffffff;
border: thin #000000;
width : 170px;
padding-left : 3px;
padding-right : 3px
}
.livecominghead {
color : #CC3300;
font-weight : bold;
}
.liveandcomingbutton {
width : 170px;
background : #CCCCFF;
font-size : 10px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
padding-left : 3px;
padding-right : 3px
}
/* sports */
.fixtureText {
font-size : 80%;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.statheader {
background-color : #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.statsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.qualifyText TD {
font-size : 80%;
}
.headlineindexa {
font-weight : bold;
font-size : 130%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexb {
font-weight : bold;
font-size : 110%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexc {
font-weight : bold;
font-size : 95%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.otherstorieshead {
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #CC3300;
font-size : 12px;
}
.specialstext{
padding : 10px
}
.extrastext {
color : #CC3300;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.resultstext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
.resultsscoretext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #999999
}
.narrowtext {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowtext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowgreytext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
color : #CCCCCC;
letter-spacing: -1pt;
}
.teamaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/aro_blue.gif") no-repeat;
}
.megaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.newmegaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.meganolink {
padding-left : 2px;
color: #999966;
}
.megawhite {
color: #FFFFFF;
font-weight : bold;
}
.megaheader {
font-family: Verdana, Arial, Helvetica;
padding-left : 2px;
color: #990000;
background: #FFFF99;
font-weight: bold;
}
.searchbanner {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #FFFFCC;
font-size : 11px;
}
.redstatsheader
{
font-family: Verdana, Arial, Helvetica;
color : #CC3300;
font-size : 11px;
}
.statstext TD
{
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
/*av rhs*/
.avheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #CCCCCC;
font-size: 11px;
font-weight: 600;
}
.avsubheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-size: 11px;
font-weight: 600;
}
.avtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
/* services nav */
.servicestitle {
color : #666666;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size:11px;
}
.servicesnav {
font-size:11px;
text-align:right;
padding-right:4px;
padding-top:2px;
padding-bottom:2px;
}
.fieldtitle {
font-weight : normal;
color : #000000;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.greentitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 12px;
font-weight : bold;
}
.redalert {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #cc3300;
font-size: 11px;
font-weight : bold;
}
.greentext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 11px;
}
.redtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
color : #CC3300;
}
.emailnewshead {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-weight: bold;
}
/*bbci additions*/
.bbcpageShadow { background:#666666 url(/furniture/nav/global_toolbar/bg.gif); }
.bbcpageShadowLeft {background:#999999 url(/furniture/nav/global_toolbar/bg.gif) repeat-y;}
.bbcpageBar { background:#999999 url(/furniture/nav/global_toolbar/v.gif) repeat-y; }
.bbcpageBar2 { background:#999999 url(/furniture/nav/global_toolbar/v.gif?) repeat-y; }
.bbcpageSearchL { background:#000099 url(/furniture/nav/global_toolbar/sl.gif) no-repeat;}
.bbcpageSearch { background:#000099 url(/furniture/nav/global_toolbar/st.gif) repeat-x;}
.bbcpageSearch2 { background:#000099 url(/furniture/nav/global_toolbar/st.gif?) repeat-x;}
.bbcpageSearchR { background:#999999 url(/furniture/nav/global_toolbar/sr.gif) no-repeat; }
.bbcpageBlack {background-color:#000000;}
.bbcpageGrey {background:#999999;}
.bbcpageGreyT {background:#999999 url(/furniture/nav/global_toolbar/t.gif)}
.bbcpageWhite,a.bbcpageWhite,a.bbcpageWhite:link,a.bbcpageWhite:hover,a.bbcpageWhite:visited{color:#ffffff;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
.bbcpageCream {color:#99CCCC;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
--- NEW FILE: sportacademy.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: stats_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: t.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: weather.gif ---
(This appears to be a binary file; contents omitted.)
|
Update of /cvsroot/csms/csms-core/src/test/resources/testHTML/NewcastleWestBrom5Oct_files
In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/resources/testHTML/NewcastleWestBrom5Oct_files
Added Files:
copyright_bbc.gif go.gif grey_pixel.gif livetext.gif
livetext_myclub_full.gif logo.gif news.gif nothing.gif
nothing_002.gif nothing_003.gif o.gif red_pixel.gif
sol_banner.gif sport.js sport_002.css sportacademy.gif
stats_banner.gif t.gif weather.gif
Log Message:
Initial test code for scoring application
--- NEW FILE: copyright_bbc.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: go.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: grey_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext_myclub_full.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: logo.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: news.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_002.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_003.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: o.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: red_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sol_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sport.js ---
/* pop-up code used by desktop scoreboard and ultra items */
function popup(url)
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=370,height=220');");
}
/* launch code for avconsole */
function launch_main_player()
{ clickmain=window.open("/sport3/worldcup2002/avconsole/avc_main.htm","clickmain","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,top=100,left=100,width=432,height=440");
}
function getPlatform()
{
var myUserAgent;
myUserAgent = navigator.userAgent.toLowerCase();
if ( (myUserAgent.indexOf("win") != -1) ||
(myUserAgent.indexOf("16bit") != -1)
)
{
return "win";
}
if (myUserAgent.indexOf("mac") != -1)
{
return "mac";
}
if (myUserAgent.indexOf("x11") != -1)
{
return "unx";
}
return "other";
}
function getBrowserType()
{
var myUserAgent;
var myMajor;
myUserAgent = navigator.userAgent.toLowerCase();
myMajor = parseInt(navigator.appVersion);
if( (myUserAgent.indexOf('mozilla') != -1) &&
(myUserAgent.indexOf('spoofer') == -1) &&
(myUserAgent.indexOf('compatible') == -1) &&
(myUserAgent.indexOf('opera') == -1) &&
(myUserAgent.indexOf('webtv') == -1)
)
{
if (myMajor > 3)
{
return "nav4";
}
return "nav";
}
if (myUserAgent.indexOf("msie") != -1)
{
if (myMajor > 3)
{
return "ie4";
}
return "ie";
}
return "other";
}
function request_launch()
{
if (getPlatform() != "other" &&
(getBrowserType() == "ie4" || getBrowserType() == "nav4")) {
launch_main_player();
} else {
self.location.href="/hi/english/static/audio_video/avconsole/old_browser.stm";
}
return;
}
function popUp(pageurl,width,height,scroll)
{
day = new Date();
id = day.getTime();
if (window.screen)
{
lpos = (screen.width/2)-(width/2);
hpos = (screen.height/2)-(height/2);
}
else
{
lpos = 1;
hpos = 1;
}
eval("bbcnews"+id+" = window.open('"+pageurl+"','"+id+"','toolbar=0,scrollbars="+scroll+",location=0,status=0,menubar=0,resizable=0,width="+width+",height="+height+",left="+lpos+",top="+hpos+"')");
}
--- NEW FILE: sport_002.css ---
BODY {
background-color: #FFFFCC;
margin:0px;
}
.idtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
B {
font-weight : bold;
}
TABLE, TD, TR {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
/*anchor cows */
A:link {
text-decoration : none;
color : #333366;
}
A:visited {
text-decoration : none;
color : #666699;
}
A:hover {
color : #CC3300;
}
A.index:link {
font-size : 11px;
color : #333366;
}
A.index:visited {
font-size : 11px;
color : #333366;
}
A.index:hover {
color : #CC3300;
}
/*storybody*/
TD {
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
FONT {
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.bodytext {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.headlinestory {
font-size : 130%;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
padding-bottom : 8px;
}
.inlineimage {
padding-bottom : 6px;
}
.caption {
color : #333333;
padding-top : 2px;
}
/*storyrhs*/
.puffbox {
font-family : Verdana, Arial, Helvetica, Sans-serif;
/* width : 170px; */
}
.rhslist {
background : #FFFFCC;
font-family : Verdana, Arial, Helvetica, Sans-serif;
width : 170px;
padding-bottom : 4px;
}
.rhshead {
color : #CC3300;
padding-top : 4px;
font-weight : bold;
}
.seealsodate {
background : #FFFFCC;
font-size : 11px;
}
.disclaimer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
.promotextbold {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 90%;
font-weight : bold;
color : #000000;
}
/*end of rhs*/
.fromnews {
font-size: 10px;
color : #999999;
padding-top : 4px;
font-weight : bold;
text-align : left;
}
.box {
width : 150px;
background : #FFFFCC;
background-image : url(/furniture/nothing.gif);
float : right;
text-align : left;
}
.itemsm {
padding-left : 8px;
background : #FFFFFF url("/furniture/aro_blue.gif") 2px 1px no-repeat;
}
.h1 {
font-size : 124%;
}
.h2 {
font-size : 112%;
}
.h3 {
font-size : 100%;
}
.factheader {
background-color : #003399;
font-weight : bold;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factboxbody {
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
background-color : #FFFFFF;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxhead {
background-color: #003399;
color : #FFFF66;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxbody {
padding : 5px;
letter-spacing: normal;
color : #999999;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-weight : bold;
font-size : 12px;
background-color : #FFFFFF;
}
.aitem {
margin-top : 1px;
padding-left : 12px;
background-image : url("/furniture/aro_blue.gif");
background-repeat: no-repeat;
/* aitem defined with no background colour - use inline definition */
}
.newsinvideo {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/video_icon.gif") no-repeat;
}
.newsindepth {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/indepth_icon.gif") no-repeat;
}
.newsinaudio {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/audio_icon.gif") no-repeat;
}
.newsintalkingpoint {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/talkingpoint_icon.gif") no-repeat;
}
.alsolist {
clear : both;
}
.avindex {
font-weight : normal;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666666;
}
.avreport {
padding : 3px;
letter-spacing: normal;
}
.alsohead {
margin-top : 2px;
margin-bottom : 2px;
color : #666666;
font-weight : bold;
font-size : 11px;
}
.head{
font-weight : bold;
color : #CC3300;
line-height : 12px;
font-size : 12px;
}
.avbutton {
width : 170px;
background : #CCCCFF;
font-size : 11px;
color : #666666;
text-align: right;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
}
.date {
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.sectiontitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 15px;
font-weight : bold;
color : #CC3300;
}
.crumbtraila {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color: #99CCCC;
font-size : 11px;
}
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
}
.footerarrow {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #CC3300;
font-weight : bold;
}
.footerpiping {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 100%;
color : #CC3333;
font-weight : bold;
}
.otherlanguages {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #CC6666;
}
.toprightnav {
font-size : 12px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.puffboxhead {
background-color: #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
.wsboxhead {
background-color: #FFFFFF;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
/*get rid of this*/
.wsbottombox {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 90%;
font-weight: bold;
color: #003366;
background-color : #CCCC99;
}
/* left nav old */
.rootSectionSelected {
font-weight : 600;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color : #FF9900;
text-align : right;
color : #333399;
}
.rootSection {
font-weight : 600;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
background-color : #FFFFCC;
}
.subList {
background-color: #FFCC00;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
}
.cc3300 {
background-color: #CC3300;
}
.ccoooo {
background-color: #CC0000;
}
.ffcc00 {
background-color: #FFCC00;
}
/* left nav new */
.sectionStyle
{
line-height : 15px;
letter-spacing : 0px;
font-weight : 600;
}
.sectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
font-weight : 600;
}
.sectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
font-weight : 600;
}
.Selected {
background-color : #CC3300;
font-size : 13px;
}
.nonSelected {
font-size : 13px;
}
.subSectionStyle
{
line-height : 15px;
letter-spacing : 0px;
}
.subSectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
}
.subSectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
}
/*av left hand side*/
.avbox {
background-color : #FFFFFF;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
margin-right : 2px;
margin-left : 2px;
width : 95px;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.avboxblue {
background-color : #003399;
}
.avtightgreycenter {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
text-align: center;
}
.avtightgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
}
.avgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #666666;
}
.tighterB {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
font-weight : 700;
}
.eventighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -2px;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.tighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.search {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
font-weight : bold;
color : #000000;
}
.liveandcoming {
background: #ffffff;
border: thin #000000;
width : 170px;
padding-left : 3px;
padding-right : 3px
}
.livecominghead {
color : #CC3300;
font-weight : bold;
}
.liveandcomingbutton {
width : 170px;
background : #CCCCFF;
font-size : 10px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
padding-left : 3px;
padding-right : 3px
}
/* sports */
.fixtureText {
font-size : 80%;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.statheader {
background-color : #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.statsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.qualifyText TD {
font-size : 80%;
}
.headlineindexa {
font-weight : bold;
font-size : 130%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexb {
font-weight : bold;
font-size : 110%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexc {
font-weight : bold;
font-size : 95%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.otherstorieshead {
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #CC3300;
font-size : 12px;
}
.specialstext{
padding : 10px
}
.extrastext {
color : #CC3300;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.resultstext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
.resultsscoretext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #999999
}
.narrowtext {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowtext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowgreytext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
color : #CCCCCC;
letter-spacing: -1pt;
}
.teamaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/aro_blue.gif") no-repeat;
}
.megaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.newmegaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.meganolink {
padding-left : 2px;
color: #999966;
}
.megawhite {
color: #FFFFFF;
font-weight : bold;
}
.megaheader {
font-family: Verdana, Arial, Helvetica;
padding-left : 2px;
color: #990000;
background: #FFFF99;
font-weight: bold;
}
.searchbanner {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #FFFFCC;
font-size : 11px;
}
.redstatsheader
{
font-family: Verdana, Arial, Helvetica;
color : #CC3300;
font-size : 11px;
}
.statstext TD
{
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
/*av rhs*/
.avheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #CCCCCC;
font-size: 11px;
font-weight: 600;
}
.avsubheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-size: 11px;
font-weight: 600;
}
.avtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
/* services nav */
.servicestitle {
color : #666666;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size:11px;
}
.servicesnav {
font-size:11px;
text-align:right;
padding-right:4px;
padding-top:2px;
padding-bottom:2px;
}
.fieldtitle {
font-weight : normal;
color : #000000;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.greentitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 12px;
font-weight : bold;
}
.redalert {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #cc3300;
font-size: 11px;
font-weight : bold;
}
.greentext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 11px;
}
.redtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
color : #CC3300;
}
.emailnewshead {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-weight: bold;
}
/*bbci additions*/
.bbcpageShadow { background:#666666 url(/furniture/nav/global_toolbar/bg.gif); }
.bbcpageShadowLeft {background:#999999 url(/furniture/nav/global_toolbar/bg.gif) repeat-y;}
.bbcpageBar { background:#999999 url(/furniture/nav/global_toolbar/v.gif) repeat-y; }
.bbcpageBar2 { background:#999999 url(/furniture/nav/global_toolbar/v.gif?) repeat-y; }
.bbcpageSearchL { background:#000099 url(/furniture/nav/global_toolbar/sl.gif) no-repeat;}
.bbcpageSearch { background:#000099 url(/furniture/nav/global_toolbar/st.gif) repeat-x;}
.bbcpageSearch2 { background:#000099 url(/furniture/nav/global_toolbar/st.gif?) repeat-x;}
.bbcpageSearchR { background:#999999 url(/furniture/nav/global_toolbar/sr.gif) no-repeat; }
.bbcpageBlack {background-color:#000000;}
.bbcpageGrey {background:#999999;}
.bbcpageGreyT {background:#999999 url(/furniture/nav/global_toolbar/t.gif)}
.bbcpageWhite,a.bbcpageWhite,a.bbcpageWhite:link,a.bbcpageWhite:hover,a.bbcpageWhite:visited{color:#ffffff;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
.bbcpageCream {color:#99CCCC;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
--- NEW FILE: sportacademy.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: stats_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: t.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: weather.gif ---
(This appears to be a binary file; contents omitted.)
|
Update of /cvsroot/csms/csms-core/src/test/resources/testHTML/ManUnitedEverton7October_files
In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/resources/testHTML/ManUnitedEverton7October_files
Added Files:
copyright_bbc.gif go.gif grey_pixel.gif livetext.gif
livetext_myclub_full.gif logo.gif news.gif nothing.gif
nothing_002.gif nothing_003.gif o.gif red_pixel.gif
sol_banner.gif sport.js sport_002.css sportacademy.gif
stats_banner.gif t.gif weather.gif
Log Message:
Initial test code for scoring application
--- NEW FILE: copyright_bbc.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: go.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: grey_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext_myclub_full.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: logo.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: news.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_002.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_003.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: o.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: red_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sol_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sport.js ---
/* pop-up code used by desktop scoreboard and ultra items */
function popup(url)
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=370,height=220');");
}
/* launch code for avconsole */
function launch_main_player()
{ clickmain=window.open("/sport3/worldcup2002/avconsole/avc_main.htm","clickmain","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,top=100,left=100,width=432,height=440");
}
function getPlatform()
{
var myUserAgent;
myUserAgent = navigator.userAgent.toLowerCase();
if ( (myUserAgent.indexOf("win") != -1) ||
(myUserAgent.indexOf("16bit") != -1)
)
{
return "win";
}
if (myUserAgent.indexOf("mac") != -1)
{
return "mac";
}
if (myUserAgent.indexOf("x11") != -1)
{
return "unx";
}
return "other";
}
function getBrowserType()
{
var myUserAgent;
var myMajor;
myUserAgent = navigator.userAgent.toLowerCase();
myMajor = parseInt(navigator.appVersion);
if( (myUserAgent.indexOf('mozilla') != -1) &&
(myUserAgent.indexOf('spoofer') == -1) &&
(myUserAgent.indexOf('compatible') == -1) &&
(myUserAgent.indexOf('opera') == -1) &&
(myUserAgent.indexOf('webtv') == -1)
)
{
if (myMajor > 3)
{
return "nav4";
}
return "nav";
}
if (myUserAgent.indexOf("msie") != -1)
{
if (myMajor > 3)
{
return "ie4";
}
return "ie";
}
return "other";
}
function request_launch()
{
if (getPlatform() != "other" &&
(getBrowserType() == "ie4" || getBrowserType() == "nav4")) {
launch_main_player();
} else {
self.location.href="/hi/english/static/audio_video/avconsole/old_browser.stm";
}
return;
}
function popUp(pageurl,width,height,scroll)
{
day = new Date();
id = day.getTime();
if (window.screen)
{
lpos = (screen.width/2)-(width/2);
hpos = (screen.height/2)-(height/2);
}
else
{
lpos = 1;
hpos = 1;
}
eval("bbcnews"+id+" = window.open('"+pageurl+"','"+id+"','toolbar=0,scrollbars="+scroll+",location=0,status=0,menubar=0,resizable=0,width="+width+",height="+height+",left="+lpos+",top="+hpos+"')");
}
--- NEW FILE: sport_002.css ---
BODY {
background-color: #FFFFCC;
margin:0px;
}
.idtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
B {
font-weight : bold;
}
TABLE, TD, TR {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
/*anchor cows */
A:link {
text-decoration : none;
color : #333366;
}
A:visited {
text-decoration : none;
color : #666699;
}
A:hover {
color : #CC3300;
}
A.index:link {
font-size : 11px;
color : #333366;
}
A.index:visited {
font-size : 11px;
color : #333366;
}
A.index:hover {
color : #CC3300;
}
/*storybody*/
TD {
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
FONT {
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.bodytext {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.headlinestory {
font-size : 130%;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
padding-bottom : 8px;
}
.inlineimage {
padding-bottom : 6px;
}
.caption {
color : #333333;
padding-top : 2px;
}
/*storyrhs*/
.puffbox {
font-family : Verdana, Arial, Helvetica, Sans-serif;
/* width : 170px; */
}
.rhslist {
background : #FFFFCC;
font-family : Verdana, Arial, Helvetica, Sans-serif;
width : 170px;
padding-bottom : 4px;
}
.rhshead {
color : #CC3300;
padding-top : 4px;
font-weight : bold;
}
.seealsodate {
background : #FFFFCC;
font-size : 11px;
}
.disclaimer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
.promotextbold {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 90%;
font-weight : bold;
color : #000000;
}
/*end of rhs*/
.fromnews {
font-size: 10px;
color : #999999;
padding-top : 4px;
font-weight : bold;
text-align : left;
}
.box {
width : 150px;
background : #FFFFCC;
background-image : url(/furniture/nothing.gif);
float : right;
text-align : left;
}
.itemsm {
padding-left : 8px;
background : #FFFFFF url("/furniture/aro_blue.gif") 2px 1px no-repeat;
}
.h1 {
font-size : 124%;
}
.h2 {
font-size : 112%;
}
.h3 {
font-size : 100%;
}
.factheader {
background-color : #003399;
font-weight : bold;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factboxbody {
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
background-color : #FFFFFF;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxhead {
background-color: #003399;
color : #FFFF66;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxbody {
padding : 5px;
letter-spacing: normal;
color : #999999;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-weight : bold;
font-size : 12px;
background-color : #FFFFFF;
}
.aitem {
margin-top : 1px;
padding-left : 12px;
background-image : url("/furniture/aro_blue.gif");
background-repeat: no-repeat;
/* aitem defined with no background colour - use inline definition */
}
.newsinvideo {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/video_icon.gif") no-repeat;
}
.newsindepth {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/indepth_icon.gif") no-repeat;
}
.newsinaudio {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/audio_icon.gif") no-repeat;
}
.newsintalkingpoint {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/talkingpoint_icon.gif") no-repeat;
}
.alsolist {
clear : both;
}
.avindex {
font-weight : normal;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666666;
}
.avreport {
padding : 3px;
letter-spacing: normal;
}
.alsohead {
margin-top : 2px;
margin-bottom : 2px;
color : #666666;
font-weight : bold;
font-size : 11px;
}
.head{
font-weight : bold;
color : #CC3300;
line-height : 12px;
font-size : 12px;
}
.avbutton {
width : 170px;
background : #CCCCFF;
font-size : 11px;
color : #666666;
text-align: right;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
}
.date {
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.sectiontitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 15px;
font-weight : bold;
color : #CC3300;
}
.crumbtraila {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color: #99CCCC;
font-size : 11px;
}
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
}
.footerarrow {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #CC3300;
font-weight : bold;
}
.footerpiping {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 100%;
color : #CC3333;
font-weight : bold;
}
.otherlanguages {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #CC6666;
}
.toprightnav {
font-size : 12px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.puffboxhead {
background-color: #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
.wsboxhead {
background-color: #FFFFFF;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
/*get rid of this*/
.wsbottombox {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 90%;
font-weight: bold;
color: #003366;
background-color : #CCCC99;
}
/* left nav old */
.rootSectionSelected {
font-weight : 600;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color : #FF9900;
text-align : right;
color : #333399;
}
.rootSection {
font-weight : 600;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
background-color : #FFFFCC;
}
.subList {
background-color: #FFCC00;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
}
.cc3300 {
background-color: #CC3300;
}
.ccoooo {
background-color: #CC0000;
}
.ffcc00 {
background-color: #FFCC00;
}
/* left nav new */
.sectionStyle
{
line-height : 15px;
letter-spacing : 0px;
font-weight : 600;
}
.sectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
font-weight : 600;
}
.sectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
font-weight : 600;
}
.Selected {
background-color : #CC3300;
font-size : 13px;
}
.nonSelected {
font-size : 13px;
}
.subSectionStyle
{
line-height : 15px;
letter-spacing : 0px;
}
.subSectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
}
.subSectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
}
/*av left hand side*/
.avbox {
background-color : #FFFFFF;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
margin-right : 2px;
margin-left : 2px;
width : 95px;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.avboxblue {
background-color : #003399;
}
.avtightgreycenter {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
text-align: center;
}
.avtightgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
}
.avgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #666666;
}
.tighterB {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
font-weight : 700;
}
.eventighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -2px;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.tighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.search {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
font-weight : bold;
color : #000000;
}
.liveandcoming {
background: #ffffff;
border: thin #000000;
width : 170px;
padding-left : 3px;
padding-right : 3px
}
.livecominghead {
color : #CC3300;
font-weight : bold;
}
.liveandcomingbutton {
width : 170px;
background : #CCCCFF;
font-size : 10px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
padding-left : 3px;
padding-right : 3px
}
/* sports */
.fixtureText {
font-size : 80%;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.statheader {
background-color : #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.statsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.qualifyText TD {
font-size : 80%;
}
.headlineindexa {
font-weight : bold;
font-size : 130%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexb {
font-weight : bold;
font-size : 110%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexc {
font-weight : bold;
font-size : 95%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.otherstorieshead {
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #CC3300;
font-size : 12px;
}
.specialstext{
padding : 10px
}
.extrastext {
color : #CC3300;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.resultstext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
.resultsscoretext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #999999
}
.narrowtext {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowtext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowgreytext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
color : #CCCCCC;
letter-spacing: -1pt;
}
.teamaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/aro_blue.gif") no-repeat;
}
.megaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.newmegaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.meganolink {
padding-left : 2px;
color: #999966;
}
.megawhite {
color: #FFFFFF;
font-weight : bold;
}
.megaheader {
font-family: Verdana, Arial, Helvetica;
padding-left : 2px;
color: #990000;
background: #FFFF99;
font-weight: bold;
}
.searchbanner {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #FFFFCC;
font-size : 11px;
}
.redstatsheader
{
font-family: Verdana, Arial, Helvetica;
color : #CC3300;
font-size : 11px;
}
.statstext TD
{
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
/*av rhs*/
.avheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #CCCCCC;
font-size: 11px;
font-weight: 600;
}
.avsubheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-size: 11px;
font-weight: 600;
}
.avtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
/* services nav */
.servicestitle {
color : #666666;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size:11px;
}
.servicesnav {
font-size:11px;
text-align:right;
padding-right:4px;
padding-top:2px;
padding-bottom:2px;
}
.fieldtitle {
font-weight : normal;
color : #000000;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.greentitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 12px;
font-weight : bold;
}
.redalert {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #cc3300;
font-size: 11px;
font-weight : bold;
}
.greentext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 11px;
}
.redtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
color : #CC3300;
}
.emailnewshead {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-weight: bold;
}
/*bbci additions*/
.bbcpageShadow { background:#666666 url(/furniture/nav/global_toolbar/bg.gif); }
.bbcpageShadowLeft {background:#999999 url(/furniture/nav/global_toolbar/bg.gif) repeat-y;}
.bbcpageBar { background:#999999 url(/furniture/nav/global_toolbar/v.gif) repeat-y; }
.bbcpageBar2 { background:#999999 url(/furniture/nav/global_toolbar/v.gif?) repeat-y; }
.bbcpageSearchL { background:#000099 url(/furniture/nav/global_toolbar/sl.gif) no-repeat;}
.bbcpageSearch { background:#000099 url(/furniture/nav/global_toolbar/st.gif) repeat-x;}
.bbcpageSearch2 { background:#000099 url(/furniture/nav/global_toolbar/st.gif?) repeat-x;}
.bbcpageSearchR { background:#999999 url(/furniture/nav/global_toolbar/sr.gif) no-repeat; }
.bbcpageBlack {background-color:#000000;}
.bbcpageGrey {background:#999999;}
.bbcpageGreyT {background:#999999 url(/furniture/nav/global_toolbar/t.gif)}
.bbcpageWhite,a.bbcpageWhite,a.bbcpageWhite:link,a.bbcpageWhite:hover,a.bbcpageWhite:visited{color:#ffffff;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
.bbcpageCream {color:#99CCCC;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
--- NEW FILE: sportacademy.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: stats_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: t.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: weather.gif ---
(This appears to be a binary file; contents omitted.)
|
Update of /cvsroot/csms/csms-core/src/test/resources/testHTML/LiverpoolChelsea6Oct_files
In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/resources/testHTML/LiverpoolChelsea6Oct_files
Added Files:
copyright_bbc.gif go.gif grey_pixel.gif livetext.gif
livetext_myclub_full.gif logo.gif news.gif nothing.gif
nothing_002.gif nothing_003.gif o.gif red_pixel.gif
sol_banner.gif sport.js sport_002.css sportacademy.gif
stats_banner.gif t.gif weather.gif
Log Message:
Initial test code for scoring application
--- NEW FILE: copyright_bbc.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: go.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: grey_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext_myclub_full.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: logo.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: news.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_002.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_003.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: o.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: red_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sol_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sport.js ---
/* pop-up code used by desktop scoreboard and ultra items */
function popup(url)
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=370,height=220');");
}
/* launch code for avconsole */
function launch_main_player()
{ clickmain=window.open("/sport3/worldcup2002/avconsole/avc_main.htm","clickmain","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,top=100,left=100,width=432,height=440");
}
function getPlatform()
{
var myUserAgent;
myUserAgent = navigator.userAgent.toLowerCase();
if ( (myUserAgent.indexOf("win") != -1) ||
(myUserAgent.indexOf("16bit") != -1)
)
{
return "win";
}
if (myUserAgent.indexOf("mac") != -1)
{
return "mac";
}
if (myUserAgent.indexOf("x11") != -1)
{
return "unx";
}
return "other";
}
function getBrowserType()
{
var myUserAgent;
var myMajor;
myUserAgent = navigator.userAgent.toLowerCase();
myMajor = parseInt(navigator.appVersion);
if( (myUserAgent.indexOf('mozilla') != -1) &&
(myUserAgent.indexOf('spoofer') == -1) &&
(myUserAgent.indexOf('compatible') == -1) &&
(myUserAgent.indexOf('opera') == -1) &&
(myUserAgent.indexOf('webtv') == -1)
)
{
if (myMajor > 3)
{
return "nav4";
}
return "nav";
}
if (myUserAgent.indexOf("msie") != -1)
{
if (myMajor > 3)
{
return "ie4";
}
return "ie";
}
return "other";
}
function request_launch()
{
if (getPlatform() != "other" &&
(getBrowserType() == "ie4" || getBrowserType() == "nav4")) {
launch_main_player();
} else {
self.location.href="/hi/english/static/audio_video/avconsole/old_browser.stm";
}
return;
}
function popUp(pageurl,width,height,scroll)
{
day = new Date();
id = day.getTime();
if (window.screen)
{
lpos = (screen.width/2)-(width/2);
hpos = (screen.height/2)-(height/2);
}
else
{
lpos = 1;
hpos = 1;
}
eval("bbcnews"+id+" = window.open('"+pageurl+"','"+id+"','toolbar=0,scrollbars="+scroll+",location=0,status=0,menubar=0,resizable=0,width="+width+",height="+height+",left="+lpos+",top="+hpos+"')");
}
--- NEW FILE: sport_002.css ---
BODY {
background-color: #FFFFCC;
margin:0px;
}
.idtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
B {
font-weight : bold;
}
TABLE, TD, TR {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
/*anchor cows */
A:link {
text-decoration : none;
color : #333366;
}
A:visited {
text-decoration : none;
color : #666699;
}
A:hover {
color : #CC3300;
}
A.index:link {
font-size : 11px;
color : #333366;
}
A.index:visited {
font-size : 11px;
color : #333366;
}
A.index:hover {
color : #CC3300;
}
/*storybody*/
TD {
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
FONT {
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.bodytext {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.headlinestory {
font-size : 130%;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
padding-bottom : 8px;
}
.inlineimage {
padding-bottom : 6px;
}
.caption {
color : #333333;
padding-top : 2px;
}
/*storyrhs*/
.puffbox {
font-family : Verdana, Arial, Helvetica, Sans-serif;
/* width : 170px; */
}
.rhslist {
background : #FFFFCC;
font-family : Verdana, Arial, Helvetica, Sans-serif;
width : 170px;
padding-bottom : 4px;
}
.rhshead {
color : #CC3300;
padding-top : 4px;
font-weight : bold;
}
.seealsodate {
background : #FFFFCC;
font-size : 11px;
}
.disclaimer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
.promotextbold {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 90%;
font-weight : bold;
color : #000000;
}
/*end of rhs*/
.fromnews {
font-size: 10px;
color : #999999;
padding-top : 4px;
font-weight : bold;
text-align : left;
}
.box {
width : 150px;
background : #FFFFCC;
background-image : url(/furniture/nothing.gif);
float : right;
text-align : left;
}
.itemsm {
padding-left : 8px;
background : #FFFFFF url("/furniture/aro_blue.gif") 2px 1px no-repeat;
}
.h1 {
font-size : 124%;
}
.h2 {
font-size : 112%;
}
.h3 {
font-size : 100%;
}
.factheader {
background-color : #003399;
font-weight : bold;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factboxbody {
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
background-color : #FFFFFF;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxhead {
background-color: #003399;
color : #FFFF66;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxbody {
padding : 5px;
letter-spacing: normal;
color : #999999;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-weight : bold;
font-size : 12px;
background-color : #FFFFFF;
}
.aitem {
margin-top : 1px;
padding-left : 12px;
background-image : url("/furniture/aro_blue.gif");
background-repeat: no-repeat;
/* aitem defined with no background colour - use inline definition */
}
.newsinvideo {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/video_icon.gif") no-repeat;
}
.newsindepth {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/indepth_icon.gif") no-repeat;
}
.newsinaudio {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/audio_icon.gif") no-repeat;
}
.newsintalkingpoint {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/talkingpoint_icon.gif") no-repeat;
}
.alsolist {
clear : both;
}
.avindex {
font-weight : normal;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666666;
}
.avreport {
padding : 3px;
letter-spacing: normal;
}
.alsohead {
margin-top : 2px;
margin-bottom : 2px;
color : #666666;
font-weight : bold;
font-size : 11px;
}
.head{
font-weight : bold;
color : #CC3300;
line-height : 12px;
font-size : 12px;
}
.avbutton {
width : 170px;
background : #CCCCFF;
font-size : 11px;
color : #666666;
text-align: right;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
}
.date {
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.sectiontitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 15px;
font-weight : bold;
color : #CC3300;
}
.crumbtraila {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color: #99CCCC;
font-size : 11px;
}
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
}
.footerarrow {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #CC3300;
font-weight : bold;
}
.footerpiping {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 100%;
color : #CC3333;
font-weight : bold;
}
.otherlanguages {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #CC6666;
}
.toprightnav {
font-size : 12px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.puffboxhead {
background-color: #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
.wsboxhead {
background-color: #FFFFFF;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
/*get rid of this*/
.wsbottombox {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 90%;
font-weight: bold;
color: #003366;
background-color : #CCCC99;
}
/* left nav old */
.rootSectionSelected {
font-weight : 600;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color : #FF9900;
text-align : right;
color : #333399;
}
.rootSection {
font-weight : 600;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
background-color : #FFFFCC;
}
.subList {
background-color: #FFCC00;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
}
.cc3300 {
background-color: #CC3300;
}
.ccoooo {
background-color: #CC0000;
}
.ffcc00 {
background-color: #FFCC00;
}
/* left nav new */
.sectionStyle
{
line-height : 15px;
letter-spacing : 0px;
font-weight : 600;
}
.sectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
font-weight : 600;
}
.sectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
font-weight : 600;
}
.Selected {
background-color : #CC3300;
font-size : 13px;
}
.nonSelected {
font-size : 13px;
}
.subSectionStyle
{
line-height : 15px;
letter-spacing : 0px;
}
.subSectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
}
.subSectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
}
/*av left hand side*/
.avbox {
background-color : #FFFFFF;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
margin-right : 2px;
margin-left : 2px;
width : 95px;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.avboxblue {
background-color : #003399;
}
.avtightgreycenter {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
text-align: center;
}
.avtightgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
}
.avgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #666666;
}
.tighterB {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
font-weight : 700;
}
.eventighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -2px;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.tighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.search {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
font-weight : bold;
color : #000000;
}
.liveandcoming {
background: #ffffff;
border: thin #000000;
width : 170px;
padding-left : 3px;
padding-right : 3px
}
.livecominghead {
color : #CC3300;
font-weight : bold;
}
.liveandcomingbutton {
width : 170px;
background : #CCCCFF;
font-size : 10px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
padding-left : 3px;
padding-right : 3px
}
/* sports */
.fixtureText {
font-size : 80%;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.statheader {
background-color : #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.statsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.qualifyText TD {
font-size : 80%;
}
.headlineindexa {
font-weight : bold;
font-size : 130%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexb {
font-weight : bold;
font-size : 110%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexc {
font-weight : bold;
font-size : 95%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.otherstorieshead {
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #CC3300;
font-size : 12px;
}
.specialstext{
padding : 10px
}
.extrastext {
color : #CC3300;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.resultstext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
.resultsscoretext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #999999
}
.narrowtext {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowtext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowgreytext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
color : #CCCCCC;
letter-spacing: -1pt;
}
.teamaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/aro_blue.gif") no-repeat;
}
.megaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.newmegaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.meganolink {
padding-left : 2px;
color: #999966;
}
.megawhite {
color: #FFFFFF;
font-weight : bold;
}
.megaheader {
font-family: Verdana, Arial, Helvetica;
padding-left : 2px;
color: #990000;
background: #FFFF99;
font-weight: bold;
}
.searchbanner {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #FFFFCC;
font-size : 11px;
}
.redstatsheader
{
font-family: Verdana, Arial, Helvetica;
color : #CC3300;
font-size : 11px;
}
.statstext TD
{
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
/*av rhs*/
.avheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #CCCCCC;
font-size: 11px;
font-weight: 600;
}
.avsubheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-size: 11px;
font-weight: 600;
}
.avtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
/* services nav */
.servicestitle {
color : #666666;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size:11px;
}
.servicesnav {
font-size:11px;
text-align:right;
padding-right:4px;
padding-top:2px;
padding-bottom:2px;
}
.fieldtitle {
font-weight : normal;
color : #000000;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.greentitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 12px;
font-weight : bold;
}
.redalert {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #cc3300;
font-size: 11px;
font-weight : bold;
}
.greentext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 11px;
}
.redtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
color : #CC3300;
}
.emailnewshead {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-weight: bold;
}
/*bbci additions*/
.bbcpageShadow { background:#666666 url(/furniture/nav/global_toolbar/bg.gif); }
.bbcpageShadowLeft {background:#999999 url(/furniture/nav/global_toolbar/bg.gif) repeat-y;}
.bbcpageBar { background:#999999 url(/furniture/nav/global_toolbar/v.gif) repeat-y; }
.bbcpageBar2 { background:#999999 url(/furniture/nav/global_toolbar/v.gif?) repeat-y; }
.bbcpageSearchL { background:#000099 url(/furniture/nav/global_toolbar/sl.gif) no-repeat;}
.bbcpageSearch { background:#000099 url(/furniture/nav/global_toolbar/st.gif) repeat-x;}
.bbcpageSearch2 { background:#000099 url(/furniture/nav/global_toolbar/st.gif?) repeat-x;}
.bbcpageSearchR { background:#999999 url(/furniture/nav/global_toolbar/sr.gif) no-repeat; }
.bbcpageBlack {background-color:#000000;}
.bbcpageGrey {background:#999999;}
.bbcpageGreyT {background:#999999 url(/furniture/nav/global_toolbar/t.gif)}
.bbcpageWhite,a.bbcpageWhite,a.bbcpageWhite:link,a.bbcpageWhite:hover,a.bbcpageWhite:visited{color:#ffffff;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
.bbcpageCream {color:#99CCCC;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
--- NEW FILE: sportacademy.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: stats_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: t.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: weather.gif ---
(This appears to be a binary file; contents omitted.)
|
Update of /cvsroot/csms/csms-core/src/test/resources/testHTML/BlackburnTotnham6Oct_files
In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/resources/testHTML/BlackburnTotnham6Oct_files
Added Files:
copyright_bbc.gif go.gif grey_pixel.gif livetext.gif
livetext_myclub_full.gif logo.gif news.gif nothing.gif
nothing_002.gif nothing_003.gif o.gif red_pixel.gif
sol_banner.gif sport.js sport_002.css sportacademy.gif
stats_banner.gif t.gif weather.gif
Log Message:
Initial test code for scoring application
--- NEW FILE: copyright_bbc.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: go.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: grey_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext_myclub_full.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: logo.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: news.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_002.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_003.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: o.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: red_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sol_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sport.js ---
/* pop-up code used by desktop scoreboard and ultra items */
function popup(url)
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=370,height=220');");
}
/* launch code for avconsole */
function launch_main_player()
{ clickmain=window.open("/sport3/worldcup2002/avconsole/avc_main.htm","clickmain","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,top=100,left=100,width=432,height=440");
}
function getPlatform()
{
var myUserAgent;
myUserAgent = navigator.userAgent.toLowerCase();
if ( (myUserAgent.indexOf("win") != -1) ||
(myUserAgent.indexOf("16bit") != -1)
)
{
return "win";
}
if (myUserAgent.indexOf("mac") != -1)
{
return "mac";
}
if (myUserAgent.indexOf("x11") != -1)
{
return "unx";
}
return "other";
}
function getBrowserType()
{
var myUserAgent;
var myMajor;
myUserAgent = navigator.userAgent.toLowerCase();
myMajor = parseInt(navigator.appVersion);
if( (myUserAgent.indexOf('mozilla') != -1) &&
(myUserAgent.indexOf('spoofer') == -1) &&
(myUserAgent.indexOf('compatible') == -1) &&
(myUserAgent.indexOf('opera') == -1) &&
(myUserAgent.indexOf('webtv') == -1)
)
{
if (myMajor > 3)
{
return "nav4";
}
return "nav";
}
if (myUserAgent.indexOf("msie") != -1)
{
if (myMajor > 3)
{
return "ie4";
}
return "ie";
}
return "other";
}
function request_launch()
{
if (getPlatform() != "other" &&
(getBrowserType() == "ie4" || getBrowserType() == "nav4")) {
launch_main_player();
} else {
self.location.href="/hi/english/static/audio_video/avconsole/old_browser.stm";
}
return;
}
function popUp(pageurl,width,height,scroll)
{
day = new Date();
id = day.getTime();
if (window.screen)
{
lpos = (screen.width/2)-(width/2);
hpos = (screen.height/2)-(height/2);
}
else
{
lpos = 1;
hpos = 1;
}
eval("bbcnews"+id+" = window.open('"+pageurl+"','"+id+"','toolbar=0,scrollbars="+scroll+",location=0,status=0,menubar=0,resizable=0,width="+width+",height="+height+",left="+lpos+",top="+hpos+"')");
}
--- NEW FILE: sport_002.css ---
BODY {
background-color: #FFFFCC;
margin:0px;
}
.idtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
B {
font-weight : bold;
}
TABLE, TD, TR {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
/*anchor cows */
A:link {
text-decoration : none;
color : #333366;
}
A:visited {
text-decoration : none;
color : #666699;
}
A:hover {
color : #CC3300;
}
A.index:link {
font-size : 11px;
color : #333366;
}
A.index:visited {
font-size : 11px;
color : #333366;
}
A.index:hover {
color : #CC3300;
}
/*storybody*/
TD {
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
FONT {
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.bodytext {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.headlinestory {
font-size : 130%;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
padding-bottom : 8px;
}
.inlineimage {
padding-bottom : 6px;
}
.caption {
color : #333333;
padding-top : 2px;
}
/*storyrhs*/
.puffbox {
font-family : Verdana, Arial, Helvetica, Sans-serif;
/* width : 170px; */
}
.rhslist {
background : #FFFFCC;
font-family : Verdana, Arial, Helvetica, Sans-serif;
width : 170px;
padding-bottom : 4px;
}
.rhshead {
color : #CC3300;
padding-top : 4px;
font-weight : bold;
}
.seealsodate {
background : #FFFFCC;
font-size : 11px;
}
.disclaimer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
.promotextbold {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 90%;
font-weight : bold;
color : #000000;
}
/*end of rhs*/
.fromnews {
font-size: 10px;
color : #999999;
padding-top : 4px;
font-weight : bold;
text-align : left;
}
.box {
width : 150px;
background : #FFFFCC;
background-image : url(/furniture/nothing.gif);
float : right;
text-align : left;
}
.itemsm {
padding-left : 8px;
background : #FFFFFF url("/furniture/aro_blue.gif") 2px 1px no-repeat;
}
.h1 {
font-size : 124%;
}
.h2 {
font-size : 112%;
}
.h3 {
font-size : 100%;
}
.factheader {
background-color : #003399;
font-weight : bold;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factboxbody {
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
background-color : #FFFFFF;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxhead {
background-color: #003399;
color : #FFFF66;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxbody {
padding : 5px;
letter-spacing: normal;
color : #999999;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-weight : bold;
font-size : 12px;
background-color : #FFFFFF;
}
.aitem {
margin-top : 1px;
padding-left : 12px;
background-image : url("/furniture/aro_blue.gif");
background-repeat: no-repeat;
/* aitem defined with no background colour - use inline definition */
}
.newsinvideo {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/video_icon.gif") no-repeat;
}
.newsindepth {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/indepth_icon.gif") no-repeat;
}
.newsinaudio {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/audio_icon.gif") no-repeat;
}
.newsintalkingpoint {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/talkingpoint_icon.gif") no-repeat;
}
.alsolist {
clear : both;
}
.avindex {
font-weight : normal;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666666;
}
.avreport {
padding : 3px;
letter-spacing: normal;
}
.alsohead {
margin-top : 2px;
margin-bottom : 2px;
color : #666666;
font-weight : bold;
font-size : 11px;
}
.head{
font-weight : bold;
color : #CC3300;
line-height : 12px;
font-size : 12px;
}
.avbutton {
width : 170px;
background : #CCCCFF;
font-size : 11px;
color : #666666;
text-align: right;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
}
.date {
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.sectiontitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 15px;
font-weight : bold;
color : #CC3300;
}
.crumbtraila {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color: #99CCCC;
font-size : 11px;
}
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
}
.footerarrow {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #CC3300;
font-weight : bold;
}
.footerpiping {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 100%;
color : #CC3333;
font-weight : bold;
}
.otherlanguages {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #CC6666;
}
.toprightnav {
font-size : 12px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.puffboxhead {
background-color: #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
.wsboxhead {
background-color: #FFFFFF;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
/*get rid of this*/
.wsbottombox {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 90%;
font-weight: bold;
color: #003366;
background-color : #CCCC99;
}
/* left nav old */
.rootSectionSelected {
font-weight : 600;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color : #FF9900;
text-align : right;
color : #333399;
}
.rootSection {
font-weight : 600;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
background-color : #FFFFCC;
}
.subList {
background-color: #FFCC00;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
}
.cc3300 {
background-color: #CC3300;
}
.ccoooo {
background-color: #CC0000;
}
.ffcc00 {
background-color: #FFCC00;
}
/* left nav new */
.sectionStyle
{
line-height : 15px;
letter-spacing : 0px;
font-weight : 600;
}
.sectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
font-weight : 600;
}
.sectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
font-weight : 600;
}
.Selected {
background-color : #CC3300;
font-size : 13px;
}
.nonSelected {
font-size : 13px;
}
.subSectionStyle
{
line-height : 15px;
letter-spacing : 0px;
}
.subSectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
}
.subSectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
}
/*av left hand side*/
.avbox {
background-color : #FFFFFF;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
margin-right : 2px;
margin-left : 2px;
width : 95px;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.avboxblue {
background-color : #003399;
}
.avtightgreycenter {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
text-align: center;
}
.avtightgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
}
.avgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #666666;
}
.tighterB {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
font-weight : 700;
}
.eventighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -2px;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.tighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.search {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
font-weight : bold;
color : #000000;
}
.liveandcoming {
background: #ffffff;
border: thin #000000;
width : 170px;
padding-left : 3px;
padding-right : 3px
}
.livecominghead {
color : #CC3300;
font-weight : bold;
}
.liveandcomingbutton {
width : 170px;
background : #CCCCFF;
font-size : 10px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
padding-left : 3px;
padding-right : 3px
}
/* sports */
.fixtureText {
font-size : 80%;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.statheader {
background-color : #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.statsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.qualifyText TD {
font-size : 80%;
}
.headlineindexa {
font-weight : bold;
font-size : 130%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexb {
font-weight : bold;
font-size : 110%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexc {
font-weight : bold;
font-size : 95%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.otherstorieshead {
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #CC3300;
font-size : 12px;
}
.specialstext{
padding : 10px
}
.extrastext {
color : #CC3300;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.resultstext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
.resultsscoretext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #999999
}
.narrowtext {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowtext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowgreytext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
color : #CCCCCC;
letter-spacing: -1pt;
}
.teamaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/aro_blue.gif") no-repeat;
}
.megaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.newmegaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.meganolink {
padding-left : 2px;
color: #999966;
}
.megawhite {
color: #FFFFFF;
font-weight : bold;
}
.megaheader {
font-family: Verdana, Arial, Helvetica;
padding-left : 2px;
color: #990000;
background: #FFFF99;
font-weight: bold;
}
.searchbanner {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #FFFFCC;
font-size : 11px;
}
.redstatsheader
{
font-family: Verdana, Arial, Helvetica;
color : #CC3300;
font-size : 11px;
}
.statstext TD
{
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
/*av rhs*/
.avheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #CCCCCC;
font-size: 11px;
font-weight: 600;
}
.avsubheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-size: 11px;
font-weight: 600;
}
.avtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
/* services nav */
.servicestitle {
color : #666666;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size:11px;
}
.servicesnav {
font-size:11px;
text-align:right;
padding-right:4px;
padding-top:2px;
padding-bottom:2px;
}
.fieldtitle {
font-weight : normal;
color : #000000;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.greentitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 12px;
font-weight : bold;
}
.redalert {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #cc3300;
font-size: 11px;
font-weight : bold;
}
.greentext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 11px;
}
.redtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
color : #CC3300;
}
.emailnewshead {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-weight: bold;
}
/*bbci additions*/
.bbcpageShadow { background:#666666 url(/furniture/nav/global_toolbar/bg.gif); }
.bbcpageShadowLeft {background:#999999 url(/furniture/nav/global_toolbar/bg.gif) repeat-y;}
.bbcpageBar { background:#999999 url(/furniture/nav/global_toolbar/v.gif) repeat-y; }
.bbcpageBar2 { background:#999999 url(/furniture/nav/global_toolbar/v.gif?) repeat-y; }
.bbcpageSearchL { background:#000099 url(/furniture/nav/global_toolbar/sl.gif) no-repeat;}
.bbcpageSearch { background:#000099 url(/furniture/nav/global_toolbar/st.gif) repeat-x;}
.bbcpageSearch2 { background:#000099 url(/furniture/nav/global_toolbar/st.gif?) repeat-x;}
.bbcpageSearchR { background:#999999 url(/furniture/nav/global_toolbar/sr.gif) no-repeat; }
.bbcpageBlack {background-color:#000000;}
.bbcpageGrey {background:#999999;}
.bbcpageGreyT {background:#999999 url(/furniture/nav/global_toolbar/t.gif)}
.bbcpageWhite,a.bbcpageWhite,a.bbcpageWhite:link,a.bbcpageWhite:hover,a.bbcpageWhite:visited{color:#ffffff;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
.bbcpageCream {color:#99CCCC;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
--- NEW FILE: sportacademy.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: stats_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: t.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: weather.gif ---
(This appears to be a binary file; contents omitted.)
|
Update of /cvsroot/csms/csms-core/src/test/resources/testHTML/ArsenalSunderland6Oct_files
In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/resources/testHTML/ArsenalSunderland6Oct_files
Added Files:
copyright_bbc.gif go.gif grey_pixel.gif livetext.gif
livetext_myclub_full.gif logo.gif news.gif nothing.gif
nothing_002.gif nothing_003.gif o.gif red_pixel.gif
sol_banner.gif sport.js sport_002.css sportacademy.gif
stats_banner.gif t.gif weather.gif
Log Message:
Initial test code for scoring application
--- NEW FILE: copyright_bbc.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: go.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: grey_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: livetext_myclub_full.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: logo.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: news.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_002.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: nothing_003.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: o.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: red_pixel.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sol_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: sport.js ---
/* pop-up code used by desktop scoreboard and ultra items */
function popup(url)
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=370,height=220');");
}
/* launch code for avconsole */
function launch_main_player()
{ clickmain=window.open("/sport3/worldcup2002/avconsole/avc_main.htm","clickmain","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,top=100,left=100,width=432,height=440");
}
function getPlatform()
{
var myUserAgent;
myUserAgent = navigator.userAgent.toLowerCase();
if ( (myUserAgent.indexOf("win") != -1) ||
(myUserAgent.indexOf("16bit") != -1)
)
{
return "win";
}
if (myUserAgent.indexOf("mac") != -1)
{
return "mac";
}
if (myUserAgent.indexOf("x11") != -1)
{
return "unx";
}
return "other";
}
function getBrowserType()
{
var myUserAgent;
var myMajor;
myUserAgent = navigator.userAgent.toLowerCase();
myMajor = parseInt(navigator.appVersion);
if( (myUserAgent.indexOf('mozilla') != -1) &&
(myUserAgent.indexOf('spoofer') == -1) &&
(myUserAgent.indexOf('compatible') == -1) &&
(myUserAgent.indexOf('opera') == -1) &&
(myUserAgent.indexOf('webtv') == -1)
)
{
if (myMajor > 3)
{
return "nav4";
}
return "nav";
}
if (myUserAgent.indexOf("msie") != -1)
{
if (myMajor > 3)
{
return "ie4";
}
return "ie";
}
return "other";
}
function request_launch()
{
if (getPlatform() != "other" &&
(getBrowserType() == "ie4" || getBrowserType() == "nav4")) {
launch_main_player();
} else {
self.location.href="/hi/english/static/audio_video/avconsole/old_browser.stm";
}
return;
}
function popUp(pageurl,width,height,scroll)
{
day = new Date();
id = day.getTime();
if (window.screen)
{
lpos = (screen.width/2)-(width/2);
hpos = (screen.height/2)-(height/2);
}
else
{
lpos = 1;
hpos = 1;
}
eval("bbcnews"+id+" = window.open('"+pageurl+"','"+id+"','toolbar=0,scrollbars="+scroll+",location=0,status=0,menubar=0,resizable=0,width="+width+",height="+height+",left="+lpos+",top="+hpos+"')");
}
--- NEW FILE: sport_002.css ---
BODY {
background-color: #FFFFCC;
margin:0px;
}
.idtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
B {
font-weight : bold;
}
TABLE, TD, TR {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
/*anchor cows */
A:link {
text-decoration : none;
color : #333366;
}
A:visited {
text-decoration : none;
color : #666699;
}
A:hover {
color : #CC3300;
}
A.index:link {
font-size : 11px;
color : #333366;
}
A.index:visited {
font-size : 11px;
color : #333366;
}
A.index:hover {
color : #CC3300;
}
/*storybody*/
TD {
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
FONT {
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.bodytext {
font-weight : normal;
color : #000000;
font-family : Verdana, Arial, Helvetica, Sans-serif;
}
.headlinestory {
font-size : 130%;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
padding-bottom : 8px;
}
.inlineimage {
padding-bottom : 6px;
}
.caption {
color : #333333;
padding-top : 2px;
}
/*storyrhs*/
.puffbox {
font-family : Verdana, Arial, Helvetica, Sans-serif;
/* width : 170px; */
}
.rhslist {
background : #FFFFCC;
font-family : Verdana, Arial, Helvetica, Sans-serif;
width : 170px;
padding-bottom : 4px;
}
.rhshead {
color : #CC3300;
padding-top : 4px;
font-weight : bold;
}
.seealsodate {
background : #FFFFCC;
font-size : 11px;
}
.disclaimer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
.promotextbold {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 90%;
font-weight : bold;
color : #000000;
}
/*end of rhs*/
.fromnews {
font-size: 10px;
color : #999999;
padding-top : 4px;
font-weight : bold;
text-align : left;
}
.box {
width : 150px;
background : #FFFFCC;
background-image : url(/furniture/nothing.gif);
float : right;
text-align : left;
}
.itemsm {
padding-left : 8px;
background : #FFFFFF url("/furniture/aro_blue.gif") 2px 1px no-repeat;
}
.h1 {
font-size : 124%;
}
.h2 {
font-size : 112%;
}
.h3 {
font-size : 100%;
}
.factheader {
background-color : #003399;
font-weight : bold;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 12px;
}
.factboxbody {
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
background-color : #FFFFFF;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxhead {
background-color: #003399;
color : #FFFF66;
font-weight : bold;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-size : 12px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.quoteboxbody {
padding : 5px;
letter-spacing: normal;
color : #999999;
font-family : Verdana, Arial, Helvetica, "Sans-serif";
font-weight : bold;
font-size : 12px;
background-color : #FFFFFF;
}
.aitem {
margin-top : 1px;
padding-left : 12px;
background-image : url("/furniture/aro_blue.gif");
background-repeat: no-repeat;
/* aitem defined with no background colour - use inline definition */
}
.newsinvideo {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/video_icon.gif") no-repeat;
}
.newsindepth {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/indepth_icon.gif") no-repeat;
}
.newsinaudio {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/audio_icon.gif") no-repeat;
}
.newsintalkingpoint {
margin-top : 1px;
padding-left : 15px;
background : #FFFFFF url("/furniture/talkingpoint_icon.gif") no-repeat;
}
.alsolist {
clear : both;
}
.avindex {
font-weight : normal;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666666;
}
.avreport {
padding : 3px;
letter-spacing: normal;
}
.alsohead {
margin-top : 2px;
margin-bottom : 2px;
color : #666666;
font-weight : bold;
font-size : 11px;
}
.head{
font-weight : bold;
color : #CC3300;
line-height : 12px;
font-size : 12px;
}
.avbutton {
width : 170px;
background : #CCCCFF;
font-size : 11px;
color : #666666;
text-align: right;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
}
.date {
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.sectiontitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 15px;
font-weight : bold;
color : #CC3300;
}
.crumbtraila {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color: #99CCCC;
font-size : 11px;
}
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
}
.footerarrow {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #CC3300;
font-weight : bold;
}
.footerpiping {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 100%;
color : #CC3333;
font-weight : bold;
}
.otherlanguages {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #CC6666;
}
.toprightnav {
font-size : 12px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.puffboxhead {
background-color: #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
.wsboxhead {
background-color: #FFFFFF;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
font-weight: 600;
}
/*get rid of this*/
.wsbottombox {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 90%;
font-weight: bold;
color: #003366;
background-color : #CCCC99;
}
/* left nav old */
.rootSectionSelected {
font-weight : 600;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
background-color : #FF9900;
text-align : right;
color : #333399;
}
.rootSection {
font-weight : 600;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
background-color : #FFFFCC;
}
.subList {
background-color: #FFCC00;
font-size : 11px;
color : #333399;
line-height : 15px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
letter-spacing : 0px;
text-decoration : none;
text-align : right;
}
.cc3300 {
background-color: #CC3300;
}
.ccoooo {
background-color: #CC0000;
}
.ffcc00 {
background-color: #FFCC00;
}
/* left nav new */
.sectionStyle
{
line-height : 15px;
letter-spacing : 0px;
font-weight : 600;
}
.sectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
font-weight : 600;
}
.sectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
font-weight : 600;
}
.Selected {
background-color : #CC3300;
font-size : 13px;
}
.nonSelected {
font-size : 13px;
}
.subSectionStyle
{
line-height : 15px;
letter-spacing : 0px;
}
.subSectionStyleTight
{
line-height : 15px;
letter-spacing : -1px;
}
.subSectionStyleTighter
{
line-height : 15px;
letter-spacing : -2px;
}
/*av left hand side*/
.avbox {
background-color : #FFFFFF;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
margin-right : 2px;
margin-left : 2px;
width : 95px;
padding-left : 6px;
padding-right : 6px;
padding-top : 6px;
padding-bottom : 6px;
}
.avboxblue {
background-color : #003399;
}
.avtightgreycenter {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
text-align: center;
}
.avtightgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : normal;
color : #666666;
}
.avgrey {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #666666;
}
.tighterB {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
font-weight : 700;
}
.eventighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -2px;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.tighter {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.search {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
font-weight : bold;
color : #000000;
}
.liveandcoming {
background: #ffffff;
border: thin #000000;
width : 170px;
padding-left : 3px;
padding-right : 3px
}
.livecominghead {
color : #CC3300;
font-weight : bold;
}
.liveandcomingbutton {
width : 170px;
background : #CCCCFF;
font-size : 10px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
border: thin #000000;
padding-left : 3px;
padding-right : 3px
}
/* sports */
.fixtureText {
font-size : 80%;
}
.fixturedetail {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.statheader {
background-color : #003399;
color : #FFFF66;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.statsubheader {
background-color : #FFFF66;
color : #003399;
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
.qualifyText TD {
font-size : 80%;
}
.headlineindexa {
font-weight : bold;
font-size : 130%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexb {
font-weight : bold;
font-size : 110%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.headlineindexc {
font-weight : bold;
font-size : 95%;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.otherstorieshead {
font-weight : bold;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #CC3300;
font-size : 12px;
}
.specialstext{
padding : 10px
}
.extrastext {
color : #CC3300;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
}
.resultstext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
}
.resultsscoretext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
color : #999999
}
.narrowtext {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowtext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
letter-spacing: -1pt;
}
.narrowgreytext TD {
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
color : #CCCCCC;
letter-spacing: -1pt;
}
.teamaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/aro_blue.gif") no-repeat;
}
.megaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.newmegaitem {
margin-top : 1px;
padding-left : 12px;
background : #FFFF99 url("/furniture/in_depth/mp_aro.gif") no-repeat;
}
.meganolink {
padding-left : 2px;
color: #999966;
}
.megawhite {
color: #FFFFFF;
font-weight : bold;
}
.megaheader {
font-family: Verdana, Arial, Helvetica;
padding-left : 2px;
color: #990000;
background: #FFFF99;
font-weight: bold;
}
.searchbanner {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #FFFFCC;
font-size : 11px;
}
.redstatsheader
{
font-family: Verdana, Arial, Helvetica;
color : #CC3300;
font-size : 11px;
}
.statstext TD
{
font-family: Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size: 11px;
}
/*av rhs*/
.avheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #CCCCCC;
font-size: 11px;
font-weight: 600;
}
.avsubheader {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-size: 11px;
font-weight: 600;
}
.avtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 11px;
color : #000000;
}
/* services nav */
.servicestitle {
color : #666666;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size:11px;
}
.servicesnav {
font-size:11px;
text-align:right;
padding-right:4px;
padding-top:2px;
padding-bottom:2px;
}
.fieldtitle {
font-weight : normal;
color : #000000;
font-size : 11px;
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
}
.greentitle {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 12px;
font-weight : bold;
}
.redalert {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #cc3300;
font-size: 11px;
font-weight : bold;
}
.greentext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color : #666633;
font-size: 11px;
}
.redtext {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-size : 12px;
font-weight : bold;
color : #CC3300;
}
.emailnewshead {
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
color: #FFFFFF;
font-weight: bold;
}
/*bbci additions*/
.bbcpageShadow { background:#666666 url(/furniture/nav/global_toolbar/bg.gif); }
.bbcpageShadowLeft {background:#999999 url(/furniture/nav/global_toolbar/bg.gif) repeat-y;}
.bbcpageBar { background:#999999 url(/furniture/nav/global_toolbar/v.gif) repeat-y; }
.bbcpageBar2 { background:#999999 url(/furniture/nav/global_toolbar/v.gif?) repeat-y; }
.bbcpageSearchL { background:#000099 url(/furniture/nav/global_toolbar/sl.gif) no-repeat;}
.bbcpageSearch { background:#000099 url(/furniture/nav/global_toolbar/st.gif) repeat-x;}
.bbcpageSearch2 { background:#000099 url(/furniture/nav/global_toolbar/st.gif?) repeat-x;}
.bbcpageSearchR { background:#999999 url(/furniture/nav/global_toolbar/sr.gif) no-repeat; }
.bbcpageBlack {background-color:#000000;}
.bbcpageGrey {background:#999999;}
.bbcpageGreyT {background:#999999 url(/furniture/nav/global_toolbar/t.gif)}
.bbcpageWhite,a.bbcpageWhite,a.bbcpageWhite:link,a.bbcpageWhite:hover,a.bbcpageWhite:visited{color:#ffffff;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
.bbcpageCream {color:#99CCCC;text-decoration:none;font-family:tahoma,arial,helvetica,sans-serif;}
--- NEW FILE: sportacademy.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: stats_banner.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: t.gif ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: weather.gif ---
(This appears to be a binary file; contents omitted.)
|
|
From: <rga...@us...> - 2002-10-18 15:05:50
|
Update of /cvsroot/csms/csms-core/src/test/resources/testHTML
In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/resources/testHTML
Added Files:
ArsenalSunderland6Oct.html BlackburnTotnham6Oct.html
LiverpoolChelsea6Oct.html ManUnitedEverton7October.html
NewcastleWestBrom5Oct.html SoutahamptonManCity5October.html
testCommentary_BBC_1.html testCommentary_BBC_2.html
testCommentary_BBC_3.html
Log Message:
Initial test code for scoring application
--- NEW FILE: ArsenalSunderland6Oct.html ---
<html><head><!--SOLIndexTemplate-->
<meta name="robots" content="noindex">
<title>BBC SPORT | FOOTBALL | STATISTICS | TEAMS | ARSENAL STATISTICS LIVE TEXT COMMENTARY</title><meta http-equiv="expires" content="now">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Refresh" content="120;url=/sport/hi/english/static/football/statistics/teams/a/arsenal/live_hi.stm">
<meta name="keywords" content="BBC Sport world uk international foreign british online service">
<meta name="OriginalPublicationDate" content="2002/10/06 13:24:10">
<!-- NOLMaps-->
<script src="ArsenalSunderland6Oct_files/sport.js" language="JavaScript"></script>
<link type="text/css" rel="stylesheet" href="ArsenalSunderland6Oct_files/sport_002.css"><style>
/* left nav new */
.servicehead{
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : bold;
padding-right:1px;
color : #FFFFFF;
font-size : 10px;
[...2502 lines suppressed...]
<td width="102" align="right"><img src="ArsenalSunderland6Oct_files/copyright_bbc.gif" width="73" height="17" hspace="12" vspace="7" border="0" alt="" usemap="#copyright"></td>
<td align="left" width="498"><a class="index" href="#top"><b class="footerarrow">^^ </b></a><a class="footer" href="#top"><b>Back to top</b></a></td>
</tr>
<tr>
<td width="102"></td>
<td class="footer"><b><a class="index" href="http://news.bbc.co.uk/sport/default.stm">Front Page</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/football/default.stm">Football</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/cricket/default.stm">Cricket</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_union/default.stm">Rugby Union</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_league/default.stm">Rugby League</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tennis/default.stm">Tennis</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/golf/default.stm">Golf</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/motorsport/default.stm">Motorsport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/boxing/default.stm">Boxing</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/athletics/default.stm">Athletics</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/other_sports/default.stm">Other Sports</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/sports_talk/default.stm">Sports Talk</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/in_depth/default.stm"><br>In Depth</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/photo_galleries/default.stm">Photo Galleries</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/audiovideo/default.stm">Audio/Video</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tv_and_radio/default.stm">TV & Radio</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/bbc_pundits/default.stm">BBC Pundits</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/tv_and_radio/question_of_sport/default.stm">Question of Sport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/funny_old_game/default.stm">Funny Old Game</a></b>
<br>
<b><span style="color: rgb(204,204,204);">------------------------------------------------------------</span>
<br>
<a class="footer" href="http://news.bbc.co.uk/">BBC News >></a> | <a class="footer" href="http://www.bbc.co.uk/weather">BBC Weather >></a></b>
<br>
<span style="color: rgb(204,204,204);">----------------------------------------------------------------------------------</span><br><a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/copyright.stm"><span style="font-size: 10px;">© MMII</span></a> <font size="1">|</font> <a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/sources.stm"><span style="font-size: 10px;">News Sources</span></a> <font size="1">|</font> <a class="footer" href="http://www.bbc.co.uk/privacy/"><span style="font-size: 10px;">Privacy</span></a>
<br><br>
</td>
</tr>
</tbody></table>
</body></html>
--- NEW FILE: BlackburnTotnham6Oct.html ---
<html><head><!--SOLIndexTemplate-->
<meta name="robots" content="noindex">
<title>BBC SPORT | FOOTBALL | STATISTICS | TEAMS | BLACKBURN ROVERS STATISTICS LIVE TEXT COMMENTARY</title><meta http-equiv="expires" content="now">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Refresh" content="120;url=/sport/hi/english/static/football/statistics/teams/b/blackburn_rovers/live_hi.stm">
<meta name="keywords" content="BBC Sport world uk international foreign british online service">
<meta name="OriginalPublicationDate" content="2002/10/06 14:41:05">
<!-- NOLMaps-->
<script src="BlackburnTotnham6Oct_files/sport.js" language="JavaScript"></script>
<link type="text/css" rel="stylesheet" href="BlackburnTotnham6Oct_files/sport_002.css"><style>
/* left nav new */
.servicehead{
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : bold;
padding-right:1px;
color : #FFFFFF;
font-size : 10px;
[...2371 lines suppressed...]
<td width="102" align="right"><img src="BlackburnTotnham6Oct_files/copyright_bbc.gif" width="73" height="17" hspace="12" vspace="7" border="0" alt="" usemap="#copyright"></td>
<td align="left" width="498"><a class="index" href="#top"><b class="footerarrow">^^ </b></a><a class="footer" href="#top"><b>Back to top</b></a></td>
</tr>
<tr>
<td width="102"></td>
<td class="footer"><b><a class="index" href="http://news.bbc.co.uk/sport/default.stm">Front Page</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/football/default.stm">Football</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/cricket/default.stm">Cricket</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_union/default.stm">Rugby Union</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_league/default.stm">Rugby League</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tennis/default.stm">Tennis</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/golf/default.stm">Golf</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/motorsport/default.stm">Motorsport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/boxing/default.stm">Boxing</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/athletics/default.stm">Athletics</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/other_sports/default.stm">Other Sports</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/sports_talk/default.stm">Sports Talk</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/in_depth/default.stm"><br>In Depth</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/photo_galleries/default.stm">Photo Galleries</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/audiovideo/default.stm">Audio/Video</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tv_and_radio/default.stm">TV & Radio</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/bbc_pundits/default.stm">BBC Pundits</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/tv_and_radio/question_of_sport/default.stm">Question of Sport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/funny_old_game/default.stm">Funny Old Game</a></b>
<br>
<b><span style="color: rgb(204,204,204);">------------------------------------------------------------</span>
<br>
<a class="footer" href="http://news.bbc.co.uk/">BBC News >></a> | <a class="footer" href="http://www.bbc.co.uk/weather">BBC Weather >></a></b>
<br>
<span style="color: rgb(204,204,204);">----------------------------------------------------------------------------------</span><br><a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/copyright.stm"><span style="font-size: 10px;">© MMII</span></a> <font size="1">|</font> <a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/sources.stm"><span style="font-size: 10px;">News Sources</span></a> <font size="1">|</font> <a class="footer" href="http://www.bbc.co.uk/privacy/"><span style="font-size: 10px;">Privacy</span></a>
<br><br>
</td>
</tr>
</tbody></table>
</body></html>
--- NEW FILE: LiverpoolChelsea6Oct.html ---
<html><head><!--SOLIndexTemplate-->
<meta name="robots" content="noindex">
<title>BBC SPORT | FOOTBALL | STATISTICS | TEAMS | LIVERPOOL STATISTICS LIVE TEXT COMMENTARY</title><meta http-equiv="expires" content="now">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Refresh" content="120;url=/sport/hi/english/static/football/statistics/teams/l/liverpool/live_hi.stm">
<meta name="keywords" content="BBC Sport world uk international foreign british online service">
<meta name="OriginalPublicationDate" content="2002/10/06 15:21:31">
<!-- NOLMaps-->
<script src="LiverpoolChelsea6Oct_files/sport.js" language="JavaScript"></script>
<link type="text/css" rel="stylesheet" href="LiverpoolChelsea6Oct_files/sport_002.css"><style>
/* left nav new */
.servicehead{
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : bold;
padding-right:1px;
color : #FFFFFF;
font-size : 10px;
[...2441 lines suppressed...]
<td width="102" align="right"><img src="LiverpoolChelsea6Oct_files/copyright_bbc.gif" width="73" height="17" hspace="12" vspace="7" border="0" alt="" usemap="#copyright"></td>
<td align="left" width="498"><a class="index" href="#top"><b class="footerarrow">^^ </b></a><a class="footer" href="#top"><b>Back to top</b></a></td>
</tr>
<tr>
<td width="102"></td>
<td class="footer"><b><a class="index" href="http://news.bbc.co.uk/sport/default.stm">Front Page</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/football/default.stm">Football</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/cricket/default.stm">Cricket</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_union/default.stm">Rugby Union</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_league/default.stm">Rugby League</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tennis/default.stm">Tennis</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/golf/default.stm">Golf</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/motorsport/default.stm">Motorsport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/boxing/default.stm">Boxing</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/athletics/default.stm">Athletics</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/other_sports/default.stm">Other Sports</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/sports_talk/default.stm">Sports Talk</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/in_depth/default.stm"><br>In Depth</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/photo_galleries/default.stm">Photo Galleries</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/audiovideo/default.stm">Audio/Video</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tv_and_radio/default.stm">TV & Radio</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/bbc_pundits/default.stm">BBC Pundits</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/tv_and_radio/question_of_sport/default.stm">Question of Sport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/funny_old_game/default.stm">Funny Old Game</a></b>
<br>
<b><span style="color: rgb(204,204,204);">------------------------------------------------------------</span>
<br>
<a class="footer" href="http://news.bbc.co.uk/">BBC News >></a> | <a class="footer" href="http://www.bbc.co.uk/weather">BBC Weather >></a></b>
<br>
<span style="color: rgb(204,204,204);">----------------------------------------------------------------------------------</span><br><a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/copyright.stm"><span style="font-size: 10px;">© MMII</span></a> <font size="1">|</font> <a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/sources.stm"><span style="font-size: 10px;">News Sources</span></a> <font size="1">|</font> <a class="footer" href="http://www.bbc.co.uk/privacy/"><span style="font-size: 10px;">Privacy</span></a>
<br><br>
</td>
</tr>
</tbody></table>
</body></html>
--- NEW FILE: ManUnitedEverton7October.html ---
<html><head><!--SOLIndexTemplate-->
<meta name="robots" content="noindex">
<title>BBC SPORT | FOOTBALL | STATISTICS | TEAMS | MAN UTD STATISTICS LIVE TEXT COMMENTARY</title><meta http-equiv="expires" content="now">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Refresh" content="120;url=/sport/hi/english/static/football/statistics/teams/m/man_utd/live_hi.stm">
<meta name="keywords" content="BBC Sport world uk international foreign british online service">
<meta name="OriginalPublicationDate" content="2002/10/07 19:58:22">
<!-- NOLMaps-->
<script src="ManUnitedEverton7October_files/sport.js" language="JavaScript"></script>
<link type="text/css" rel="stylesheet" href="ManUnitedEverton7October_files/sport_002.css"><style>
/* left nav new */
.servicehead{
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : bold;
padding-right:1px;
color : #FFFFFF;
font-size : 10px;
[...2461 lines suppressed...]
<td width="102" align="right"><img src="ManUnitedEverton7October_files/copyright_bbc.gif" width="73" height="17" hspace="12" vspace="7" border="0" alt="" usemap="#copyright"></td>
<td align="left" width="498"><a class="index" href="#top"><b class="footerarrow">^^ </b></a><a class="footer" href="#top"><b>Back to top</b></a></td>
</tr>
<tr>
<td width="102"></td>
<td class="footer"><b><a class="index" href="http://news.bbc.co.uk/sport/default.stm">Front Page</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/football/default.stm">Football</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/cricket/default.stm">Cricket</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_union/default.stm">Rugby Union</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_league/default.stm">Rugby League</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tennis/default.stm">Tennis</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/golf/default.stm">Golf</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/motorsport/default.stm">Motorsport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/boxing/default.stm">Boxing</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/athletics/default.stm">Athletics</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/other_sports/default.stm">Other Sports</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/sports_talk/default.stm">Sports Talk</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/in_depth/default.stm"><br>In Depth</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/photo_galleries/default.stm">Photo Galleries</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/audiovideo/default.stm">Audio/Video</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tv_and_radio/default.stm">TV & Radio</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/bbc_pundits/default.stm">BBC Pundits</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/tv_and_radio/question_of_sport/default.stm">Question of Sport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/funny_old_game/default.stm">Funny Old Game</a></b>
<br>
<b><span style="color: rgb(204,204,204);">------------------------------------------------------------</span>
<br>
<a class="footer" href="http://news.bbc.co.uk/">BBC News >></a> | <a class="footer" href="http://www.bbc.co.uk/weather">BBC Weather >></a></b>
<br>
<span style="color: rgb(204,204,204);">----------------------------------------------------------------------------------</span><br><a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/copyright.stm"><span style="font-size: 10px;">© MMII</span></a> <font size="1">|</font> <a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/sources.stm"><span style="font-size: 10px;">News Sources</span></a> <font size="1">|</font> <a class="footer" href="http://www.bbc.co.uk/privacy/"><span style="font-size: 10px;">Privacy</span></a>
<br><br>
</td>
</tr>
</tbody></table>
</body></html>
--- NEW FILE: NewcastleWestBrom5Oct.html ---
<html><head><!--SOLIndexTemplate-->
<meta name="robots" content="noindex">
<title>BBC SPORT | FOOTBALL | STATISTICS | TEAMS | NEWCASTLE UNITED STATISTICS LIVE TEXT COMMENTARY</title><meta http-equiv="expires" content="now">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Refresh" content="120;url=/sport/hi/english/static/football/statistics/teams/n/newcastle_united/live_hi.stm">
<meta name="keywords" content="BBC Sport world uk international foreign british online service">
<meta name="OriginalPublicationDate" content="2002/10/05 14:35:12">
<!-- NOLMaps-->
<script src="NewcastleWestBrom5Oct_files/sport.js" language="JavaScript"></script>
<link type="text/css" rel="stylesheet" href="NewcastleWestBrom5Oct_files/sport_002.css"><style>
/* left nav new */
.servicehead{
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : bold;
padding-right:1px;
color : #FFFFFF;
font-size : 10px;
[...2500 lines suppressed...]
<td width="102" align="right"><img src="NewcastleWestBrom5Oct_files/copyright_bbc.gif" width="73" height="17" hspace="12" vspace="7" border="0" alt="" usemap="#copyright"></td>
<td align="left" width="498"><a class="index" href="#top"><b class="footerarrow">^^ </b></a><a class="footer" href="#top"><b>Back to top</b></a></td>
</tr>
<tr>
<td width="102"></td>
<td class="footer"><b><a class="index" href="http://news.bbc.co.uk/sport/default.stm">Front Page</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/football/default.stm">Football</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/cricket/default.stm">Cricket</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_union/default.stm">Rugby Union</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_league/default.stm">Rugby League</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tennis/default.stm">Tennis</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/golf/default.stm">Golf</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/motorsport/default.stm">Motorsport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/boxing/default.stm">Boxing</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/athletics/default.stm">Athletics</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/other_sports/default.stm">Other Sports</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/sports_talk/default.stm">Sports Talk</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/in_depth/default.stm"><br>In Depth</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/photo_galleries/default.stm">Photo Galleries</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/audiovideo/default.stm">Audio/Video</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tv_and_radio/default.stm">TV & Radio</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/bbc_pundits/default.stm">BBC Pundits</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/tv_and_radio/question_of_sport/default.stm">Question of Sport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/funny_old_game/default.stm">Funny Old Game</a></b>
<br>
<b><span style="color: rgb(204,204,204);">------------------------------------------------------------</span>
<br>
<a class="footer" href="http://news.bbc.co.uk/">BBC News >></a> | <a class="footer" href="http://www.bbc.co.uk/weather">BBC Weather >></a></b>
<br>
<span style="color: rgb(204,204,204);">----------------------------------------------------------------------------------</span><br><a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/copyright.stm"><span style="font-size: 10px;">© MMII</span></a> <font size="1">|</font> <a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/sources.stm"><span style="font-size: 10px;">News Sources</span></a> <font size="1">|</font> <a class="footer" href="http://www.bbc.co.uk/privacy/"><span style="font-size: 10px;">Privacy</span></a>
<br><br>
</td>
</tr>
</tbody></table>
</body></html>
--- NEW FILE: SoutahamptonManCity5October.html ---
<html><head><!--SOLIndexTemplate-->
<meta name="robots" content="noindex">
<title>BBC SPORT | FOOTBALL | STATISTICS | TEAMS | SOUTHAMPTON STATISTICS LIVE TEXT COMMENTARY</title><meta http-equiv="expires" content="now">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Refresh" content="120;url=/sport/hi/english/static/football/statistics/teams/s/southampton/live_hi.stm">
<meta name="keywords" content="BBC Sport world uk international foreign british online service">
<meta name="OriginalPublicationDate" content="2002/10/05 14:28:43">
<!-- NOLMaps-->
<script src="SoutahamptonManCity5October_files/sport.js" language="JavaScript"></script>
<link type="text/css" rel="stylesheet" href="SoutahamptonManCity5October_files/sport_002.css"><style>
/* left nav new */
.servicehead{
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : bold;
padding-right:1px;
color : #FFFFFF;
font-size : 10px;
[...2652 lines suppressed...]
<td width="102" align="right"><img src="SoutahamptonManCity5October_files/copyright_bbc.gif" width="73" height="17" hspace="12" vspace="7" border="0" alt="" usemap="#copyright"></td>
<td align="left" width="498"><a class="index" href="#top"><b class="footerarrow">^^ </b></a><a class="footer" href="#top"><b>Back to top</b></a></td>
</tr>
<tr>
<td width="102"></td>
<td class="footer"><b><a class="index" href="http://news.bbc.co.uk/sport/default.stm">Front Page</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/football/default.stm">Football</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/cricket/default.stm">Cricket</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_union/default.stm">Rugby Union</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_league/default.stm">Rugby League</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tennis/default.stm">Tennis</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/golf/default.stm">Golf</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/motorsport/default.stm">Motorsport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/boxing/default.stm">Boxing</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/athletics/default.stm">Athletics</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/other_sports/default.stm">Other Sports</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/sports_talk/default.stm">Sports Talk</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/in_depth/default.stm"><br>In Depth</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/photo_galleries/default.stm">Photo Galleries</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/audiovideo/default.stm">Audio/Video</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tv_and_radio/default.stm">TV & Radio</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/bbc_pundits/default.stm">BBC Pundits</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/tv_and_radio/question_of_sport/default.stm">Question of Sport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/funny_old_game/default.stm">Funny Old Game</a></b>
<br>
<b><span style="color: rgb(204,204,204);">------------------------------------------------------------</span>
<br>
<a class="footer" href="http://news.bbc.co.uk/">BBC News >></a> | <a class="footer" href="http://www.bbc.co.uk/weather">BBC Weather >></a></b>
<br>
<span style="color: rgb(204,204,204);">----------------------------------------------------------------------------------</span><br><a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/copyright.stm"><span style="font-size: 10px;">© MMII</span></a> <font size="1">|</font> <a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/sources.stm"><span style="font-size: 10px;">News Sources</span></a> <font size="1">|</font> <a class="footer" href="http://www.bbc.co.uk/privacy/"><span style="font-size: 10px;">Privacy</span></a>
<br><br>
</td>
</tr>
</tbody></table>
</body></html>
--- NEW FILE: testCommentary_BBC_1.html ---
<!--SOLIndexTemplate-->
<html>
<head>
<meta NAME="robots" CONTENT="noindex">
<title> BBC SPORT | FOOTBALL | STATISTICS | TEAMS | BOLTON WANDERERS STATISTICS LIVE TEXT COMMENTARY </title>
<meta HTTP-EQUIV="expires" CONTENT="now">
<meta HTTP-EQUIV="pragma" CONTENT="no-cache">
<meta HTTP-EQUIV="Refresh" CONTENT="120;url=/sport/hi/english/static/football/statistics/teams/b/bolton_wanderers/live_hi.stm">
<meta NAME="keywords" CONTENT="BBC Sport world uk international foreign british online service">
<meta NAME="OriginalPublicationDate" CONTENT="2002/09/14 14:56:38">
<!-- NOLMaps-->
<script src="/sol/shared/js/sport.js" language="JavaScript"></script>
<map name="aroundukmap">
<area shape="RECT" coords="7,18,96,30" href="/sport/hi/english/scotland/default.stm" alt="Scotland">
<area shape="RECT" coords="7,30,96,42" href="/sport/hi/english/wales/default.stm" alt="Wales">
<area shape="RECT" coords="7,44,96,58" href="/sport/hi/english/northern_ireland/default.stm" alt="Northern Ireland">
[...2456 lines suppressed...]
<br>
<a class="footer" href="http://news.bbc.co.uk">BBC News >></a> | <a class="footer" href="http://www.bbc.co.uk/weather">BBC Weather >></a></b>
<br>
<span style="color : #CCCCCC;">----------------------------------------------------------------------------------</span><br><a class="footer" href="/sport/hi/english/static/help/copyright.stm"><span style="font-size : 10px">© MMII</span></a> <font size="1">|</font> <a class="footer" href="/sport/hi/english/static/help/sources.stm"><span style="font-size : 10px">News Sources</span></a> <font size="1">|</font> <a class="footer" href="http://www.bbc.co.uk/privacy/"><span style="font-size : 10px">Privacy</span></a></b>
<br><br>
</td>
</tr>
</table>
<link TYPE="text/css" REL="stylesheet" HREF="/stylesheets/sport.css">
</body>
</html>
--- NEW FILE: testCommentary_BBC_2.html ---
<html><head><!--SOLIndexTemplate-->
<meta name="robots" content="noindex">
<title>BBC SPORT | FOOTBALL | STATISTICS | TEAMS | TOTTENHAM HOTSPUR STATISTICS LIVE TEXT COMMENTARY</title><meta http-equiv="expires" content="now">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Refresh" content="120;url=/sport/hi/english/static/football/statistics/teams/t/tottenham_hotspur/live_hi.stm">
<meta name="keywords" content="BBC Sport world uk international foreign british online service">
<meta name="OriginalPublicationDate" content="2002/09/15 15:16:10">
<!-- NOLMaps-->
<script src="testCommentary_BBC_2_files/sport.js" language="JavaScript"></script>
<link type="text/css" rel="stylesheet" href="testCommentary_BBC_2_files/sport_002.css"><style>
/* left nav new */
.servicehead{
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : bold;
padding-right:1px;
color : #FFFFFF;
font-size : 10px;
[...2856 lines suppressed...]
<td width="102" align="right"><img src="testCommentary_BBC_2_files/copyright_bbc.gif" width="73" height="17" hspace="12" vspace="7" border="0" alt="" usemap="#copyright"></td>
<td align="left" width="498"><a class="index" href="#top"><b class="footerarrow">^^ </b></a><a class="footer" href="#top"><b>Back to top</b></a></td>
</tr>
<tr>
<td width="102"></td>
<td class="footer"><b><a class="index" href="http://news.bbc.co.uk/sport/default.stm">Front Page</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/football/default.stm">Football</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/cricket/default.stm">Cricket</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_union/default.stm">Rugby Union</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_league/default.stm">Rugby League</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tennis/default.stm">Tennis</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/golf/default.stm">Golf</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/motorsport/default.stm">Motorsport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/boxing/default.stm">Boxing</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/athletics/default.stm">Athletics</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/other_sports/default.stm">Other Sports</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/sports_talk/default.stm">Sports Talk</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/in_depth/default.stm"><br>In Depth</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/photo_galleries/default.stm">Photo Galleries</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/audiovideo/default.stm">Audio/Video</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tv_and_radio/default.stm">TV & Radio</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/bbc_pundits/default.stm">BBC Pundits</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/tv_and_radio/question_of_sport/default.stm">Question of Sport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/funny_old_game/default.stm">Funny Old Game</a></b>
<br>
<b><span style="color: rgb(204,204,204);">------------------------------------------------------------</span>
<br>
<a class="footer" href="http://news.bbc.co.uk/">BBC News >></a> | <a class="footer" href="http://www.bbc.co.uk/weather">BBC Weather >></a></b>
<br>
<span style="color: rgb(204,204,204);">----------------------------------------------------------------------------------</span><br><a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/copyright.stm"><span style="font-size: 10px;">© MMII</span></a> <font size="1">|</font> <a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/sources.stm"><span style="font-size: 10px;">News Sources</span></a> <font size="1">|</font> <a class="footer" href="http://www.bbc.co.uk/privacy/"><span style="font-size: 10px;">Privacy</span></a>
<br><br>
</td>
</tr>
</tbody></table>
</body></html>
--- NEW FILE: testCommentary_BBC_3.html ---
<html><head><!--SOLIndexTemplate-->
<meta name="robots" content="noindex">
<title>BBC SPORT | FOOTBALL | STATISTICS | TEAMS | WEST HAM UTD STATISTICS LIVE TEXT COMMENTARY</title><meta http-equiv="expires" content="now">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Refresh" content="120;url=/sport/hi/english/static/football/statistics/teams/w/west_ham_utd/live_hi.stm">
<meta name="keywords" content="BBC Sport world uk international foreign british online service">
<meta name="OriginalPublicationDate" content="2002/09/15 15:16:16">
<!-- NOLMaps-->
<script src="testCommentary_BBC_3_files/sport.js" language="JavaScript"></script>
<link type="text/css" rel="stylesheet" href="testCommentary_BBC_3_files/sport_002.css"><style>
/* left nav new */
.servicehead{
font-family : Verdana, Arial, Helvetica, sans-serif, "MS sans serif";
font-weight : bold;
padding-right:1px;
color : #FFFFFF;
font-size : 10px;
[...2856 lines suppressed...]
<td width="102" align="right"><img src="testCommentary_BBC_3_files/copyright_bbc.gif" width="73" height="17" hspace="12" vspace="7" border="0" alt="" usemap="#copyright"></td>
<td align="left" width="498"><a class="index" href="#top"><b class="footerarrow">^^ </b></a><a class="footer" href="#top"><b>Back to top</b></a></td>
</tr>
<tr>
<td width="102"></td>
<td class="footer"><b><a class="index" href="http://news.bbc.co.uk/sport/default.stm">Front Page</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/football/default.stm">Football</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/cricket/default.stm">Cricket</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_union/default.stm">Rugby Union</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/rugby_league/default.stm">Rugby League</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tennis/default.stm">Tennis</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/golf/default.stm">Golf</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/motorsport/default.stm">Motorsport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/boxing/default.stm">Boxing</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/athletics/default.stm">Athletics</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/other_sports/default.stm">Other Sports</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/sports_talk/default.stm">Sports Talk</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/in_depth/default.stm"><br>In Depth</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/photo_galleries/default.stm">Photo Galleries</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/audiovideo/default.stm">Audio/Video</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/tv_and_radio/default.stm">TV & Radio</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/bbc_pundits/default.stm">BBC Pundits</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/static/tv_and_radio/question_of_sport/default.stm">Question of Sport</a> | <a class="index" href="http://news.bbc.co.uk/sport/hi/english/funny_old_game/default.stm">Funny Old Game</a></b>
<br>
<b><span style="color: rgb(204,204,204);">------------------------------------------------------------</span>
<br>
<a class="footer" href="http://news.bbc.co.uk/">BBC News >></a> | <a class="footer" href="http://www.bbc.co.uk/weather">BBC Weather >></a></b>
<br>
<span style="color: rgb(204,204,204);">----------------------------------------------------------------------------------</span><br><a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/copyright.stm"><span style="font-size: 10px;">© MMII</span></a> <font size="1">|</font> <a class="footer" href="http://news.bbc.co.uk/sport/hi/english/static/help/sources.stm"><span style="font-size: 10px;">News Sources</span></a> <font size="1">|</font> <a class="footer" href="http://www.bbc.co.uk/privacy/"><span style="font-size: 10px;">Privacy</span></a>
<br><br>
</td>
</tr>
</tbody></table>
</body></html>
|
|
From: <rga...@us...> - 2002-10-18 15:05:48
|
Update of /cvsroot/csms/csms-core/src/test/resources/conf
In directory usw-pr-cvs1:/tmp/cvs-serv10867/test/resources/conf
Added Files:
BBCTestScoringConfig.xsl fanfoot.properties footballEvents.xml
Log Message:
Initial test code for scoring application
--- NEW FILE: BBCTestScoringConfig.xsl ---
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Document : BBcTestScoringConfig.xsl
Created on : 24 September 2002, 14:51
Author : rgardler
Description:
Transforms an Events XML document into a score XML document
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- template rule matching source root element -->
<xsl:template match="/">
<score>It works!</score>
</xsl:template>
</xsl:stylesheet>
--- NEW FILE: fanfoot.properties ---
#Mon Sep 30 21:08:32 BST 2002
ScoringConfigurationFile=file\:///home/rgardler/projects/fanfoot/src/resources/conf/BBCScoringConfig.xsl
Scores2HTMLStylsheet=file\:///home/rgardler/projects/fanfoot/src/resources/conf/Scores2HTML.xsl
EventConfigurationFile=file\:///home/rgardler/projects/fanfoot/src/resources/conf/footballEvents.xml
--- NEW FILE: footballEvents.xml ---
<?xml version="1.0" encoding="UTF-8"?>
<!--
Document : footballEvents.xml
Created on : 21 September 2002, 11:13
Author : rgardler
Description:
A descrption of the events that can be found
in a real life English Rules Football game that
may have an influence on the Fantasy game.
This configuration file is parsed by the automated
scoring system (org.fanfoot.scoring) in order to
extract event information from a textual commentary
of a live game.
-->
<events type="match">
<!-- Get the data for the UID of this match -->
<UID type="date_competition_homeTeam_awayTeam">
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="date">[A-Z][a-z]*,\s\d?\d\s[A-Z][a-z]*,\s\d\d\d\d</part>
<part name="competition">[\s]*Barclaycard\sPremiership[\s]*</part>
<part name="homeTeam">[A-Z][a-zA-Z\s]*[\s]*</part>
<unwantedPart>\d[\s]*</unwantedPart>
<unwantedPart>-[\s]*</unwantedPart>
<unwantedPart>\d[\s]*</unwantedPart>
<part name="awayTeam">(?:[A-Z][a-z]*\s)*</part>
</pattern>
</UID>
<!-- Extract the default information for this match -->
<event type="result">
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="date">[A-Z][a-z]*,\s\d?\d\s[A-Z][a-z]*,\s\d\d\d\d</part>
<part name="competition">[\s]*Barclaycard\sPremiership[\s]*</part>
<part name="homeTeam">[A-Z][a-zA-Z\s]*[\s]*</part>
<part name="homeScore">\d[\s]*</part>
<unwantedPart>-[\s]*</unwantedPart>
<part name="awayScore">\d</part>
<unwantedPart>[\s]*</unwantedPart>
<part name="awayTeam">(?:[A-Z][a-z]*\s)*</part>
</pattern>
</event>
<!-- Extract goal events -->
<event type="goal">
<duplicateDetection>
<part name="normalTimeMinutes"/>
<part name="normalTimeSeconds"/>
<part name="injuryTimeMinutes"/>
<part name="injuryTimeSeconds"/>
<part name="player"/>
</duplicateDetection>
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="normalTimeMinutes">\d\d?</part>
<unwantedPart>:</unwantedPart>
<part name="normalTimeSeconds">\d\d</part>
<unwantedPart>\s*\(?</unwantedPart>
<part name="injuryTimeMinutes">\d?\d?</part>
<unwantedPart>:?</unwantedPart>
<part name="injuryTimeSeconds">\d?\d?</part>
<unwantedPart>\)?</unwantedPart>
<unwantedPart>\s[Gg]oal\s-\s</unwantedPart>
<part name="player">(?:(?:[Mac|Mc|A-Z][a-z]*\s)(?!\d)){1,3}</part>
</pattern>
</event>
<event type="assist">
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="normalTimeMinutes">\d\d?</part>
<unwantedPart>:</unwantedPart>
<part name="normalTimeSeconds">\d\d</part>
<unwantedPart>\s*\(?</unwantedPart>
<part name="injuryTimeMinutes">\d?\d?</part>
<unwantedPart>:?</unwantedPart>
<part name="injuryTimeSeconds">\d?\d?</part>
<unwantedPart>\)?</unwantedPart>
<unwantedPart>[a-zA-Z\s\.\(\)\d-,']*[Aa]ssist\s?\(?[a-zA-Z]*\)?\s?by\s?</unwantedPart>
<part name="player">(?:(?:[Mac|Mc|A-Z][A-Za-z']*\s)(?!\))){1,3}</part>
</pattern>
</event>
<event type="booking">
<!-- FIXME: This pattern matches bookings that do not have lines of commentary after the time and booking heading, but it fails if there are commentary lines -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="normalTimeMinutes">\d\d?</part>
<unwantedPart>:</unwantedPart>
<part name="normalTimeSeconds">\d\d</part>
<unwantedPart>\s*\(?</unwantedPart>
<part name="injuryTimeMinutes">\d?\d?</part>
<unwantedPart>:?</unwantedPart>
<part name="injuryTimeSeconds">\d?\d?</part>
<unwantedPart>\)?</unwantedPart>
<unwantedPart>\s*Booking\s*</unwantedPart>
<!-- this makes the system lock up <unwantedPart>(?:(?:[^\.]*.)(?![^.][Bb]ooked\.))*</unwantedPart> -->
<part name="player">(?:(?:[Mac|Mc|A-Z][A-Za-z']*\s)(?!\))){1,3}</part>
<unwantedPart>[^)]*\)\s*[Bb]ooked.</unwantedPart>
</pattern>
</event>
<event type="sendingOff">
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="normalTimeMinutes">\d\d?</part>
<unwantedPart>:</unwantedPart>
<part name="normalTimeSeconds">\d\d</part>
<unwantedPart>\s*\(?</unwantedPart>
<part name="injuryTimeMinutes">\d?\d?</part>
<unwantedPart>:?</unwantedPart>
<part name="injuryTimeSeconds">\d?\d?</part>
<unwantedPart>\)?</unwantedPart>
<unwantedPart>\s[Ss]ent\s[Oo]ff\s</unwantedPart>
<part name="player">(?:(?:[Mac|Mc|A-Z][a-z]*\s)(?!\d)){1,3}</part>
</pattern>
</event>
<event type="substitution">
<!-- The first substitution in a commentary slot -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="normalTimeMinutes">\d\d?</part>
<unwantedPart>:</unwantedPart>
<part name="normalTimeSeconds">\d\d</part>
<unwantedPart>\s*\(?</unwantedPart>
<part name="injuryTimeMinutes">\d?\d?</part>
<unwantedPart>:?</unwantedPart>
<part name="injuryTimeSeconds">\d?\d?</part>
<unwantedPart>\)?</unwantedPart>
<unwantedPart>[a-zA-Z]+\s?[a-zA-Z]*\s?[Ss]ubstitution\s?:\s</unwantedPart>
<part name="playerOff">(?:(?:[Mac|Mc|A-Z][a-z]*\s)){1,3}</part>
<unwantedPart>replaced\sby\s</unwantedPart>
<part name="playerOn">(?:(?:[Mac|Mc|A-Z][A-Za-z']*\s)(?!\))){1,3}</part>]
<unwantedPart>\s?\(\s?</unwantedPart>
<part name="reason">[a-zA-Z\s]*</part>
<unwantedPart>\s?\)</unwantedPart>
</pattern>
<!-- The second substitution in a commentary slot -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="normalTimeMinutes">\d\d?</part>
<unwantedPart>:</unwantedPart>
<part name="normalTimeSeconds">\d\d</part>
<unwantedPart>\s*\(?</unwantedPart>
<part name="injuryTimeMinutes">\d?\d?</part>
<unwantedPart>:?</unwantedPart>
<part name="injuryTimeSeconds">\d?\d?</part>
<unwantedPart>\)?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z]+\s?[a-zA-Z]*\s?[Ss]ubstitution\s?:\s</unwantedPart>
<part name="playerOff">(?:(?:[Mac|Mc|A-Z][a-z]*\s)){1,3}</part>
<unwantedPart>replaced\sby\s</unwantedPart>
<part name="playerOn">(?:(?:[Mac|Mc|A-Z][A-Za-z']*\s)(?!\))){1,3}</part>]
<unwantedPart>\s?\(\s?</unwantedPart>
<part name="reason">[a-zA-Z\s]*</part>
<unwantedPart>\s?\)</unwantedPart>
</pattern>
<!-- The third substitution in a commentary slot -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="normalTimeMinutes">\d\d?</part>
<unwantedPart>:</unwantedPart>
<part name="normalTimeSeconds">\d\d</part>
<unwantedPart>\s*\(?</unwantedPart>
<part name="injuryTimeMinutes">\d?\d?</part>
<unwantedPart>:?</unwantedPart>
<part name="injuryTimeSeconds">\d?\d?</part>
<unwantedPart>\)?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z]+\s?[a-zA-Z]*\s?[Ss]ubstitution\s?:\s</unwantedPart>
<part name="playerOff">(?:(?:[Mac|Mc|A-Z][a-z]*\s)){1,3}</part>
<unwantedPart>replaced\sby\s</unwantedPart>
<part name="playerOn">(?:(?:[Mac|Mc|A-Z][A-Za-z']*\s)(?!\))){1,3}</part>]
<unwantedPart>\s?\(\s?</unwantedPart>
<part name="reason">[a-zA-Z\s]*</part>
<unwantedPart>\s?\)</unwantedPart>
</pattern>
<!-- The fourth substitution in a commentary slot -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="normalTimeMinutes">\d\d?</part>
<unwantedPart>:</unwantedPart>
<part name="normalTimeSeconds">\d\d</part>
<unwantedPart>\s*\(?</unwantedPart>
<part name="injuryTimeMinutes">\d?\d?</part>
<unwantedPart>:?</unwantedPart>
<part name="injuryTimeSeconds">\d?\d?</part>
<unwantedPart>\)?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z]+\s?[a-zA-Z]*\s?[Ss]ubstitution\s?:\s</unwantedPart>
<part name="playerOff">(?:(?:[Mac|Mc|A-Z][a-z]*\s)){1,3}</part>
<unwantedPart>replaced\sby\s</unwantedPart>
<part name="playerOn">(?:(?:[Mac|Mc|A-Z][A-Za-z']*\s)(?!\))){1,3}</part>]
<unwantedPart>\s?\(\s?</unwantedPart>
<part name="reason">[a-zA-Z\s]*</part>
<unwantedPart>\s?\)</unwantedPart>
</pattern>
<!-- The fifth substitution in a commentary slot -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="normalTimeMinutes">\d\d?</part>
<unwantedPart>:</unwantedPart>
<part name="normalTimeSeconds">\d\d</part>
<unwantedPart>\s*\(?</unwantedPart>
<part name="injuryTimeMinutes">\d?\d?</part>
<unwantedPart>:?</unwantedPart>
<part name="injuryTimeSeconds">\d?\d?</part>
<unwantedPart>\)?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z]+\s?[a-zA-Z]*\s?[Ss]ubstitution\s?:\s</unwantedPart>
<part name="playerOff">(?:(?:[Mac|Mc|A-Z][a-z]*\s)){1,3}</part>
<unwantedPart>replaced\sby\s</unwantedPart>
<part name="playerOn">(?:(?:[Mac|Mc|A-Z][A-Za-z']*\s)(?!\))){1,3}</part>]
<unwantedPart>\s?\(\s?</unwantedPart>
<part name="reason">[a-zA-Z\s]*</part>
<unwantedPart>\s?\)</unwantedPart>
</pattern>
<!-- The sixth substitution in a commentary slot -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<part name="normalTimeMinutes">\d\d?</part>
<unwantedPart>:</unwantedPart>
<part name="normalTimeSeconds">\d\d</part>
<unwantedPart>\s*\(?</unwantedPart>
<part name="injuryTimeMinutes">\d?\d?</part>
<unwantedPart>:?</unwantedPart>
<part name="injuryTimeSeconds">\d?\d?</part>
<unwantedPart>\)?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z\s]*:[a-zA-Z\s]*\([a-zA-Z\)]*\.\s?</unwantedPart>
<unwantedPart>[a-zA-Z]+\s?[a-zA-Z]*\s?[Ss]ubstitution\s?:\s</unwantedPart>
<part name="playerOff">(?:(?:[Mac|Mc|A-Z][a-z]*\s)){1,3}</part>
<unwantedPart>replaced\sby\s</unwantedPart>
<part name="playerOn">(?:(?:[Mac|Mc|A-Z][A-Za-z']*\s)(?!\))){1,3}</part>]
<unwantedPart>\s?\(\s?</unwantedPart>
<part name="reason">[a-zA-Z\s]*</part>
<unwantedPart>\s?\)</unwantedPart>
</pattern>
</event>
<event type="teamStarter">
<!-- Team 1 - Player 1 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Player 2 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Player 3 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Player 4 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Player 5 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Player 6 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Player 7 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Player 8 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Player 9 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Player 10 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Player 11 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
<unwantedPart>Subs:</unwantedPart>
</pattern>
<!-- Team 2 - Player 1 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Player 2 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Player 3 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Player 4 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Player 5 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Player 6 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Player 7 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Player 8 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Player 9 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Player 10 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Player 11 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
<unwantedPart>Subs:</unwantedPart>
</pattern>
</event>
<event type="substituteStarter">
<!-- Team 1 - Sub 1 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^:]*:\s*</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Sub 2 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^:]*:\s*</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Sub 3 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^:]*:\s*</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Sub 4 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^:]*:\s*</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 1 - Sub 5 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>.*\d\d?:\d\d</unwantedPart>
<unwantedPart>(?:[^\.]*\.)*\s*</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^:]*:\s*</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,\s*</unwantedPart>
<part name="player">[^,\s]*</part>
</pattern>
<!-- Team 2 - Sub 1 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^:]*:\s*</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Sub 2 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^:]*:\s*</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Sub 3 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^:]*:\s*</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Sub 4 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^:]*:\s*</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
</pattern>
<!-- Team 2 - Sub 5 -->
<pattern>
<sourceType>BBC Text Commentary</sourceType>
<unwantedPart>Subs:\s*(?:[a-zA-z]*\s*,\s*){4,}[a-zA-z]*\s*</unwantedPart>
<unwantedPart>(?![a-zA-Z,\s]*Ref:)</unwantedPart>
<part name="team">(?:(?:[A-Z][a-z]*)\s)*</part>
<unwantedPart>[^:]*:\s*</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<unwantedPart>[^,]*,</unwantedPart>
<part name="player">[^,]*</part>
<unwantedPart>Ref:</unwantedPart>
</pattern>
</event>
</events>
|