newrelic_rpm 3.7.3.204 → 3.8.0.218

Sign up to get free protection for your applications and to get access to all the features.
Files changed (154) hide show
  1. data.tar.gz.sig +0 -0
  2. data/CHANGELOG +73 -0
  3. data/README.md +1 -1
  4. data/Rakefile +1 -5
  5. data/lib/new_relic/agent.rb +1 -0
  6. data/lib/new_relic/agent/agent.rb +47 -18
  7. data/lib/new_relic/agent/agent_logger.rb +11 -1
  8. data/lib/new_relic/agent/configuration/default_source.rb +85 -1
  9. data/lib/new_relic/agent/configuration/manager.rb +5 -1
  10. data/lib/new_relic/agent/datastores/mongo.rb +8 -3
  11. data/lib/new_relic/agent/harvester.rb +5 -1
  12. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +1 -0
  13. data/lib/new_relic/agent/instrumentation/active_merchant.rb +7 -3
  14. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +13 -3
  15. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +7 -1
  16. data/lib/new_relic/agent/instrumentation/sidekiq.rb +3 -1
  17. data/lib/new_relic/agent/instrumentation/sinatra.rb +3 -1
  18. data/lib/new_relic/agent/new_relic_service.rb +8 -0
  19. data/lib/new_relic/agent/request_sampler.rb +1 -1
  20. data/lib/new_relic/agent/sampler.rb +22 -2
  21. data/lib/new_relic/agent/sampler_collection.rb +13 -1
  22. data/lib/new_relic/agent/samplers/cpu_sampler.rb +3 -1
  23. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +2 -1
  24. data/lib/new_relic/agent/samplers/memory_sampler.rb +2 -1
  25. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -3
  26. data/lib/new_relic/agent/samplers/vm_sampler.rb +126 -0
  27. data/lib/new_relic/agent/stats.rb +0 -15
  28. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +66 -75
  29. data/lib/new_relic/agent/stats_engine/stats_hash.rb +1 -1
  30. data/lib/new_relic/agent/supported_versions.rb +2 -2
  31. data/lib/new_relic/agent/transaction.rb +6 -3
  32. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +17 -5
  33. data/lib/new_relic/agent/vm/mri_vm.rb +2 -1
  34. data/lib/new_relic/agent/vm/snapshot.rb +5 -1
  35. data/lib/new_relic/control/instance_methods.rb +8 -5
  36. data/lib/new_relic/control/instrumentation.rb +0 -9
  37. data/lib/new_relic/environment_report.rb +1 -1
  38. data/lib/new_relic/language_support.rb +4 -0
  39. data/lib/new_relic/local_environment.rb +39 -14
  40. data/lib/new_relic/noticed_error.rb +7 -4
  41. data/lib/new_relic/rack/browser_monitoring.rb +16 -3
  42. data/lib/new_relic/version.rb +2 -2
  43. data/newrelic_rpm.gemspec +1 -1
  44. data/test/agent_helper.rb +5 -3
  45. data/test/environments/lib/environments/runner.rb +8 -7
  46. data/test/environments/norails/Gemfile +1 -1
  47. data/test/environments/rails21/Gemfile +1 -0
  48. data/test/environments/rails22/Gemfile +1 -0
  49. data/test/environments/rails23/Gemfile +1 -0
  50. data/test/environments/rails30/Gemfile +4 -1
  51. data/test/environments/rails31/Gemfile +4 -1
  52. data/test/environments/rails32/Gemfile +3 -4
  53. data/test/environments/rails40/Gemfile +1 -1
  54. data/test/environments/rails41/Gemfile +1 -1
  55. data/test/flaky_proxy/lib/flaky_proxy/proxy.rb +1 -0
  56. data/test/multiverse/lib/multiverse/output_collector.rb +3 -1
  57. data/test/multiverse/lib/multiverse/runner.rb +2 -10
  58. data/test/multiverse/lib/multiverse/suite.rb +100 -30
  59. data/test/multiverse/suites/activemerchant/Envfile +16 -0
  60. data/test/multiverse/suites/activemerchant/activemerchant_test.rb +65 -0
  61. data/test/multiverse/suites/agent_only/custom_queue_time_test.rb +57 -0
  62. data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +1 -1
  63. data/test/multiverse/suites/mongo/Envfile +9 -1
  64. data/test/multiverse/suites/rails/Envfile +2 -2
  65. data/test/multiverse/suites/rails/app.rb +3 -0
  66. data/test/multiverse/suites/rails/bad_instrumentation_test.rb +0 -2
  67. data/test/multiverse/suites/rails/error_tracing_test.rb +1 -2
  68. data/test/multiverse/suites/rails/gc_instrumentation_test.rb +17 -8
  69. data/test/multiverse/suites/rails/ignore_test.rb +0 -2
  70. data/test/multiverse/suites/rails/mongrel_queue_depth_test.rb +0 -2
  71. data/test/multiverse/suites/rails/queue_time_test.rb +40 -11
  72. data/test/multiverse/suites/rails/request_statistics_test.rb +0 -3
  73. data/test/multiverse/suites/rails/view_instrumentation_test.rb +0 -2
  74. data/test/multiverse/suites/sidekiq/Envfile +7 -2
  75. data/test/multiverse/suites/sinatra/Envfile +1 -1
  76. data/test/multiverse/suites/sinatra/nested_middleware_test.rb +41 -0
  77. data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +1 -1
  78. data/test/new_relic/agent/agent/connect_test.rb +32 -4
  79. data/test/new_relic/agent/agent/start_test.rb +9 -1
  80. data/test/new_relic/agent/agent_logger_test.rb +23 -2
  81. data/test/new_relic/agent/agent_test.rb +49 -7
  82. data/test/new_relic/agent/configuration/manager_test.rb +8 -0
  83. data/test/new_relic/agent/configuration/orphan_configuration_test.rb +7 -0
  84. data/test/new_relic/agent/cross_app_monitor_test.rb +5 -6
  85. data/test/new_relic/agent/harvester_test.rb +13 -8
  86. data/test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb +28 -7
  87. data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +32 -21
  88. data/test/new_relic/agent/new_relic_service_test.rb +14 -0
  89. data/test/new_relic/agent/request_sampler_test.rb +5 -3
  90. data/test/new_relic/agent/rpm_agent_test.rb +2 -3
  91. data/test/new_relic/agent/sampler_collection_test.rb +15 -5
  92. data/test/new_relic/agent/sampler_test.rb +43 -0
  93. data/test/new_relic/agent/{cpu_sampler_test.rb → samplers/cpu_sampler_test.rb} +1 -1
  94. data/test/new_relic/agent/samplers/vm_sampler_test.rb +349 -0
  95. data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +165 -44
  96. data/test/new_relic/agent/stats_hash_test.rb +1 -1
  97. data/test/new_relic/agent/transaction_test.rb +14 -0
  98. data/test/new_relic/agent/vm/monotonic_gc_profiler_test.rb +5 -5
  99. data/test/new_relic/agent/vm/mri_vm_test.rb +7 -0
  100. data/test/new_relic/agent/vm/snapshot_test.rb +5 -0
  101. data/test/new_relic/agent_test.rb +2 -2
  102. data/test/new_relic/control/instance_methods_test.rb +30 -0
  103. data/test/new_relic/control_test.rb +43 -21
  104. data/test/new_relic/dispatcher_test.rb +5 -0
  105. data/test/new_relic/local_environment_test.rb +3 -26
  106. data/test/new_relic/multiverse_helpers.rb +5 -0
  107. data/test/new_relic/noticed_error_test.rb +7 -0
  108. data/test/new_relic/rack/browser_monitoring_test.rb +13 -14
  109. data/test/test_helper.rb +2 -1
  110. metadata +56 -68
  111. metadata.gz.sig +1 -1
  112. data/lib/new_relic/agent/instrumentation/puma.rb +0 -25
  113. data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +0 -26
  114. data/test/multiverse/script/run_one +0 -5
  115. data/test/rum/basic.result.html +0 -10
  116. data/test/rum/basic.source.html +0 -10
  117. data/test/rum/comments1.result.html +0 -24
  118. data/test/rum/comments1.source.html +0 -24
  119. data/test/rum/comments2.result.html +0 -24
  120. data/test/rum/comments2.source.html +0 -24
  121. data/test/rum/gt_in_quotes1.result.html +0 -27
  122. data/test/rum/gt_in_quotes1.source.html +0 -27
  123. data/test/rum/gt_in_quotes2.result.html +0 -24
  124. data/test/rum/gt_in_quotes2.source.html +0 -24
  125. data/test/rum/gt_in_quotes_mismatch.result.html +0 -24
  126. data/test/rum/gt_in_quotes_mismatch.source.html +0 -24
  127. data/test/rum/gt_in_single_quotes1.result.html +0 -25
  128. data/test/rum/gt_in_single_quotes1.source.html +0 -25
  129. data/test/rum/gt_in_single_quotes_mismatch.result.html +0 -25
  130. data/test/rum/gt_in_single_quotes_mismatch.source.html +0 -25
  131. data/test/rum/incomplete_non_meta_tags.result.html +0 -10
  132. data/test/rum/incomplete_non_meta_tags.source.html +0 -10
  133. data/test/rum/no_body.result.html +0 -21
  134. data/test/rum/no_body.source.html +0 -21
  135. data/test/rum/no_header.result.html +0 -7
  136. data/test/rum/no_header.source.html +0 -7
  137. data/test/rum/no_html_and_no_header.result.html +0 -3
  138. data/test/rum/no_html_and_no_header.source.html +0 -3
  139. data/test/rum/no_start_header.result.html +0 -9
  140. data/test/rum/no_start_header.source.html +0 -9
  141. data/test/rum/script1.result.html +0 -19
  142. data/test/rum/script1.source.html +0 -19
  143. data/test/rum/script2.result.html +0 -17
  144. data/test/rum/script2.source.html +0 -17
  145. data/test/rum/x_ua_meta_tag.result.html +0 -10
  146. data/test/rum/x_ua_meta_tag.source.html +0 -10
  147. data/test/rum/x_ua_meta_tag_multiline.result.html +0 -11
  148. data/test/rum/x_ua_meta_tag_multiline.source.html +0 -11
  149. data/test/rum/x_ua_meta_tag_spaces_around_equals.result.html +0 -10
  150. data/test/rum/x_ua_meta_tag_spaces_around_equals.source.html +0 -10
  151. data/test/rum/x_ua_meta_tag_with_others.result.html +0 -11
  152. data/test/rum/x_ua_meta_tag_with_others.source.html +0 -11
  153. data/test/rum/x_ua_meta_tag_with_spaces.result.html +0 -10
  154. data/test/rum/x_ua_meta_tag_with_spaces.source.html +0 -10
