ruby-prof 0.18.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES +44 -1
  3. data/LICENSE +2 -2
  4. data/README.rdoc +1 -483
  5. data/Rakefile +3 -6
  6. data/bin/ruby-prof +111 -128
  7. data/ext/ruby_prof/extconf.rb +6 -38
  8. data/ext/ruby_prof/rp_aggregate_call_tree.c +41 -0
  9. data/ext/ruby_prof/rp_aggregate_call_tree.h +13 -0
  10. data/ext/ruby_prof/rp_allocation.c +259 -0
  11. data/ext/ruby_prof/rp_allocation.h +31 -0
  12. data/ext/ruby_prof/rp_call_tree.c +353 -0
  13. data/ext/ruby_prof/rp_call_tree.h +43 -0
  14. data/ext/ruby_prof/rp_call_trees.c +266 -0
  15. data/ext/ruby_prof/rp_call_trees.h +29 -0
  16. data/ext/ruby_prof/rp_measure_allocations.c +25 -51
  17. data/ext/ruby_prof/rp_measure_memory.c +21 -56
  18. data/ext/ruby_prof/rp_measure_process_time.c +37 -43
  19. data/ext/ruby_prof/rp_measure_wall_time.c +40 -21
  20. data/ext/ruby_prof/rp_measurement.c +221 -0
  21. data/ext/ruby_prof/rp_measurement.h +50 -0
  22. data/ext/ruby_prof/rp_method.c +279 -439
  23. data/ext/ruby_prof/rp_method.h +33 -45
  24. data/ext/ruby_prof/rp_profile.c +902 -0
  25. data/ext/ruby_prof/rp_profile.h +36 -0
  26. data/ext/ruby_prof/rp_stack.c +163 -132
  27. data/ext/ruby_prof/rp_stack.h +18 -28
  28. data/ext/ruby_prof/rp_thread.c +192 -124
  29. data/ext/ruby_prof/rp_thread.h +18 -8
  30. data/ext/ruby_prof/ruby_prof.c +36 -778
  31. data/ext/ruby_prof/ruby_prof.h +11 -45
  32. data/ext/ruby_prof/vc/ruby_prof.vcxproj +18 -12
  33. data/lib/ruby-prof.rb +4 -21
  34. data/lib/ruby-prof/assets/call_stack_printer.html.erb +710 -0
  35. data/lib/ruby-prof/assets/call_stack_printer.png +0 -0
  36. data/lib/ruby-prof/assets/graph_printer.html.erb +355 -0
  37. data/lib/ruby-prof/call_tree.rb +57 -0
  38. data/lib/ruby-prof/call_tree_visitor.rb +36 -0
  39. data/lib/ruby-prof/compatibility.rb +37 -107
  40. data/lib/ruby-prof/exclude_common_methods.rb +198 -0
  41. data/lib/ruby-prof/measurement.rb +17 -0
  42. data/lib/ruby-prof/method_info.rb +47 -90
  43. data/lib/ruby-prof/printers/abstract_printer.rb +73 -50
  44. data/lib/ruby-prof/printers/call_info_printer.rb +24 -12
  45. data/lib/ruby-prof/printers/call_stack_printer.rb +66 -152
  46. data/lib/ruby-prof/printers/call_tree_printer.rb +20 -12
  47. data/lib/ruby-prof/printers/dot_printer.rb +5 -5
  48. data/lib/ruby-prof/printers/flat_printer.rb +6 -24
  49. data/lib/ruby-prof/printers/graph_html_printer.rb +6 -192
  50. data/lib/ruby-prof/printers/graph_printer.rb +11 -14
  51. data/lib/ruby-prof/printers/multi_printer.rb +66 -23
  52. data/lib/ruby-prof/profile.rb +10 -3
  53. data/lib/ruby-prof/thread.rb +5 -20
  54. data/lib/ruby-prof/version.rb +1 -1
  55. data/ruby-prof.gemspec +9 -2
  56. data/test/abstract_printer_test.rb +0 -27
  57. data/test/alias_test.rb +126 -0
  58. data/test/basic_test.rb +1 -86
  59. data/test/call_tree_visitor_test.rb +32 -0
  60. data/test/call_trees_test.rb +66 -0
  61. data/test/dynamic_method_test.rb +0 -2
  62. data/test/exclude_methods_test.rb +17 -12
  63. data/test/fiber_test.rb +214 -23
  64. data/test/gc_test.rb +105 -0
  65. data/test/inverse_call_tree_test.rb +175 -0
  66. data/test/line_number_test.rb +118 -40
  67. data/test/marshal_test.rb +115 -0
  68. data/test/measure_allocations.rb +30 -0
  69. data/test/measure_allocations_test.rb +361 -12
  70. data/test/measure_allocations_trace_test.rb +375 -0
  71. data/test/measure_memory_trace_test.rb +1101 -0
  72. data/test/measure_process_time_test.rb +757 -33
  73. data/test/measure_times.rb +56 -0
  74. data/test/measure_wall_time_test.rb +329 -149
  75. data/test/multi_printer_test.rb +1 -34
  76. data/test/pause_resume_test.rb +24 -15
  77. data/test/prime.rb +1 -1
  78. data/test/prime_script.rb +6 -0
  79. data/test/printer_call_stack_test.rb +28 -0
  80. data/test/printer_call_tree_test.rb +31 -0
  81. data/test/printer_flat_test.rb +68 -0
  82. data/test/printer_graph_html_test.rb +60 -0
  83. data/test/printer_graph_test.rb +41 -0
  84. data/test/printers_test.rb +32 -166
  85. data/test/printing_recursive_graph_test.rb +26 -72
  86. data/test/recursive_test.rb +68 -77
  87. data/test/stack_printer_test.rb +2 -15
  88. data/test/start_stop_test.rb +22 -25
  89. data/test/test_helper.rb +6 -261
  90. data/test/thread_test.rb +11 -54
  91. data/test/unique_call_path_test.rb +25 -107
  92. data/test/yarv_test.rb +1 -0
  93. metadata +43 -41
  94. data/examples/flat.txt +0 -50
  95. data/examples/graph.dot +0 -84
  96. data/examples/graph.html +0 -823
  97. data/examples/graph.txt +0 -139
  98. data/examples/multi.flat.txt +0 -23
  99. data/examples/multi.graph.html +0 -760
  100. data/examples/multi.grind.dat +0 -114
  101. data/examples/multi.stack.html +0 -547
  102. data/examples/stack.html +0 -547
  103. data/ext/ruby_prof/rp_call_info.c +0 -425
  104. data/ext/ruby_prof/rp_call_info.h +0 -53
  105. data/ext/ruby_prof/rp_measure.c +0 -40
  106. data/ext/ruby_prof/rp_measure.h +0 -45
  107. data/ext/ruby_prof/rp_measure_cpu_time.c +0 -136
  108. data/ext/ruby_prof/rp_measure_gc_runs.c +0 -73
  109. data/ext/ruby_prof/rp_measure_gc_time.c +0 -60
  110. data/lib/ruby-prof/aggregate_call_info.rb +0 -76
  111. data/lib/ruby-prof/assets/call_stack_printer.css.html +0 -117
  112. data/lib/ruby-prof/assets/call_stack_printer.js.html +0 -385
  113. data/lib/ruby-prof/call_info.rb +0 -115
  114. data/lib/ruby-prof/call_info_visitor.rb +0 -40
  115. data/lib/ruby-prof/printers/flat_printer_with_line_numbers.rb +0 -83
  116. data/lib/ruby-prof/profile/exclude_common_methods.rb +0 -207
  117. data/lib/ruby-prof/profile/legacy_method_elimination.rb +0 -50
  118. data/test/aggregate_test.rb +0 -136
  119. data/test/block_test.rb +0 -74
  120. data/test/call_info_test.rb +0 -78
  121. data/test/call_info_visitor_test.rb +0 -31
  122. data/test/issue137_test.rb +0 -63
  123. data/test/measure_cpu_time_test.rb +0 -212
  124. data/test/measure_gc_runs_test.rb +0 -32
  125. data/test/measure_gc_time_test.rb +0 -36
  126. data/test/measure_memory_test.rb +0 -33
  127. data/test/method_elimination_test.rb +0 -84
  128. data/test/module_test.rb +0 -45
  129. data/test/stack_test.rb +0 -138
