# File app/controllers/fusioncharts/db_data_url_controller.rb, line 18
  def default
    # Escape each parameter and its value before appending it to the URL
    # This is done, so that any special characters like ? etc in the parameter name or value is escaped
    # Here, the parameter name is "animate" and value is "1", which do not need escaping as such.
    @str_data_url = "/Fusioncharts/db_data_url/pie_data?"+CGI.escape("animate=1");
    
    #The common layout for this view
    render(:layout => "layouts/common")
  end