class Utopia::Project::Base

def initialize(root = Dir.pwd)

@parameter root [String] The file-system path to the root of the project.
Initialize the project with the given root path.
def initialize(root = Dir.pwd)
	@root = root
	
	@source_path = Utopia::Path["/source"]
	
	@index = Decode::Index.new
	
	@links = Utopia::Content::Links.new(@root)
end