[Logilogi-svn] SF.net SVN: logilogi: [300] trunk
Status: Beta
Brought to you by:
wybow
|
From: <wy...@us...> - 2007-05-21 16:27:53
|
Revision: 300
http://logilogi.svn.sourceforge.net/logilogi/?rev=300&view=rev
Author: wybow
Date: 2007-05-21 09:26:14 -0700 (Mon, 21 May 2007)
Log Message:
-----------
Some small updates, readme-fix...
Modified Paths:
--------------
trunk/app/controllers/download_controller.rb
trunk/app/views/layouts/main.rhtml
trunk/config/routes.rb
trunk/doc/README_FOR_APP
trunk/lib/task_helper.rb
trunk/public/stylesheets/logilogi.css
Modified: trunk/app/controllers/download_controller.rb
===================================================================
--- trunk/app/controllers/download_controller.rb 2007-05-21 10:23:59 UTC (rev 299)
+++ trunk/app/controllers/download_controller.rb 2007-05-21 16:26:14 UTC (rev 300)
@@ -16,11 +16,18 @@
Zip::ZipFile.open("tmp/source.zip", Zip::ZipFile::CREATE) {|zipfile|
globs = Array.new
files = Array.new
+ files.push("Rakefile",
+ "README")
globs.push(File.join("app","**", "*.rb"))
globs.push(File.join("components","**", "*.rb"))
globs.push(File.join("config","**", "*.tmpl"))
files.push("config/routes.rb",
- "config/boot.rb")
+ "config/config.rb",
+ "config/environment.rb",
+ "config/boot.rb",
+ "config/daemons.yml",
+ "config/config.rb")
+ globs.push(File.join("config/environments","**", "*.tmpl"))
globs.push(File.join("db","**", "*.rb"))
files.push("doc/LICENSE.txt",
"doc/README_FOR_APP",
Modified: trunk/app/views/layouts/main.rhtml
===================================================================
--- trunk/app/views/layouts/main.rhtml 2007-05-21 10:23:59 UTC (rev 299)
+++ trunk/app/views/layouts/main.rhtml 2007-05-21 16:26:14 UTC (rev 300)
@@ -10,6 +10,9 @@
</head>
<body>
<div id="container">
+ <div id="network-bar">
+ Part of the LogiLogi Network: <a href="http://foundation.logilogi.org">The LogiLogi Foundation</a> - <b>LogiLogi.org</b> - <a href="http://ogog.org">OgOg.org</a>
+ </div>
<div id="header">
<%= render :partial => 'main/nav_bar' %>
<div id="url_bar">
@@ -43,7 +46,7 @@
<a href="http://www.zis-groningen.nl"><img src="http://logilogi.org/img/zisgroningen.png" width="125" height="37" border="0" alt="Zylon Internet Services-Groningen Logo" /></a>
<a href="http://petition.eurolinux.org"><img src="http://logilogi.org/img/noepatent.jpg" border="0"></a><br />
<span id="copyright_notice">
- The LogiLogi-system is under the <a href="http://www.affero.org/oagpl.html">Affero GPL</a> which requires that the running sourcecode is always <%= link_to 'available for download', :controller => 'download', :action => 'source' %>.<br />
+ LogiLogi is Free Software and licensed under the <a href="http://www.affero.org/oagpl.html">Affero GPL</a> which means that the running version will always be <%= link_to 'available for download', :controller => 'download', :action => 'source' %>.<br />
All content is available under the <a href="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License</a>.<br /><br />
</span>
</center>
Modified: trunk/config/routes.rb
===================================================================
--- trunk/config/routes.rb 2007-05-21 10:23:59 UTC (rev 299)
+++ trunk/config/routes.rb 2007-05-21 16:26:14 UTC (rev 300)
@@ -37,6 +37,7 @@
:requirements => { :ll_link_string => /.*/ }
# Default route before the show_logi
+ map.default 'do/:controller/:action'
map.default 'do/:controller/:action/:id'
map.show ':ll_link_string',
Modified: trunk/doc/README_FOR_APP
===================================================================
--- trunk/doc/README_FOR_APP 2007-05-21 10:23:59 UTC (rev 299)
+++ trunk/doc/README_FOR_APP 2007-05-21 16:26:14 UTC (rev 300)
@@ -7,8 +7,8 @@
What LogiLogi Manta is ? There's short description at:
http://en.logilogi.org/MetaLogi/LogiLogiManta
-LogiLogi Manta is Free Software and Open Source, written in
-the spirit of the {Free Software Foundation}[http://www.fsf.org].
+LogiLogi Manta is Free Software and Open Source, written by the
+{LogiLogi Foundation}[http://foundation.logilogi.org].
== This Documentation
Modified: trunk/lib/task_helper.rb
===================================================================
--- trunk/lib/task_helper.rb 2007-05-21 10:23:59 UTC (rev 299)
+++ trunk/lib/task_helper.rb 2007-05-21 16:26:14 UTC (rev 300)
@@ -31,8 +31,8 @@
puts 'error: ' + error.inspect + ' ' + task
@subject = "#{task} broken"
@body = error
-# @recipients = 'log...@li...'
-# @from = 'ad...@lo...'
-# @sent_on = Time.now
+ @recipients = 'log...@li...'
+ @from = 'ad...@lo...'
+ @sent_on = Time.now
end
end
Modified: trunk/public/stylesheets/logilogi.css
===================================================================
--- trunk/public/stylesheets/logilogi.css 2007-05-21 10:23:59 UTC (rev 299)
+++ trunk/public/stylesheets/logilogi.css 2007-05-21 16:26:14 UTC (rev 300)
@@ -887,7 +887,6 @@
font-size: 0.8em;
}
-
/* SBMH -- see http://css-discuss.incutio.com/?page=BoxModelHack
* Stupid hack lets IE see 100%, others see 70%.
*/
@@ -910,3 +909,13 @@
top: 1.7em;
/* end of hack */
}
+
+/* Network-bar */
+
+#network-bar {
+ border-bottom: solid 3px #CCCCFF;
+ color: #818CB0;
+ font-size: 1.2em;
+ line-height: 1.6em;
+ text-align: center;
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|