* ignore origins with c:\fakepath\ (i.e. uploaded from local file system)
* use `description_macro()` for output of either this.description or this.origin (if available) or nothing, instead of macro default
* prevent setting this.description in `update()` methods or from formica bookmarklet
obviously, helma.Image already compresses image data and a recent change actually removed code preventing this for images fulfilling the max width and height constraints
see http://help.antville.org/stories/2239244/
* develop:
Fixed compatibility issues with missing core stylesheet / JavaScript
Moved client-side upload code to Images#upload skin
Re-added click handler for cancel links (compatibility)
Fixed display of Gravatar for accounts
Added code for embedded audio and video player (HTML5)
(Whitespace)
Updated proxy URL
Updated translation files
Slightly rearranged code
Moved image dimension limits from image creation to site settings
Fixed batch upload for layout images
Refactored Story.getAbstract() method. Commented out abstract for custom content.
Refactored Story.getDelta() method. Commented out calculation for custom content.
Moved calculation of delta behind sanitizing comment title and completely removed HTML sanitization
Moved calculation of delta behind sanitizing comment title and replaced call for setMetadata() with setCustomContent()
Fixed appearance of button for new site creation
Added box argument to image macro output
Added metadata for Open Graph et al. to Stories.create_action()
Implemented first version of multiple image upload by drag&drop
Refactored Comment.update() method - text is now required, title remains optional - sanitize text first to catch potential empty string afterwards
Conflicts:
i18n/antville.pot
i18n/de.po
i18n/en.po
i18n/messages.de.js
i18n/messages.en.js
Moved content of style attributes to main.less or the stylesheet skins of Root and Site.
Adapted original Antville colors for some of UIKits elements (e.g. primary button, default alert, pagination) and the Jala calendar
* Disburdened constructor methods of most of the prototypes by moving most of the code to the new static add() method.
* Added temporary debugging method HopObject.confirmConstructor() to log a warning whenever a constructor is directly called – in which case it should be checked if the static add() method is to be preferred.
* Removed obsolete code in Poll.edit_action() method.
* Removed call for Site.processHref() method in Site.getStaticUrl() - still to be evaluated
* Added call for Feature.getPermission() in Site.getPermission()
* Replaced redundant code with calls for new File methods in File, Files, Image and Images prototypes
* Fixed bug in Image.getFileExtension() causing file types containing charset information from being processed correctly
* Added check to Image.update() if getURL() returns data to allow post requests with no file upload at all (e.g. via curl)
* Removed call for root.processHref() in Images.Default.Image() to reduce complexity – needs more evaluation, though