) (Proteus10058)
• Fixed a bug that caused custom volume selection (e.g., "Snippets" or "Brief") in Attivio search pages to be disregarded when dynamically retrieving further results as the user scrolled to the bottom of the page. (Proteus10142)
• Fixed a bug that could cause metrics data not to be recorded for Attivio search views that involve sufficiently long queries. (The components of long queries, or the entire query, may be truncated to fit within the constraints of the metrics database.) (Server66643)
i18n / l10n
• Internationalized the names of tags appearing in the default value for the frontpage (all spaces dashboard) section setting. (AKJ18264)
• Added skeleton Norwegian locales (no_no and no_no_ny). These don't yet contain any translations, but do provide users the ability to see dates, times, numbers and certain other values formatted in the manner that Norwegian users are accustomed to. (Server65915)
Developer Features
• Good news for developers making use of TeamPage's GWT forms API: you can now set your own HTML attributes on the INPUT elements representing a form field. Simply use attribute names that start with an underscore on your FIELD tag in the SDL used to generate your form's XML schema, and the corresponding named attribute, without the underscore prefix, will be set on the the INPUT tag. For example:
<field type="text" name="title" _id="t" _onkeyup="alert(this.value)" />
This is particularly useful for setting up your own event handlers for INPUT fields. (SDKForum691 / AKJ18529)
• In conjunction with the changes to support times for task, milestone and project due dates and task start dates, we've added several features related to defined "standard" named dates; and calendar date ranges, which describe how an entry is plotted on a calendar:
- An Entry may have any number of standard dates. Each standard date has a logical name, and a definition, which is implemented by the Entry's associated EntryClass.
- An Entry may have a single calendar date range, also defined by its EntryClass.
- The default definitions of both standard named dates and calendar date range are in terms of entry properties, whose names are in turn specified in EntryClass configuration properties. (See, e.g., config/entry/classes/task.properties). But developers may create subclasses of EntryClass that implement custom behaviors by overriding one or more methods defined in EntryClass, e.g., getStandardDate(Entry entry, String standardDateName).
- Standard named dates are represented by instances of the new interface com.traction.sdk.UTCDisplayDate, and calendar date ranges are represented by instances of the new interface com.traction.sdk.UTCCalendarDateRange. The new methods getStandardDate(String name) and getStandardCalendarDateRange(boolean forIcal) may be used to access these values. The implementations of those methods will defer to the EntryClass methods described above.
- The new SDL tag entry.standarddate may be used to render a formatted date string (using any valid attributes for a date tag) for a named standard date. The tag entry.standarddate.allday is a boolean tag that allows the SDL author to distinguish between a named standard date that represents an "all day" date (that is, a date that should be treated as appearing to users in any time zone as the day for a particular calendar date), versus one that represents a particular time (independent of time zone, meaning that it will appear differently to users in different time zones).
- Tags like entry.duedate are now implemented in terms of the entry.standarddate tag, so that they can support being treated as an "all day" date or a date with a time, as appropriate. If your SDL code makes use of these tags, you may need or want to change them. In particular, there is no need to indicate whether a date being rendered is an "all day" date, and in fact the allday= attribute will be ignored. Instead, the UTCDisplayDate object used by the tag carries that information.
- The new SDL tag family entry.calendar.daterange.* should be used when generating iCalendar formatted output. See src/com/traction/sdl/calendar/ical-pm.sdl for examples of how to use this, including the new datemode attribute value, "ical".
• Fixed a bug that prevented type-ahead completion from functioning in custom forms that use custom HTML layout. (Server66351)
Article: Customer4318 (
permalink)
Categories: :Doc:R52, :Doc:changelog
Date: June 14, 2013; 4:21:43 PM Eastern Daylight Time
Author Name: Dave Shepperton
Author ID: shep