@@ -1,10 +0,0 @@
1
- <html>
2
- <head>
3
- <title>im a title</title>
4
- <meta some-crap="1"/>
5
- <script>
6
- junk
7
- </script>
8
- </head>
9
- <body>im some body text</body>
10
- </html>
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name="google-site-verification" content="H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE" />
8
- <meta name="msvalidate.01" content="9174ACA637FC44E24AD81253FF836544" />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />|||I AM THE RUM FOOTER||||||I AM THE RUM HEADER|||
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
- <anotherTag>OPT&reg;</anotherTag>
20
- </head>
21
- <body>
22
- Cribbed from the Java agent
23
- </body>
24
- </html>
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name="google-site-verification" content="H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE" />
8
- <meta name="msvalidate.01" content="9174ACA637FC44E24AD81253FF836544" />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
- <anotherTag>OPT&reg;</anotherTag>
20
- </head>
21
- <body>
22
- Cribbed from the Java agent
23
- </body>
24
- </html>
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name="google-site-verification" content="H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE" />
8
- <meta name="msvalidate.01" content="9174ACA637FC44E24AD81253FF836544" />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />|||I AM THE RUM FOOTER||||||I AM THE RUM HEADER|||
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
- <title>OPT&reg;</title>
20
- </head>
21
- <body>
22
- Cribbed from the Java agent
23
- </body>
24
- </html>
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name="google-site-verification" content="H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE" />
8
- <meta name="msvalidate.01" content="9174ACA637FC44E24AD81253FF836544" />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
- <title>OPT&reg;</title>
20
- </head>
21
- <body>
22
- Cribbed from the Java agent
23
- </body>
24
- </html>
@@ -1,27 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name="google-site-verification" content="H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE" />
8
- <meta name="ms<validate>.01" content="9174ACA637FC44E24AD81253FF836544" />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />|||I AM THE RUM FOOTER||||||I AM THE RUM HEADER|||
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
- <anotherTag>OPT&reg;</title>
20
-
21
- </anotherTag>
22
-
23
- </head>
24
- <body>
25
- Cribbed from the Java agent
26
- </body>
27
- </html>
@@ -1,27 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name="google-site-verification" content="H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE" />
8
- <meta name="ms<validate>.01" content="9174ACA637FC44E24AD81253FF836544" />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
- <anotherTag>OPT&reg;</title>
20
-
21
- </anotherTag>
22
-
23
- </head>
24
- <body>
25
- Cribbed from the Java agent
26
- </body>
27
- </html>
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name="google-site-verification" content="H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE" />
8
- <meta name="ms<validate>.01" content="9174ACA637FC44E24AD81253FF836544" />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />|||I AM THE RUM FOOTER||||||I AM THE RUM HEADER|||
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
- <title>OPT&reg;</title>
20
- </head>
21
- <body>
22
- Cribbed from the Java agent
23
- </body>
24
- </html>
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name="google-site-verification" content="H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE" />
8
- <meta name="ms<validate>.01" content="9174ACA637FC44E24AD81253FF836544" />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
- <title>OPT&reg;</title>
20
- </head>
21
- <body>
22
- Cribbed from the Java agent
23
- </body>
24
- </html>
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name="google-s"ite<-verif>ication" content="H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE" />
8
- <meta name="ms<validate>.01" content="9174ACA637FC44E24AD81253FF836544" />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />|||I AM THE RUM FOOTER||||||I AM THE RUM HEADER|||
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
- <title>OPT&reg;</title>
20
- </head>
21
- <body>
22
- Cribbed from the Java agent
23
- </body>
24
- </html>
@@ -1,24 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name="google-s"ite<-verif>ication" content="H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE" />
8
- <meta name="ms<validate>.01" content="9174ACA637FC44E24AD81253FF836544" />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
- <title>OPT&reg;</title>
20
- </head>
21
- <body>
22
- Cribbed from the Java agent
23
- </body>
24
- </html>
@@ -1,25 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name='google-site-verification' content='H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE\' />
8
- <meta name='ms<validate>.01' content='9174ACA637FC44E24AD81253FF836544\' />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />|||I AM THE RUM FOOTER||||||I AM THE RUM HEADER|||
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
-
20
- <anotherTag>OPT&reg;</title> </anotherTag>
21
- </head>
22
- <body>
23
- Cribbed from the Java agent
24
- </body>
25
- </html>
@@ -1,25 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name='google-site-verification' content='H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE\' />
8
- <meta name='ms<validate>.01' content='9174ACA637FC44E24AD81253FF836544\' />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
-
20
- <anotherTag>OPT&reg;</title> </anotherTag>
21
- </head>
22
- <body>
23
- Cribbed from the Java agent
24
- </body>
25
- </html>
@@ -1,25 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name='google-site-verification' content='H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE\' />
8
- <meta name='m's<validate>.01' content='9174ACA637FC44E24AD81253FF836544\' />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />|||I AM THE RUM FOOTER||||||I AM THE RUM HEADER|||
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
-
20
- <anotherTag>OPT&reg;</title></anotherTag>
21
- </head>
22
- <body>
23
- Cribbed from the Java agent
24
- </body>
25
- </html>
@@ -1,25 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
7
- <meta name='google-site-verification' content='H7LxlilrDfbkX34sqq1X1JwoSCX0c6v15HhUYx49YtE\' />
8
- <meta name='m's<validate>.01' content='9174ACA637FC44E24AD81253FF836544\' />
9
- <!-- <meta http-equiv="X-UA-Compatible" content="IE=7" />
10
- -->
11
- <!--
12
- this is a comment
13
- <META name="y_key" content="fa8a87d87826e3f6" />
14
- -->
15
-
16
- <script language="javascript">
17
- function openMariaVideo { }
18
- </script>
19
-
20
- <anotherTag>OPT&reg;</title></anotherTag>
21
- </head>
22
- <body>
23
- Cribbed from the Java agent
24
- </body>
25
- </html>
@@ -1,10 +0,0 @@
1
- <html>
2
- <head>|||I AM THE RUM FOOTER||||||I AM THE RUM HEADER|||
3
-
4
- <link href="/>
5
- <link href=/>
6
- </head>
7
- <body>
8
- Cribbed from the Java agent
9
- </body>
10
- </html>
@@ -1,10 +0,0 @@
1
- <html>
2
- <head>
3
-
4
- <link href="/>
5
- <link href=/>
6
- </head>
7
- <body>
8
- Cribbed from the Java agent
9
- </body>
10
- </html>
@@ -1,21 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
2
- <html>
3
- <head>
4
- <meta http-equiv="Expires" content="Tue, 01 Jan 1980 1:00:00 GMT"/>
5
- <meta http-equiv="Pragma" content="no-cache"/>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
7
- <meta name="Author" content="DubKnowledge by Nebu B.V."/>
8
- <meta name="INFO" content="mailto:info@nebu.com"/>
9
- <meta name="description" content="Nebu B.V. is a software consultancy and developper for commercial organisations. It was founded in 1991. Nebu is active in the following three areas, Consultancy for sales and marketing organisations, Software for sales and marketing and Capi and Cati market research systems."/>
10
- <meta name="KEYWORDS" content="marketresearch, CAPI, CATI, Webresearch"/>
11
-
12
- <LINK href="/DubKnowledge/Icons/Nebu/dub.ico" rel="shortcut icon">
13
- <title>Nebu DubKnowledge System</title>
14
- <script type="text/javascript">
15
- </script>
16
- </head>
17
- <frameset onload="try{window.frames['menu'].onmainloaded}catch(err){}" cols="172,*" frameborder="no" framespacing="0">
18
- <frame src="Menu.jsp?action=loginpage" name="menu" noresize frameborder="1" marginwidth="10" marginheight="10"/>
19
- <frame name="main" noresize frameborder="0" marginwidth="0" marginheight="0"/>
20
- </frameset>
21
- </html>
@@ -1,21 +0,0 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
2
- <html>
3
- <head>
4
- <meta http-equiv="Expires" content="Tue, 01 Jan 1980 1:00:00 GMT"/>
5
- <meta http-equiv="Pragma" content="no-cache"/>
6
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
7
- <meta name="Author" content="DubKnowledge by Nebu B.V."/>
8
- <meta name="INFO" content="mailto:info@nebu.com"/>
9
- <meta name="description" content="Nebu B.V. is a software consultancy and developper for commercial organisations. It was founded in 1991. Nebu is active in the following three areas, Consultancy for sales and marketing organisations, Software for sales and marketing and Capi and Cati market research systems."/>
10
- <meta name="KEYWORDS" content="marketresearch, CAPI, CATI, Webresearch"/>
11
-
12
- <LINK href="/DubKnowledge/Icons/Nebu/dub.ico" rel="shortcut icon">
13
- <title>Nebu DubKnowledge System</title>
14
- <script type="text/javascript">
15
- </script>
16
- </head>
17
- <frameset onload="try{window.frames['menu'].onmainloaded}catch(err){}" cols="172,*" frameborder="no" framespacing="0">
18
- <frame src="Menu.jsp?action=loginpage" name="menu" noresize frameborder="1" marginwidth="10" marginheight="10"/>
19
- <frame name="main" noresize frameborder="0" marginwidth="0" marginheight="0"/>
20
- </frameset>
21
- </html>