| 1 | 2002-05-02 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 2 | |
|---|
| 3 | * src/de/schlund/pfixxml/results/XMLResult.java (XMLResult): changed constructor to |
|---|
| 4 | require a boolean parameter that tells if flush should transform using the stylesheet, or |
|---|
| 5 | if it should construct a xml doc containing a) the stylesheet name, b) all parameters and c) the |
|---|
| 6 | output xml document. |
|---|
| 7 | (flush): implement it. |
|---|
| 8 | |
|---|
| 9 | * src/de/schlund/pfixxml/AbstractXMLServer.java (getSaveableProcessResult): changed creation of |
|---|
| 10 | XMLResult accordingly. Recognizes a property xmlserver.output.externalrenderer=true if only the |
|---|
| 11 | full output document should be constructed. |
|---|
| 12 | |
|---|
| 13 | 2002-04-17 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 14 | |
|---|
| 15 | * src/de/schlund/pfixxml/ImageGeometry.java (getImageGeometryData): added |
|---|
| 16 | * src/de/schlund/pfixxml/ImageGeometryData.java (lastModified): |
|---|
| 17 | added. Make use of the ImageInfo class. Provide static methods to access the geometry. |
|---|
| 18 | |
|---|
| 19 | 2002-04-16 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 20 | |
|---|
| 21 | * src/de/schlund/pfixxml/ImageInfo.java: Added. Public Domain |
|---|
| 22 | licensed image info class (see there for more info). |
|---|
| 23 | |
|---|
| 24 | 2002-04-12 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 25 | |
|---|
| 26 | * src/de/schlund/pfixxml/targets/TraxXSLTProcessor.java (doApplyTrafo): |
|---|
| 27 | Aaaaaaaargh. Xalan IS NOT THREAD SAFE! Repeat: XALAN IS NOT THREAD |
|---|
| 28 | SAFE. Entities will be swapped between two concurrent |
|---|
| 29 | transformations. This is STUPID. We added a global lock to prevent concurrent trafos :-( |
|---|
| 30 | |
|---|
| 31 | 2002-04-11 Bernd Koecke <bk@schlund.de> |
|---|
| 32 | * Added a src dircetory |
|---|
| 33 | * Changed Makefiles etc. to build class files, javadoc and jar file |
|---|
| 34 | |
|---|
| 35 | 2002-03-21 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 36 | |
|---|
| 37 | * de/schlund/pfixxml/targets/Target.java (resetModTime): new Method. needed to fore an update on a target. |
|---|
| 38 | * de/schlund/pfixxml/targets/LeaveTarget.java (resetModTime): |
|---|
| 39 | * de/schlund/pfixxml/targets/VirtualTarget.java (resetModTime): |
|---|
| 40 | * de/schlund/pfixxml/targets/SharedLeave.java (resetModTime): |
|---|
| 41 | * de/schlund/pfixxml/targets/TargetImpl.java (resetModTime): fixed accordingly |
|---|
| 42 | |
|---|
| 43 | * de/schlund/pfixxml/IncludeDocument.java (get): try to fix some |
|---|
| 44 | more occurances where we want to log the need for an include part, but fail to get it. |
|---|
| 45 | |
|---|
| 46 | 2002-03-15 Bernd Koecke <bk@schlund.de> |
|---|
| 47 | * de/schlund/pfixxml/FactoryInitServlet: bugfix in init method. |
|---|
| 48 | |
|---|
| 49 | 2002-03-08 Bernd Koecke <bk@schlund.de> |
|---|
| 50 | * de/schlund/pfixxml/serverutil/tomcat4/TomcatUtil.java: bugfix in package decl. |
|---|
| 51 | |
|---|
| 52 | 2002-03-01 Bernd Koecke <bk@schlund.de> |
|---|
| 53 | |
|---|
| 54 | * de/schlund/pfixxml/serverutil/ContainerUtil.java (ContainerUtil): |
|---|
| 55 | Changed signature of some mehtods. I eleminated the unneeded session object from ome methods. |
|---|
| 56 | * de/schlund/pfixxml/serverutil/jserv/TraditionalJServUtil.java (TraditionalJServUtil): |
|---|
| 57 | Changed the methods because of the change in the signature of the interface. |
|---|
| 58 | * de/schlund/pfixxml/serverutil/jserv/ModernJServUtil.java (ModerJServUtil): |
|---|
| 59 | New file for tomcat-like encoding of the session id, but runnable with JServ |
|---|
| 60 | * de/schlund/pfixxml/serverutil/tomcat4/TomcatUtil.java (TomcatUtil): |
|---|
| 61 | New file for handling session id with tomcat. Handles the old rewriting from |
|---|
| 62 | TraditionalJServUtil as well. |
|---|
| 63 | * de/schlund/pfixxml/ServletManager.java (callProcess): Bug in handling of URI_WITH_SESSION. |
|---|
| 64 | * de/schlund/pfixxml/results/XMLResult.java (XMLResult): Changes because of the changed ContainerUtil. |
|---|
| 65 | |
|---|
| 66 | 2002-02-22 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 67 | |
|---|
| 68 | * de/schlund/pfixxml/ContextXMLServer.java (getDom): changed signature (see below) |
|---|
| 69 | * de/schlund/pfixxml/XMLServer.java (getDom): changed signature (see below) |
|---|
| 70 | * de/schlund/pfixxml/DerefServer.java (process): changed process signature (see below) |
|---|
| 71 | |
|---|
| 72 | * de/schlund/pfixxml/RequestRecorder.java (tryRecord): use XMLResult instead of SPDocument |
|---|
| 73 | |
|---|
| 74 | * de/schlund/pfixxml/results/XMLResult.java (XMLResult): give req and res in constructor |
|---|
| 75 | (getCharacterEncoding): new method |
|---|
| 76 | (getURLSessionId): new method |
|---|
| 77 | (getSPDocument): new method |
|---|
| 78 | |
|---|
| 79 | * de/schlund/pfixxml/AbstractXMLServer.java (process): |
|---|
| 80 | Cleanup. Remove the Response object from the process method (and |
|---|
| 81 | consequently also down the getDom.) this had some consequences on |
|---|
| 82 | the SaveableProcessResult, especially for the SimpleStringResult (see there). |
|---|
| 83 | |
|---|
| 84 | * de/schlund/pfixxml/ServletManager.java (ServletManager): changed accordingly |
|---|
| 85 | |
|---|
| 86 | * de/schlund/pfixxml/results/XMLResult.java (XMLResult): renamed from AbstractXMLResult. it's _not_ abstract. |
|---|
| 87 | |
|---|
| 88 | 2002-02-21 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 89 | |
|---|
| 90 | * de/schlund/pfixxml/results/SimpleStringResult.java: new file, needs more work to implement all that's |
|---|
| 91 | needed/useful from HttpServletResponse |
|---|
| 92 | * de/schlund/pfixxml/ServletManager.java (getSaveableProcessResult): Used here, method no longer abstract. |
|---|
| 93 | |
|---|
| 94 | 2002-02-20 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 95 | |
|---|
| 96 | * Big changes by bk@schlund.de. First step at enabling tomcat4 and abstract all |
|---|
| 97 | the differences away. Changed sources: |
|---|
| 98 | P .cvsignore |
|---|
| 99 | P Makefile |
|---|
| 100 | P Makefile.local |
|---|
| 101 | U config.sh |
|---|
| 102 | P META-INF/pfixxml.version |
|---|
| 103 | P bin/setClassPath.sh |
|---|
| 104 | P de/schlund/pfixxml/AbstractXMLServer.java |
|---|
| 105 | P de/schlund/pfixxml/DerefServer.java |
|---|
| 106 | U de/schlund/pfixxml/SavableProcessResult.java |
|---|
| 107 | P de/schlund/pfixxml/ServletManager.java |
|---|
| 108 | U de/schlund/pfixxml/results/AbstractXMLResult.java |
|---|
| 109 | U de/schlund/pfixxml/serverutil/ContainerUtil.java |
|---|
| 110 | U de/schlund/pfixxml/serverutil/jserv/TraditionalJServUtil.java |
|---|
| 111 | U de/schlund/pfixxml/serverutil/tomcat4/.cvsignore |
|---|
| 112 | U lib/jserv/jsdk.jar |
|---|
| 113 | U lib/tomcat4/servlet.jar |
|---|
| 114 | |
|---|
| 115 | * Cosmetical changes by me, more will follow. |
|---|
| 116 | |
|---|
| 117 | 2002-01-16 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 118 | |
|---|
| 119 | * de/schlund/pfixxml/IncludeDocument.java (get): Handle gracefully the case of an |
|---|
| 120 | include file that doesn't exist at all. |
|---|
| 121 | |
|---|
| 122 | 2002-01-09 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 123 | |
|---|
| 124 | * de/schlund/pfixxml/ResultForm.java (addStatusCodeEnum): commented out until we better understand what |
|---|
| 125 | it does. |
|---|
| 126 | (addErrorNode): Added method |
|---|
| 127 | (createIncludeFromStatusCode): Added method: |
|---|
| 128 | (addStatusCode): Use above. |
|---|
| 129 | (addErrorInclude): Removed method |
|---|
| 130 | (addParams): commented out. |
|---|
| 131 | (addHiddenParams): commented out. |
|---|
| 132 | |
|---|
| 133 | 2001-12-17 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 134 | |
|---|
| 135 | * de/schlund/pfixxml/IncludeDocument.java: |
|---|
| 136 | IMPORTANT: |
|---|
| 137 | |
|---|
| 138 | changed <defaultproduct> -> <product name="default"> |
|---|
| 139 | fixed logic. |
|---|
| 140 | |
|---|
| 141 | 2001-12-14 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 142 | |
|---|
| 143 | * de/schlund/pfixxml/targets/ProductIncludePart.java (addDependencyParent): |
|---|
| 144 | (removeDependencyParent): |
|---|
| 145 | (getAffectedTargets): |
|---|
| 146 | (ProductIncludePart): |
|---|
| 147 | removed all traces of the AssociatedPart. this is no longer used. Editor will have to |
|---|
| 148 | be strict about what subpart it edits and locks. |
|---|
| 149 | (getAssociatedPart): method removed, field removed. |
|---|
| 150 | |
|---|
| 151 | * de/schlund/pfixxml/targets/AssociatedPart.java: |
|---|
| 152 | * de/schlund/pfixxml/targets/AssociatedPartFactory.java: |
|---|
| 153 | Removed. |
|---|
| 154 | |
|---|
| 155 | 2001-12-13 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 156 | |
|---|
| 157 | * de/schlund/pfixxml/IncludeDocument.java (get): Changed behaviour so that auxdependencies |
|---|
| 158 | will get registered even if the part is not there yet or the file does not exist yet. |
|---|
| 159 | |
|---|
| 160 | 2001-12-11 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 161 | |
|---|
| 162 | * de/schlund/pfixxml/ContextXMLServer.java (CONTEXT_SUFFIX, CONTEXT_CLASS): |
|---|
| 163 | Added as public static final String. |
|---|
| 164 | |
|---|
| 165 | 2001-12-05 Jens Lautenbacher <jtl@schlund.de> |
|---|
| 166 | |
|---|
| 167 | * de/schlund/pfixxml/ServletManager.java (ServletManager): SCN strikes again. |
|---|
| 168 | Much more to come. |
|---|
| 169 | |
|---|
| 170 | * de/schlund/pfixxml/AbstractXMLServer.java (AbstractXMLServer): |
|---|
| 171 | First try at cleaning up all the string constants. |
|---|
| 172 | |
|---|
| 173 | |
|---|