Author: thorsten
Date: Thu Aug 21 03:37:55 2008
New Revision: 687700
URL: http://svn.apache.org/viewvc?rev=687700&view=rev
Log:
Using logical and
Modified:
forrest/branches/update_cocoon_2.1.12-dev/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/transformation/DispatcherTransformer.java
Modified:
forrest/branches/update_cocoon_2.1.12-dev/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/transformation/DispatcherTransformer.java
URL:
http://svn.apache.org/viewvc/forrest/branches/update_cocoon_2.1.12-dev/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/transformation/DispatcherTransformer.java?rev=687700&r1=687699&r2=687700&view=diff
==============================================================================
---
forrest/branches/update_cocoon_2.1.12-dev/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/transformation/DispatcherTransformer.java
(original)
+++
forrest/branches/update_cocoon_2.1.12-dev/whiteboard/cocoon-2.2-blocks/dispatcher/src/main/java/org/apache/forrest/dispatcher/transformation/DispatcherTransformer.java
Thu Aug 21 03:37:55 2008
@@ -246,7 +246,7 @@
// You can either request URL?dispatcher.caching=off
// or add this property to forrest.properties.xml
// to force a SourceValidity.INVALID
- if (null != validityFile & !(validityOverride.equals(CACHING_OFF))) {
+ if (null != validityFile && !(validityOverride.equals(CACHING_OFF))) {
Source resolveSource=null;
try {
resolveSource= m_resolver.resolveURI(validityFile);
@@ -363,7 +363,7 @@
throws SAXException {
// Process start element event
// Are we inside of properties? If so we need to record the elements.
- if (this.insideProperties & this.includeNodes) {
+ if (this.insideProperties && this.includeNodes) {
try {
this.builder.startElement(uri, name, raw, attr);
} catch (SAXException e) {
@@ -384,19 +384,19 @@
}
if (STRUCTURER_ELEMENT.equals(name))
structurerProcessingStart(attr);
- else if (DISPATCHER_HOOK_ELEMENT.equals(name) & this.includeNodes)
+ else if (DISPATCHER_HOOK_ELEMENT.equals(name) && this.includeNodes)
hookProcessingStart(name, raw, attr);
- else if (ContractBean.CONTRACT_ELEMENT.equals(name) & this.includeNodes)
+ else if (ContractBean.CONTRACT_ELEMENT.equals(name) && this.includeNodes)
contractProcessingStart(attr);
- else if (ContractBean.PROPERTY_ELEMENT.equals(name) & this.includeNodes)
{
+ else if (ContractBean.PROPERTY_ELEMENT.equals(name) &&
this.includeNodes) {
this.insideProperties = true;
propertyProcessingStart(uri, name, raw, attr);
}
} else {
- if (!this.insideProperties & this.includeNodes & this.insideStructurer
- & this.allowMarkup)
+ if (!this.insideProperties && this.includeNodes && this.insideStructurer
+ && this.allowMarkup)
super.startElement(uri, name, raw, attr);
- if (!this.insideProperties & this.includeNodes & !this.insideStructurer)
+ if (!this.insideProperties && this.includeNodes &&
!this.insideStructurer)
super.startElement(uri, name, raw, attr);
}
}
@@ -486,18 +486,18 @@
} else if (DispatcherHelper.DISPATCHER_NAMESPACE_URI.equals(uri)) {
if (STRUCTURER_ELEMENT.equals(name))
structurerProcessingEnd(raw);
- else if (ContractBean.CONTRACT_ELEMENT.equals(name) & this.includeNodes)
+ else if (ContractBean.CONTRACT_ELEMENT.equals(name) && this.includeNodes)
contractProcessingEnd();
- else if (DISPATCHER_HOOK_ELEMENT.equals(name) & this.includeNodes)
+ else if (DISPATCHER_HOOK_ELEMENT.equals(name) && this.includeNodes)
if (path.lastIndexOf("/") > -1)
path = path.substring(0, path.lastIndexOf("/"));
else
path = null;
} else {
- if (!this.insideProperties & this.includeNodes & this.insideStructurer
- & this.allowMarkup)
+ if (!this.insideProperties && this.includeNodes && this.insideStructurer
+ && this.allowMarkup)
super.endElement(uri, name, raw);
- if (!this.insideProperties & this.includeNodes & !this.insideStructurer)
+ if (!this.insideProperties && this.includeNodes &&
!this.insideStructurer)
super.endElement(uri, name, raw);
}
}
@@ -518,10 +518,10 @@
currentFormat = value;
}
if (localName.equals(STRUCTURER_HOOK_XPATH_ATTRIBUTE)) {
- if ("/".equals(String.valueOf(value.charAt(0))) & value.length() != 1)
{
+ if ("/".equals(String.valueOf(value.charAt(0))) && value.length() !=
1) {
path = "result" + value;
} else if ("/".equals(String.valueOf(value.charAt(0)))
- & value.length() == 1) {
+ && value.length() == 1) {
path = "result";
} else {
path = "result/" + value;
@@ -908,26 +908,26 @@
}
public void characters(char c[], int start, int len) throws SAXException {
- if (this.insideProperties & this.includeNodes)
+ if (this.insideProperties && this.includeNodes)
this.builder.characters(c, start, len);
- else if (!this.insideProperties & this.includeNodes
- & !this.insideStructurer)
+ else if (!this.insideProperties && this.includeNodes
+ && !this.insideStructurer)
super.contentHandler.characters(c, start, len);
}
public void startCDATA() throws SAXException {
- if (this.insideProperties & this.includeNodes)
+ if (this.insideProperties && this.includeNodes)
this.builder.startCDATA();
- else if (!this.insideProperties & this.includeNodes
- & !this.insideStructurer)
+ else if (!this.insideProperties && this.includeNodes
+ && !this.insideStructurer)
super.lexicalHandler.startCDATA();
}
public void endCDATA() throws SAXException {
- if (this.insideProperties & this.includeNodes)
+ if (this.insideProperties && this.includeNodes)
this.builder.endCDATA();
- else if (!this.insideProperties & this.includeNodes
- & !this.insideStructurer)
+ else if (!this.insideProperties && this.includeNodes
+ && !this.insideStructurer)
super.lexicalHandler.endCDATA();
}
@@ -935,7 +935,7 @@
public void startPrefixMapping(String prefix, String uri) throws
SAXException {
super.startPrefixMapping(prefix, uri);
- if (this.insideProperties & this.includeNodes) {
+ if (this.insideProperties && this.includeNodes) {
this.builder.startPrefixMapping(prefix, uri);
} else {
storePrefixMapping(prefix, uri);