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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 Next »
Summary Period: 2003-02-04 to 2003-01-10 (Commits 2359-2408 of 4408)
changed content_macro():
- autoresponse is now only executed if param.autoresponse == "true" (before any value, even "false", would turn autoresponse on)
- removed form-encoding of value for input type text, this is now done in renderInputText()
6 lines of code changed in:
- removed form-encoding of req.data[param.name] in input_macro(): any form-encoding is now done in renderInput* methods if necessary
4 lines of code changed in:
- changed alias_macro(): title is now the form-encoded description, urlparam now contains the escaped alias. both should avoid problems with special characters
4 lines of code changed in:
- removed unused function changeAlias()
- fixed a bug in evalImg(): immediatly return in case something is wrong/missing. before that any check for invalid characters was useless because execution would not be stopped. Also changed from isClean() to isCleanForName() which allows spaces, commatas, periods etc. but *not* umlauts.
16 lines of code changed in:
- changed createInputParam(): value is not form-encoded anymore, this is done in renderInput* if necessary.
2 lines of code changed in:
added function isCleanForName() which is needed for checking image- and file-aliases for invalid characters. allowed are a-zA-Z0-9.-_space. the former used function isClean() is a bit restrictive for that, on the other hand umlauts etc. lead to problems.
24 lines of code changed in:
- removed unused function changeAlias()
- fixed a bug in evalFile(): immediatly return in case something is wrong/missing. before that any check for invalid characters was useless because execution would not be stopped. Also changed from isClean() to isCleanForName() which allows spaces, commatas, periods etc. but *not* umlauts.
14 lines of code changed in:
- removed deleting of property "as" in renderInputTextarea(), this is done in renderMarkupPart()
- removed form-encoding in renderInputButton()
- added form-encoding of value in renderInputText()
2 lines of code changed in:
added mappings for hopobject.modifytime macro
4 lines of code changed in:
changed createInputParam(): the value is now form-encoded, otherwise quotes would break the rendering
2 lines of code changed in:
encode image-alttext and title in renderImage(), otherwise an image-alttext with quotes would break the resulting image-tag
4 lines of code changed in:
delete param-property "what" in show_macro(), otherwise it will be rendered in img-tag
2 lines of code changed in:
don't display user e-mail addresses in rss output if user.publishemail is set to false
24 lines of code changed in:
generate etags depending on site.lastupdate
4 lines of code changed in:
fixed a bug in evalURL(): http:// was preprended to the URL even if it started with mailto:
2 lines of code changed in:
Set cachemode of child objects to aggressive.
Fetching the IDs of storymgr children makes up a large part of the slow queries on
antville.org.
2 lines of code changed in:
Add new stories to the storymgr child collection instead of the site's child collection.
This way we can set the storymgr child collection to cachemode=aggressive.
Fetching the IDs of storymgr children makes up a large part of the slow queries on
antville.org.
The change in getting hrefs of new public stories is a workaround to a bug in
Helma that I fixed today.
fixed in CVS today
4 lines of code changed in:
encode referrer for display (fixes bug 213, http://helma.org/bugs/show_bug.cgi?id=213)
8 lines of code changed in:
fixed a bug in evalStory(): setting editableby-property only if modifier equals creator, before it was impossible to switch editablyby to null again
4 lines of code changed in:
fixed a bug in isEditDenied(): modified isEditDenied(): added check for level == null, otherwise a story that is editable for subscribers and contributors is editable for everybody.
8 lines of code changed in:
bugfixing: if the story is edited by someoneelse than the creator of the story, then editableby was set to NULL, and therefore the story could only be edited by the creator in the following.
2 lines of code changed in:
fixed a severe bug in onRequest(): getError() returns an object, and assigning this object to res.message throws an exception. But since this exception happens in onRequest() the rest of the function seem to be ignored, and the request ist processed ...
2 lines of code changed in:
changed unsubscribelink_macro() to use constant SUBSCRIBER
2 lines of code changed in:
changed level-checks because there's now a difference in meaning between level 0 and level null
4 lines of code changed in:
- changed evalRegistration: now special characters, eg. umlauts, dot, dash are allowed in user-names
- changed level-checks because there's now a difference in meaning between level 0 and level null
10 lines of code changed in:
added constant for SUBSCRIBER (== 0), fixed comments
18 lines of code changed in:
changed level-checks because there's now a difference in meaning between level 0 and level null
8 lines of code changed in:
changed isDenied() so that only users who are allowed to add a story can access the shortcut manager
2 lines of code changed in:
changed default memberlevel from 0 to null (because 0 is the level of a subscriber)
2 lines of code changed in:
changed history_macro(): comments are not displayed if discussions are disabled either in site-preferences or for the story they belong to
2 lines of code changed in:
deleted isPostDenied() - using story.isPostDenied() instead
0 lines of code changed in:
now calling isPostDenied() of story instead of the comment-method (which was deleted since it didn't do anything different than the story-method)
2 lines of code changed in:
changed isPostDenied(): posting comments is disabled either if discussions are disabled in site-preferences or for a story (fixes http://helma.org/bugs/show_bug.cgi?id=183)
2 lines of code changed in:
changed commentlink_macro(): if discussions are disabled in site-preferences, this macro will not render a link to comment.hac (fixes http://helma.org/bugs/show_bug.cgi?id=183)
2 lines of code changed in:
removed senseless call of autologin() - this is already done by onRequest()
0 lines of code changed in:
Removed the hardcoded encoding from the XML declaration.
6 lines of code changed in:
Add proper site URL in getUsersBlogs() - this may fail if href() doesn't return
absolute URLs.
2 lines of code changed in:
Added support for extracting a post's title from <title></title> tags, which is
what w.bloggar and presumably other Blogger-API tools use to add titles
to a posting's content.
58 lines of code changed in:
Use ts{} timestamp format instead of playin date. This is necessary to make
the recent referrers macro work with Mckoi database. It also works well with
MySQL.
4 lines of code changed in:
disabled the setting of the value of an input-tag to the request-object-value for buttons, since this does not make sense, and furthermore would lead to ugly values as soon as Umlauts are involved;
2 lines of code changed in:
corrected confirm.welcomeSite to confirm.welcome
4 lines of code changed in:
removed incorrect quotation marks from confirm.imageDelete and confirm.fileCreate
4 lines of code changed in:
changed deletePost() to return true in case the story was successfully deleted, false otherwise (by inverting result.error)
4 lines of code changed in:
initial check-in
2 lines of code changed in:
changed regex in activateLinks(): since format() is called before activateLinks() a plain text URL at the beginning of a line will actually have a <br /> before it
2 lines of code changed in:
changed scheduler-interval to 30 seconds (see http://helma.org/bugs/show_bug.cgi?id=201)
2 lines of code changed in:
Call activateLinks() after format() in getRenderedContentPart().
This is to fix the misbehaviour described here:
http://project.antville.org/stories/254238/
4 lines of code changed in:
changed to match the documentation on macros.antville.org
42 lines of code changed in:
rewrote installation instructions
96 lines of code changed in:
added a missing quote in lastupdate-macrotag.
2 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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 Next »
Generated by StatCVS 0.2.2