From 153c1190728b752c81c2f2f836fdd397e037938a Mon Sep 17 00:00:00 2001 From: Tor Norbye Date: Fri, 30 Sep 2011 21:01:06 -0700 Subject: Fix XML formatting from outside the editor (Source > Format) This changeset fixes this issue: 20450: Source->Format for XML files in Project Explorer in 14-preview applies old XML rules instead of new Android-aware ones Basically, the Eclipse XML support does not consult the StructuredTextViewerConfigurationXML configuration when formatting files. To work around this, this changeset overrides the format processor defined for XML files and redirects to the ADT custom formatter when the option to use a custom formatter is set. Unfortunately, setting the formatProcessor in the ADT plugin does not work, because it turns out that the WTP code to process layer registrations processes plugins in alphabetical order of plugin names (rather than say plugin dependency order), and as a result, the WTP registration is processed later than the ADT one (because org.eclipse > com.android) and it clobbers our registration. To work around this, this changeset adds a *new* plugin, an overlay for ADT which is named "overlay.com.android.eclipse.(etc)" which sorts alphabetically later than org.eclipse. The plugin is basically empty (it just provides a registration of the ADT format processor), and it is registered as just a part of the ADT plugin so it should not be exposed to users directly. Change-Id: I2af2bc1e61e758c36243e4ac7236f676266cc665 --- eclipse/buildConfig/allElements.xml | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'eclipse/buildConfig') diff --git a/eclipse/buildConfig/allElements.xml b/eclipse/buildConfig/allElements.xml index 303c53d..da4a57d 100644 --- a/eclipse/buildConfig/allElements.xml +++ b/eclipse/buildConfig/allElements.xml @@ -34,6 +34,11 @@ + + + + + @@ -70,6 +75,10 @@ + + + + -- cgit v1.1