class TivoHMO::API::Server

Represents the tivo concept of a Server (i.e. the root node which contains the top level applications)

Public Class Methods

new() click to toggle source
Calls superclass method TivoHMO::API::Container::new
# File lib/tivohmo/api/server.rb, line 12
def initialize
  super('TivoHMO Server')
  self.root = self
  self.title = Socket.gethostname.split('.').first
  self.content_type = "x-container/tivo-server"
  self.source_format = "x-container/folder"
end