@@ -791,6 +791,7 @@ def build_detection_from_node(
791791 (r'^A11yance' , 'NNP' ),
792792 (r'^Fu$' , 'NNP' ),
793793 (r'^W3C\(r\)$' , 'COMP' ),
794+ (r'^TeX$' , 'NNP' ),
794795
795796 # Three or more AsCamelCase GetQueueReference, with some exceptions
796797 (r'^(?:OpenStreetMap|AliasDotCom|AllThingsTalk).?$' , 'NAME' ),
@@ -1633,6 +1634,9 @@ def build_detection_from_node(
16331634 (r'^Adapted$' , 'JUNK' ),
16341635 (r'^Thumb$' , 'NN' ),
16351636
1637+ # SEEN IN Copyright (c) 1997 Dan error_act ([email protected] ) 1638+ (r'^error_act$' , 'NN' ),
1639+
16361640 # alone this is not enough for an NNP
16371641 (r'^Free$' , 'NN' ),
16381642
@@ -1687,6 +1691,7 @@ def build_detection_from_node(
16871691 (r'^Compression$' , 'NN' ),
16881692 (r'^Letter$' , 'NN' ),
16891693 (r'^Moved$' , 'NN' ),
1694+ (r'^Phone$' , 'NN' ),
16901695
16911696 # dual caps that are not NNP
16921697 (r'^Make[A-Z]' , 'JUNK' ),
@@ -1790,6 +1795,11 @@ def build_detection_from_node(
17901795 (r'various\.?$' , 'NNP' ),
17911796 (r'SuSE$' , 'COMPANY' ),
17921797 (r'Suse$' , 'COMPANY' ),
1798+ (r'\(Winbond\),?$' , 'COMP' ),
1799+
1800+ # copyright : (C) 2002 by karsten wiese
1801+ (r'karsten$' , 'NNP' ),
1802+ (r'wiese$' , 'NNP' ),
17931803
17941804 # treat Attributable as proper noun as it is seen in Author tags such as in:
17951805 # @author not attributable
@@ -1823,8 +1833,10 @@ def build_detection_from_node(
18231833 (r'^.+,Inc\.$' , 'COMPANY' ),
18241834
18251835 (r'^[Cc]ompany[,\.]?\)?$' , 'COMP' ),
1826- (r'^Limited[,\.]??$' , 'COMP' ),
1827- (r'^LIMITED[,\.]??$' , 'COMP' ),
1836+ (r'^Limited[,\.]?$' , 'COMP' ),
1837+ (r'^LIMITED[,\.]?$' , 'COMP' ),
1838+
1839+ (r'^COMPANY,LTD$' , 'COMP' ),
18281840
18291841 # Caps company suffixes
18301842 (r'^INC[\.,\)]*$' , 'COMP' ),
@@ -1874,6 +1886,9 @@ def build_detection_from_node(
18741886 # Iceland
18751887 (r'^(ehf|hf|svf|ohf)\.,?$' , 'COMP' ),
18761888
1889+ # company abbreviations
1890+ (r'^(SPRL|srl)[\.,]?$' , 'COMP' ),
1891+
18771892 # company suffix : AS: this is frequent beyond Norway.
18781893 (r'^AS' , 'CAPS' ),
18791894 # that's the ASF, not some legal form
@@ -2412,6 +2427,9 @@ def build_detection_from_node(
24122427 # Project contributors
24132428 COMPANY: {<COMP> <CONTRIBUTORS>} #256
24142429
2430+ # Copyright (C) 2013 Ideas on board SPRL
2431+ COMPANY: {<NNP> <JUNK> <NN> <COMP>} #259
2432+
24152433 COMPANY: {<LINUX>? <COMP>+} #260
24162434
24172435 # Nokia Corporation and/or its subsidiary(-ies)
@@ -2437,12 +2455,22 @@ def build_detection_from_node(
24372455 # NAME-YEAR starts or ends with a YEAR range
24382456 NAME-YEAR: {<YR-RANGE> <NNP> <NNP>+} #350
24392457
2458+ COPYRIGHT: {<COPY> <YR-RANGE> <NNP> <NN> <NNP> <NNP> <NNP> <EMAIL>} #350.1
2459+
2460+ # Copyright (C) 1995-06 ICP vortex, Achim Leubner
2461+ COPYRIGHT: {<COPY> <COPY> <YR-RANGE> <CAPS> <NN> <NNP> <NNP> } #350.2
2462+
24402463 # Academy of Motion Picture Arts
24412464 NAME: {<NNP|PN>+ <NNP>+} #351
24422465
24432466 # Distributed Management Task Force
24442467 NAME: {<NN> <NNP>{3}} #881111
24452468
2469+ # Rudolf Marek <[email protected] > 2470+ # David Hubbard <[email protected] > 2471+ # Daniel J Blueman <[email protected] > 2472+ # NAME: { <NAME> <EMAIL> } #351.0
2473+
24462474 # @author <a href="mailto:[email protected] ">Stephane Hillion</a> 24472475 NAME: { <NN>? <NN>? <EMAIL> <NAME> } #351.1
24482476
@@ -3000,7 +3028,7 @@ def build_detection_from_node(
30003028 AUTHOR: {<BY|MAINT> <NAME-EMAIL> <YR-RANGE>?} #26382
30013029
30023030 # Russ Dill <[email protected] > 2001-2003 3003- COPYRIGHT: {<NAME-EMAIL> <YR-RANGE>} #2638
3031+ # COPYRIGHT: {<NAME-EMAIL> <YR-RANGE>} #2638
30043032
30053033 # (C) 2001-2009, <s>Takuo KITAME, Bart Martens, and Canonical, LTD</s>
30063034 COPYRIGHT: {<COPYRIGHT> <NNP> <COMPANY>} #26381
0 commit comments