ulmul 0.5.0 → 0.5.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/ChangeLog +647 -9
- data/Changes +9 -0
- data/README-en +19 -9
- data/README-ja +24 -14
- data/Rakefile +3 -4
- data/bin/ulmul2latex +5 -4
- data/bin/ulmul2mathjax +17 -0
- data/index.en.html +46 -20
- data/index.ja.html +48 -22
- data/lib/ulmul.rb +39 -36
- data/ruby.eps +472 -0
- data/ruby.obj +114 -0
- data/ulmul.gemspec +10 -6
- metadata +13 -8
data/ChangeLog
CHANGED
@@ -1,15 +1,653 @@
|
|
1
|
-
|
1
|
+
2011-04-09 14:50 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
2
2
|
|
3
|
-
*
|
4
|
-
Version 0.4.1.
|
3
|
+
* README-en, README-ja: Usage of ulmul2mathjax
|
5
4
|
|
6
|
-
|
5
|
+
2011-04-09 14:49 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
7
6
|
|
8
|
-
*
|
9
|
-
Original slidy.js of 2009 is used.
|
10
|
-
Version 0.4.0.
|
7
|
+
* TODO: Figures, not only JPEG
|
11
8
|
|
12
|
-
|
9
|
+
2011-04-09 13:46 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
13
10
|
|
14
|
-
*
|
11
|
+
* README-en, README-ja: \Eq:foo and /Eq:foo -> "\Eq:foo" and "/Eq:foo"
|
15
12
|
|
13
|
+
2011-04-09 13:41 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
14
|
+
|
15
|
+
* Rakefile: for ulmul2latex
|
16
|
+
|
17
|
+
2011-04-09 13:11 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
18
|
+
|
19
|
+
* bin/ulmul2latex: fix packages, add Version, fix compile-command, u.subs_rules = lambda{|s| return s}
|
20
|
+
|
21
|
+
2011-04-09 12:15 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
22
|
+
|
23
|
+
* ulmul.gemspec: add Chages to s.files
|
24
|
+
|
25
|
+
2011-04-09 11:59 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
26
|
+
|
27
|
+
* ChangeLog: rebuild
|
28
|
+
|
29
|
+
2011-04-08 17:34 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
30
|
+
|
31
|
+
* Changes: added
|
32
|
+
|
33
|
+
2011-04-08 17:33 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
34
|
+
|
35
|
+
* TODO: ChangeLog
|
36
|
+
|
37
|
+
2011-04-08 17:33 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
38
|
+
|
39
|
+
* README-en: You can write equations even in a caption
|
40
|
+
as $ax^2+bx+c=0$.
|
41
|
+
|
42
|
+
2011-04-08 17:32 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
43
|
+
|
44
|
+
* lib/ulmul.rb:
|
45
|
+
u.subs_rules = lambda{|s| s.gsub(/&/,'&').
|
46
|
+
gsub(/</,'<').
|
47
|
+
gsub(/>/,'>').
|
48
|
+
gsub(/(http:\S*|https:\S*)(\s|$)/, '<a href="\1">\1</a>\2').
|
49
|
+
gsub(/\$(.*?)\$/){|s| Regexp.last_match[1].to_mathml}}
|
50
|
+
|
51
|
+
2011-04-07 06:57 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
52
|
+
|
53
|
+
* ruby.eps, ruby.obj, ulmul.gemspec: add ulmul2mathjax
|
54
|
+
|
55
|
+
2011-04-06 16:42 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
56
|
+
|
57
|
+
* README-ja: URL of RubyGems
|
58
|
+
|
59
|
+
2011-04-05 22:20 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
60
|
+
|
61
|
+
* lib/ulmul.rb: " \\tag{#{@equations.length}}\n"
|
62
|
+
|
63
|
+
2011-04-05 21:56 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
64
|
+
|
65
|
+
* bin/ulmul2mathjax: Added, though HTML5 Validator does not
|
66
|
+
like existence of equations in a paragraph.
|
67
|
+
|
68
|
+
2011-04-05 21:50 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
69
|
+
|
70
|
+
* lib/ulmul.rb: MathJax
|
71
|
+
|
72
|
+
2011-04-05 20:56 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
73
|
+
|
74
|
+
* lib/ulmul.rb: result.gsub!(/\$(.*?)\$/){|s|
|
75
|
+
Regexp.last_match[1].to_mathml}
|
76
|
+
|
77
|
+
2011-04-05 04:01 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
78
|
+
|
79
|
+
* README-en, README-ja: refer to Eq:Emc2
|
80
|
+
|
81
|
+
2011-04-03 13:17 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
82
|
+
|
83
|
+
* README-en: spell check done.
|
84
|
+
|
85
|
+
2011-04-03 12:58 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
86
|
+
|
87
|
+
* README-ja: ignore line
|
88
|
+
|
89
|
+
2011-04-03 10:36 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
90
|
+
|
91
|
+
* ulmul.gemspec: s.add_dependency('math_ml', '>=0.10')
|
92
|
+
|
93
|
+
2011-04-02 11:38 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
94
|
+
|
95
|
+
* ulmul.gemspec: s.description, ulmul2xhtml -> ulmul2latex
|
96
|
+
|
97
|
+
2011-04-02 11:14 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
98
|
+
|
99
|
+
* lib/test.ulmul: itemize
|
100
|
+
|
101
|
+
2011-04-02 11:14 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
102
|
+
|
103
|
+
* lib/ulmul.rb: itemize
|
104
|
+
|
105
|
+
2011-04-02 11:13 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
106
|
+
|
107
|
+
* TODO: LaTeX
|
108
|
+
|
109
|
+
2011-04-02 11:13 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
110
|
+
|
111
|
+
* README-en, README-ja: itemize
|
112
|
+
|
113
|
+
2011-04-02 11:11 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
114
|
+
|
115
|
+
* Rakefile: README-en.tex
|
116
|
+
|
117
|
+
2011-04-02 11:11 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
118
|
+
|
119
|
+
* ulmul.gemspec: google-code-prettify
|
120
|
+
|
121
|
+
2011-04-02 09:01 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
122
|
+
|
123
|
+
* google-code-prettify, google-code-prettify/CHANGES.html,
|
124
|
+
google-code-prettify/COPYING,
|
125
|
+
google-code-prettify/README-zh-Hans.html,
|
126
|
+
google-code-prettify/README.html, google-code-prettify/src,
|
127
|
+
google-code-prettify/src/lang-apollo.js,
|
128
|
+
google-code-prettify/src/lang-css.js,
|
129
|
+
google-code-prettify/src/lang-fortran.js,
|
130
|
+
google-code-prettify/src/lang-hs.js,
|
131
|
+
google-code-prettify/src/lang-lisp.js,
|
132
|
+
google-code-prettify/src/lang-lua.js,
|
133
|
+
google-code-prettify/src/lang-ml.js,
|
134
|
+
google-code-prettify/src/lang-proto.js,
|
135
|
+
google-code-prettify/src/lang-scala.js,
|
136
|
+
google-code-prettify/src/lang-sql.js,
|
137
|
+
google-code-prettify/src/lang-vb.js,
|
138
|
+
google-code-prettify/src/lang-vhdl.js,
|
139
|
+
google-code-prettify/src/lang-wiki.js,
|
140
|
+
google-code-prettify/src/lang-yaml.js,
|
141
|
+
google-code-prettify/src/prettify.css,
|
142
|
+
google-code-prettify/src/prettify.js, google-code-prettify/tests,
|
143
|
+
google-code-prettify/tests/large_input_test.html,
|
144
|
+
google-code-prettify/tests/prettify_test.html,
|
145
|
+
google-code-prettify/tests/test_base.js,
|
146
|
+
google-code-prettify/tests/test_styles.css: syntax highlighting
|
147
|
+
|
148
|
+
2011-04-02 08:57 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
149
|
+
|
150
|
+
* hello.c, ulmul.gemspec: for example of syntax highlighting
|
151
|
+
|
152
|
+
2011-04-02 08:14 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
153
|
+
|
154
|
+
* test/unit/ulmul_test.rb: for 0.5.x
|
155
|
+
|
156
|
+
2011-04-02 08:05 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
157
|
+
|
158
|
+
* README-ja: update for 0.5.0
|
159
|
+
|
160
|
+
2011-04-02 08:05 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
161
|
+
|
162
|
+
* Rakefile: for README-ja
|
163
|
+
|
164
|
+
2011-04-02 08:04 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
165
|
+
|
166
|
+
* README-en: ulmul2latex and something
|
167
|
+
|
168
|
+
2011-04-02 08:01 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
169
|
+
|
170
|
+
* TODO: done something
|
171
|
+
|
172
|
+
2011-04-02 08:00 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
173
|
+
|
174
|
+
* lib/ulmul.rb: add (download: @env_file)
|
175
|
+
|
176
|
+
2011-04-02 01:42 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
177
|
+
|
178
|
+
* lib/test.ulmul, lib/ulmul.rb: We do not need cb_env_begin2()
|
179
|
+
|
180
|
+
2011-04-02 00:38 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
181
|
+
|
182
|
+
* lib/test.ulmul, lib/ulmul.rb: Code env for LaTeX
|
183
|
+
|
184
|
+
2011-04-01 03:57 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
185
|
+
|
186
|
+
* README-en, Rakefile, ulmul-slidy.css: changes
|
187
|
+
for figure and table
|
188
|
+
|
189
|
+
2011-03-31 10:36 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
190
|
+
|
191
|
+
* lib/test.ulmul, lib/ulmul.rb: Code
|
192
|
+
|
193
|
+
2011-03-31 10:33 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
194
|
+
|
195
|
+
* ulmul2html5.css, ulmul2xhtml.css: code caption
|
196
|
+
|
197
|
+
2011-03-31 10:32 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
198
|
+
|
199
|
+
* bin/ulmul2xhtml: compile-command, google-code-prettify
|
200
|
+
|
201
|
+
2011-03-31 06:17 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
202
|
+
|
203
|
+
* TODO: update
|
204
|
+
|
205
|
+
2011-03-31 06:03 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
206
|
+
|
207
|
+
* lib/test.ulmul, lib/ulmul.rb: refs for LaTeX and HTML
|
208
|
+
|
209
|
+
2011-03-31 04:52 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
210
|
+
|
211
|
+
* lib/ulmul.rb: LaTeX, remove a4
|
212
|
+
|
213
|
+
2011-03-31 04:47 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
214
|
+
|
215
|
+
* ulmul.gemspec: LaTeX uses JPEG-EXIF
|
216
|
+
|
217
|
+
2011-03-31 04:47 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
218
|
+
|
219
|
+
* lib/ulmul.rb: LaTeX uses JPEG-EXIF
|
220
|
+
|
221
|
+
2011-03-31 03:39 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
222
|
+
|
223
|
+
* lib/test.ulmul: Before and after equations, paragraph
|
224
|
+
continues.
|
225
|
+
|
226
|
+
2011-03-31 03:26 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
227
|
+
|
228
|
+
* lib/ulmul.rb: :st_equation
|
229
|
+
|
230
|
+
2011-03-30 10:35 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
231
|
+
|
232
|
+
* lib/test.ulmul: \Eq:Emc2--/Eq:Emc2
|
233
|
+
|
234
|
+
2011-03-30 09:57 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
235
|
+
|
236
|
+
* lib/ulmul.rb: Eq. for HTML
|
237
|
+
|
238
|
+
2011-03-30 09:28 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
239
|
+
|
240
|
+
* lib/ulmul.rb: cb_env_end2() for LaTeX
|
241
|
+
|
242
|
+
2011-03-30 03:25 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
243
|
+
|
244
|
+
* ulmul2html5.css, ulmul2xhtml.css: implement TABLE for HTML5 and XHTML
|
245
|
+
|
246
|
+
2011-03-30 03:25 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
247
|
+
|
248
|
+
* bin/ulmul2html5, bin/ulmul2xhtml: implement TABLE for HTML5 and XHTML
|
249
|
+
|
250
|
+
2011-03-30 03:23 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
251
|
+
|
252
|
+
* lib/test.ulmul, lib/ulmul.rb: implement TABLE for HTML5 and XHTML
|
253
|
+
|
254
|
+
2011-03-30 00:35 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
255
|
+
|
256
|
+
* lib/test.ulmul: $E=mc^2$
|
257
|
+
|
258
|
+
2011-03-30 00:34 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
259
|
+
|
260
|
+
* lib/ulmul.rb: XHTML
|
261
|
+
|
262
|
+
2011-03-29 12:36 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
263
|
+
|
264
|
+
* lib/ulmul.rb: figcaption
|
265
|
+
|
266
|
+
2011-03-29 12:14 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
267
|
+
|
268
|
+
* lib/ulmul.rb: Error messages for env
|
269
|
+
|
270
|
+
2011-03-29 04:02 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
271
|
+
|
272
|
+
* TODO: add "Done"
|
273
|
+
|
274
|
+
2011-03-29 04:00 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
275
|
+
|
276
|
+
* lib/ulmul.rb: Error message: STDERR << filename << ":#{lnumber}:
|
277
|
+
Still in an environment: #{line}"
|
278
|
+
|
279
|
+
2011-03-28 21:33 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
280
|
+
|
281
|
+
* TODO: Error messages
|
282
|
+
|
283
|
+
2011-03-28 21:30 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
284
|
+
|
285
|
+
* lib/test.ulmul, lib/ulmul.rb: apply_subs_rules(@subs_rules)
|
286
|
+
|
287
|
+
2011-03-28 11:43 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
288
|
+
|
289
|
+
* ulmul2html5.css, ulmul2xhtml.css: div.table.of.contents
|
290
|
+
|
291
|
+
2011-03-28 11:27 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
292
|
+
|
293
|
+
* lib/ulmul.rb: file for LaTeX
|
294
|
+
|
295
|
+
2011-03-28 11:26 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
296
|
+
|
297
|
+
* bin/ulmul2latex: file
|
298
|
+
|
299
|
+
2011-03-28 08:46 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
300
|
+
|
301
|
+
* bin/ulmul2latex: Constants
|
302
|
+
|
303
|
+
2011-03-28 08:44 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
304
|
+
|
305
|
+
* lib/ulmul.rb: Constants
|
306
|
+
|
307
|
+
2011-03-28 08:22 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
308
|
+
|
309
|
+
* lib/ulmul.rb: cb_env_begin()
|
310
|
+
|
311
|
+
2011-03-26 11:01 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
312
|
+
|
313
|
+
* lib/test.ulmul, lib/ulmul.rb: Fig
|
314
|
+
|
315
|
+
2011-03-26 09:21 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
316
|
+
|
317
|
+
* lib/ulmul.rb: u.file(stylesheets,javascripts,name,language)
|
318
|
+
|
319
|
+
2011-03-26 04:59 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
320
|
+
|
321
|
+
* lib/test.ulmul, lib/ulmul.rb: table of contents
|
322
|
+
|
323
|
+
2011-03-25 05:33 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
324
|
+
|
325
|
+
* bin/ulmul2latex: LaTeX!
|
326
|
+
|
327
|
+
2011-03-25 05:29 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
328
|
+
|
329
|
+
* lib/ulmul.rb: $ULMUL_VERBATIM_INITIATOR
|
330
|
+
|
331
|
+
2011-03-25 05:16 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
332
|
+
|
333
|
+
* lib/test.ulmul, lib/ulmul.rb: verbatim
|
334
|
+
|
335
|
+
2011-03-25 02:16 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
336
|
+
|
337
|
+
* bin/ulmul2html5: moved to lib/ulmul.rb
|
338
|
+
|
339
|
+
2011-03-25 02:09 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
340
|
+
|
341
|
+
* lib/ulmul.rb: opts = OptionParser.new
|
342
|
+
|
343
|
+
2011-03-25 00:57 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
344
|
+
|
345
|
+
* lib/test.ulmul, lib/ulmul.rb: ev_ignore
|
346
|
+
|
347
|
+
2011-03-25 00:38 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
348
|
+
|
349
|
+
* lib/ulmul.rb: Itemize::ITEMIZE_INITIATOR
|
350
|
+
|
351
|
+
2011-03-24 13:17 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
352
|
+
|
353
|
+
* lib/test.ulmul: a text file for test
|
354
|
+
|
355
|
+
2011-03-24 13:16 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
356
|
+
|
357
|
+
* lib/ulmul.rb: start to use aasm
|
358
|
+
|
359
|
+
2011-02-07 01:35 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
360
|
+
|
361
|
+
* ajt-manuscript/nishimatsu-ajt.tex:
|
362
|
+
ajt-manuscript/nishimatsu-ajt.tex: [Development of a Ultra
|
363
|
+
Lightweight MarkUp Language (ULMUL)]{An implementation of markup
|
364
|
+
language to markup language converter}
|
365
|
+
|
366
|
+
2011-01-07 00:16 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
367
|
+
|
368
|
+
* texconf10.txt: unit test
|
369
|
+
|
370
|
+
2011-01-07 00:13 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
371
|
+
|
372
|
+
* TODO: New ToDo list
|
373
|
+
|
374
|
+
2010-11-23 14:43 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
375
|
+
|
376
|
+
* ajt-manuscript/Makefile, ajt-manuscript/nishimatsu-ajt.bib,
|
377
|
+
ajt-manuscript/nishimatsu-ajt.bst,
|
378
|
+
ajt-manuscript/nishimatsu-ajt.tex: could not
|
379
|
+
submit it
|
380
|
+
|
381
|
+
2010-11-08 03:12 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
382
|
+
|
383
|
+
* ajt-manuscript/nishimatsu-ajt.tex: TeX-PDF-mode: t
|
384
|
+
|
385
|
+
2010-11-05 14:16 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
386
|
+
|
387
|
+
* ajt-manuscript, ajt-manuscript/00MEMO.txt,
|
388
|
+
ajt-manuscript/Makefile, ajt-manuscript/ajt.cls,
|
389
|
+
ajt-manuscript/ajt.cls.original,
|
390
|
+
ajt-manuscript/nishimatsu-ajt.bib,
|
391
|
+
ajt-manuscript/nishimatsu-ajt.bst,
|
392
|
+
ajt-manuscript/nishimatsu-ajt.tex: start to edit
|
393
|
+
|
394
|
+
2010-10-23 03:10 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
395
|
+
|
396
|
+
* texconf10.xhtml: using HTML Slidy
|
397
|
+
|
398
|
+
2010-10-23 00:40 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
399
|
+
|
400
|
+
* texconf10.txt, ulmul-slidy.css: final version?
|
401
|
+
|
402
|
+
2010-10-21 04:58 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
403
|
+
|
404
|
+
* TODO, texconf10.txt, texconf10abstract,
|
405
|
+
texconf10abstract/Makefile, texconf10abstract/abst.tex,
|
406
|
+
texconf10abstract/dvipdfmx.map, texconf10abstract/ulmul.bib,
|
407
|
+
texconf10abstract/ulmul.bst: for presentation
|
408
|
+
|
409
|
+
2010-10-07 12:32 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
410
|
+
|
411
|
+
* test/unit/ulmul_test.rb: assert(Ulmul.method_defined?(:parse))
|
412
|
+
|
413
|
+
2010-10-06 12:04 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
414
|
+
|
415
|
+
* lib/ulmul.rb, test/unit/ulmul_test.rb, ulmul.gemspec: require "aasm"
|
416
|
+
|
417
|
+
2010-10-06 11:19 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
418
|
+
|
419
|
+
* test/test_helper.rb: We do not need it.
|
420
|
+
|
421
|
+
2010-10-06 11:16 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
422
|
+
|
423
|
+
* test/unit/ulmul_test.rb: No test_helper
|
424
|
+
|
425
|
+
2010-10-06 10:35 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
426
|
+
|
427
|
+
* test/test_helper.rb, test/unit/ulmul_test.rb: for
|
428
|
+
1.9.x (minitest) and 1.8.x (test/unit)
|
429
|
+
|
430
|
+
2010-10-06 08:28 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
431
|
+
|
432
|
+
* test/ulmul_test.rb, test/unit/ulmul_test.rb: moved from
|
433
|
+
test/ulmul_test.rb to test/unit/ulmul_test.rb
|
434
|
+
|
435
|
+
2010-10-06 08:26 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
436
|
+
|
437
|
+
* Rakefile, test/unit: directory test/unit
|
438
|
+
|
439
|
+
2010-10-06 07:46 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
440
|
+
|
441
|
+
* test, tests: rename from tests to test
|
442
|
+
|
443
|
+
2010-09-27 05:51 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
444
|
+
|
445
|
+
* lib/ulmul.rb, ulmul2html5.css, ulmul2xhtml.css: div.contents
|
446
|
+
|
447
|
+
2010-08-12 10:43 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
448
|
+
|
449
|
+
* lib/ulmul.rb: <div class="contents">
|
450
|
+
|
451
|
+
2010-06-16 01:44 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
452
|
+
|
453
|
+
* lib/ulmul.rb: [ruby-list:47159]
|
454
|
+
|
455
|
+
2010-06-16 01:11 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
456
|
+
|
457
|
+
* README-en, README-ja, lib/ulmul.rb: Encoding for
|
458
|
+
m17n of Ruby 1.9.x. Thanks, Masayoshi Takahashi-san.
|
459
|
+
|
460
|
+
2010-06-15 04:26 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
461
|
+
|
462
|
+
* README-en, README-ja: Ruby 1.9.x "invalid byte
|
463
|
+
sequence in US-ASCII (ArgumentError)"
|
464
|
+
|
465
|
+
2010-06-06 11:15 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
466
|
+
|
467
|
+
* ChangeLog, README-en, README-ja, lib/ulmul.rb, ulmul.gemspec: 0.4.0 -> 0.4.1
|
468
|
+
|
469
|
+
2010-06-02 01:47 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
470
|
+
|
471
|
+
* README-en, README-ja: typo
|
472
|
+
|
473
|
+
2010-05-30 14:50 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
474
|
+
|
475
|
+
* ulmul.gemspec: forgotten EOF
|
476
|
+
|
477
|
+
2010-05-30 14:44 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
478
|
+
|
479
|
+
* README-en, README-ja, ulmul.gemspec: longer
|
480
|
+
description
|
481
|
+
|
482
|
+
2010-05-27 14:27 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
483
|
+
|
484
|
+
* README-en, README-ja: in the package
|
485
|
+
|
486
|
+
2010-05-26 08:59 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
487
|
+
|
488
|
+
* ChangeLog: Version 0.4.0
|
489
|
+
|
490
|
+
2010-05-26 08:52 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
491
|
+
|
492
|
+
* lib/ulmul.rb, ulmul.gemspec: version 0.4.0
|
493
|
+
slidy.js -> ulmul-slidy.js
|
494
|
+
|
495
|
+
2010-05-26 08:48 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
496
|
+
|
497
|
+
* Rakefile: presentation.en.xhtml
|
498
|
+
|
499
|
+
2010-05-26 08:43 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
500
|
+
|
501
|
+
* README-ja: add URL
|
502
|
+
|
503
|
+
2010-05-26 08:33 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
504
|
+
|
505
|
+
* README-en: slidy.js -> ulmul-slidy.js done
|
506
|
+
|
507
|
+
2010-05-26 08:18 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
508
|
+
|
509
|
+
* slidy.js, ulmul-slidy.js: new ulmul-slidy.js
|
510
|
+
|
511
|
+
2010-04-11 23:40 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
512
|
+
|
513
|
+
* README-en, README-ja: ulmul-slidy.js
|
514
|
+
|
515
|
+
2010-04-10 10:28 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
516
|
+
|
517
|
+
* README-en, XHTML-vs-HTML5.ja.txt: slidy.js ->
|
518
|
+
ulmul-slidy.js
|
519
|
+
|
520
|
+
2010-04-10 08:41 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
521
|
+
|
522
|
+
* Rakefile, ulmul2html5.css, ulmul2xhtml.css: for 0.3.0
|
523
|
+
|
524
|
+
2010-04-10 07:48 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
525
|
+
|
526
|
+
* README-en, README-ja: for 0.3.0
|
527
|
+
|
528
|
+
2010-04-10 02:39 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
529
|
+
|
530
|
+
* README-en: reform
|
531
|
+
|
532
|
+
2010-04-08 10:07 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
533
|
+
|
534
|
+
* README-en: start to write
|
535
|
+
|
536
|
+
2010-04-07 08:18 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
537
|
+
|
538
|
+
* lib/ulmul.rb: for html5
|
539
|
+
|
540
|
+
2010-04-01 06:36 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
541
|
+
|
542
|
+
* ulmul.gemspec: README-en
|
543
|
+
|
544
|
+
2010-04-01 00:18 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
545
|
+
|
546
|
+
* XHTML-vs-HTML5.ja.txt: mode
|
547
|
+
|
548
|
+
2010-04-01 00:16 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
549
|
+
|
550
|
+
* README-en: new file in English
|
551
|
+
|
552
|
+
2010-04-01 00:14 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
553
|
+
|
554
|
+
* lib/ulmul.rb: move the description to README-en
|
555
|
+
|
556
|
+
2010-04-01 00:06 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
557
|
+
|
558
|
+
* Rakefile: html2xhtml, README-en
|
559
|
+
|
560
|
+
2010-03-31 23:16 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
561
|
+
|
562
|
+
* README-ja: presentation.xhtml
|
563
|
+
|
564
|
+
2010-03-31 10:26 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
565
|
+
|
566
|
+
* README-ja: changed largely
|
567
|
+
|
568
|
+
2010-03-30 15:30 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
569
|
+
|
570
|
+
* Rakefile, lib/ulmul.rb, ulmul.gemspec: Ulmul::VERSION
|
571
|
+
|
572
|
+
2010-03-30 09:58 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
573
|
+
|
574
|
+
* README-ja, Rakefile, bin/ulmul2html5, bin/ulmul2xhtml: ulmul2xhtml and ulmul2html5
|
575
|
+
|
576
|
+
2010-03-30 03:42 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
577
|
+
|
578
|
+
* lib/ulmul.rb, ulmul2html5.css: compile-command
|
579
|
+
|
580
|
+
2010-03-30 03:21 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
581
|
+
|
582
|
+
* Rakefile, ulmul2html5.css: figure figcaption
|
583
|
+
|
584
|
+
2010-03-30 03:05 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
585
|
+
|
586
|
+
* ulmul2html5.css: added
|
587
|
+
|
588
|
+
2010-03-30 03:04 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
589
|
+
|
590
|
+
* bin/ulmul2html5, bin/ulmul2xhtml, lib/ulmul.rb, ulmul2xhtml.css: style.css -> ulmul2xhtml.css
|
591
|
+
|
592
|
+
2010-03-29 06:33 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
593
|
+
|
594
|
+
* lib/ulmul.rb: just a library
|
595
|
+
|
596
|
+
2010-03-29 06:31 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
597
|
+
|
598
|
+
* Rakefile: -l ja (natural language)
|
599
|
+
|
600
|
+
2010-03-29 06:29 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
601
|
+
|
602
|
+
* Rakefile, index.html, style.css, ulmul.gemspec: README-ja.xhtml -> index.ja.html
|
603
|
+
|
604
|
+
2010-03-25 07:31 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
605
|
+
|
606
|
+
* XHTML-vs-HTML5.ja.txt: root element
|
607
|
+
|
608
|
+
2010-03-25 07:14 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
609
|
+
|
610
|
+
* XHTML-vs-HTML5.ja.txt: compare XHTML and HTML5
|
611
|
+
|
612
|
+
2010-03-25 06:19 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
613
|
+
|
614
|
+
* bin/ulmul2xhtml: distinguish XHTML from HTML5
|
615
|
+
|
616
|
+
2010-03-25 06:16 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
617
|
+
|
618
|
+
* bin/ulmul2html, bin/ulmul2html5: renamed from
|
619
|
+
ulmul2html
|
620
|
+
|
621
|
+
2010-02-25 02:09 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
622
|
+
|
623
|
+
* index.html: You may need Firefox to browse XHTML
|
624
|
+
files with MathML.
|
625
|
+
|
626
|
+
2010-02-11 15:35 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
627
|
+
|
628
|
+
* Rakefile, bin/ulmul2html, lib/ulmul.rb, ulmul.gemspec:
|
629
|
+
bin/ulmul.rb -> bin/ulmul2html
|
630
|
+
|
631
|
+
2010-02-11 15:12 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
632
|
+
|
633
|
+
* bin/ulmul.rb: delete bin/ulmul.rb
|
634
|
+
|
635
|
+
2010-01-08 08:44 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
636
|
+
|
637
|
+
* dot.htaccess, index.var: for content negotiation
|
638
|
+
|
639
|
+
2009-01-04 09:18 Takeshi Nishimatsu <t_nissie@yahoo.co.jp>
|
640
|
+
|
641
|
+
* README-ja, lib/ulmul.rb: how to use svn(1)
|
642
|
+
|
643
|
+
Local variables:
|
644
|
+
add-log-time-format: (lambda ()
|
645
|
+
(let* ((time (current-time))
|
646
|
+
(system-time-locale "C")
|
647
|
+
(diff (+ (cadr time) 32400))
|
648
|
+
(lo (% diff 65536))
|
649
|
+
(hi (+ (car time) (/ diff 65536))))
|
650
|
+
(format-time-string "%Y-%m-%d %H:%M" (list hi lo) t)))
|
651
|
+
indent-tabs-mode: t
|
652
|
+
tab-width: 8
|
653
|
+
end:
|