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

12 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
Sergey Prigogin
cace4b374b Normalized extension point labels. 2012-08-24 10:14:48 -07:00
Alena Laskavaia
11b9fcea4f Bug 329430: added extension to replace default icons for codan with custom. Now need the actual icons. 2011-03-18 02:14:26 +00:00
Alena Laskavaia
3d24fe63f2 externalized strings 2010-08-17 00:39:18 +00:00
Vivian Kong
912f531ec4 Bug 315439 Fix up copyright 2010-06-03 17:01:53 +00:00
Alena Laskavaia
26dc9d8c68 Externalized string - fixed issues 2010-05-08 01:22:37 +00:00
Alena Laskavaia
a54f3f21a7 - added javadoc, externalized strings, fixed copyright 2010-05-01 00:41:56 +00:00
Alena Laskavaia
56c7ec129c - command contribution implemented properly 2010-04-21 01:40:15 +00:00
Alena Laskavaia
0e5d4a03b0 [306658] - properties subpage - fixed enablemetn and renamed 2010-04-07 02:11:59 +00:00
Vivian Kong
d69cdc0dbb Bug 306725 - Missing plugin from Coden feature 2010-03-22 15:34:15 +00:00
Alena Laskavaia
72ac8f6242 [306658] - Property page for codan shows up on non C projects and should be under general C/C++ category 2010-03-22 01:48:19 +00:00