Home | History | Annotate | Download | only in properties

Lines Matching full:feed

19 # required URL for the feed to check
22 # Feed Watch Actions - must be defined as triplets of [xpath0]; [script0]; [commandline0]; [xpath1]; [script1]; [commandline1]; ...
42 # -xpath "/*[name() = 'feed']/*[name() = 'updated']/text()"
59 # this will depend on what you run in response to a feed change, and if that process produces console output
60 # feedWatchAction.OldValue.0 - The original value of the node you asked for, from the previous cached version of the feed
61 # feedWatchAction.NewValue.0 - The changed value of the node you asked for, from the latest version of the feed;
63 # if you asked for any changes to the feed, this will be the XML datestamp of the last update, eg: 2006-05-04T12:14:33Z
71 # If you only want to check for changes to the feed and handle the response yourself within Ant instead of an <exec>,
76 # If the node is found and the feed has been changed, the property feedWatchAction.NewValue.0
83 # 1. to watch for ANY change in the feed, check the <feed>'s <updated> node (and respond with an email, passing -debug 1 to the mail script)
84 # feedWatchActions=/*[name() = 'feed']/*[name() = 'updated']/text(); ../scripts_rss/sendEmailAlert.sh; -debug 1