﻿1//-----------------------------------------------------------------------------
// RSS1
//
// Copyright 2005-2010 - Xcential Group LLC.
//
//-----------------------------------------------------------------------------

//=============================================================================
// Constructor

function RSS1()
{

   //--------------------------------------------------------------------------
   // Private Interface

   //--------------------------------------------------------------------------
   // Privileged Interface

   this.valueOf = function()
   {

      return "RSS1";
   }

   //--------------------------------------------------------------------------
   // Initialization

}

RSS1.ClassName = "RSS1";

//=============================================================================
// Static Interface

RSS1.NAMESPACE_URI = "http://purl.org/rss/1.0/";
RSS1.PREFERRED_PREFIX = "rss";

RSS1.MEDIA_TYPE = "application/rss1+xml";
RSS1.FORMAT = "rss1";

//=============================================================================

