# File lib/kwala/actions/outside_links.rb, line 45
  def initialize
    no_http = Proc.new do |link, project_name|
      "#{BASE_URL}/#{link}/#{project_name}/"
    end
    http = Proc.new do |link, project_name|
      "#{link}/#{project_name}/"
    end

    @links = [
      ["rdocs", "Documentation", no_http],
      ["statcvs_output", "StatCVS", no_http],
      ["http://localhost/viewvc", "ViewVC", http],
      ["http://localhost/pragprog/data/rss", "CVS Commit RSS",
        Proc.new { |link, project_name|  "#{link}/#{project_name}.rss" }
      ]
    ]
  end