Symbian.org/RssReader.js
changeset 13 3a1db8573f1e
parent 10 07ac2f6a36a9
child 18 b73e6caf0031
equal deleted inserted replaced
12:d3fff58a7af9 13:3a1db8573f1e
    14 	this.feedLastModified = 0;
    14 	this.feedLastModified = 0;
    15 	this.ignoreContent = false;
    15 	this.ignoreContent = false;
    16 	this.hasData = false;
    16 	this.hasData = false;
    17 	this.startFromItem = 0;
    17 	this.startFromItem = 0;
    18 	this.maxItems = 0;
    18 	this.maxItems = 0;
    19 	this.escapeLtGt = true;
       
    20 	
    19 	
    21 	var caption = createCaption(aFeedName);
    20 	var caption = createCaption(aFeedName);
    22 	
    21 	
    23 	ListView.prototype.init.call(this, null, caption);
    22 	ListView.prototype.init.call(this, null, caption);
    24 	this.previousView = aParent;
    23 	this.previousView = aParent;
   115 	// and if there's no update currently in progress and if we're in the main view
   114 	// and if there's no update currently in progress and if we're in the main view
   116 	if ((this.feedURL != null) && (!this.feedUpdateBrokerActive) ) { //&& (uiManager.getView() == this) ) {
   115 	if ((this.feedURL != null) && (!this.feedUpdateBrokerActive) ) { //&& (uiManager.getView() == this) ) {
   117 		// fetch the feed from the specified URL
   116 		// fetch the feed from the specified URL
   118 		this.feedUpdateBrokerActive = true;
   117 		this.feedUpdateBrokerActive = true;
   119 		this.feedUpdateBroker = new FeedUpdateBroker();
   118 		this.feedUpdateBroker = new FeedUpdateBroker();
   120 		this.feedUpdateBroker.escapeLtGt = this.escapeLtGt;
       
   121 		this.feedUpdateBroker.startFromItem = this.startFromItem;
   119 		this.feedUpdateBroker.startFromItem = this.startFromItem;
   122 		this.feedUpdateBroker.maxItems = this.maxItems;
   120 		this.feedUpdateBroker.maxItems = this.maxItems;
   123 		
   121 		
   124 		if ( this.responseParser != null ) {
   122 		if ( this.responseParser != null ) {
   125 			this.feedUpdateBroker.responseParser = this.responseParser;
   123 			this.feedUpdateBroker.responseParser = this.responseParser;