Pages: « Previous 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 Next »
Summary Period: 2005-09-21 to 2005-08-12 (Commits 3039-3088 of 3188)
* Fix exception handling:
- Always print source file name and line number
- Only print stack trace once
- Slways print stack trace
- Always print stack trace for original exception
- Also log full error stack trace for exceptions caught in macros
* Implement HopObject.__proto__ and JavaObject.__proto__ containing prototype object
* Fix constructor property in HopObject protos to be set to the actual constructor
* Implement JavaObject.__javaObject__ to contain the original java object in an unscripted wrapper
* Make sure JS functions in script-extended java objects actually override java methods
* Use unscripted wrapper rather than HopObject prototype if the prototype for java class is not defined
109 lines of code changed in:
code formating, slight speed improvments.
13 lines of code changed in:
Changed so it does not modify the source image any longer.
Speed improve.
45 lines of code changed in:
Repliced by ColorQuantizer
0 lines of code changed in:
Replaced Quantize by ColorQuantizer, which was freshly ported from the latest ImageMagick sources and updated with the Alpha Channel support that I added earlier to Qantize. This fixes a nasty bug when quantizing images with few colors (e.g. 32 -> 16 which often resultd in only 4 colors) and increases the general quality of color reduction a lot.
642 lines of code changed in:
* Implement _prototype property for wrapped java objects.
6 lines of code changed in:
* Implement db mapping dependencies introduced by additionalTables switch
* Try to get extract column name from sql functions when converting db column to property
* Added Javadoc comments
143 lines of code changed in:
* Do not append <br /> tag in res.writeln(), only append a newline character sequence.
6 lines of code changed in:
* Allow passing a java.util.Locale to Date.format() as second argument.
14 lines of code changed in:
* Only append <br /> in res.writeln() if contentType is one of "text/html" or
"application/xhtml+xml". For any other content type, only an ordinary line
break is appended to the line.
7 lines of code changed in:
* Fix prototype inheritance for wrapped Java objects. get() and has() are not
supposed to check the prototype chain. Instead, just register the prototype
using setPrototype().
11 lines of code changed in:
* Consider superclasses and interfaces when resolving class to prototype mapping.
29 lines of code changed in:
* Implement unsetCookie(name) that causes a prevously set cookie to be discarded
* Add Javadoc comments to all methods
134 lines of code changed in:
* Set cookie version to 1 and allow days value of zero in order for cookies to be deleted.
6 lines of code changed in:
* Made most fields in RequestEvaluator private and use a synchronized getter to access them
* Minor change in ScriptingEngine interface
126 lines of code changed in:
* Be more precise when throwing exception in popStringBuffer().
5 lines of code changed in:
* Add dontEnum() function to JavaScript Object prototype. Takes a variable list
of String arguments of propertiy names to set to DONTENUM.
* Add some missing Javadocs.
38 lines of code changed in:
initial check-in of michi's helma documentation (in docbook format)
7201 lines of code changed in:
* Do not log concurrency conflicts. This is often misinterpreted as error which it is not.
4 lines of code changed in:
* Move sql logging to finally clause so statements are logged even if an exception is thrown
* Unified String/StringBuffer variable naming a bit
150 lines of code changed in:
* Pass prefix, suffix, default parameters to macro functions and allow them to change them.
Implemented by putting these values into a helper class RenderParameters which can
easily overridden.
83 lines of code changed in:
* Put copy-on-write WrappedMap into separate class in order to be able to synchronize
all of its methods, which is necessary to catch the switch between original and copied map,
and which isn't necessary for ordinary and read-only WrappedMaps.
150 lines of code changed in:
compiler warned about 'unmappable' character in juerg lehnis name; changed umlauts to ascii
6 lines of code changed in:
Updated old 2002 license version that was still used by the build script with the current license and changed the year to 2005
5 lines of code changed in:
Removed old static files of himp demo app
0 lines of code changed in:
Removed gong, bloggerapi and lillebror from list of default apps and updated version number in build script from the bogus 1.4.2 to 1.5.0
2 lines of code changed in:
* Only show last two elements of script path in debugger.
(Assume common case it is the prototype and the script.)
3 lines of code changed in:
* Refactored helma.doc package to make it work with repositories.
316 lines of code changed in:
* add getResources().
10 lines of code changed in:
* Add getTypeProperties() and getSkinResources(), removed unused isJavaPrototype field.
22 lines of code changed in:
* Add new global function defineLibraryScope(string, boolean). This creates a new global
property object with the name in argument 1 only if it doesn't exist yet, and optionally
populates it with the standard JavaScript object (String, Date, isNaN, ...)
31 lines of code changed in:
* Make helmadoc work with multiple application repositories.
50 lines of code changed in:
* Simplify some boolean statements.
5 lines of code changed in:
* Simplify checks for ignoreCase.
7 lines of code changed in:
* Make main db.properties case sensitive.
3 lines of code changed in:
* Fix Bug 439: req.action returns wrong result on GET/POST/...
3 lines of code changed in:
* Only prepend table name to query if access name doesn't contain "(" or "."
This makes it possible to use an SQL function as group criterium
13 lines of code changed in:
* Only prepend table name to query if access name doesn't contain "(" or "."
6 lines of code changed in:
* Minor changes: remove unused code, switch error message to lower/mixed case.
3 lines of code changed in:
* Patch from Juerg Lehni: try to autodetect Joins in additionalTables option.
* Some code cleanup:
- Don't do string concatenation in arguments to StringBuffer.append()
- Remove redundant if clause
- Remove throws statement for unthrown exceptions
- Remove unneeded variable initialzation
56 lines of code changed in:
* Only interpret last path element as action if it is not terminated by a "/".
This helps us to disambiguify URLs: /foo/ will never be interpreted as action,
while /foo will be.
3 lines of code changed in:
* Provide a getter for the repository's directory.
9 lines of code changed in:
* Remaining public fields in RequestTrans converted to private, final where possible
* Added setters/getters
* Improved hashCode() implementation for RequestTrans
59 lines of code changed in:
* Synchronize get() and set() to hopefully get rid of weird property read errors.
* Do not access static fields through instance variable
20 lines of code changed in:
Make public fields in RequestTrans private, remove transient modifier, add getters and setters as needed,
synchronize getter and setter for action to fix inconsistent behaviour.
43 lines of code changed in:
Implement getPrototypeProperties(String) to get a SystemMap containing the
scripted properties of a prototype.
21 lines of code changed in:
Handle case where global variable is null.
5 lines of code changed in:
* Set connection readonly flag to true in executeRetrieval() and false in executeUpdate().
* Remove a few unneeded local variables.
8 lines of code changed in:
Added more possible parameters for the Image() constructor: BufferedImage, Image
17 lines of code changed in:
Various changes to the imaging code:
- added Image.trim(), that trims an image based on a specified pixel, just like in Photoshop.
- saveAs exists in two versions now, one that takes a filename, the other an OutputStream + Mime type (first step toward an Java activation framework based approach)
359 lines of code changed in:
Pages: « Previous 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 Next »
Generated by StatCVS 0.2.2