[Webkit-unassigned] [Bug 31167] Remove the "this is part of the KDE project" comments from code

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Nov 5 09:33:18 PST 2009


https://bugs.webkit.org/show_bug.cgi?id=31167





--- Comment #2 from Chris Jerdonek <chris.jerdonek at gmail.com>  2009-11-05 09:33:19 PDT ---
The attached patch is somewhat large (~150 KB).  However, there are ways to
make reviewing it easier.

For example, to verify quickly that no substantive lines have been deleted, you
can grep the following regular expression in the diff using a text editor:

^-[^-]

To generate the patch, I used the following grep/sed command from the
command-line (along with 3 or 4 touch-ups):

grep --regexp="[^@a-z_\(]KDE[^@a-z_]" --recursive --include=*.{h,cpp,idl,pm}
--files-with-matches WebKit | 
xargs sed -i '' -e '
# Look for "...KDE..." -- ruling out things like "kde@", "@kde", etc.
/[^@a-z_\(]KDE[^@a-z_]/ {
# If found, read in the next two lines.
N
N
# Then delete everything except for the last-read line.
s/.*\n//
}' 

Note that I also removed the KDE comment from the following file which does not
have an h/cp/idl/pm extension--

WebCore/css/maketokenizer

Thanks a lot.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list