@@ -1,40 +0,0 @@
1
- /* Copyright (C) 2005-2019 Shugo Maeda <shugo@ruby-lang.org> and Charlie Savage <cfis@savagexi.com>
2
- Please see the LICENSE file for copyright and distribution information */
3
-
4
- #include "ruby_prof.h"
5
-
6
- VALUE mMeasure;
7
-
8
- prof_measurer_t* prof_get_measurer(prof_measure_mode_t measure)
9
- {
10
- switch (measure) {
11
- case MEASURE_WALL_TIME:
12
- return prof_measurer_wall_time();
13
- case MEASURE_PROCESS_TIME:
14
- return prof_measurer_process_time();
15
- case MEASURE_CPU_TIME:
16
- return prof_measurer_cpu_time();
17
- case MEASURE_ALLOCATIONS:
18
- return prof_measurer_allocations();
19
- case MEASURE_MEMORY:
20
- return prof_measurer_memory();
21
- case MEASURE_GC_TIME:
22
- return prof_measurer_gc_time();
23
- case MEASURE_GC_RUNS:
24
- return prof_measurer_gc_runs();
25
- default:
26
- rb_raise(rb_eArgError, "Unknown measure mode: %d", measure);
27
- }
28
- };
29
-
30
- void rp_init_measure()
31
- {
32
- mMeasure = rb_define_module_under(mProf, "Measure");
33
- rp_init_measure_wall_time();
34
- rp_init_measure_cpu_time();
35
- rp_init_measure_process_time();
36
- rp_init_measure_allocations();
37
- rp_init_measure_memory();
38
- rp_init_measure_gc_time();
39
- rp_init_measure_gc_runs();
40
- }
@@ -1,45 +0,0 @@
1
- /* Copyright (C) 2005-2019 Shugo Maeda <shugo@ruby-lang.org> and Charlie Savage <cfis@savagexi.com>
2
- Please see the LICENSE file for copyright and distribution information */
3
-
4
- #ifndef __RP_MEASUREMENT_H__
5
- #define __RP_MEASUREMENT_H__
6
-
7
- extern VALUE mMeasure;
8
-
9
- typedef double (*get_measurement)();
10
-
11
- typedef struct
12
- {
13
- get_measurement measure;
14
- } prof_measurer_t;
15
-
16
- typedef enum
17
- {
18
- MEASURE_WALL_TIME,
19
- MEASURE_PROCESS_TIME,
20
- MEASURE_CPU_TIME,
21
- MEASURE_ALLOCATIONS,
22
- MEASURE_MEMORY,
23
- MEASURE_GC_TIME,
24
- MEASURE_GC_RUNS,
25
- } prof_measure_mode_t;
26
-
27
- prof_measurer_t* prof_get_measurer(prof_measure_mode_t measure);
28
- prof_measurer_t* prof_measurer_allocations();
29
- prof_measurer_t* prof_measurer_cpu_time();
30
- prof_measurer_t* prof_measurer_gc_runs();
31
- prof_measurer_t* prof_measurer_gc_time();
32
- prof_measurer_t* prof_measurer_memory();
33
- prof_measurer_t* prof_measurer_process_time();
34
- prof_measurer_t* prof_measurer_wall_time();
35
-
36
- void rp_init_measure();
37
- void rp_init_measure_allocations();
38
- void rp_init_measure_cpu_time();
39
- void rp_init_measure_gc_runs();
40
- void rp_init_measure_gc_time();
41
- void rp_init_measure_memory();
42
- void rp_init_measure_process_time();
43
- void rp_init_measure_wall_time();
44
-
45
- #endif //__RP_MEASUREMENT_H__
@@ -1,136 +0,0 @@
1
- /* Copyright (C) 2005-2013 Shugo Maeda <shugo@ruby-lang.org> and Charlie Savage <cfis@savagexi.com>
2
- Please see the LICENSE file for copyright and distribution information */
3
-
4
- #include "ruby_prof.h"
5
-
6
- static VALUE cMeasureCpuTime;
7
-
8
- /* The _WIN32 check is needed for msys (and maybe cygwin?) */
9
- #if defined(_WIN32)
10
-
11
- static unsigned long long get_cpu_time()
12
- {
13
- LARGE_INTEGER time;
14
- QueryPerformanceCounter(&time);
15
- return time.QuadPart;
16
- }
17
-
18
- static unsigned long long get_cpu_frequency()
19
- {
20
- static unsigned long long cpu_frequency;
21
-
22
- if(!cpu_frequency) {
23
- LARGE_INTEGER cpu_frequency_struct;
24
- QueryPerformanceFrequency(&cpu_frequency_struct);
25
- cpu_frequency = cpu_frequency_struct.QuadPart;
26
- }
27
-
28
- return cpu_frequency;
29
- }
30
-
31
- static double measure_cpu_time()
32
- {
33
- return ((double)get_cpu_time()) / get_cpu_frequency();
34
- }
35
-
36
- #else
37
-
38
- #include <sys/resource.h>
39
- #include <stdint.h>
40
- #include <time.h>
41
-
42
- static unsigned long long get_cpu_time()
43
- {
44
- #if defined(__i386__) || defined(__x86_64__)
45
- uint32_t a, d;
46
- __asm__ volatile("rdtsc" : "=a" (a), "=d" (d));
47
- return ((uint64_t)d << 32) + a;
48
- #elif defined(__powerpc__) || defined(__ppc__)
49
- unsigned long long x, y;
50
-
51
- __asm__ __volatile__ ("\n\
52
- 1: mftbu %1\n\
53
- mftb %L0\n\
54
- mftbu %0\n\
55
- cmpw %0,%1\n\
56
- bne- 1b"
57
- : "=r" (x), "=r" (y));
58
-
59
- return x;
60
- #endif
61
- }
62
-
63
- static unsigned long long get_cpu_frequency()
64
- {
65
- static unsigned long long cpu_frequency;
66
-
67
- if(!cpu_frequency) {
68
- unsigned long long x, y;
69
-
70
- struct timespec ts;
71
- ts.tv_sec = 0;
72
- ts.tv_nsec = 500000000;
73
- x = get_cpu_time();
74
- nanosleep(&ts, NULL);
75
- y = get_cpu_time();
76
- cpu_frequency = (y - x) * 2;
77
- }
78
-
79
- return cpu_frequency;
80
- }
81
-
82
- static double measure_cpu_time()
83
- {
84
- struct rusage rusage;
85
- getrusage(RUSAGE_SELF, &rusage);
86
-
87
- double seconds = 0;
88
-
89
- seconds += rusage.ru_utime.tv_sec;
90
- seconds += rusage.ru_stime.tv_sec;
91
-
92
- seconds += rusage.ru_utime.tv_usec / 1000000.0;
93
- seconds += rusage.ru_stime.tv_usec / 1000000.0;
94
-
95
- return seconds;
96
- }
97
- #endif
98
-
99
-
100
- prof_measurer_t* prof_measurer_cpu_time()
101
- {
102
- prof_measurer_t* measure = ALLOC(prof_measurer_t);
103
- measure->measure = measure_cpu_time;
104
- return measure;
105
- }
106
-
107
- /* call-seq:
108
- measure -> float
109
-
110
- Returns the cpu time.*/
111
- static VALUE
112
- prof_measure_cpu_time(VALUE self)
113
- {
114
- return rb_float_new(measure_cpu_time());
115
- }
116
-
117
- /* call-seq:
118
- cpu_frequency -> int
119
-
120
- Returns the cpu's frequency. This value is needed when
121
- RubyProf::measure_mode is set to CPU_TIME. */
122
- static VALUE
123
- prof_get_cpu_frequency(VALUE self)
124
- {
125
- return ULL2NUM(get_cpu_frequency());
126
- }
127
-
128
- void rp_init_measure_cpu_time()
129
- {
130
- rb_define_const(mProf, "CPU_TIME", INT2NUM(MEASURE_CPU_TIME));
131
- rb_define_const(mProf, "CPU_TIME_ENABLED", Qtrue);
132
-
133
- cMeasureCpuTime = rb_define_class_under(mMeasure, "CpuTime", rb_cObject);
134
- rb_define_singleton_method(cMeasureCpuTime, "measure", prof_measure_cpu_time, 0);
135
- rb_define_singleton_method(cMeasureCpuTime, "frequency", prof_get_cpu_frequency, 0);
136
- }
@@ -1,73 +0,0 @@
1
- /* Copyright (C) 2005-2013 Shugo Maeda <shugo@ruby-lang.org> and Charlie Savage <cfis@savagexi.com>
2
- Please see the LICENSE file for copyright and distribution information */
3
-
4
- /* :nodoc: */
5
-
6
- #include "ruby_prof.h"
7
-
8
- static VALUE cMeasureGcRuns;
9
-
10
- #if defined(HAVE_RB_GC_COLLECTIONS)
11
- VALUE rb_gc_collections(void);
12
- #endif
13
-
14
- #if defined(HAVE_RB_GC_COUNT)
15
- size_t rb_gc_count(void);
16
- #endif
17
-
18
- #if defined(HAVE_RB_GC_HEAP_INFO)
19
- VALUE rb_gc_heap_info(void);
20
- #endif
21
-
22
-
23
- static double
24
- measure_gc_runs()
25
- {
26
- #if defined(HAVE_RB_GC_COLLECTIONS)
27
- #define MEASURE_GC_RUNS_ENABLED Qtrue
28
- return NUM2INT(rb_gc_collections());
29
-
30
- #elif defined(HAVE_RB_GC_COUNT)
31
- #define MEASURE_GC_RUNS_ENABLED Qtrue
32
- return rb_gc_count();
33
-
34
- #elif defined(HAVE_RB_GC_HEAP_INFO)
35
- #define MEASURE_GC_RUNS_ENABLED Qtrue
36
- VALUE h = rb_gc_heap_info();
37
- return NUM2UINT(rb_hash_aref(h, rb_str_new2("num_gc_passes")));
38
-
39
- #else
40
- #define MEASURE_GC_RUNS_ENABLED Qfalse
41
- return 0;
42
- #endif
43
- }
44
-
45
- prof_measurer_t* prof_measurer_gc_runs()
46
- {
47
- prof_measurer_t* measure = ALLOC(prof_measurer_t);
48
- measure->measure = measure_gc_runs;
49
- return measure;
50
- }
51
-
52
- /* call-seq:
53
- measure -> int
54
-
55
- Returns the number of GC runs.*/
56
- static VALUE
57
- prof_measure_gc_runs(VALUE self)
58
- {
59
- #if defined(HAVE_LONG_LONG)
60
- return ULL2NUM(measure_gc_runs());
61
- #else
62
- return ULONG2NUM(measure_gc_runs());
63
- #endif
64
- }
65
-
66
- void rp_init_measure_gc_runs()
67
- {
68
- rb_define_const(mProf, "GC_RUNS", INT2NUM(MEASURE_GC_RUNS));
69
- rb_define_const(mProf, "GC_RUNS_ENABLED", MEASURE_GC_RUNS_ENABLED);
70
-
71
- cMeasureGcRuns = rb_define_class_under(mMeasure, "GcRuns", rb_cObject);
72
- rb_define_singleton_method(cMeasureGcRuns, "measure", prof_measure_gc_runs, 0);
73
- }
@@ -1,60 +0,0 @@
1
- /* Copyright (C) 2005-2019 Shugo Maeda <shugo@ruby-lang.org> and Charlie Savage <cfis@savagexi.com>
2
- Please see the LICENSE file for copyright and distribution information */
3
-
4
- /* :nodoc: */
5
-
6
- #include "ruby_prof.h"
7
-
8
- static VALUE cMeasureGcTimes;
9
-
10
- #if defined(HAVE_RB_GC_TIME)
11
- VALUE rb_gc_time();
12
- #endif
13
-
14
- static double
15
- measure_gc_time()
16
- {
17
- #if defined(HAVE_RB_GC_TOTAL_TIME)
18
- #define MEASURE_GC_TIME_ENABLED Qtrue
19
- return rb_gc_total_time();
20
-
21
- #elif defined(HAVE_RB_GC_TIME)
22
- #define MEASURE_GC_TIME_ENABLED Qtrue
23
- const double conversion = 1000000.0;
24
- #if HAVE_LONG_LONG
25
- return NUM2LL(rb_gc_time()) / conversion;
26
- #else
27
- return NUM2LONG(rb_gc_time()) / conversion;
28
- #endif
29
-
30
- #else
31
- #define MEASURE_GC_TIME_ENABLED Qfalse
32
- return 0.0;
33
- #endif
34
- }
35
-
36
- prof_measurer_t* prof_measurer_gc_time()
37
- {
38
- prof_measurer_t* measure = ALLOC(prof_measurer_t);
39
- measure->measure = measure_gc_time;
40
- return measure;
41
- }
42
-
43
- /* call-seq:
44
- measure -> float
45
-
46
- Returns the time spent performing GC.*/
47
- static VALUE
48
- prof_measure_gc_time(VALUE self)
49
- {
50
- return rb_float_new(measure_gc_time());
51
- }
52
-
53
- void rp_init_measure_gc_time()
54
- {
55
- rb_define_const(mProf, "GC_TIME", INT2NUM(MEASURE_GC_TIME));
56
- rb_define_const(mProf, "GC_TIME_ENABLED", MEASURE_GC_TIME_ENABLED);
57
-
58
- cMeasureGcTimes = rb_define_class_under(mMeasure, "GcTime", rb_cObject);
59
- rb_define_singleton_method(cMeasureGcTimes, "measure", prof_measure_gc_time, 0);
60
- }
@@ -1,76 +0,0 @@
1
- # encoding: utf-8
2
-
3
- module RubyProf
4
- class AggregateCallInfo
5
- attr_reader :call_infos, :method_info
6
-
7
- def initialize(call_infos, method_info)
8
- if call_infos.length == 0
9
- raise(ArgumentError, "Must specify at least one call info.")
10
- end
11
- @call_infos = call_infos
12
- @method_info = method_info
13
- end
14
-
15
- def target
16
- call_infos.first.target
17
- end
18
-
19
- def parent
20
- call_infos.first.parent
21
- end
22
-
23
- def line
24
- call_infos.first.line
25
- end
26
-
27
- def children
28
- call_infos.inject(Array.new) do |result, call_info|
29
- result.concat(call_info.children)
30
- end
31
- end
32
-
33
- def total_time
34
- aggregate_roots(:total_time)
35
- end
36
-
37
- def self_time
38
- aggregate_roots(:self_time)
39
- end
40
-
41
- def wait_time
42
- aggregate_roots(:wait_time)
43
- end
44
-
45
- def children_time
46
- aggregate_roots(:children_time)
47
- end
48
-
49
- def called
50
- aggregate_all(:called)
51
- end
52
-
53
- def to_s
54
- "#{call_infos.first.target.full_name}"
55
- end
56
-
57
- private
58
-
59
- # return all call_infos which are not (grand) children of any other node in the list of given call_infos
60
- def roots
61
- @roots ||= method_info.recursive? ? CallInfo.roots_of(call_infos) : call_infos
62
- end
63
-
64
- def aggregate_all(method_name)
65
- call_infos.inject(0) do |sum, call_info|
66
- sum + call_info.send(method_name)
67
- end
68
- end
69
-
70
- def aggregate_roots(method_name)
71
- roots.inject(0) do |sum, call_info|
72
- sum + call_info.send(method_name)
73
- end
74
- end
75
- end
76
- end
@@ -1,117 +0,0 @@
1
- <style type="text/css">
2
- <!--
3
- body {
4
- font-size:70%;
5
- padding:0;
6
- margin:5px;
7
- margin-right:0px;
8
- margin-left:0px;
9
- background: #ffffff;
10
- }
11
- ul {
12
- margin-left:0px;
13
- margin-top:0px;
14
- margin-bottom:0px;
15
- padding-left:0px;
16
- list-style-type:none;
17
- }
18
- li {
19
- margin-left:11px;
20
- padding:0px;
21
- white-space:nowrap;
22
- border-top:1px solid #cccccc;
23
- border-left:1px solid #cccccc;
24
- border-bottom:none;
25
- }
26
- .thread {
27
- margin-left:11px;
28
- background:#708090;
29
- padding-top:3px;
30
- padding-left:12px;
31
- padding-bottom:2px;
32
- border-left:1px solid #CCCCCC;
33
- border-top:1px solid #CCCCCC;
34
- font-weight:bold;
35
- }
36
- .hidden {
37
- display:none;
38
- width:0px;
39
- height:0px;
40
- margin:0px;
41
- padding:0px;
42
- border-style:none;
43
- }
44
- .color01 { background:#adbdeb }
45
- .color05 { background:#9daddb }
46
- .color0 { background:#8d9dcb }
47
- .color1 { background:#89bccb }
48
- .color2 { background:#56e3e7 }
49
- .color3 { background:#32cd70 }
50
- .color4 { background:#a3d53c }
51
- .color5 { background:#c4cb34 }
52
- .color6 { background:#dcb66d }
53
- .color7 { background:#cda59e }
54
- .color8 { background:#be9d9c }
55
- .color9 { background:#cf947a }
56
- #commands {
57
- font-size:10pt;
58
- padding:10px;
59
- margin-left:11px;
60
- margin-bottom:0px;
61
- margin-top:0px;
62
- background:#708090;
63
- border-top:1px solid #cccccc;
64
- border-left:1px solid #cccccc;
65
- border-bottom:none;
66
- }
67
- #titlebar {
68
- font-size:10pt;
69
- padding:10px;
70
- margin-left:11px;
71
- margin-bottom:0px;
72
- margin-top:10px;
73
- background:#8090a0;
74
- border-top:1px solid #cccccc;
75
- border-left:1px solid #cccccc;
76
- border-bottom:none;
77
- }
78
- #help {
79
- font-size:10pt;
80
- padding:10px;
81
- margin-left:11px;
82
- margin-bottom:0px;
83
- margin-top:0px;
84
- background:#8090a0;
85
- display:none;
86
- border-top:1px solid #cccccc;
87
- border-left:1px solid #cccccc;
88
- border-bottom:none;
89
- }
90
- #sentinel {
91
- height: 400px;
92
- margin-left:11px;
93
- background:#8090a0;
94
- border-top:1px solid #cccccc;
95
- border-left:1px solid #cccccc;
96
- border-bottom:none;
97
- }
98
- input { margin-left:10px; }
99
-
100
- .toggle {
101
- background: url(data:image/png;base64,%s) no-repeat left center;
102
- float:left;
103
- width:9px;
104
- height:9px;
105
- margin:2px 1px 1px 1px;
106
- }
107
-
108
- .toggle.minus {
109
- background-position: -9px 0;
110
- }
111
-
112
- .toggle.plus {
113
- background-position: -18px 0;
114
- }
115
-
116
- -->
117
- </style>