DemoRESTController:
import org.apache.cocoon.rest.controller.response.Page;
must be replaced by
org.apache.cocoon.rest.controller.response.URLResponse;
TimeStampGenerator:
import org.apache.cocoon.pipeline.component.sax.AbstractGenerator;
import org.apache.cocoon.pipeline.component.sax.XMLConsumer;
import org.apache.cocoon.pipeline.util.ImmutableAttributesImpl;
the first two classed have been refactored to cocoon-sax, so
org.apache.cocoon.sax.AbstractSAXProducer;
org.apache.cocoon.sax.SAXConsumer;
and the ImmutableAttributesImpl, I could not find anymore, what's wrong
with:
org.apache.cocoon.sitemap.xml.AttributesImpl;
Is that OK?
Jos