head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2007.09.03.00.37.37;	author mkanat;	state dead;
branches;
next	1.1;

1.1
date	2007.04.30.20.49.32;	author arturkeska;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Remove a bunch of files so that I don't have to deal with them in EXPECTED_CONTENTS.
@
text
@<?PHP

class HTOM_Url implements HTOM_Attribute
{
  public function __construct($url)
  {
    if ($url instanceof HTOM_Url)
      $this->url=$url->url;
    else if (is_string($url))
      $this->url=$url;
    else
      HTOM_Debug::Out("HTOM_Url::__construct:: parameter must be HTOM_Url or a string",0);
  }

  public function Name() { return "HTOM_Url"; }
  
  public function Evaluate()
  {
    return "";
  }
};

?>@


1.1
log
@*** empty log message ***
@
text
@@