rubygems-update 1.1.0 → 1.1.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.
Potentially problematic release.
This version of rubygems-update might be problematic. Click here for more details.
- data.tar.gz.sig +0 -0
- data/ChangeLog +79 -0
- data/README +1 -3
- data/Rakefile +61 -49
- data/doc/release_notes/docs-rubygems-announce.rdoc +29 -0
- data/doc/release_notes/rel_0_2_0.rdoc +4 -0
- data/doc/release_notes/rel_0_3_0.rdoc +21 -0
- data/doc/release_notes/rel_0_4_0.rdoc +4 -0
- data/doc/release_notes/rel_0_5_0.rdoc +26 -0
- data/doc/release_notes/rel_0_6_0.rdoc +16 -0
- data/doc/release_notes/rel_0_7_0.rdoc +4 -0
- data/doc/release_notes/rel_0_8_0.rdoc +23 -0
- data/doc/release_notes/rel_0_8_1.rdoc +4 -0
- data/doc/release_notes/rel_0_8_10.rdoc +70 -0
- data/doc/release_notes/rel_0_8_11.rdoc +102 -0
- data/doc/release_notes/rel_0_8_3.rdoc +113 -0
- data/doc/release_notes/rel_0_8_4.rdoc +51 -0
- data/doc/release_notes/rel_0_8_5.rdoc +117 -0
- data/doc/release_notes/rel_0_8_7.rdoc +135 -0
- data/doc/release_notes/rel_0_9_0.rdoc +109 -0
- data/doc/release_notes/rel_0_9_2.rdoc +69 -0
- data/doc/release_notes/rel_0_9_3.rdoc +66 -0
- data/doc/release_notes/rel_0_9_4.rdoc +67 -0
- data/doc/release_notes/rel_0_9_5.rdoc +108 -0
- data/doc/release_notes/rel_1_0_0.rdoc +67 -0
- data/doc/release_notes/rel_1_0_1.rdoc +56 -0
- data/doc/release_notes/rel_1_1_0.rdoc +85 -0
- data/doc/release_notes/rel_1_1_1.rdoc +64 -0
- data/lib/rubygems.rb +29 -5
- data/lib/rubygems/command_manager.rb +1 -1
- data/lib/rubygems/commands/environment_command.rb +1 -1
- data/lib/rubygems/commands/pristine_command.rb +1 -0
- data/lib/rubygems/commands/query_command.rb +4 -2
- data/lib/rubygems/commands/update_command.rb +7 -4
- data/lib/rubygems/dependency_installer.rb +8 -2
- data/lib/rubygems/doc_manager.rb +6 -0
- data/lib/rubygems/indexer.rb +1 -1
- data/lib/rubygems/remote_fetcher.rb +3 -1
- data/lib/rubygems/rubygems_version.rb +1 -1
- data/lib/rubygems/server.rb +5 -5
- data/lib/rubygems/source_index.rb +7 -14
- data/lib/rubygems/source_info_cache.rb +29 -10
- data/lib/rubygems/version_option.rb +1 -2
- data/setup.rb +33 -19
- data/test/gemutilities.rb +13 -0
- data/test/test_gem.rb +58 -21
- data/test/test_gem_commands_environment_command.rb +1 -1
- data/test/test_gem_commands_query_command.rb +6 -4
- data/test/test_gem_commands_update_command.rb +1 -0
- data/test/test_gem_dependency_installer.rb +2 -0
- data/test/test_gem_remote_fetcher.rb +3 -2
- data/test/test_gem_server.rb +1 -1
- data/test/test_gem_source_index.rb +16 -0
- data/test/test_gem_source_info_cache.rb +22 -1
- metadata +32 -32
- metadata.gz.sig +2 -2
- data/doc/doc.css +0 -73
- data/doc/makedoc.rb +0 -10
- data/examples/application/an-app.gemspec +0 -30
- data/examples/application/bin/myapp +0 -3
- data/examples/application/ext/Makefile +0 -139
- data/examples/application/ext/extconf.rb +0 -3
- data/examples/application/ext/foo.c +0 -1
- data/examples/application/lib/somefunctionality.rb +0 -9
- data/gemspecs/README +0 -4
- data/gemspecs/cgikit-1.1.0.gemspec +0 -17
- data/gemspecs/jabber4r.gemspec +0 -26
- data/gemspecs/linguistics.gemspec +0 -22
- data/gemspecs/ook.gemspec +0 -21
- data/gemspecs/progressbar.gemspec +0 -22
- data/gemspecs/redcloth.gemspec +0 -22
- data/gemspecs/rublog.gemspec +0 -23
- data/gemspecs/ruby-doom.gemspec +0 -21
- data/gemspecs/rubyjdwp.gemspec +0 -21
- data/gemspecs/statistics.gemspec +0 -21
- data/redist/session.gem +0 -433
data/test/gemutilities.rb
CHANGED
@@ -61,6 +61,8 @@ class FakeFetcher
|
|
61
61
|
name = "#{spec.full_name}.gem"
|
62
62
|
path = File.join(install_dir, 'cache', name)
|
63
63
|
|
64
|
+
Gem.ensure_gem_subdirectories install_dir
|
65
|
+
|
64
66
|
if source_uri =~ /^http/ then
|
65
67
|
File.open(path, "wb") do |f|
|
66
68
|
f.write fetch_path(File.join(source_uri, "gems", name))
|
@@ -369,6 +371,17 @@ class RubyGemTestCase < Test::Unit::TestCase
|
|
369
371
|
Gem.win_platform?
|
370
372
|
end
|
371
373
|
|
374
|
+
# NOTE Allow tests to use a random (but controlled) port number instead of
|
375
|
+
# a hardcoded one. This helps CI tools when running parallels builds on
|
376
|
+
# the same builder slave.
|
377
|
+
def self.process_based_port
|
378
|
+
@@process_based_port ||= 8000 + $$ % 1000
|
379
|
+
end
|
380
|
+
|
381
|
+
def process_based_port
|
382
|
+
self.class.process_based_port
|
383
|
+
end
|
384
|
+
|
372
385
|
end
|
373
386
|
|
374
387
|
class TempIO
|
data/test/test_gem.rb
CHANGED
@@ -237,23 +237,25 @@ class TestGem < RubyGemTestCase
|
|
237
237
|
assert_equal [Gem.dir], Gem.path
|
238
238
|
end
|
239
239
|
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
240
|
+
unless win_platform?
|
241
|
+
def test_self_path_APPLE_GEM_HOME
|
242
|
+
Gem.clear_paths
|
243
|
+
Gem.const_set :APPLE_GEM_HOME, '/tmp/apple_gem_home'
|
244
|
+
|
245
|
+
assert Gem.path.include?('/tmp/apple_gem_home')
|
246
|
+
ensure
|
247
|
+
Gem.send :remove_const, :APPLE_GEM_HOME
|
248
|
+
end
|
249
|
+
|
250
|
+
def test_self_path_APPLE_GEM_HOME_GEM_PATH
|
251
|
+
Gem.clear_paths
|
252
|
+
ENV['GEM_PATH'] = @gemhome
|
253
|
+
Gem.const_set :APPLE_GEM_HOME, '/tmp/apple_gem_home'
|
254
|
+
|
255
|
+
assert !Gem.path.include?('/tmp/apple_gem_home')
|
256
|
+
ensure
|
257
|
+
Gem.send :remove_const, :APPLE_GEM_HOME
|
258
|
+
end
|
257
259
|
end
|
258
260
|
|
259
261
|
def test_self_path_ENV_PATH
|
@@ -303,21 +305,56 @@ class TestGem < RubyGemTestCase
|
|
303
305
|
|
304
306
|
def test_self_prefix
|
305
307
|
file_name = File.expand_path __FILE__
|
306
|
-
|
308
|
+
|
309
|
+
prefix = File.dirname File.dirname(file_name)
|
310
|
+
prefix = File.dirname prefix if File.basename(prefix) == 'test'
|
311
|
+
|
312
|
+
assert_equal prefix, Gem.prefix
|
313
|
+
end
|
314
|
+
|
315
|
+
def test_self_prefix_libdir
|
316
|
+
orig_libdir = Gem::ConfigMap[:libdir]
|
317
|
+
|
318
|
+
file_name = File.expand_path __FILE__
|
319
|
+
prefix = File.dirname File.dirname(file_name)
|
320
|
+
|
321
|
+
Gem::ConfigMap[:libdir] = prefix
|
322
|
+
|
323
|
+
assert_nil Gem.prefix
|
324
|
+
ensure
|
325
|
+
Gem::ConfigMap[:libdir] = orig_libdir
|
307
326
|
end
|
308
327
|
|
309
|
-
def
|
328
|
+
def test_self_prefix_sitelibdir
|
310
329
|
orig_sitelibdir = Gem::ConfigMap[:sitelibdir]
|
311
330
|
|
312
331
|
file_name = File.expand_path __FILE__
|
313
|
-
prefix = File.
|
314
|
-
|
332
|
+
prefix = File.dirname File.dirname(file_name)
|
333
|
+
|
334
|
+
Gem::ConfigMap[:sitelibdir] = prefix
|
315
335
|
|
316
336
|
assert_nil Gem.prefix
|
317
337
|
ensure
|
318
338
|
Gem::ConfigMap[:sitelibdir] = orig_sitelibdir
|
319
339
|
end
|
320
340
|
|
341
|
+
def test_self_refresh
|
342
|
+
util_make_gems
|
343
|
+
|
344
|
+
a1_spec = File.join @gemhome, "specifications", "#{@a1.full_name}.gemspec"
|
345
|
+
|
346
|
+
FileUtils.mv a1_spec, @tempdir
|
347
|
+
|
348
|
+
assert !Gem.source_index.gems.include?(@a1.full_name)
|
349
|
+
|
350
|
+
FileUtils.mv File.join(@tempdir, "#{@a1.full_name}.gemspec"), a1_spec
|
351
|
+
|
352
|
+
Gem.refresh
|
353
|
+
|
354
|
+
assert Gem.source_index.gems.include?(@a1.full_name)
|
355
|
+
assert_equal nil, Gem.instance_variable_get(:@searcher)
|
356
|
+
end
|
357
|
+
|
321
358
|
def test_self_required_location
|
322
359
|
util_make_gems
|
323
360
|
|
@@ -20,7 +20,7 @@ class TestGemCommandsEnvironmentCommand < RubyGemTestCase
|
|
20
20
|
@cmd.execute
|
21
21
|
end
|
22
22
|
|
23
|
-
assert_match %r|RUBYGEMS VERSION: (\d\.)+\d
|
23
|
+
assert_match %r|RUBYGEMS VERSION: (\d\.)+\d|, @ui.output
|
24
24
|
assert_match %r|RUBY VERSION: \d\.\d\.\d \(.*\) \[.*\]|, @ui.output
|
25
25
|
assert_match %r|INSTALLATION DIRECTORY: #{Regexp.escape @gemhome}|,
|
26
26
|
@ui.output
|
@@ -44,8 +44,10 @@ class TestGemCommandsQueryCommand < RubyGemTestCase
|
|
44
44
|
|
45
45
|
*** REMOTE GEMS ***
|
46
46
|
|
47
|
+
Updating metadata for 1 gems from http://gems.example.com/
|
48
|
+
.
|
49
|
+
complete
|
47
50
|
a (2)
|
48
|
-
pl (1)
|
49
51
|
EOF
|
50
52
|
|
51
53
|
assert_equal expected, @ui.output
|
@@ -79,8 +81,8 @@ pl (1)
|
|
79
81
|
|
80
82
|
*** REMOTE GEMS ***
|
81
83
|
|
82
|
-
Updating metadata for
|
83
|
-
|
84
|
+
Updating metadata for 2 gems from http://gems.example.com/
|
85
|
+
..
|
84
86
|
complete
|
85
87
|
a (2, 1)
|
86
88
|
EOF
|
@@ -100,7 +102,7 @@ a (2, 1)
|
|
100
102
|
|
101
103
|
*** REMOTE GEMS ***
|
102
104
|
|
103
|
-
a (2
|
105
|
+
a (2)
|
104
106
|
This is a lot of text. This is a lot of text. This is a lot of text.
|
105
107
|
This is a lot of text.
|
106
108
|
|
@@ -97,6 +97,7 @@ class TestGemCommandsUpdateCommand < RubyGemTestCase
|
|
97
97
|
assert_equal "Updating installed gems", out.shift
|
98
98
|
assert_match %r|Bulk updating|, out.shift
|
99
99
|
assert_equal "Updating #{@a2.name}", out.shift
|
100
|
+
assert_match %r|Bulk updating|, out.shift
|
100
101
|
assert_equal "Successfully installed #{@c2.full_name}", out.shift
|
101
102
|
assert_equal "Successfully installed #{@b2.full_name}", out.shift
|
102
103
|
assert_equal "Successfully installed #{@a2.full_name}", out.shift
|
@@ -216,6 +216,8 @@ class TestGemDependencyInstaller < RubyGemTestCase
|
|
216
216
|
|
217
217
|
assert File.exist?(File.join(gemhome2, 'specifications',
|
218
218
|
"#{@a1.full_name}.gemspec"))
|
219
|
+
assert File.exist?(File.join(gemhome2, 'cache',
|
220
|
+
"#{@a1.full_name}.gem"))
|
219
221
|
end
|
220
222
|
|
221
223
|
def test_install_domain_both
|
@@ -76,8 +76,9 @@ gems:
|
|
76
76
|
|
77
77
|
# don't let 1.8 and 1.9 autotest collide
|
78
78
|
RUBY_VERSION =~ /(\d+)\.(\d+)\.(\d+)/
|
79
|
-
|
80
|
-
|
79
|
+
# don't let parallel runners collide
|
80
|
+
PROXY_PORT = process_based_port + 100 + $1.to_i * 100 + $2.to_i * 10 + $3.to_i
|
81
|
+
SERVER_PORT = process_based_port + 200 + $1.to_i * 100 + $2.to_i * 10 + $3.to_i
|
81
82
|
|
82
83
|
def setup
|
83
84
|
super
|
data/test/test_gem_server.rb
CHANGED
@@ -15,7 +15,7 @@ class TestGemServer < RubyGemTestCase
|
|
15
15
|
|
16
16
|
@a1 = quick_gem 'a', '1'
|
17
17
|
|
18
|
-
@server = Gem::Server.new Gem.dir,
|
18
|
+
@server = Gem::Server.new Gem.dir, process_based_port, false
|
19
19
|
@req = WEBrick::HTTPRequest.new :Logger => nil
|
20
20
|
@res = WEBrick::HTTPResponse.new :HTTPVersion => '1.0'
|
21
21
|
end
|
@@ -395,6 +395,22 @@ class TestGemSourceIndex < RubyGemTestCase
|
|
395
395
|
assert_equal [updated_platform.name], @source_index.outdated
|
396
396
|
end
|
397
397
|
|
398
|
+
def test_refresh_bang
|
399
|
+
a1_spec = File.join @gemhome, "specifications", "#{@a1.full_name}.gemspec"
|
400
|
+
|
401
|
+
FileUtils.mv a1_spec, @tempdir
|
402
|
+
|
403
|
+
source_index = Gem::SourceIndex.from_installed_gems
|
404
|
+
|
405
|
+
assert !source_index.gems.include?(@a1.full_name)
|
406
|
+
|
407
|
+
FileUtils.mv File.join(@tempdir, "#{@a1.full_name}.gemspec"), a1_spec
|
408
|
+
|
409
|
+
source_index.refresh!
|
410
|
+
|
411
|
+
assert source_index.gems.include?(@a1.full_name)
|
412
|
+
end
|
413
|
+
|
398
414
|
def test_remove_extra
|
399
415
|
@source_index.add_spec @a1
|
400
416
|
@source_index.add_spec @a2
|
@@ -287,6 +287,7 @@ class TestGemSourceInfoCache < RubyGemTestCase
|
|
287
287
|
|
288
288
|
@sic.set_cache_data @gem_repo => sice
|
289
289
|
@sic.update
|
290
|
+
@sic.instance_variable_set :@only_latest, false
|
290
291
|
@sic.write_cache
|
291
292
|
@sic.reset_cache_data
|
292
293
|
|
@@ -358,6 +359,7 @@ class TestGemSourceInfoCache < RubyGemTestCase
|
|
358
359
|
@sic.set_cache_data({@gem_repo => @sice_new})
|
359
360
|
@sic.update
|
360
361
|
@sic.write_cache
|
362
|
+
@sic.instance_variable_set :@only_latest, false
|
361
363
|
|
362
364
|
assert File.exist?(@sic.user_cache_file), 'user_cache_file'
|
363
365
|
assert File.exist?(@sic.latest_user_cache_file),
|
@@ -383,6 +385,7 @@ class TestGemSourceInfoCache < RubyGemTestCase
|
|
383
385
|
|
384
386
|
@sic.set_cache_data({ @gem_repo => @sice })
|
385
387
|
@sic.update
|
388
|
+
|
386
389
|
@sic.write_cache
|
387
390
|
|
388
391
|
assert File.exist?(@sic.user_cache_file), 'system_cache_file'
|
@@ -390,7 +393,7 @@ class TestGemSourceInfoCache < RubyGemTestCase
|
|
390
393
|
'latest_system_cache_file'
|
391
394
|
|
392
395
|
user_cache_data = read_cache(@sic.user_cache_file).to_a.sort
|
393
|
-
assert_equal 1, user_cache_data.length
|
396
|
+
assert_equal 1, user_cache_data.length, 'user_cache_data length'
|
394
397
|
user_cache_data = user_cache_data.first
|
395
398
|
|
396
399
|
assert_equal @gem_repo, user_cache_data.first
|
@@ -415,6 +418,24 @@ class TestGemSourceInfoCache < RubyGemTestCase
|
|
415
418
|
@sic.update
|
416
419
|
@sic.write_cache
|
417
420
|
|
421
|
+
assert_equal [[@gem_repo, @sys_sice]],
|
422
|
+
read_cache(@sic.system_cache_file).to_a.sort
|
423
|
+
assert_equal [[@gem_repo, @sys_sice]],
|
424
|
+
read_cache(@sic.user_cache_file).to_a.sort
|
425
|
+
assert_equal [[@gem_repo, @sice_new]],
|
426
|
+
read_cache(@sic.latest_user_cache_file).to_a.sort
|
427
|
+
end
|
428
|
+
|
429
|
+
def test_write_cache_user_only_latest
|
430
|
+
FileUtils.chmod 0444, @sic.system_cache_file
|
431
|
+
@sic.set_cache_data({@gem_repo => @sice_new})
|
432
|
+
@sic.update
|
433
|
+
@sic.write_cache
|
434
|
+
|
435
|
+
assert File.exist?(@sic.user_cache_file), 'user_cache_file'
|
436
|
+
assert File.exist?(@sic.latest_user_cache_file),
|
437
|
+
'latest_user_cache_file exists'
|
438
|
+
|
418
439
|
assert_equal [[@gem_repo, @sys_sice]],
|
419
440
|
read_cache(@sic.system_cache_file).to_a.sort
|
420
441
|
assert_equal [[@gem_repo, @sice_new]],
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubygems-update
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jim Weirich
|
@@ -32,7 +32,7 @@ cert_chain:
|
|
32
32
|
x52qPcexcYZR7w==
|
33
33
|
-----END CERTIFICATE-----
|
34
34
|
|
35
|
-
date: 2008-
|
35
|
+
date: 2008-04-10 00:00:00 -07:00
|
36
36
|
default_executable:
|
37
37
|
dependencies: []
|
38
38
|
|
@@ -45,38 +45,39 @@ extensions: []
|
|
45
45
|
extra_rdoc_files: []
|
46
46
|
|
47
47
|
files:
|
48
|
-
-
|
48
|
+
- .document
|
49
49
|
- ChangeLog
|
50
|
-
- TODO
|
51
|
-
- README
|
52
|
-
- LICENSE.txt
|
53
50
|
- GPL.txt
|
54
|
-
-
|
51
|
+
- LICENSE.txt
|
52
|
+
- README
|
53
|
+
- Rakefile
|
54
|
+
- TODO
|
55
55
|
- bin/gem
|
56
56
|
- bin/update_rubygems
|
57
|
-
- doc/
|
58
|
-
- doc/
|
59
|
-
-
|
60
|
-
-
|
61
|
-
-
|
62
|
-
-
|
63
|
-
-
|
64
|
-
-
|
65
|
-
-
|
66
|
-
-
|
67
|
-
-
|
68
|
-
-
|
69
|
-
-
|
70
|
-
-
|
71
|
-
-
|
72
|
-
-
|
73
|
-
-
|
74
|
-
-
|
75
|
-
-
|
76
|
-
-
|
77
|
-
-
|
78
|
-
-
|
79
|
-
-
|
57
|
+
- doc/release_notes/docs-rubygems-announce.rdoc
|
58
|
+
- doc/release_notes/rel_0_2_0.rdoc
|
59
|
+
- doc/release_notes/rel_0_3_0.rdoc
|
60
|
+
- doc/release_notes/rel_0_4_0.rdoc
|
61
|
+
- doc/release_notes/rel_0_5_0.rdoc
|
62
|
+
- doc/release_notes/rel_0_6_0.rdoc
|
63
|
+
- doc/release_notes/rel_0_7_0.rdoc
|
64
|
+
- doc/release_notes/rel_0_8_0.rdoc
|
65
|
+
- doc/release_notes/rel_0_8_1.rdoc
|
66
|
+
- doc/release_notes/rel_0_8_10.rdoc
|
67
|
+
- doc/release_notes/rel_0_8_11.rdoc
|
68
|
+
- doc/release_notes/rel_0_8_3.rdoc
|
69
|
+
- doc/release_notes/rel_0_8_4.rdoc
|
70
|
+
- doc/release_notes/rel_0_8_5.rdoc
|
71
|
+
- doc/release_notes/rel_0_8_7.rdoc
|
72
|
+
- doc/release_notes/rel_0_9_0.rdoc
|
73
|
+
- doc/release_notes/rel_0_9_2.rdoc
|
74
|
+
- doc/release_notes/rel_0_9_3.rdoc
|
75
|
+
- doc/release_notes/rel_0_9_4.rdoc
|
76
|
+
- doc/release_notes/rel_0_9_5.rdoc
|
77
|
+
- doc/release_notes/rel_1_0_0.rdoc
|
78
|
+
- doc/release_notes/rel_1_0_1.rdoc
|
79
|
+
- doc/release_notes/rel_1_1_0.rdoc
|
80
|
+
- doc/release_notes/rel_1_1_1.rdoc
|
80
81
|
- lib/rbconfig/datadir.rb
|
81
82
|
- lib/rubygems/builder.rb
|
82
83
|
- lib/rubygems/command.rb
|
@@ -169,12 +170,12 @@ files:
|
|
169
170
|
- pkgs/sources/lib
|
170
171
|
- pkgs/sources/lib/sources.rb
|
171
172
|
- pkgs/sources/sources.gemspec
|
172
|
-
- redist/session.gem
|
173
173
|
- scripts/buildtests.rb
|
174
174
|
- scripts/gemdoc.rb
|
175
175
|
- scripts/runtest.rb
|
176
176
|
- scripts/specdoc.rb
|
177
177
|
- scripts/upload_gemdoc.rb
|
178
|
+
- setup.rb
|
178
179
|
- test/bogussources.rb
|
179
180
|
- test/data
|
180
181
|
- test/data/gem-private_key.pem
|
@@ -313,7 +314,6 @@ files:
|
|
313
314
|
- test/test_gem_version_option.rbc
|
314
315
|
- test/test_kernel.rb
|
315
316
|
- test/test_kernel.rbc
|
316
|
-
- .document
|
317
317
|
has_rdoc: false
|
318
318
|
homepage: http://rubygems.rubyforge.org
|
319
319
|
post_install_message:
|
metadata.gz.sig
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
P�f�L9:�����L�%���A[R�t�������eڏ�����)���aℋ�K���#�y��� k�څ$��m���3F���y���}qv~� ��vD�^L;�E_(�W:l
|
2
|
+
�c�L� �
|
data/doc/doc.css
DELETED
@@ -1,73 +0,0 @@
|
|
1
|
-
BODY
|
2
|
-
{
|
3
|
-
font-size:10.5pt;
|
4
|
-
font-family:verdana,sans-serif;
|
5
|
-
}
|
6
|
-
|
7
|
-
th
|
8
|
-
{
|
9
|
-
font-size:10.5pt;
|
10
|
-
font-family:verdana,sans-serif;
|
11
|
-
}
|
12
|
-
|
13
|
-
td
|
14
|
-
{
|
15
|
-
font-size:10.5pt;
|
16
|
-
font-family:verdana,sans-serif;
|
17
|
-
}
|
18
|
-
|
19
|
-
|
20
|
-
code
|
21
|
-
{
|
22
|
-
background-color:yellow;
|
23
|
-
}
|
24
|
-
|
25
|
-
#HEADLINE
|
26
|
-
{
|
27
|
-
font-size:12pt;
|
28
|
-
font-family:verdana,sans-serif;
|
29
|
-
}
|
30
|
-
|
31
|
-
A
|
32
|
-
{
|
33
|
-
color:#993300;
|
34
|
-
|
35
|
-
font-family:verdana,sans-serif;
|
36
|
-
text-decoration:none;
|
37
|
-
|
38
|
-
}
|
39
|
-
|
40
|
-
A:hover
|
41
|
-
{
|
42
|
-
color:#404040;
|
43
|
-
font-family:verdana,sans-serif;
|
44
|
-
text-decoration:none;
|
45
|
-
}
|
46
|
-
|
47
|
-
h2 {
|
48
|
-
color:#993300;
|
49
|
-
background: #cccccc;
|
50
|
-
border-bottom: #646464 1px solid;
|
51
|
-
padding-top: 0.1em;
|
52
|
-
padding-left: 0.5em;
|
53
|
-
padding-bottom: 0.0em;
|
54
|
-
font-size:12pt;
|
55
|
-
|
56
|
-
}
|
57
|
-
|
58
|
-
pre {
|
59
|
-
border-right: #646464 1px solid;
|
60
|
-
padding-right: 0.5em;
|
61
|
-
border-top: #646464 1px solid;
|
62
|
-
padding-top: 0.5em;
|
63
|
-
border-left: #646464 1px solid;
|
64
|
-
padding-left: 0.5em;
|
65
|
-
border-bottom: #646464 1px solid;
|
66
|
-
padding-bottom: 0.5em;
|
67
|
-
margin-left: 1em;
|
68
|
-
margin-right: 2em;
|
69
|
-
white-space: pre;
|
70
|
-
background-color: #e6e6e6;
|
71
|
-
color: black;
|
72
|
-
}
|
73
|
-
|