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

15 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
Vivian Kong
5e92597120 bug 254307 - branding 2009-05-26 14:48:10 +00:00
Vivian Kong
c4d5a8d334 externalize cheat sheet strings (bug 234147) 2008-05-27 14:30:06 +00:00
Doug Schaefer
2fd25239b8 EPL'ing the CDT. 2005-06-27 03:46:51 +00:00
Tanya-Marise De Sousa
bbb4ddf501 CDT User Guide files have been restructured
to facilitate contributions by the open source community.
2003-11-28 21:50:02 +00:00
Tanya-Marise De Sousa
0c5318d476 October 1, 2003, Doc freeze version. 2003-10-01 19:56:53 +00:00
Tanya-Marise De Sousa
10fcbc9c55 October 1, 2003 replaced C/C++ editor preferences F1 IDs for the General,
Annotations, Colors and Content Assist pages.
2003-10-01 16:27:10 +00:00
Tanya-Marise De Sousa
aa1f86e596 September 29, 2003 updated C/C++ editor preferences F1 IDs for the General,
Annotations, Colors and Content Assist pages.
2003-09-29 15:50:44 +00:00
Tanya-Marise De Sousa
563417b2eb September 26, 2003 delivery 2003-09-26 22:02:32 +00:00
Tanya-Marise De Sousa
c20c27d234 September 25, 2003 delivery 2003-09-25 20:10:11 +00:00
Tanya-Marise De Sousa
558e9619c2 September 23, 2003 delivery 2003-09-23 20:34:04 +00:00
Tanya-Marise De Sousa
e5b1373aa6 July 18, 2003 build of CDT help. 2003-07-21 15:33:12 +00:00
Sebastien Marineau
689e70ecde Add build.properties to automate builds for feature
Eclipse'ify the plugin.properties and remove Rational references
2003-05-01 12:54:23 +00:00
Tanya-Marise De Sousa
98ee69d34c First submission of CDT Help. 2003-04-29 18:59:35 +00:00