oddb.org 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. data/History.txt +11 -1
  2. data/Manifest.txt +20 -18
  3. data/Rakefile +2 -1
  4. data/ext/analysisparse/test/test_pagehandler.rb +9 -9
  5. data/ext/chapterparse/src/{parser.rb → chaptparser.rb} +0 -0
  6. data/ext/chapterparse/test/test_integrate.rb +22 -30
  7. data/ext/chapterparse/test/test_parser.rb +1 -1
  8. data/ext/chapterparse/test/test_writer.rb +1 -1
  9. data/ext/comarketing/test/test_pdf_parser.rb +5 -3
  10. data/ext/docdata/src/{parser.rb → docparser.rb} +0 -0
  11. data/ext/docdata/test/{test_parser.rb → parser_test.rb} +0 -0
  12. data/ext/export/test/test_csv_exporter.rb +3 -3
  13. data/ext/export/test/test_oddbdat.rb +3 -1
  14. data/ext/fiparse/src/fachinfo_doc.rb +13 -1
  15. data/ext/fiparse/src/fachinfo_writer.rb +1 -1
  16. data/ext/fiparse/src/{writer.rb → fiwriter.rb} +0 -0
  17. data/ext/fiparse/test/data/doc/Calcitriol_f.doc +0 -0
  18. data/ext/fiparse/test/data/doc/Lapidar_f.doc +0 -0
  19. data/ext/fiparse/test/data/doc/Tendro.doc +0 -0
  20. data/ext/fiparse/test/data/doc/Yakona_f.doc +0 -0
  21. data/ext/fiparse/test/{test_fachinfo_pdf.rb → fachinfo_pdf_test.rb} +0 -0
  22. data/ext/fiparse/test/{test_fiparse.rb → fiparse_test.rb} +0 -0
  23. data/ext/fiparse/test/{test_indications.rb → indications_test.rb} +0 -0
  24. data/ext/fiparse/test/{test_minifi.rb → minifi_test.rb} +0 -0
  25. data/ext/fiparse/test/test_fachinfo_doc_parser.rb +560 -628
  26. data/ext/fiparse/test/test_fachinfo_hpricot.rb +9 -9
  27. data/ext/fiparse/test/test_patinfo_hpricot.rb +2 -1
  28. data/ext/fipdf/test/{test_chapter_wrapper.rb → chapter_wrapper_test.rb} +0 -0
  29. data/ext/fipdf/test/{test_fachinfo_wrapper.rb → fachinfo_wrapper_test.rb} +0 -0
  30. data/ext/fipdf/test/{test_fachinfo_writer.rb → fachinfo_writer_test.rb} +0 -0
  31. data/ext/fipdf/test/{test_format.rb → format_test.rb} +0 -0
  32. data/ext/fipdf/test/{test_paragraph_wrapper.rb → paragraph_wrapper_test.rb} +0 -0
  33. data/ext/fipdf/test/{test_rules.rb → rules_test.rb} +0 -0
  34. data/ext/fipdf/test/{test_section_wrapper.rb → section_wrapper_test.rb} +0 -0
  35. data/ext/fipdf/test/{test_substance_index.rb → substance_index_test.rb} +0 -0
  36. data/ext/meddata/src/meddata.rb +1 -1
  37. data/ext/meddata/src/{parser.rb → meddparser.rb} +0 -0
  38. data/ext/meddata/test/{test_session.rb → session_test.rb} +2 -2
  39. data/ext/meddata/test/test_meddata.rb +9 -5
  40. data/ext/meddata/test/test_result.rb +2 -4
  41. data/ext/suite.rb +28 -0
  42. data/ext/swissreg/test/data/pemetrexed_detail.html +484 -0
  43. data/ext/swissreg/test/test_writer.rb +0 -19
  44. data/lib/oddb.org.rb +1 -1
  45. data/src/state/drugs/fachinfo.rb +1 -1
  46. data/test/suite.rb +2 -1
  47. metadata +24 -22
@@ -25,7 +25,7 @@ class TestFachinfoHpricot < Test::Unit::TestCase
25
25
  <div class="paragraph">
26
26
  <h2><a name="3300">Zusammensetzung</a></h2>
27
27
  <p class="spacing1"><span style="font-style:italic; ">Wirkstoffe:</span></p>
