microengine 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +2 -2
- data/lib/html/editor.rhtml +2 -2
- metadata +2 -2
data/Rakefile
CHANGED
|
@@ -3,7 +3,7 @@ require 'rake/rdoctask'
|
|
|
3
3
|
require 'rake/gempackagetask'
|
|
4
4
|
|
|
5
5
|
PKG_NAME = "microengine"
|
|
6
|
-
PKG_VERSION = "0.2.
|
|
6
|
+
PKG_VERSION = "0.2.1"
|
|
7
7
|
|
|
8
8
|
RUBY_FORGE_PROJECT = "microengine"
|
|
9
9
|
|
|
@@ -49,7 +49,7 @@ spec = Gem::Specification.new do |s|
|
|
|
49
49
|
|
|
50
50
|
s.author = 'Andrey "A.I." Sitnik'
|
|
51
51
|
s.email = "andrey@sitnik.ru"
|
|
52
|
-
s.homepage = "http://
|
|
52
|
+
s.homepage = "http://rubyforge.org/projects/microengine"
|
|
53
53
|
s.rubyforge_project = RUBY_FORGE_PROJECT
|
|
54
54
|
end
|
|
55
55
|
|
data/lib/html/editor.rhtml
CHANGED
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
<%= @translation['editor']['header'] %>:
|
|
22
22
|
</div>
|
|
23
23
|
<div>
|
|
24
|
-
<textarea name="header" rows="3" style="width: 100%;"><%= @header %></textarea>
|
|
24
|
+
<textarea name="header" rows="3" style="width: 100%;"><%= @header.gsub('&', '&') %></textarea>
|
|
25
25
|
</div>
|
|
26
26
|
<div>
|
|
27
|
-
<textarea name="body" rows="40" style="width: 100%"><%= @body.
|
|
27
|
+
<textarea name="body" rows="40" style="width: 100%"><%= @body.gsub('&', '&') %></textarea>
|
|
28
28
|
</div>
|
|
29
29
|
<div style="margin-top: 5px;">
|
|
30
30
|
<% if @show_password %>
|
metadata
CHANGED
|
@@ -3,13 +3,13 @@ rubygems_version: 0.9.4
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: microengine
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.2.
|
|
6
|
+
version: 0.2.1
|
|
7
7
|
date: 2008-03-11 00:00:00 +03:00
|
|
8
8
|
summary: MicroEngine is a fast, simple and minimalistic site engine.
|
|
9
9
|
require_paths:
|
|
10
10
|
- lib
|
|
11
11
|
email: andrey@sitnik.ru
|
|
12
|
-
homepage: http://
|
|
12
|
+
homepage: http://rubyforge.org/projects/microengine
|
|
13
13
|
rubyforge_project: microengine
|
|
14
14
|
description: MicroEngine is a fast, simple and minimalistic site engine. It contain good i18n support and web interface to edit, create and delete pages. It be created for simple sites, which only share information (maybe in some languages) like homepages.
|
|
15
15
|
autorequire:
|