feedSortfeedSort
Sort a feeds entries.
Home > Books > NetKernel API and Services Reference > Accessor Listing > PiNKY > feedSort

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:pinkypipes:mod:pinky

The Sort accessor is exported by the urn:org:pinkypipes:mod:pinky module. Import this module to gain access to the accessor.

Syntax

URI
active:Sort

ArgumentRulesDescription
feedMandatory A feed resource
operatorMandatory XML sort specification

Example Usage

DPML

<instr>
  <type>feedSort</type>
  <feed>var:afeed</feed>
  <operator>
    <sort>
      <date />
    </sort>
  </operator>
  <target>var:feedsortedbydate</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:Sort");
req.addArgument("feed", [resource representation, aspect, or URI] );
req.addArgument("operator", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

The feedSort accessor sorts feed entries according to a declarative sort order specifed by the operator argument. The sort specificiation must be a <sort> xml fragment containing the sort order.

XML Sort Format

An example of the format for the <sort> xml fragment is as follows:

<sort>
  <date />
</sort>

The sort doc must contain at least one of the following first child elements...

tagdescription
dateSort by date (oldest first)
rdateSort by reverse date (youngest first)
titleSort by title (alphabetic)
rtitleSort by reverse title (reverse-alphabetic)
descriptionSort by description (alphabetic)
rdescriptionSort by reverse description (reverse-alphabetic)
authorSort by author (alphabetic)
rauthorSort by reverse author (reverse-alphabetic)
categorySort by category (alphabetic)
rauthorSort by reverse category (reverse-alphabetic)
updateSort by revision update (oldest first) (Atom Only)
rupdateSort by reverse update (youngest first) (Atom Only)

Sort precedence will take the order specified by the sort entries. For example, specifying 'title' followed by 'date' will sort first by the title and then by date.

Example 1: Sort the feed by title

This is how to sort the feed by title using Sort in a DPML script:

<instr>
  <type>feedSort</type>
  <feed>var:afeed</feed>
  <operator>
    <sort>
      <title />
    </sort>
  </operator>
  <target>var:sortedfeed</target>
</instr>

Example 2: Sort by multiple criteria

This is how to sort by reverse date (youngest first), then by feed title:

<instr>
  <type>feedSort</type>
  <feed>var:afeed</feed>
  <operator>
    <sort>
      <rdate />
      <title />
    </sort>
  </operator>
  <target>var:sortedfeed</target>
</instr>

For more details see the PiNKY guide.

© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.