cornetje wrote: 
> Second question:
> It seems that the refresh at the moment minimum of 1 minute is. Can
> Custom clock be configured that the RSS is read every second?
> I try to use the Touch as a monitor for pager messages. The RSS server
> is locate in house, including all the software which populates the RSS.
> So i don't mind that the client (SB Touch in this case) will query every
> second. of at least every two seconds.
> 
At the moment is restricted to 1 minute in the code, it's certainly
possible to change that but I want to analyze it a bit to see if it
would cause any other issues before I promise anything.

If you are familiar with development and want to do the changes
yourself, it's this part of the code in CustomClockApplet.lua that
handles the updates:

Code:
--------------------
    
  elseif item.itemtype == "rsstext" or item.itemtype == "rssicon" then
  local url = _getString(item.url,"default")
  if forcedUpdate or (self.lastminute!=minute  and minute % 
_getNumber(item.refreshinterval,30) == 0) then
  
--------------------


You just have to modify the if statement so it enters every time instead
of only once per minute or when the refreshinterval criteria as been
fulfilled.


------------------------------------------------------------------------
erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=95896

_______________________________________________
Touch mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/touch

Reply via email to