feedSetFeedInfofeedSetFeedInfo
Set the metadata (eg title, link, date etc) for the feed.
Home > Books > Discovered Documentation > Discovered Documentation > PiNKY Library > feedSetFeedInfo

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


Module

urn:org:pinkypipes:mod:pinky

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

Syntax

URI
active:feedSetFeedInfo

ArgumentRulesDescription
feedMandatory A feed resource
operatorMandatory Feed info resource

Example Usage

DPML

<instr>
  <type>feedSetFeedInfo</type>
  <feed>var:afeed</feed>
  <operator>var:xmlfeedinfo</operator>
  <target>var:updatedfeed</target>
</instr>

NetKernel Foundation API

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

Purpose

The feedSetFeedInfo accessor sets the feed metadata. The operator argument must provide a declarative <info> xml fragment containing the metadata for the feed (format is described below). The response is the feed with updated metadata.

XML Info Format

An example of the format for the <info> xml fragment containing the metadata is as follows:

<info>
  <author>pjr</author>
  <author>Team PiNKY</author>
  <contributor>ABC</contributor>
  <contributor>DEF</contributor>
  <description>Test</description>
  <title>Test Feed</title>
  <date>now</date>
  <uri>urn:org:pinkypipes:pinky:test:feed:1</uri>
  <language>en-test</language>
  <copyright>(C) PinkyPipes</copyright>
  <link>http://pinkypipes.org</link>
  <link>http://1060.org/blogxter/</link>
  <image>
    <title>Test Feed Image</title>
    <link>http://pinkypipes.org/</link>
    <url>http://pinkypipes.org/pinky-icon-128.png</url>
    <description>Pinky Feed Logo</description>
  </image>
  <category>
    <name>Test</name>
    <taxonomyuri>urn:org:pinkypipes:test</taxonomyuri>
  </category>
  <category>
    <name>Pinky</name>
    <taxonomyuri>urn:org:pinkypipes</taxonomyuri>
  </category>
</info>

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

tagsupports multipledescription
authorYSets the feed author(s) [RSS feeds only support a single author]
contributorYSets the feed contributor(s) [Not supported by RSS]
descriptionNSets the plain/text feed description
titleNSets the feed title
dateNSets the feed published date. A value of NOW will set the date to the current system time.
uriNSets the feed URI [Not supported by RSS]
languageNSets the feed langauge identifier, example: en-gb
copyrightNSets the feed copyright notice
linkYSets the feed link [RSS feeds only support a single link]
imageNSets the feed image icon and description. Requires child tags: title, link, url (the source of the image), description
categoryYSets the feed category classification. Requires child tags: name (category id), taxonomyuri (URI of the RDF taxonomy)

Example 1: Set the feed title

This is how to set the feed title using SetFeedInfo in a DPML script:

<instr>
  <type>feedSetFeedInfo</type>
  <feed>var:afeed</feed>
  <operator>
    <info>
      <title>Don't Judge a Feed by Its Cover</title>
    </info>
  </operator>
  <target>var:updatedfeed</target>
</instr>

Example 2: Set multiple things and update the date.

This is how to set the feed author, description, and update the publish date to the current system time using SetFeedInfo in a DPML script:

<instr>
  <type>feedSetFeedInfo</type>
  <feed>var:afeed</feed>
  <operator>
    <info>
      <author>Your Financial Services Corporation</author>
      <description>Your real-time personal wealth feed</description>
      <date>now</date>
    </info>
  </operator>
  <target>var:updatedfeed</target>
</instr>

For more details see the PiNKY guide.

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