-
Notifications
You must be signed in to change notification settings - Fork 9
/
strip-cvs-keywords.test.txt
86 lines (66 loc) · 2.34 KB
/
strip-cvs-keywords.test.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Test cases for keyword stripping for the Drupal Git migration.
# First, the standard version
// $Id$
# An expanded version of the same
// $Id: bloggit.module,v 1.11 2010/09/17 19:31:59 mikl Exp $
# A less common variation
# $Id$
# An expanded version of that.
# $Id: bloggit.module,v 1.11 2010/09/17 19:31:59 mikl Exp $
# Long quotes
/** $Id$ **/
# Expanded long quotes
/* $Id: bloggit.module,v 1.11 2010/09/17 19:31:59 mikl Exp $*/
# On the same line as the PHP tag
<?php // $Id$
# On the same line as the PHP tag, expanded
<?php // $Id: bloggit.module,v 1.11 2010/09/17 19:31:59 mikl Exp $
# More variations of PHP tags.
<?php // $id$
<?php # $iD$
<?php /*** $Id: asdfasdf$
# Short PHP tags (must die)
<? //$Id$
<? # $Id$
<? // $Id: bloggit.module,v 1.11 2010/09/17 19:31:59 mikl Exp $
# Id preceeded by nothing or whitespace.
$Id: bloggit.module,v 1.11 2010/09/17 19:31:59 mikl Exp $
$Id: bloggit.module,v 1.11 2010/09/17 19:31:59 mikl Exp $
$Id$
$Id$
# Potential error - PHP variables starting with id;
# These should stay in place.
$id_test = $testing123;
$id = $class->pcid;
$id = 'test';
->condition('{' . $opt_table . "}.$id", $id_value)
->condition($id, $id_value)
->condition($id, $form_state['values']['id'])
# Info-file style ID keyword.
;$Id: bloggit.module,v 1.11 2010/09/17 19:31:59 mikl Exp $
; $Id: bloggit.module,v 1.11 2010/09/17 19:31:59 mikl Exp $
;$Id$
; $Id$
# Id in XML/HTML comment
<!-- $Id$ -->
<!-- $Id: bloggit.module,v 1.11 2010/09/17 19:31:59 mikl Exp $ -->
# Id in SQL file
-- $Id$
# Unterminated keywords
# $Id
// $Id:
$Id
$Id:
# Wierd edge cases
{* $Id: comment.tpl,v 1.1 2007/05/13 11:28:31 yojoe Exp $ *}
/* $Id: typography.css,v 1.1 2009/03/12 05:25:06 zinv Exp $ */
/* $Id: theme-gallery-body.css,v 1.1 2009/07/25 01:01:22 jingjang Exp $
# An edge case from core modules/block/block.tpl.php
# Should NOT be removed.
* - $id: Same output as $block_id but independent of any block region.
# Hall of shame
# Cases we cannot safely remove
"Project-Id-Version: Danish Translation of Drupal (webform.module) $Id: da.po,v 1.1 2010/07/30 05:04:35 fizk Exp $\n"
@version $Id: xajaxControl.inc.php,v 1.1 2009/04/13 18:00:00 vitzo Exp $
'line' => '// $Id: classes.inc,v 1.3 2010/08/11 10:09:52 sdboyer Exp $',
'#value' => '<p>$Id: tweetbacks.module,v 1.3 2009/01/14 03:13:46 cscharabaruk Exp $</p>',