Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-11-23Bug 540373: Cleanup: Remove trailing whitespace in properties filesJonah Graham1-2/+2
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-22Bug 540371: Update to EPLv2 using releng/scripts/change_to_eplv2.shJonah Graham1-3/+6
Change-Id: Ifbb1d5af2a00bd5634dea200320e8c4303ffca6c
2010-11-11Bug 329676: Open element for enumerators.Markus Schorn1-2/+3
2008-03-12Cleanup NLS keysAnton Leherbauer1-2/+1
2007-10-16Fix for 193056, macros for Open Element.Markus Schorn1-0/+2
2007-06-08bug 187629 - add note to translators in TypeInfoMessages.properties so C/C++ ↵Vivian Kong1-1/+1
keywords don't get translated
2007-05-31fix for bug 189010 - Mnemonics problem in Open Element dialogVivian Kong1-1/+1
2007-05-17bug 187629 - add note to translators in TypeInfoMessages.properties so C/C++ ↵Vivian Kong1-4/+4
keywords don't get translated
2007-05-17bug 187629 - add note to translators in TypeInfoMessages.properties so C/C++ ↵Vivian Kong1-1/+6
keywords don't get translated
2007-04-19Fix Open Element in case of modified editor, misc. improvements for ↵Anton Leherbauer1-3/+0
ElemementSelectionDialog
2007-04-18Fix for 182294: Open Type should allow to open functions and variablesAnton Leherbauer1-13/+20
2006-06-23Updated copyright dates to reflect latest in CVS.Doug Schaefer1-1/+1
2006-06-23Update Copyright dates and fix those that had no copyrights.Doug Schaefer1-1/+1
2005-06-23CPL to EPL transistion - license header update for QNXDavid Inglis1-4/+4
2004-06-25update copyrightDavid Inglis1-6/+6
2004-05-17Chris Wiebe new patch: deal with type cache scalability.Alain Magloire1-0/+1
2004-04-07New patch from Chris Wiebe to boost the performanceAlain Magloire1-3/+8
of the TypeInfo, a separation is done via the Core and UI to provide more flexibility for clients using this service.
2004-03-08New source browser for the Type hierarchy, From Chris Wiebe.Alain Magloire1-0/+19

    Back to the top