1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 01:06:01 +02:00
Commit graph

14 commits

Author SHA1 Message Date
Jonah Graham
ff75ae80fa Bug 540373: Cleanup: Remove trailing whitespace in properties files
Command used:
# Remove space at eol in comments
find .  ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/^(#.*)[ \t]+$/\1/' {} +
# Remove space at eol in blank lines
find .  ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/^[ \t]+$//' {} +
# Replace escaped spaces at eol with unicode
find .  ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\\ $/\1\\u0020/' {} +
# Replace unescaped spaces at eol with unicode
find .  ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\]) $/\1\\u0020/' {} +
# Replace escaped tabs at eol with unicode
find .  ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\\\t$/\1\\u0009/' {} +
# Replace unescaped tabs at eol with unicode
find .  ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/([^\\])\t$/\1\\u0009/' {} +
# Stage all changes
git add -A .
# trim any remaining whitespace and then identify and fixup
# manually
# Only dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/MessagesForDebugVM.properties
# needed this due to missing newline at end of the file
find .  ! -path "./.git/*" -type f -name *.properties -exec sed -i -E 's/[ \t]+$//' {} +

Change-Id: I858f16891fe001f4f7e62d5a4f904146e891cd39
2018-11-23 07:52:26 +00:00
Jonah Graham
f70a8b35c1 Bug 540371: Update to EPLv2 using releng/scripts/change_to_eplv2.sh
Change-Id: Ifbb1d5af2a00bd5634dea200320e8c4303ffca6c
2018-11-22 20:31:51 +00:00
Jesse Weinstein
07fcd9213c Bug 349248: Fix even more user-visible CDT refs
Change-Id: If212f90e96dc9f90456239ca6f7b8f319caf977e
Reviewed-on: https://git.eclipse.org/r/11372
Reviewed-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>
IP-Clean: Sergey Prigogin <eclipse.sprigogin@gmail.com>
Tested-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>
2013-03-21 17:02:11 -04:00
Andrew Gvozdev
90353a19c1 bug 398681: CDT does not understand some of xlC diagnostic messages 2013-01-21 17:33:29 -05:00
Andrew Gvozdev
d731ae4f20 bug 330941: Xlc error parser can't figure out that file name is in quotes 2010-11-23 17:09:20 +00:00
Andrew Gvozdev
8cdd50422c bug 323445: Generate cross linked message for redeclaration xlc error 2010-09-24 22:13:15 +00:00
Andrew Gvozdev
739f1e403e bug 321160: Confusing message about redefined macro from xlc error parser 2010-07-28 22:57:19 +00:00
Vivian Kong
5fad5a3b0c mark non-translatable strings as non-translatable in properties file 2010-04-26 18:02:39 +00:00
Andrew Gvozdev
2dc29833ff bug 308322: Converted to RegexErrorParser 2010-04-07 16:04:56 +00:00
Vivian Kong
b7417b69cb update copyrights 2009-05-27 15:26:54 +00:00
Vivian Kong
afdcaeb52e Update provider name 2009-05-14 21:14:07 +00:00
Chris Recoskie
1ebafa1b12 minor changes to plugin names 2006-08-31 15:46:09 +00:00
Chris Recoskie
0a054c0a7d add copyright header 2006-07-31 11:42:31 +00:00
Chris Recoskie
b87f4ffff2 initial commit of xlC error parser 2006-07-24 18:34:31 +00:00