ChiliProject is not maintained anymore. Please be advised that there will be no more updates.

We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.

footer-project-name.patch

Matthew Connerton, 2011-02-05 04:00 am

Download (1.3 kB)

 
b/app/views/layouts/base.rhtml
68 68
	
69 69
<div id="footer">
70 70
  <div class="bgl"><div class="bgr">
71
    Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> &copy; 2006-2010 Jean-Philippe Lang
71
    Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %>
72 72
  </div></div>
73 73
</div>
74 74
</div>
b/lib/redmine/info.rb
1 1
module Redmine
2 2
  module Info
3 3
    class << self
4
      def app_name; 'Redmine' end
5
      def url; 'http://www.redmine.org/' end
4
      def app_name; 'ChiliProject' end
5
      def url; 'http://www.chiliproject.org/' end
6 6
      def help_url; 'http://www.redmine.org/guide' end
7 7
      def versioned_name; "#{app_name} #{Redmine::VERSION}" end
8 8

  
9
-