28
- <p class="spacing1">1 Brausetablette enthält: Carbasalatum calcicum 528 mg corresp. Acidum Acetylsalicylicum 415 mg, Acidum ascorbicum 250 mg.</p>
28
+ <p class="spacing1">1 Brausetablette enthält: Carbasalatum calcicum 528 mg corresp. Acidum Acetylsalicylicum 415 mg, Acidum ascorbicum 250 mg.</p>
29
29
  <p class="noSpacing"><span style="font-style:italic; ">Hilfsstoffe: </span>Saccharinum, Cyclamas, Aromatica, Color.: E 120.</p>
30
30
  </div>
31
31
  HTML
@@ -48,8 +48,8 @@ class TestFachinfoHpricot < Test::Unit::TestCase
48
48
  assert_equal(11..-1, fmt.range)
49
49
  assert_equal(expected, paragraph.text)
50
50
  paragraph = section.paragraphs.at(1)
51
- expected = "1 Brausetablette enthält: Carbasalatum calcicum 528 mg corresp. Acidum Acetylsalicylicum 415 mg, Acidum ascorbicum 250 mg."
52
- assert_equal(expected, paragraph.text)
51
+ expected = /1 Brausetablette enth.*lt: Carbasalatum calcicum 528.*mg corresp\. Acidum Acetylsalicylicum 415.*mg, Acidum ascorbicum 250.*mg\./
52
+ assert_match(expected, paragraph.text)
53
53
  paragraph = section.paragraphs.at(2)
54
54
  assert_equal(2, paragraph.formats.size)
55
55
  fmt = paragraph.formats.first
@@ -58,8 +58,8 @@ class TestFachinfoHpricot < Test::Unit::TestCase
58
58
  fmt = paragraph.formats.last
59
59
  assert_equal([], fmt.values)
60
60
  assert_equal(12..-1, fmt.range)
61
- expected = "Hilfsstoffe: Saccharinum, Cyclamas, Aromatica, Color.: E 120."
62
- assert_equal(expected, paragraph.text)
61
+ expected = /Hilfsstoffe: Saccharinum, Cyclamas, Aromatica, Color.: E.*120./
62
+ assert_match(expected, paragraph.text)
63
63
  end
64
64
  def test_identify_chapter__raises_unknown_chaptercode
