[Logilogi-svn] SF.net SVN: logilogi:[1768] trunk
Status: Beta
Brought to you by:
wybow
|
From: <wy...@us...> - 2010-08-23 14:04:12
|
Revision: 1768
http://logilogi.svn.sourceforge.net/logilogi/?rev=1768&view=rev
Author: wybow
Date: 2010-08-23 14:04:01 +0000 (Mon, 23 Aug 2010)
Log Message:
-----------
Small fix in readme, and site link support for local mode
Modified Paths:
--------------
trunk/app/models/global_config.rb
trunk/config/config.rb.tmpl
trunk/doc/README_FOR_APP
Modified: trunk/app/models/global_config.rb
===================================================================
--- trunk/app/models/global_config.rb 2010-08-16 09:35:23 UTC (rev 1767)
+++ trunk/app/models/global_config.rb 2010-08-23 14:04:01 UTC (rev 1768)
@@ -331,7 +331,8 @@
### Composites
def site_url(options = {})
- return self.protocol + '://' + self.site_host(options) + '/'
+ return self.protocol + '://' + self.site_host(options) +
+ (RAILS_ENV == "development" ? ":3000" : "") + '/'
end
def site_host(options = {})
Modified: trunk/config/config.rb.tmpl
===================================================================
--- trunk/config/config.rb.tmpl 2010-08-16 09:35:23 UTC (rev 1767)
+++ trunk/config/config.rb.tmpl 2010-08-23 14:04:01 UTC (rev 1768)
@@ -54,7 +54,7 @@
#
# The domain_levels setting is derived from this one.
#
- :site_domain => 'edge.LogiLogi.org',
+ :site_domain => 'logi-manta.org',
# The language this site is in.
#
Modified: trunk/doc/README_FOR_APP
===================================================================
--- trunk/doc/README_FOR_APP 2010-08-16 09:35:23 UTC (rev 1767)
+++ trunk/doc/README_FOR_APP 2010-08-23 14:04:01 UTC (rev 1768)
@@ -95,8 +95,7 @@
except rack.
This last gem could not be included because Rails will not allow
-you to (some starting issue). You can install it in the following
-way:
+one to to (a bug). You can install it in the following way:
gem install rack (with the '-v 1.0.1' option currently)
All done. Skip to step 2.
@@ -117,8 +116,8 @@
LogiLogi Manta requires Rails[http://www.rubyonrails.org].
-You can install Rails with (gem1.8, or gem<version number> on some
-OSses):
+You can install Rails with ruby gems (gem1.8, or gem<version number>
+on some OSses):
gem install rails
(as root, if gem command is not found you might have to type gem1.8
instead)
@@ -202,7 +201,7 @@
To get going with the GUI you should add something like the following
to your /etc/hosts:
- 0.0.0.0 en.logi-manta.org de.logi-manta.org
+ 0.0.0.0 logi-manta.org en.logi-manta.org de.logi-manta.org
Then start the included WEBRick server with script/server from the
trunk directory.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|