ulmul 0.1.0
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/ChangeLog +4 -0
- data/README-en.xhtml +294 -0
- data/README-ja +162 -0
- data/README-ja.xhtml +307 -0
- data/Rakefile +75 -0
- data/bin/ulmul.rb +561 -0
- data/favicon.ico +0 -0
- data/index.html +28 -0
- data/lib/ulmul.rb +561 -0
- data/ruby.jpg +0 -0
- data/setup.rb +1585 -0
- data/slidy.js +2778 -0
- data/style.css +65 -0
- data/tests/ulmul_test.rb +14 -0
- data/ulmul-slidy.css +112 -0
- data/ulmul.gemspec +33 -0
- metadata +76 -0
data/style.css
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
/* -*-CSS-*-
|
2
|
+
* Style.css for README.html and INSTALL.html
|
3
|
+
* Time-stamp: <2007-11-28 11:13:26 takeshi>
|
4
|
+
* Author: Takeshi NISHIMATSU
|
5
|
+
*/
|
6
|
+
body
|
7
|
+
{
|
8
|
+
color: black;
|
9
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
10
|
+
}
|
11
|
+
|
12
|
+
h1, h2, h3, h4, h6
|
13
|
+
{
|
14
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
15
|
+
}
|
16
|
+
|
17
|
+
h1
|
18
|
+
{
|
19
|
+
color: darkblue;
|
20
|
+
background-color: #f0f0ff;
|
21
|
+
}
|
22
|
+
|
23
|
+
h2
|
24
|
+
{
|
25
|
+
border-top: blue 5px solid;
|
26
|
+
border-bottom: blue 1px solid;
|
27
|
+
padding-left: 8px;
|
28
|
+
background-color: #f0f0ff;
|
29
|
+
}
|
30
|
+
|
31
|
+
h3
|
32
|
+
{
|
33
|
+
border-top: blue 2px solid;
|
34
|
+
border-bottom: blue 1px solid;
|
35
|
+
padding-left: 4px;
|
36
|
+
}
|
37
|
+
|
38
|
+
h4
|
39
|
+
{
|
40
|
+
border-top: blue 1px solid;
|
41
|
+
padding-left: 4px;
|
42
|
+
background-color: #f0f0ff;
|
43
|
+
}
|
44
|
+
|
45
|
+
h5
|
46
|
+
{
|
47
|
+
font-size: larger;
|
48
|
+
font-family: courier, verdana, arial, helvetica, sans-serif;
|
49
|
+
padding-top: 10px;
|
50
|
+
color: darkblue;
|
51
|
+
}
|
52
|
+
|
53
|
+
pre
|
54
|
+
{
|
55
|
+
font-family: monospace, courier, verdana, arial, helvetica, sans-serif;
|
56
|
+
padding-right: 0.5em;
|
57
|
+
padding-left: 0.5em;
|
58
|
+
padding-top: 0.1ex;
|
59
|
+
padding-bottom: 0.1ex;
|
60
|
+
margin-left: 0.5em;
|
61
|
+
margin-right: 1.0em;
|
62
|
+
white-space: pre;
|
63
|
+
color: darkblue;
|
64
|
+
background-color: #f3f3f3;
|
65
|
+
}
|
data/tests/ulmul_test.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#! /usr/bin/env ruby
|
2
|
+
# isi_test.rb -*-ruby-*-
|
3
|
+
# Time-stamp: <2008-01-01 17:43:26 takeshi>
|
4
|
+
# Author: Takeshi NISHIMATSU
|
5
|
+
##
|
6
|
+
require 'rubygems'
|
7
|
+
require 'rubyunit'
|
8
|
+
require 'ulmul'
|
9
|
+
|
10
|
+
class TestISI < RUNIT::TestCase
|
11
|
+
def test_exist_Ulmul
|
12
|
+
assert_instance_of(Class, Ulmul)
|
13
|
+
end
|
14
|
+
end
|
data/ulmul-slidy.css
ADDED
@@ -0,0 +1,112 @@
|
|
1
|
+
/* ulmul-slidy.css -*-CSS-*-
|
2
|
+
|
3
|
+
Original slidy.css is modified by Takeshi NISHIMATSU
|
4
|
+
Time-stamp: <2007-10-10 15:51:23 takeshi>
|
5
|
+
|
6
|
+
References:
|
7
|
+
http://daily-expo.com/csslite/
|
8
|
+
Links in http://blog.webcreativepark.net/2007/02/28-232842.html
|
9
|
+
|
10
|
+
Original Copyright notice:
|
11
|
+
|
12
|
+
Copyright (c) 2005 W3C (MIT, ERCIM, Keio), All Rights Reserved.
|
13
|
+
W3C liability, trademark, document use and software licensing
|
14
|
+
rules apply, see:
|
15
|
+
|
16
|
+
http://www.w3.org/Consortium/Legal/copyright-documents
|
17
|
+
http://www.w3.org/Consortium/Legal/copyright-software
|
18
|
+
*/
|
19
|
+
|
20
|
+
body {
|
21
|
+
font-family: helvetica, sans-serif;
|
22
|
+
font-weight: normal;
|
23
|
+
width: 100%;
|
24
|
+
height: 100%;
|
25
|
+
margin: 0;
|
26
|
+
padding: 0;
|
27
|
+
background-image: url(doc/logo/loto.jpg);
|
28
|
+
background-repeat: no-repeat;
|
29
|
+
background-position: right top;
|
30
|
+
}
|
31
|
+
|
32
|
+
pre {
|
33
|
+
font-family: courier, verdana, arial, helvetica, sans-serif;
|
34
|
+
font-weight: bold;
|
35
|
+
padding-right: 0.5em;
|
36
|
+
padding-left: 0.5em;
|
37
|
+
padding-top: 0.1ex;
|
38
|
+
padding-bottom: 0.1ex;
|
39
|
+
margin-left: 0.5em;
|
40
|
+
margin-right: 1.0em;
|
41
|
+
white-space: pre;
|
42
|
+
color: darkblue;
|
43
|
+
background-color: #e3e3ff;
|
44
|
+
}
|
45
|
+
|
46
|
+
div.slide {
|
47
|
+
z-index: 20;
|
48
|
+
margin: 0 0 0 0;
|
49
|
+
padding-top: 0;
|
50
|
+
padding-bottom: 0;
|
51
|
+
padding-left: 20px;
|
52
|
+
padding-right: 20px;
|
53
|
+
border-width: 0;
|
54
|
+
top: 0;
|
55
|
+
bottom: 0;
|
56
|
+
left: 0;
|
57
|
+
right: 0;
|
58
|
+
line-height: 120%;
|
59
|
+
background-color: transparent;
|
60
|
+
}
|
61
|
+
|
62
|
+
div.slide h2 {
|
63
|
+
margin: 0 0 0.5em 0;
|
64
|
+
padding: 4px 0;
|
65
|
+
background: transparent;
|
66
|
+
border-bottom: 3px solid blue;
|
67
|
+
font-size: 1.6em;
|
68
|
+
font-weight: normal;
|
69
|
+
line-height: 1.2em;
|
70
|
+
color: blue;
|
71
|
+
}
|
72
|
+
|
73
|
+
div.slide.cover {
|
74
|
+
background-image: url(doc/logo/loto.jpg);
|
75
|
+
background-repeat: no-repeat;
|
76
|
+
background-position: left top;
|
77
|
+
}
|
78
|
+
|
79
|
+
div.slide.cover h1{
|
80
|
+
font-weight: bold;
|
81
|
+
font-size: 1.6em;
|
82
|
+
margin: 20% 10% 1%;
|
83
|
+
padding: 0.5em 0;
|
84
|
+
background: transparent;
|
85
|
+
border-bottom: 3px solid blue;
|
86
|
+
text-align: left;
|
87
|
+
color: blue;
|
88
|
+
}
|
89
|
+
|
90
|
+
div.slide.cover p{
|
91
|
+
margin: 0% 10% 0%;
|
92
|
+
text-align: right;
|
93
|
+
}
|
94
|
+
|
95
|
+
div.toolbar {
|
96
|
+
position: fixed; z-index: 200;
|
97
|
+
top: auto; bottom: 0; left: 0; right: 0;
|
98
|
+
height: 1.2em; text-align: right;
|
99
|
+
padding-left: 1em;
|
100
|
+
padding-right: 1em;
|
101
|
+
font-size: 60%;
|
102
|
+
background-color: #e3e3ff;
|
103
|
+
}
|
104
|
+
|
105
|
+
div.figure img { width:70%;
|
106
|
+
margin-left:auto;
|
107
|
+
margin-right:auto;
|
108
|
+
display: block;}
|
109
|
+
|
110
|
+
div.figure div.caption { width:85%;
|
111
|
+
margin-left:auto;
|
112
|
+
margin-right:auto;}
|
data/ulmul.gemspec
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# ulmul.gemspec -*-ruby-*-
|
2
|
+
# Time-stamp: <2009-01-04 15:41:51 takeshi>
|
3
|
+
# Author: Takeshi Nishimatsu
|
4
|
+
##
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.autorequire = 'lib/ulmul.rb'
|
7
|
+
s.name = 'ulmul'
|
8
|
+
|
9
|
+
s.bindir = 'bin'
|
10
|
+
s.executables = ['ulmul.rb']
|
11
|
+
s.default_executable= 'ulmul.rb'
|
12
|
+
|
13
|
+
s.summary = 'ULMUL is an Ultra Lightweight Mark-Up Language'
|
14
|
+
s.files = Dir.glob("{html}/**/*") << 'lib/ulmul.rb' <<
|
15
|
+
'tests/ulmul_test.rb' << 'style.css' << 'favicon.ico' << 'index.html' <<
|
16
|
+
'ChangeLog' << 'README-en.xhtml' << 'README-ja' << 'README-ja.xhtml' <<
|
17
|
+
'Rakefile' << 'ulmul.gemspec' << 'setup.rb' <<
|
18
|
+
'ruby.jpg' << 'slidy.js' << 'ulmul-slidy.css'
|
19
|
+
s.author = 'Takeshi Nishimatsu'
|
20
|
+
s.email = 't-nissie@imr.tohoku.ac.jp'
|
21
|
+
s.rubyforge_project = 'ulmul'
|
22
|
+
s.homepage = 'http://ulmul.rubyforge.org/'
|
23
|
+
s.test_files = ['tests/ulmul_test.rb']
|
24
|
+
|
25
|
+
s.has_rdoc = true
|
26
|
+
# s.extra_rdoc_files = %w(README)
|
27
|
+
|
28
|
+
s.add_dependency('mathml', '>=0.8.1')
|
29
|
+
|
30
|
+
s.description = <<-EOF
|
31
|
+
ULMUL is an Ultra Lightweight Mark-Up Language.
|
32
|
+
EOF
|
33
|
+
end
|
metadata
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ulmul
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Takeshi Nishimatsu
|
8
|
+
autorequire: lib/ulmul.rb
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-01-04 00:00:00 +09:00
|
13
|
+
default_executable: ulmul.rb
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: mathml
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.8.1
|
24
|
+
version:
|
25
|
+
description: ULMUL is an Ultra Lightweight Mark-Up Language.
|
26
|
+
email: t-nissie@imr.tohoku.ac.jp
|
27
|
+
executables:
|
28
|
+
- ulmul.rb
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- lib/ulmul.rb
|
35
|
+
- tests/ulmul_test.rb
|
36
|
+
- style.css
|
37
|
+
- favicon.ico
|
38
|
+
- index.html
|
39
|
+
- ChangeLog
|
40
|
+
- README-en.xhtml
|
41
|
+
- README-ja
|
42
|
+
- README-ja.xhtml
|
43
|
+
- Rakefile
|
44
|
+
- ulmul.gemspec
|
45
|
+
- setup.rb
|
46
|
+
- ruby.jpg
|
47
|
+
- slidy.js
|
48
|
+
- ulmul-slidy.css
|
49
|
+
has_rdoc: true
|
50
|
+
homepage: http://ulmul.rubyforge.org/
|
51
|
+
post_install_message:
|
52
|
+
rdoc_options: []
|
53
|
+
|
54
|
+
require_paths:
|
55
|
+
- lib
|
56
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: "0"
|
61
|
+
version:
|
62
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: "0"
|
67
|
+
version:
|
68
|
+
requirements: []
|
69
|
+
|
70
|
+
rubyforge_project: ulmul
|
71
|
+
rubygems_version: 1.2.0
|
72
|
+
signing_key:
|
73
|
+
specification_version: 2
|
74
|
+
summary: ULMUL is an Ultra Lightweight Mark-Up Language
|
75
|
+
test_files:
|
76
|
+
- tests/ulmul_test.rb
|