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.
- data.tar.gz.sig +0 -0
- data/CHANGELOG +73 -0
- data/README.md +1 -1
- data/Rakefile +1 -5
- data/lib/new_relic/agent.rb +1 -0
- data/lib/new_relic/agent/agent.rb +47 -18
- data/lib/new_relic/agent/agent_logger.rb +11 -1
- data/lib/new_relic/agent/configuration/default_source.rb +85 -1
- data/lib/new_relic/agent/configuration/manager.rb +5 -1
- data/lib/new_relic/agent/datastores/mongo.rb +8 -3
- data/lib/new_relic/agent/harvester.rb +5 -1
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +1 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +7 -3
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +13 -3
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +7 -1
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +3 -1
- data/lib/new_relic/agent/instrumentation/sinatra.rb +3 -1
- data/lib/new_relic/agent/new_relic_service.rb +8 -0
- data/lib/new_relic/agent/request_sampler.rb +1 -1
- data/lib/new_relic/agent/sampler.rb +22 -2
- data/lib/new_relic/agent/sampler_collection.rb +13 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +3 -1
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +2 -1
- data/lib/new_relic/agent/samplers/memory_sampler.rb +2 -1
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -3
- data/lib/new_relic/agent/samplers/vm_sampler.rb +126 -0
- data/lib/new_relic/agent/stats.rb +0 -15
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +66 -75
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +1 -1
- data/lib/new_relic/agent/supported_versions.rb +2 -2
- data/lib/new_relic/agent/transaction.rb +6 -3
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +17 -5
- data/lib/new_relic/agent/vm/mri_vm.rb +2 -1
- data/lib/new_relic/agent/vm/snapshot.rb +5 -1
- data/lib/new_relic/control/instance_methods.rb +8 -5
- data/lib/new_relic/control/instrumentation.rb +0 -9
- data/lib/new_relic/environment_report.rb +1 -1
- data/lib/new_relic/language_support.rb +4 -0
- data/lib/new_relic/local_environment.rb +39 -14
- data/lib/new_relic/noticed_error.rb +7 -4
- data/lib/new_relic/rack/browser_monitoring.rb +16 -3
- data/lib/new_relic/version.rb +2 -2
- data/newrelic_rpm.gemspec +1 -1
- data/test/agent_helper.rb +5 -3
- data/test/environments/lib/environments/runner.rb +8 -7
- data/test/environments/norails/Gemfile +1 -1
- data/test/environments/rails21/Gemfile +1 -0
- data/test/environments/rails22/Gemfile +1 -0
- data/test/environments/rails23/Gemfile +1 -0
- data/test/environments/rails30/Gemfile +4 -1
- data/test/environments/rails31/Gemfile +4 -1
- data/test/environments/rails32/Gemfile +3 -4
- data/test/environments/rails40/Gemfile +1 -1
- data/test/environments/rails41/Gemfile +1 -1
- data/test/flaky_proxy/lib/flaky_proxy/proxy.rb +1 -0
- data/test/multiverse/lib/multiverse/output_collector.rb +3 -1
- data/test/multiverse/lib/multiverse/runner.rb +2 -10
- data/test/multiverse/lib/multiverse/suite.rb +100 -30
- data/test/multiverse/suites/activemerchant/Envfile +16 -0
- data/test/multiverse/suites/activemerchant/activemerchant_test.rb +65 -0
- data/test/multiverse/suites/agent_only/custom_queue_time_test.rb +57 -0
- data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +1 -1
- data/test/multiverse/suites/mongo/Envfile +9 -1
- data/test/multiverse/suites/rails/Envfile +2 -2
- data/test/multiverse/suites/rails/app.rb +3 -0
- data/test/multiverse/suites/rails/bad_instrumentation_test.rb +0 -2
- data/test/multiverse/suites/rails/error_tracing_test.rb +1 -2
- data/test/multiverse/suites/rails/gc_instrumentation_test.rb +17 -8
- data/test/multiverse/suites/rails/ignore_test.rb +0 -2
- data/test/multiverse/suites/rails/mongrel_queue_depth_test.rb +0 -2
- data/test/multiverse/suites/rails/queue_time_test.rb +40 -11
- data/test/multiverse/suites/rails/request_statistics_test.rb +0 -3
- data/test/multiverse/suites/rails/view_instrumentation_test.rb +0 -2
- data/test/multiverse/suites/sidekiq/Envfile +7 -2
- data/test/multiverse/suites/sinatra/Envfile +1 -1
- data/test/multiverse/suites/sinatra/nested_middleware_test.rb +41 -0
- data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +1 -1
- data/test/new_relic/agent/agent/connect_test.rb +32 -4
- data/test/new_relic/agent/agent/start_test.rb +9 -1
- data/test/new_relic/agent/agent_logger_test.rb +23 -2
- data/test/new_relic/agent/agent_test.rb +49 -7
- data/test/new_relic/agent/configuration/manager_test.rb +8 -0
- data/test/new_relic/agent/configuration/orphan_configuration_test.rb +7 -0
- data/test/new_relic/agent/cross_app_monitor_test.rb +5 -6
- data/test/new_relic/agent/harvester_test.rb +13 -8
- data/test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb +28 -7
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +32 -21
- data/test/new_relic/agent/new_relic_service_test.rb +14 -0
- data/test/new_relic/agent/request_sampler_test.rb +5 -3
- data/test/new_relic/agent/rpm_agent_test.rb +2 -3
- data/test/new_relic/agent/sampler_collection_test.rb +15 -5
- data/test/new_relic/agent/sampler_test.rb +43 -0
- data/test/new_relic/agent/{cpu_sampler_test.rb → samplers/cpu_sampler_test.rb} +1 -1
- data/test/new_relic/agent/samplers/vm_sampler_test.rb +349 -0
- data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +165 -44
- data/test/new_relic/agent/stats_hash_test.rb +1 -1
- data/test/new_relic/agent/transaction_test.rb +14 -0
- data/test/new_relic/agent/vm/monotonic_gc_profiler_test.rb +5 -5
- data/test/new_relic/agent/vm/mri_vm_test.rb +7 -0
- data/test/new_relic/agent/vm/snapshot_test.rb +5 -0
- data/test/new_relic/agent_test.rb +2 -2
- data/test/new_relic/control/instance_methods_test.rb +30 -0
- data/test/new_relic/control_test.rb +43 -21
- data/test/new_relic/dispatcher_test.rb +5 -0
- data/test/new_relic/local_environment_test.rb +3 -26
- data/test/new_relic/multiverse_helpers.rb +5 -0
- data/test/new_relic/noticed_error_test.rb +7 -0
- data/test/new_relic/rack/browser_monitoring_test.rb +13 -14
- data/test/test_helper.rb +2 -1
- metadata +56 -68
- metadata.gz.sig +1 -1
- data/lib/new_relic/agent/instrumentation/puma.rb +0 -25
- data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +0 -26
- data/test/multiverse/script/run_one +0 -5
- data/test/rum/basic.result.html +0 -10
- data/test/rum/basic.source.html +0 -10
- data/test/rum/comments1.result.html +0 -24
- data/test/rum/comments1.source.html +0 -24
- data/test/rum/comments2.result.html +0 -24
- data/test/rum/comments2.source.html +0 -24
- data/test/rum/gt_in_quotes1.result.html +0 -27
- data/test/rum/gt_in_quotes1.source.html +0 -27
- data/test/rum/gt_in_quotes2.result.html +0 -24
- data/test/rum/gt_in_quotes2.source.html +0 -24
- data/test/rum/gt_in_quotes_mismatch.result.html +0 -24
- data/test/rum/gt_in_quotes_mismatch.source.html +0 -24
- data/test/rum/gt_in_single_quotes1.result.html +0 -25
- data/test/rum/gt_in_single_quotes1.source.html +0 -25
- data/test/rum/gt_in_single_quotes_mismatch.result.html +0 -25
- data/test/rum/gt_in_single_quotes_mismatch.source.html +0 -25
- data/test/rum/incomplete_non_meta_tags.result.html +0 -10
- data/test/rum/incomplete_non_meta_tags.source.html +0 -10
- data/test/rum/no_body.result.html +0 -21
- data/test/rum/no_body.source.html +0 -21
- data/test/rum/no_header.result.html +0 -7
- data/test/rum/no_header.source.html +0 -7
- data/test/rum/no_html_and_no_header.result.html +0 -3
- data/test/rum/no_html_and_no_header.source.html +0 -3
- data/test/rum/no_start_header.result.html +0 -9
- data/test/rum/no_start_header.source.html +0 -9
- data/test/rum/script1.result.html +0 -19
- data/test/rum/script1.source.html +0 -19
- data/test/rum/script2.result.html +0 -17
- data/test/rum/script2.source.html +0 -17
- data/test/rum/x_ua_meta_tag.result.html +0 -10
- data/test/rum/x_ua_meta_tag.source.html +0 -10
- data/test/rum/x_ua_meta_tag_multiline.result.html +0 -11
- data/test/rum/x_ua_meta_tag_multiline.source.html +0 -11
- data/test/rum/x_ua_meta_tag_spaces_around_equals.result.html +0 -10
- data/test/rum/x_ua_meta_tag_spaces_around_equals.source.html +0 -10
- data/test/rum/x_ua_meta_tag_with_others.result.html +0 -11
- data/test/rum/x_ua_meta_tag_with_others.source.html +0 -11
- data/test/rum/x_ua_meta_tag_with_spaces.result.html +0 -10
- data/test/rum/x_ua_meta_tag_with_spaces.source.html +0 -10
data/test/rum/basic.source.html
DELETED
@@ -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®</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®</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®</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®</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®</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®</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®</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®</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®</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®</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®</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®</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®</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®</title></anotherTag>
|
21
|
-
</head>
|
22
|
-
<body>
|
23
|
-
Cribbed from the Java agent
|
24
|
-
</body>
|
25
|
-
</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>
|