- Timestamp:
- Sep 3, 2006, 5:03:35 PM (19 years ago)
- Location:
- branches/stable
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mindi/README
r763 r785 50 50 51 51 Apart from the above-mentioned documentation, there is a Wiki with growing 52 contents at the following URL: http:// www.mondorescue.org/cgi-bin/trac.cgi/wiki52 contents at the following URL: http://trac.mondorescue.org 53 53 54 54 Also, there is a mailing list mondo-devel@lists.sourceforge.net. Please go to -
branches/stable/mondo/README
r763 r785 50 50 51 51 Apart from the above-mentioned documentation, there is a Wiki with growing 52 contents at the following URL: http:// www.mondorescue.org/cgi-bin/trac.cgi/wiki52 contents at the following URL: http://trac.mondorescue.org 53 53 54 54 Also, there is a mailing list mondo-devel@lists.sourceforge.net. Please go to -
branches/stable/trac/trac.ini
r765 r785 1 1 [header_logo] 2 2 src = http://www.mondorescue.org/images/trac-logo.png 3 height = 120 4 width = 350 5 link = http://www.mondorescue.org 3 6 alt = Mondo Rescue 4 height = 1205 link = http://www.mondorescue.org6 width = 3507 7 8 8 [logging] … … 13 13 [trac] 14 14 default_charset = iso-8859-15 15 database = sqlite:db/trac.db 15 16 templates_dir = /usr/share/trac/templates 17 htdocs_location = /trac/ 16 18 repository_dir = /mondo/svn/mondorescue 17 htdocs_location = /trac/18 database = sqlite:db/trac.db19 19 20 20 [notification] 21 always_notify_owner = true 21 22 smtp_enabled = true 22 23 smtp_replyto = trac@svn.mondorescue.org … … 25 26 smtp_from = trac@svn.mondorescue.org 26 27 always_notify_reporter = true 27 always_notify_owner = true28 28 29 29 [project] 30 url = http://www.mondorescue.org31 footer = The <a href="http://www.mondorescue.org">Mondo Rescue</a> project is hosted <br>by the <a href="http://www.hpintelco.net">HP Intel Solution Center</a> on a <a href="http://www.mandriva.com">Mandriva</a> system.32 30 name = MondoRescue 33 31 descr = GPL disaster recovery solution 32 footer = The <a href="http://www.mondorescue.org">Mondo Rescue</a> project is hosted <br>by the <a href="http://www.hpintelco.net">HP Intel Solution Center</a> on a <a href="http://www.mandriva.com">Mandriva</a> system. 33 url = http://www.mondorescue.org 34 34 icon = /mondo/www/html/mondo/favicon.ico 35 35 … … 41 41 max_size = 262144 42 42 43 [components] 44 webadmin.* = enabled 45 acct_mgr.web_ui.registrationmodule = enabled 46 acct_mgr.web_ui.accountmodule = enabled 47 acct_mgr.htfile.htdigeststore = enabled 48 acct_mgr.api.accountmanager = enabled 49 acct_mgr.web_ui.loginmodule = enabled 50 acct_mgr.htfile.htpasswdstore = enabled 51 acct_mgr.htfile.abstractpasswordfilestore = enabled 52 43 53 [timeline] 44 54 changeset_show_files = 0 45 55 56 [account-manager] 57 password_format = htpasswd 58 password_file = /etc/trac.htpasswd 59 46 60 [diff] 47 tab_width = 861 tab_width = 4 48 62 49 63 [ticket] 50 default_version = 2.0.8 64 default_version = 2.0.9 65 default_component = mondo 66 default_milestone = 2.0.9 51 67 default_severity = normal 52 default_component = mondo53 68 default_priority = normal 54 default_milestone = 2.0.955 69 -
branches/stable/website/downloads.shtml
r781 r785 73 73 <ul> 74 74 <li>tarballs are available under <a href="ftp://ftp.mondorescue.org/src">ftp://ftp.mondorescue.org/src</a></li> 75 <li>Subversion browing available at <a href="http:// www.mondorescue.org/cgi-bin/trac.cgi/browser/">http://www.mondorescue.org/cgi-bin/trac.cgi/browser/</a></li>75 <li>Subversion browing available at <a href="http://trac.mondorescue.org/browser/">http://trac.mondorescue.org/browser/</a></li> 76 76 <li>Anonymous SVN Subversion check out of the project available with the following instruction set: <pre><tt>svn checkout svn://svn.mondorescue.org/mondorescue/branches/stable</tt></pre></li> 77 77 </ul> -
branches/stable/website/mondorescue.org.conf
r726 r785 1 # 2 # Apache Virtual Host Configuration File 3 # Replace * by IP address of the machine 4 NameVirtualHost * 1 NameVirtualHost 10.3.252.23 5 2 6 <VirtualHost *>3 <VirtualHost 10.3.252.23> 7 4 ServerName www.mondorescue.org 8 5 #ServerAlias mondorescue.org … … 14 11 RewriteRule ^/index\.html$ /index.shtml 15 12 RewriteRule ^/$ /index.shtml 13 16 14 <Directory "/mondo/www/html/mondo"> 17 15 DirectoryIndex index.shtml … … 21 19 Allow from all 22 20 </Directory> 21 23 22 <Directory "/mondo/www/cgi-bin"> 24 23 AllowOverride All … … 56 55 </VirtualHost> 57 56 58 <VirtualHost *> 57 <VirtualHost 10.3.252.23> 58 ServerName trac.mondorescue.org 59 SetEnv TRAC_ENV "/mondo/trac/mondorescue.env" 60 DocumentRoot /mondo/www/cgi-bin/trac.cgi 61 ServerAdmin webmaster@mondorescue.org 62 CustomLog /var/log/httpd/www.mondorescue.org/access_log combined 63 Errorlog /var/log/httpd/www.mondorescue.org/error_log 64 65 # fix mdk bug #16298 66 PassEnv LC_ALL 67 PassEnv LANG 68 69 <Directory "/mondo/www/cgi-bin"> 70 AllowOverride All 71 Options ExecCGI FollowSymLinks 72 Order allow,deny 73 Allow from all 74 </Directory> 75 76 Alias /trac/ "/usr/share/trac/htdocs/" 77 ScriptAlias /cgi-bin/ "/mondo/www/cgi-bin/" 78 79 # You need something like this to authenticate users 80 <Location "/login"> 81 AuthType Basic 82 AuthName "MondoRescue" 83 AuthUserFile /etc/trac.htpasswd 84 Require valid-user 85 </Location> 86 </VirtualHost> 87 88 <VirtualHost 10.3.252.23> 59 89 ServerName oldwww.mondorescue.org 60 90 ServerAdmin webmaster@mondorescue.org … … 70 100 </VirtualHost> 71 101 72 <VirtualHost *>102 <VirtualHost 10.3.252.23> 73 103 ServerName www1.mondorescue.org 74 104 ServerAdmin webmaster@mondorescue.org … … 84 114 </VirtualHost> 85 115 86 <VirtualHost *> 116 <VirtualHost 10.3.252.23> 117 ServerName mondo.hpintelco.org 118 ServerAdmin webmaster@mondorescue.org 119 DocumentRoot /var/www/html 120 CustomLog /var/log/httpd/mondo.hpintelco.org/access_log combined 121 Errorlog /var/log/httpd/mondo.hpintelco.org/error_log 122 <Directory "/var/www/html"> 123 Options -Indexes MultiViews FollowSymLinks +Includes 124 AllowOverride None 125 Order allow,deny 126 Allow from all 127 </Directory> 128 </VirtualHost> 129 130 <VirtualHost 10.3.252.23> 87 131 ServerName www.mondorescue.com 88 132 ServerAdmin webmaster@mondorescue.com -
branches/stable/website/support.shtml
r763 r785 19 19 </ul></p> 20 20 <p>Second look at the <a href="/docs.shtml">Mondo Rescue documentation</a> and the extensive FAQ section of the Mondo Rescue HOWTO, as a lot of good tip and tricks are provided there.</p> 21 <p>Third look at the <a href="http:// www.mondorescue.org/cgi-bin/trac.cgi/wiki">Mondo Rescue wiki</a> which may contain additional comments,and feel free to contribute by adding your remarks.</p>21 <p>Third look at the <a href="http://trac.mondorescue.org/">Mondo Rescue wiki</a> which may contain additional comments,and feel free to contribute by adding your remarks.</p> 22 22 <p>Fourth look at the <a href="http://sourceforge.net/mailarchive/forum.php?forum_id=5086">Mondo Rescue Mailing List Archives</a> as you're probably not the first with this problem.</p> 23 23 <p>Finally post on the <a href="mailto:mondo-devel_at_lists.sourceforge.net">Mondo Rescue Mailing List</a> if you did not find what you were looking for, as there are more than 400 users there who could help you, including dev team members. <b>But</b>, they can only help you if your provide at least the above mentionned <b>2 first log files</b>.</p> 24 <p>If your think you found a bug in Mondo Rescue, please <a href="http:// www.mondorescue.org/cgi-bin/trac.cgi/newticket">fill a bug report</a> and also include the log files.</p>25 <p>Likely, if you wish Mondo Rescue had your dreamed new shiny function, feel free to create an <a href="http:// www.mondorescue.org/cgi-bin/trac.cgi/newticket">feature request</a>.</p>24 <p>If your think you found a bug in Mondo Rescue, please <a href="http://trac.mondorescue.org/newticket">fill a bug report</a> and also include the log files.</p> 25 <p>Likely, if you wish Mondo Rescue had your dreamed new shiny function, feel free to create an <a href="http://trac.mondorescue.org/newticket">feature request</a>.</p> 26 26 <div class="h2-3"> 27 27 <h2>Mondo Rescue Mailing Lists</h2> -
branches/stable/website/top.shtml
r763 r785 36 36 <li <!--#if expr="\"$curpage\" = \"support.shtml\"" --> id="current" <!--#endif -->> 37 37 <a href="/support.shtml" title="If you need support (why it's perfect :-)" >Support</a></li> 38 <li><a href="http:// www.mondorescue.org/cgi-bin/trac.cgi/wiki/WikiStart" title="Use the Wiki" target="_blank" >Wiki</a></li>38 <li><a href="http://trac.mondorescue.org" title="Use the Wiki" target="_blank" >Wiki</a></li> 39 39 <li <!--#if expr="\"$curpage\" = \"thanks.shtml\"" --> id="current" <!--#endif -->> 40 40 <a href="/thanks.shtml" title="So many helped us. Many thanks" >Thanks</a></li>
Note:
See TracChangeset
for help on using the changeset viewer.