ported over the HTML Checker from the original Venice source, somewhat improved

in design
This commit is contained in:
Eric J. Bowersox
2003-06-07 02:50:42 +00:00
parent 2e395d636a
commit 92a569cbbd
41 changed files with 4517 additions and 49 deletions

View File

@@ -0,0 +1,33 @@
/*
* The contents of this file are subject to the Mozilla Public License Version 1.1
* (the "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
*
* Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
* WARRANTY OF ANY KIND, either express or implied. See the License for the specific
* language governing rights and limitations under the License.
*
* The Original Code is the Venice Web Communities System.
*
* The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
* for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
* Copyright (C) 2003 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
*
* Contributor(s):
*/
package com.silverwrist.dynamo.except;
public class AlreadyFinishedException extends HTMLCheckerRuntimeException
{
/*--------------------------------------------------------------------------------
* Constructors
*--------------------------------------------------------------------------------
*/
public AlreadyFinishedException()
{
super(AlreadyFinishedException.class,"DynamoExceptionMessages","htmlchecker.alreadyfinished");
} // end constructor
} // end class AlreadyFinishedException

View File

@@ -31,3 +31,5 @@ scriptingException=Error executing {0}[{1}]: {2}
renderClass.creation=Unable to create object of class {0} at rendering time.
dialogException.xmlLoadException=Error in XML dialog definition: {0}
udfe.bad.itemType=No implementation exists for dialog item type "{0}".
htmlchecker.alreadyfinished=The HTML Checker is already in a finished state.
htmlchecker.notyetfinished=The HTML Checker is not yet in a finished state.

View File

@@ -0,0 +1,39 @@
/*
* The contents of this file are subject to the Mozilla Public License Version 1.1
* (the "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
*
* Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
* WARRANTY OF ANY KIND, either express or implied. See the License for the specific
* language governing rights and limitations under the License.
*
* The Original Code is the Venice Web Communities System.
*
* The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
* for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
* Copyright (C) 2003 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
*
* Contributor(s):
*/
package com.silverwrist.dynamo.except;
public class HTMLCheckerRuntimeException extends ExternalRuntimeException
{
/*--------------------------------------------------------------------------------
* Constructors
*--------------------------------------------------------------------------------
*/
public HTMLCheckerRuntimeException(Class caller, String bundle, String message_id)
{
super(caller,bundle,message_id);
} // end constructor
public HTMLCheckerRuntimeException(Class caller, String bundle, String message_id, Throwable inner)
{
super(caller,bundle,message_id,inner);
} // end constructor
} // end class HtmlCheckerRuntimeException

View File

@@ -0,0 +1,33 @@
/*
* The contents of this file are subject to the Mozilla Public License Version 1.1
* (the "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
*
* Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
* WARRANTY OF ANY KIND, either express or implied. See the License for the specific
* language governing rights and limitations under the License.
*
* The Original Code is the Venice Web Communities System.
*
* The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
* for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
* Copyright (C) 2003 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
*
* Contributor(s):
*/
package com.silverwrist.dynamo.except;
public class NotYetFinishedException extends HTMLCheckerRuntimeException
{
/*--------------------------------------------------------------------------------
* Constructors
*--------------------------------------------------------------------------------
*/
public NotYetFinishedException()
{
super(NotYetFinishedException.class,"DynamoExceptionMessages","htmlchecker.notyetfinished");
} // end constructor
} // end class NotYetFinishedException