@@ -186,7 +186,7 @@ def detect(location):
186186 (r'[Cc]ommitters\.??' , 'COMMIT' ),
187187 # same for maintainers.
188188 (r'^([Mm]aintainers?\.?|[Dd]evelopers?\.?)$' , 'MAINT' ),
189-
189+
190190 # same for developed, etc...
191191 (r'^(([Rr]e)?[Cc]oded|[Mm]odified|[Mm]ai?nt[ea]ine(d|r)|[Ww]ritten|[Dd]eveloped)$' , 'AUTH2' ),
192192 # author
@@ -213,7 +213,7 @@ def detect(location):
213213
214214 # Portions copyright .... are worth keeping
215215 (r'[Pp]ortions?' , 'PORTIONS' ),
216-
216+
217217 # in dutch/german names, like Marco van Basten, or Klemens von Metternich
218218 # and Spanish/French Da Siva and De Gaulle
219219 (r'^(([Vv][ao]n)|[Dd][aeu])$' , 'VAN' ),
@@ -280,7 +280,7 @@ def detect(location):
280280]
281281
282282# Comments in the Grammar are lines that start with #
283- grammar = """
283+ grammar = """
284284 COPY: {<COPY>}
285285 YR-RANGE: {<YR>+ <CC>+ <YR>}
286286 YR-RANGE: {<YR> <DASH>* <YR|CD>+}
@@ -426,6 +426,10 @@ def detect(location):
426426
427427 COPYRIGHT2: {<COPY> <COPY> <YR-RANGE> <NN> <AUTH>}
428428
429+ # Copyright 1999, 2000 - D.T.Shield.
430+ # Copyright (c) 1999, 2000 - D.T.Shield.
431+ COPYRIGHT2: {<COPY> <COPY>? <YR-RANGE> <DASH> <NN>}
432+
429433 COPYRIGHT2: {<COPY> <COPY> <YR-RANGE> <BY> <NN> <NN> <NAME>}
430434 COPYRIGHT2: {<COPY> <YR-RANGE> <BY> <NN> <NN> <NAME>}
431435
0 commit comments