65
65
  assert_raises(RuntimeError) {
@@ -109,11 +109,11 @@ class TestFachinfoHpricotAlcaCDe < Test::Unit::TestCase
109
109
  expected = "Wirkstoffe:"
110
110
  assert_equal(expected, paragraph.text)
111
111
  paragraph = section.paragraphs.at(1)
112
- expected = "1 Brausetablette enthält: Carbasalatum calcicum 528 mg corresp. Acidum Acetylsalicylicum 415 mg, Acidum ascorbicum 250 mg."
113
- assert_equal(expected, paragraph.text)
112
+ expected = /1 Brausetablette enth.*lt: Carbasalatum calcicum 528.*mg corresp. Acidum Acetylsalicylicum 415.*mg, Acidum ascorbicum 250.*mg./
113
+ assert_match(expected, paragraph.text)
114
114
  paragraph = section.paragraphs.at(2)
115
- expected = "Hilfsstoffe: Saccharinum, Cyclamas, Aromatica, Color.: E 120."
116
- assert_equal(expected, paragraph.text)
115
+ expected = /Hilfsstoffe: Saccharinum, Cyclamas, Aromatica, Color.: E.*120\./
116
+ assert_match(expected, paragraph.text)
117
117
  end
118
118
  def test_effects1
119
119
  chapter = @fachinfo.effects
@@ -162,7 +162,8 @@ Jahren pro Tag pro Tag pro Tag
162
162
  500 mg 2\303\227
163
163
  -----------------------------------------------------
164
164
  12-14 25 ml 3\303\227 1 Kps 3\303\227 1 Supp.
165
- 500 mg 3\303\227
165
+ 500 mg 3\303\227
166
+
166
167
  EOS
167
168
  assert_equal(expected.chomp, paragraph.text)
168
169
  assert_equal(true, paragraph.preformatted?)
@@ -5,7 +5,7 @@ $: << File.expand_path("../../../src", File.dirname(__FILE__))
5
5
  $: << File.dirname(__FILE__)
6
6
 
7
7
  require 'drbsession'
8
- require 'parser'
8
+ require 'meddparser'
9
9
  require 'result'
10
10
 
11
11
  module ODDB
@@ -8,13 +8,13 @@ $: << File.expand_path("../src", File.dirname(__FILE__))
8
8
 
9
9
  require 'test/unit'
10
10
  require 'meddata'
11
- require 'mock'
11
+ require 'flexmock'
12
12
 
13
13
  module ODDB
14
14
  module MedData
15
15
  class SessionTest < Test::Unit::TestCase
16
16
  def setup
17
- @session = Session.new('')
17
+ @session = Session.new()
18
18
  end
19
19
  def test_post_hash__1
20
20
  data = {
@@ -8,12 +8,14 @@ $: << File.expand_path("../src", File.dirname(__FILE__))
8
8
 
9
9
  require 'test/unit'
10
10
  require 'meddata'
11
- require 'mock'
11
+ require 'flexmock'
12
12
 
13
13
  module ODDB
14
14
  class MedDataTest < Test::Unit::TestCase
15
+ include FlexMock::TestCase
16
+ =begin
15
17
  def test__dispatch__block
16
- session = Mock.new('Session')
18
+ session = flexmock('Session')
17
19
  input = [
18
20
  ['ctl1', {:name => 'Meier'}],
19
21
  ['ctl2', {:name => 'M�ller'}],
@@ -26,7 +28,7 @@ module ODDB
26
28
  assert_nil(result)
27
29
  end
28
30
  def test__dispatch__no_block
29
- session = Mock.new('Session')
31
+ session = flexmock('Session')
30
32
  input = [
31
33
  ['ctl1', {:name => 'Meier'}],
32
34
  ['ctl2', {:name => 'M�ller'}],
@@ -38,13 +40,14 @@ module ODDB
38
40
  assert_instance_of(MedData::Result, result)
39
41
  }
40
42
  end
43
+ =end
41
44
  def test__dispatch
42
45
  str = MedData::Result
43
- instance = str.new('foo', 'bar', 'baz')
44
- assert_equal('foo', instance.session)
46
+ instance = str.new('bar', 'baz')
45
47
  assert_equal('bar', instance.values)
46
48
  assert_equal('baz', instance.ctl)
47
49
  end
50
+ =begin
48
51
  def test_remove_whitespace
49
52
  data = {
50
53
  :fax => "041 111 22 33\240\240",
@@ -53,5 +56,6 @@ module ODDB
53
56
  result = ODDB::MedData.remove_whitespace(data)
54
57
  assert_equal("041 111 22 33", result[:fax])
55
58
  end
59
+ =end
56
60
  end
57
61
  end
@@ -10,12 +10,10 @@ module ODDB
10
10
  module MedData
11
11
  class ResultTest < Test::Unit::TestCase
12
12
  def test_initialize
13
- result = Result.new('foo', 'bar', 'baz')
14
- assert_equal('foo', result.session)
13
+ result = Result.new('bar', 'baz')
15
14
  assert_equal('bar', result.values)
16
15
  assert_equal('baz', result.ctl)
17
- result = Result.new(nil, nil, nil)
18
- assert_nil(result.session)
16
+ result = Result.new(nil, nil)
19
17
  assert_nil(result.values)
20
18
  assert_nil(result.ctl)
21
19
  end
@@ -0,0 +1,28 @@
1
+ #!/usr/bin/env ruby
2
+ # suite.rb -- oddb.org/ext -- 15.02.2011 -- mhatakeyama@ywesee.com
3
+
4
+ require "./swissreg/test/test_writer.rb"
5
+ require "./swissreg/test/test_session.rb"
6
+ #require "./meddata/test/test_session.rb"
7
+ require "./meddata/test/test_result.rb"
8
+ require "./meddata/test/test_meddata.rb"
9
+ require "./meddata/test/test_ean_factory.rb"
10
+ require "./fiparse/test/test_patinfo_hpricot.rb"
11
+ require "./fiparse/test/test_fachinfo_hpricot.rb"
12
+ require "./comarketing/test/test_pdf_parser.rb"
13
+ require "./chapterparse/test/test_writer.rb"
14
+ require "./chapterparse/test/test_parser.rb"
15
+ require "./chapterparse/test/test_integrate.rb"
16
+ require "./analysisparse/test/test_simple_list_parser.rb"
17
+ require "./analysisparse/test/test_pagehandler.rb"
18
+ require "./analysisparse/test/test_list_parser.rb"
19
+ require "./analysisparse/test/test_fragmented_page_handler.rb"
20
+ require "./analysisparse/test/test_extended_list_parser.rb"
21
+ require "./analysisparse/test/test_block_list_parser.rb"
22
+ require "./analysisparse/test/test_appendix_parser.rb"
23
+ require "./analysisparse/test/test_antibody_list_parser.rb"
24
+ require "./analysisparse/test/test_anonymous_list_parser.rb"
25
+ require "./export/test/test_oddbdat.rb"
26
+ require "./export/test/test_generics_xls.rb"
27
+ require "./export/test/test_csv_exporter.rb"
28
+ require "./fiparse/test/test_fachinfo_doc_parser.rb"
@@ -0,0 +1,484 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml" lang="de"><head>
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+ <title>Swissreg - Eidg. Institut für Geistiges Eigentum</title>
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
27
+ <meta http-equiv="cache-control" content="private,no-cache,no-store">
28
+ <meta http-equiv="language" content="de, fr, it, en">
29
+ <meta name="keywords" content="Recherchen, Datenbankrecherche, Patentinformation, Patentrecherche, Patent, Patentamt, IGE, Eidgenössisches Institut für Geistiges Eigentum, Infocenter, Patentsammlung, Patentdokument, Register, Schutzrecht, Patentgesetz, Patentverordnung, Markengesetz, Haager Abkommen, Erfindungen, Erfinder, Marktanalyse, Informationsvermittlung, unlauterer Wettbewerb, Erfindungspatent, Herkunftsbezeichnungen, SHAB, PMMBl, Handelsamtsblatt, Markenschutz, Marke, Namen, domain, domainnamen, Markenanmeldung, Urheberrecht, Suisa, Pro Literis, SSA, SMCC, Suissimage, Verwertungsgesellschaften, Topographien, Immaterialgüterrecht, espacenet, Gratisdatenbank, Design, Designschutz, Muster und Raubkopien, Geschmacksmuster, Gebrauchsmuster, ESZ, Schutzzertifikate">
30
+ <meta name="description" content="Schweizer Patentamt, Patente, Marken, Design, ESZ, Urheberrecht, Recherchen, Topographie, Datenbanken">
31
+ <meta name="abstract" content=" Datenbankrecherchen, Patentrecherchen, Markenschutz, Markenrecherchen, Design, Muster Modelle, Designrecherche, Urheberrecht">
32
+ <meta name="revisit-after" content="7 days">
33
+ <meta name="robots" content="ALL">
34
+ <meta name="publisher" content="Eidg. Institut für Geistiges Eigentum">
35
+ <link rel="shortcut icon" href="http://www.swissreg.ch/srclient/img/favicon.ico">
36
+ <link rel="stylesheet" type="text/css" href="pemetrexed_detail_files/base.css" media="screen">
37
+ <link rel="stylesheet" type="text/css" href="pemetrexed_detail_files/print.css" media="print">
38
+ <script type="text/javascript" src="pemetrexed_detail_files/sr2.js"></script>
39
+
40
+
41
+ </head><body class="hitlist" onload="self.focus();">
42
+ <form target="" id="id_swissreg" name="id_swissreg" method="post" action="/srclient/faces/jsp/spc/sr300.jsp;jsessionid=75E098C57B698DE82DE9F713AF47BAD6.tomcat01" enctype="application/x-www-form-urlencoded">
43
+
44
+ <div id="header">
45
+ <a name="anchor_home" id="anchor_home"></a>
46
+
47
+
48
+ <script type="text/javascript"><!--
49
+
50
+
51
+ function oamSetHiddenInput(formname, name, value)
52
+ {
53
+ var form = document.forms[formname];
54
+ if(typeof form.elements[name]=='undefined')
55
+ {
56
+ var newInput = document.createElement('input');
57
+ newInput.setAttribute('type','hidden');
58
+ newInput.setAttribute('name',name);
59
+ newInput.setAttribute('value',value);
60
+ form.appendChild(newInput);
61
+ }
62
+ else
63
+ {
64
+ form.elements[name].value=value;
65
+ }
66
+
67
+ }
68
+
69
+
70
+ function oamClearHiddenInput(formname, name, value)
71
+ {
72
+ var form = document.forms[formname];
73
+ if(typeof form.elements[name]!='undefined')
74
+ {
75
+ form.elements[name].value=null;
76
+ }
77
+
78
+ }
79
+
80
+ function oamSubmitForm(formName, linkId, target, params)
81
+ {
82
+
83
+ var clearFn = 'clearFormHiddenParams_'+formName.replace(/-/g, '\$:').replace(/:/g,'_');
84
+ if(typeof eval('window.'+clearFn)!='undefined')
85
+ {
86
+ eval('window.'+clearFn+'(formName)');
87
+ }
88
+
89
+ if(typeof window.getScrolling!='undefined')
90
+ {
91
+ oamSetHiddenInput(formName,'autoScroll',getScrolling());
92
+ }
93
+
94
+ var oldTarget = '';
95
+ if((typeof target!='undefined') && target != null)
96
+ {
97
+ oldTarget=document.forms[formName].target;
98
+ document.forms[formName].target=target;
99
+ }
100
+ if((typeof params!='undefined') && params != null)
101
+ {
102
+ for(var i=0; i<params.length; i++)
103
+ {
104
+ oamSetHiddenInput(formName,params[i][0], params[i][1]);
105
+ }
106
+
107
+ }
108
+
109
+ oamSetHiddenInput(formName,formName +':'+'_idcl',linkId);
110
+
111
+ if(document.forms[formName].onsubmit)
112
+ {
113
+ var result=document.forms[formName].onsubmit();
114
+ if((typeof result=='undefined')||result)
115
+ {
116
+ document.forms[formName].submit();
117
+ }
118
+
119
+ }
120
+ else
121
+ {
122
+ document.forms[formName].submit();
123
+ }
124
+ if(oldTarget==null) oldTarget='';
125
+ document.forms[formName].target=oldTarget;
126
+ if((typeof params!='undefined') && params != null)
127
+ {
128
+ for(var i=0; i<params.length; i++)
129
+ {
130
+ oamClearHiddenInput(formName,params[i][0], params[i][1]);
131
+ }
132
+
133
+ }
134
+
135
+ oamClearHiddenInput(formName,formName +':'+'_idcl',linkId);return false;
136
+ }
137
+
138
+
139
+ //--></script><a href="#" onclick="return oamSubmitForm('id_swissreg','id_swissreg:link_home');" id="id_swissreg:link_home" accesskey="0"><img id="id_swissreg:logswissreg" src="pemetrexed_detail_files/srlogo.png" alt="Logo Swissreg"></a>
140
+ <input name="autoScroll" type="hidden">
141
+
142
+ </div>
143
+
144
+
145
+
146
+ <div id="navigation"><a href="#" onclick="javascript:window.close();return oamSubmitForm('id_swissreg','id_swissreg:sub_detailheader:link_header_close');" id="id_swissreg:sub_detailheader:link_header_close">Schliessen</a>&nbsp;|&nbsp;</div>
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+ <div id="content2">
161
+
162
+ <div id="options">
163
+
164
+
165
+ <h1 class="non_printable">Detailansicht zu ESZ-Nr.: C00432677/01<span class="info">Was Sie über <a id="id_swissreg:sub_title:_idJsp14" href="https://www.swissreg.ch/help/de/spc/sr1000.shtm#anchor_detail" target="_blank" style="cursor: help;"><strong>diese Detailansicht</strong></a> wissen sollten.</span></h1>
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+
185
+
186
+
187
+
188
+
189
+
190
+
191
+
192
+
193
+
194
+
195
+
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+
204
+
205
+
206
+
207
+
208
+
209
+
210
+ <fieldset class="non_printable"><legend>Aktionen</legend><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td class="w250"><span style="display: block;" class="row0">Schutztitel</span></td><td class="w450"><span style="display: block;" class="row0">Info</span></td></tr>
211
+ <tr><td class="w250"><a href="#" onclick="return oamSubmitForm('id_swissreg','id_swissreg:mainContent:sub_actions:_idJsp28');" id="id_swissreg:mainContent:sub_actions:_idJsp28">PDF (A4/hoch)</a></td><td class="w450">PDF zum aktuellen Schutztitel erstellen</td></tr>
212
+ <tr><td class="w250"><a id="id_swissreg:mainContent:sub_actions:_idJsp31" name="id_swissreg:mainContent:sub_actions:_idJsp31" href="mailto:?subject=Swissreg%20-%20Detailansicht%20zu%20ESZ-Nr.:%20C00432677/01&amp;body=%0Ahttps://www.swissreg.ch/srclient/de/spc/C00432677/01%0A%0Ahttps://www.swissreg.ch/srclient/faces/jsp/spc/sr300.jsp?language=de%26section=spc%26id=C00432677%2F01&amp;language=de&amp;section=spc&amp;id=C00432677%2F01">Versenden</a></td><td class="w450">Weblink des aktuellen Schutztitel per Email versenden</td></tr>
213
+ </tbody></table></fieldset><div class="non_printable"><fieldset><legend>Navigation</legend><img src="pemetrexed_detail_files/arrow_first_disable.png">&nbsp;<img src="pemetrexed_detail_files/arrow_previous_disable.png">&nbsp;<img src="pemetrexed_detail_files/arrow_next_disable.png">&nbsp;<img src="pemetrexed_detail_files/arrow_last_disable.png"></fieldset></div><a name="anchor_register"></a><fieldset class="result"><legend><strong>Aktueller Stand</strong><span class="non_printable">&nbsp;(&nbsp;<a id="id_swissreg:mainContent:link_reg_show" name="id_swissreg:mainContent:link_reg_show" href="#" onclick="detailShow('register'); return false;">einblenden</a>&nbsp;/&nbsp;<a id="id_swissreg:mainContent:link_reg_hide" name="id_swissreg:mainContent:link_reg_hide" href="#" onclick="detailHide('register'); return false;">ausblenden</a>&nbsp;)&nbsp;|&nbsp;<a id="id_swissreg:mainContent:link_history" name="id_swissreg:mainContent:link_history" href="#anchor_history">Historie</a></span></legend><div id="register">
214
+ <table id="id_swissreg:mainContent:data" class="small-border">
215
+ <thead>
216
+ <tr><th class="row0">Bezeichnung</th><th class="row0">Aktueller Stand</th></tr></thead>
217
+ <tbody id="id_swissreg:mainContent:data:tbody_element">
218
+ <tr style="background-color: rgb(230, 230, 230);" class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Typ</td><td class="w500">ESZ</td></tr>
219
+ <tr style="background-color: rgb(240, 240, 240);" class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Auszug vom</td><td class="w500">15.02.2011</td></tr>
220
+ <tr style="background-color: rgb(230, 230, 230);" class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">ESZ-Nr.</td><td class="w500">C00432677/01</td></tr>
221
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Erteilungsdatum</td><td class="w500">29.12.2006</td></tr>
222
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Publikationsdatum</td><td class="w500">15.04.2005</td></tr>
223
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Anmeldedatum</td><td class="w500">16.03.2005</td></tr>
224
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Schutzdauerbeginn</td><td class="w500">10.12.2010</td></tr>
225
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Schutzbeginn Grundpatent</td><td class="w500">10.12.1990</td></tr>
226
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Grundpatent-Nr.</td><td class="w500"><a href="https://www.swissreg.ch/srclient/faces/jsp/patent/sr300.jsp?language=de&amp;section=pat&amp;id=EP00432677" target="_blank">EP00432677</a></td></tr>
227
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Wirkstoff</td><td class="w500">Pemetrexed</td></tr>
228
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Genehmigung</td><td class="w500">SWISSMEDIC, 57039 21.01.2005</td></tr>
229
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Maximale Laufzeit</td><td class="w500">09.12.2015</td></tr>
230
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Inhaber/in</td><td class="w500">THE TRUSTEES OF PRINCETON UNIVERSITY<br>Nassau Street<br>Princeton<br>New Jersey 08544<br>US-Vereinigte Staaten v. Amerika<br><br>ELI LILLY AND COMPANY<br>Lilly Corporate Center<br>Indianapolis, Indiana 46285<br>US-Vereinigte Staaten v. Amerika</td></tr>
231
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Vertreter/in</td><td class="w500">E. Blum &amp; Co. AG<br>Patent- und Markenanwälte VSP<br>Vorderberg 11<br>8044 Zürich</td></tr>
232
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200">Datum der letzten Aktualisierung</td><td class="w500">15.10.2007</td></tr></tbody></table>
233
+ </div></fieldset><a name="anchor_history"></a><fieldset class="result"><legend><strong>Historie</strong><span class="non_printable">&nbsp;(&nbsp;<a id="id_swissreg:mainContent:link_history_show" name="id_swissreg:mainContent:link_history_show" href="#" onclick="detailShow('history'); return false;">einblenden</a>&nbsp;/&nbsp;<a id="id_swissreg:mainContent:link_history_hide" name="id_swissreg:mainContent:link_history_hide" href="#" onclick="detailHide('history'); return false;">ausblenden</a>&nbsp;)&nbsp;|&nbsp;<a id="id_swissreg:mainContent:link_register" name="id_swissreg:mainContent:link_register" href="#anchor_register">Aktueller Stand</a></span></legend><div id="history">
234
+ <table id="id_swissreg:mainContent:historyData" class="small-border">
235
+ <thead>
236
+ <tr><th class="row0">Datum</th><th class="row0">Registeränderung</th></tr></thead>
237
+ <tbody id="id_swissreg:mainContent:historyData:tbody_element">
238
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200"><strong>15.04.2005</strong></td><td class="w500"><strong>Veröffentlichung der Anmeldung</strong><br><br><strong>Vertreter/in</strong><br>E. Blum &amp; Co. Patentanwälte<br>Am Vorderberg 11<br>8044 Zürich<br>Gültig bis: 15.08.2007<br><br>publiziert im PMMBl/+pat+ 2005/7<div class="historyPrintPadding">&nbsp;</div></td></tr>
239
+ <tr class="row2" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200"><strong>29.12.2006</strong></td><td class="w500"><strong>Erteilung ESZ</strong><br><br>publiziert im PMMBl/+pat+ 2006/24<div class="historyPrintPadding">&nbsp;</div></td></tr>
240
+ <tr class="row1" onmouseout="(this.rowIndex % 2 == 0) ? this.style.backgroundColor='#F0F0F0' : this.style.backgroundColor='#E6E6E6'" onmouseover="this.style.backgroundColor='#EAF4F4'"><td class="w200"><strong>15.08.2007</strong></td><td class="w500"><strong>Firmenänderung</strong><br><br><strong>Vertreter/in</strong><br>E. Blum &amp; Co. AG
241
+ Patent- und Markenanwälte VSP<br>Vorderberg 11<br>8044 Zürich<br><br>publiziert im PMMBl/+pat+ 2007/19<div class="historyPrintPadding">&nbsp;</div></td></tr></tbody></table>
242
+ </div></fieldset><div class="non_printable"><fieldset><legend>Navigation</legend><img src="pemetrexed_detail_files/arrow_first_disable.png">&nbsp;<img src="pemetrexed_detail_files/arrow_previous_disable.png">&nbsp;<img src="pemetrexed_detail_files/arrow_next_disable.png">&nbsp;<img src="pemetrexed_detail_files/arrow_last_disable.png"></fieldset></div><fieldset class="non_printable"><legend>Aktionen</legend><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td class="w250"><span style="display: block;" class="row0">Schutztitel</span></td><td class="w450"><span style="display: block;" class="row0">Info</span></td></tr>
243
+ <tr><td class="w250"><a href="#" onclick="return oamSubmitForm('id_swissreg','id_swissreg:mainContent:sub_actions2:_idJsp126');" id="id_swissreg:mainContent:sub_actions2:_idJsp126">PDF (A4/hoch)</a></td><td class="w450">PDF zum aktuellen Schutztitel erstellen</td></tr>
244
+ <tr><td class="w250"><a id="id_swissreg:mainContent:sub_actions2:_idJsp129" name="id_swissreg:mainContent:sub_actions2:_idJsp129" href="mailto:?subject=Swissreg%20-%20Detailansicht%20zu%20ESZ-Nr.:%20C00432677/01&amp;body=%0Ahttps://www.swissreg.ch/srclient/de/spc/C00432677/01%0A%0Ahttps://www.swissreg.ch/srclient/faces/jsp/spc/sr300.jsp?language=de%26section=spc%26id=C00432677%2F01&amp;language=de&amp;section=spc&amp;id=C00432677%2F01">Versenden</a></td><td class="w450">Weblink des aktuellen Schutztitel per Email versenden</td></tr>
245
+ </tbody></table></fieldset>
246
+
247
+
248
+
249
+
250
+
251
+
252
+
253
+
254
+
255
+
256
+
257
+
258
+
259
+
260
+
261
+
262
+
263
+
264
+
265
+
266
+
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+
276
+
277
+
278
+
279
+
280
+
281
+
282
+
283
+
284
+
285
+
286
+
287
+
288
+
289
+
290
+
291
+
292
+
293
+
294
+
295
+
296
+
297
+
298
+
299
+
300
+
301
+
302
+
303
+
304
+
305
+
306
+
307
+
308
+
309
+
310
+
311
+
312
+
313
+
314
+
315
+
316
+
317
+
318
+
319
+
320
+
321
+
322
+
323
+
324
+
325
+
326
+
327
+
328
+
329
+
330
+
331
+
332
+
333
+
334
+
335
+
336
+
337
+
338
+
339
+
340
+
341
+
342
+
343
+
344
+
345
+
346
+
347
+
348
+
349
+
350
+
351
+
352
+
353
+
354
+
355
+
356
+
357
+
358
+
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+
372
+
373
+
374
+
375
+
376
+
377
+
378
+
379
+
380
+
381
+
382
+
383
+
384
+
385
+
386
+
387
+
388
+
389
+
390
+
391
+
392
+
393
+
394
+
395
+
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+
404
+
405
+
406
+
407
+
408
+
409
+
410
+
411
+
412
+
413
+
414
+ </div>
415
+ </div>
416
+
417
+
418
+
419
+ <div id="footer"><div id="ipilogo"><a id="id_swissreg:sub_detailfooter:link_footer_ige" name="id_swissreg:sub_detailfooter:link_footer_ige" href="http://www.ige.ch/de.html" target="ipi"><img src="pemetrexed_detail_files/ipilogo.png" alt="http://www.ige.ch/de.html" height="20" width="75"></a></div><a id="id_swissreg:sub_detailfooter:link_footer_top_of_page" name="id_swissreg:sub_detailfooter:link_footer_top_of_page" href="#anchor_home" title="Seitenanfang">Seitenanfang</a>&nbsp;|&nbsp;<a id="id_swissreg:sub_detailfooter:link_footer_help" name="id_swissreg:sub_detailfooter:link_footer_help" href="https://www.swissreg.ch/help/de/sr2000.shtm" accesskey="6" target="_blank" title="Hilfe">Hilfe</a>&nbsp;|&nbsp;<a href="#" onclick="javascript:window.close();return oamSubmitForm('id_swissreg','id_swissreg:sub_detailfooter:link_footer_close');" id="id_swissreg:sub_detailfooter:link_footer_close">Schliessen</a>&nbsp;|&nbsp;</div>
420
+
421
+
422
+
423
+
424
+
425
+
426
+
427
+
428
+
429
+
430
+
431
+
432
+
433
+
434
+
435
+
436
+
437
+
438
+
439
+ <div id="session"></div>
440
+
441
+ <input name="id_swissreg_SUBMIT" value="1" type="hidden"><input value="" name="id_swissreg:_link_hidden_" type="hidden"><input value="" name="id_swissreg:_idcl" type="hidden"><script type="text/javascript"><!--
442
+
443
+ function clear_id_5Fswissreg()
444
+ {
445
+ clearFormHiddenParams_id_swissreg('id_swissreg');
446
+ }
447
+
448
+ function clearFormHiddenParams_id_swissreg(currFormName)
449
+ {
450
+ var f = document.forms['id_swissreg'];
451
+ f.elements['id_swissreg:_link_hidden_'].value='';
452
+ f.elements['id_swissreg:_idcl'].value='';
453
+ f.target='';
454
+ }
455
+
456
+ clearFormHiddenParams_id_swissreg();
457
+ //--></script><input name="javax.faces.ViewState" id="javax.faces.ViewState" value="rO0ABXVyABNbTGphdmEubGFuZy5PYmplY3Q7kM5YnxBzKWwCAAB4cAAAAAN0AAExcHQAEi9qc3Avc3BjL3NyMzAwLmpzcA==" type="hidden"></form>
458
+ <!-- MYFACES JAVASCRIPT -->
459
+
460
+ <script type="text/javascript"><!--
461
+
462
+ function getScrolling()
463
+ {
464
+ var x = 0; var y = 0;if (self.pageXOffset || self.pageYOffset)
465
+ {
466
+ x = self.pageXOffset;
467
+ y = self.pageYOffset;
468
+ }
469
+ else if ((document.documentElement && document.documentElement.scrollLeft)||(document.documentElement && document.documentElement.scrollTop))
470
+ {
471
+ x = document.documentElement.scrollLeft;
472
+ y = document.documentElement.scrollTop;
473
+ }
474
+ else if (document.body)
475
+ {
476
+ x = document.body.scrollLeft;
477
+ y = document.body.scrollTop;
478
+ }
479
+ return x + "," + y;
480
+ }
481
+
482
+ //--></script>
483
+
484
+ </body></html>