01: /*
02: * Copyright 2004 Outerthought bvba and Schaubroeck nv
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.outerj.daisy.frontend.editor;
17:
18: import org.apache.cocoon.forms.formmodel.Form;
19: import org.apache.avalon.framework.service.ServiceManager;
20: import org.apache.avalon.framework.context.Context;
21: import org.outerj.daisy.frontend.util.FormHelper;
22: import org.outerj.daisy.repository.Part;
23: import org.outerj.daisy.repository.Document;
24: import org.outerj.daisy.repository.Repository;
25: import org.outerj.daisy.repository.schema.PartTypeUse;
26:
27: import java.util.Map;
28:
29: public class HtmlPartEditor implements PartEditor {
30: private ServiceManager serviceManager;
31:
32: private HtmlPartEditor(ServiceManager serviceManager) {
33: this .serviceManager = serviceManager;
34: }
35:
36: public static class Factory implements PartEditorFactory {
37: public PartEditor getPartEditor(Map properties,
38: ServiceManager serviceManager, Context context) {
39: return new HtmlPartEditor(serviceManager);
40: }
41: }
42:
43: public Form getForm(PartTypeUse partTypeUse,
44: DocumentEditorForm documentEditorForm, Repository repository)
45: throws Exception {
46: Form form = FormHelper.createForm(serviceManager,
47: "resources/form/parteditor_daisyhtml_definition.xml");
48: form.getChild("part").addValidator(
49: new PartRequiredValidator(documentEditorForm,
50: partTypeUse.isRequired(), true));
51: form.setAttribute("EditorMode", "htmlarea");
52: return form;
53: }
54:
55: public String getFormTemplate() {
56: return "resources/form/parteditor_daisyhtml_template.xml";
57: }
58:
59: public void load(Form form, Document document, Part part,
60: Repository repository) throws Exception {
61: PartEditorHelper.load(form, part, "part");
62: }
63:
64: public void save(Form form, Document document) throws Exception {
65: PartEditorHelper.save(form, document, "part", "text/xml");
66: }
67: }
|