Android-x86
Fork
Donation

  • R/O
  • HTTP
  • SSH
  • HTTPS

sdk: List of commits

sdk


RSS
Rev. Time Author
9f9462f 2011-10-05 07:38:44 Raphael

SDK: Use a different repository-N.xml for updating. Do not merge.

(cherry picked from commit 8f4710850b3a01d6e5f1188440c59d6999646858)

Change-Id: I5d0c733267f04e4ad386ae3ae6853da2ecf9de15

95c1b11 2011-10-05 07:35:30 Raphael

Merge "SDK: use repository-N.xml by default."

46b8639 2011-10-05 07:33:15 Raphael

SDK: use repository-N.xml by default.

(This is part of Change I566b6945 but I had forgotten
to amend & upload, grrr.)

Change-Id: Ic494179481346a2eda0f56327ddac0f123bf4538

655ebaf 2011-10-05 07:30:16 Raphael

Merge "SDK: Use a different repository-N.xml for updating."

53c797d 2011-10-05 07:05:48 Raphael

SDK: revert c649a334 and fix missing \n properly. Do not merge.

(cherry picked from commit b4ea99769f2bc149ac3a3fef77c49b7b4b83fe90)

Change-Id: Ifee9c7706f29f8ab2968c9277bdd293182df0900

3be4416 2011-10-05 07:04:46 Raphael

Merge "SDK: revert c649a334 and fix missing \n properly."

8f47108 2011-10-05 06:27:04 Raphael

SDK: Use a different repository-N.xml for updating.

Change-Id: I566b6945b7d31c3bfe52b834014beb3f37a098d8

3275196 2011-10-05 05:56:46 Raphael

Fix ADT build

Change-Id: If0411f65bb523e5b26d53c620df666937f8467ca

6a55042 2011-10-05 05:40:16 Xavier Ducrohet

Make source.prop more important than build.prop when parsing platforms.

Change-Id: I715a7503a7be2b28cd89bd441b8cbb5ee620ccac

b4ea997 2011-10-05 05:25:25 Raphael

SDK: revert c649a334 and fix missing \n properly.

Change-Id: I4affda9be00c37c4a801816625f57f7eda585ef4

581b1e3 2011-10-05 04:36:38 Tor Norbye

Fix build

Change-Id: Ie4e5dcc64ba8e341f2229dce77b07effbe9443ba

6ebe3b1 2011-10-05 01:49:24 Tor Norbye

Formatting fix: ensure no double blank new lines between elements

Change-Id: Id41a5543b4e4639eb8c9943463587168c90f9ff4

ad27217 2011-10-05 01:45:41 Tor Norbye

Merge "Look up space width from settings instead of hardcoded to 4"

f8f07a9 2011-10-05 01:45:26 Tor Norbye

Merge "Fix XML formatting from outside the editor (Source > Format)"

efdd87a 2011-10-04 23:01:34 The Android Automerger

merge in ics-release history after reset to master

e32cb5a 2011-10-04 12:39:44 Raphael

Merge "SDK: Fix bug that prevents repo XSD upgrades"

3016b62 2011-10-04 12:39:38 Raphael

Merge "SDK: change SDK_TEST_URLS behavior"

086c7e5 2011-10-04 09:08:24 Tor Norbye

Look up space width from settings instead of hardcoded to 4

Change-Id: Ib84a238d8586cc03915ea5dc394f2309f58d7052

e3a47ab 2011-10-04 08:43:36 Raphael

SDK: Fix bug that prevents repo XSD upgrades

This fixes the bug in the current code.
We're going to switch to a different upgrade mechanism,
rendering this code useless, but I'd still have this
checked in for the record: the issue is that the
temporary node is mixed up and the attributes use the
element name instead of their attribute names.

Change-Id: I3abcfd476494ee2ddb8b75789b346e86556d8d85

27db0dd 2011-10-04 08:31:41 Tor Norbye

am 2c07fc34: (-s ours) XML Comment Formatting Fixes. DO NOT MERGE.

* commit '2c07fc348d85836bff4d1f9ca656d96898a0833c':
XML Comment Formatting Fixes. DO NOT MERGE.

716504e 2011-10-04 08:30:29 Tor Norbye

am 22b38a19: (-s ours) Ensure that deletion hook is only run on valid parents. DO NOT MERGE.

* commit '22b38a190fa658924a665989d99dc508d3e88739':
Ensure that deletion hook is only run on valid parents. DO NOT MERGE.

2c07fc3 2011-10-04 08:28:08 Tor Norbye

XML Comment Formatting Fixes. DO NOT MERGE.

This changeset fixes issue 20452 related to XML comment
handling. There are several changes.

First it fixes a truncation bug where the last character in a comment
could get erased.

Second it makes sure we don't end up with double blank lines, since
there were cases where the comment formatter would insert a newline
(to preserve newlines after comments in the original document) and a
subsequent element or close tag would also insert a newline (which is
where the normal blank lines are added). Now the code will peek at the
write buffer to make sure we haven't already added a blank line.

Third, it attempts to handle multiline comments a bit better such that
the code which preserves indentation of the first comment line will
dedent down to the minimum indentation level of the block comment.
This means that we will format
<!-- First
Second -->
into
<!--
First
Second
-->
instead of
<!--
First
Second
-->
as the code did up until now. (The current handling was there to make
<!-- This is
a comment -->
format into
<!--
This is
a comment
-->
)

Unit tests.

Change-Id: I7201b55a2c824c3c0b43287e853bc9b75d74ed7f

22b38a1 2011-10-04 08:27:46 Tor Norbye

Ensure that deletion hook is only run on valid parents. DO NOT MERGE.

There's now a "deletion hook" for ViewRules where they get a chance to
clean up after a set of children have been deleted. This changeset
guards against the case where the parent reference was null.

Change-Id: Ib2cfd0543ff55726ff488b57262267f610373639

41359a1 2011-10-04 07:37:55 Tor Norbye

Merge "XML Comment Formatting Fixes"

70164aa 2011-10-04 07:34:45 Raphael

SDK: change SDK_TEST_URLS behavior

When SDK_TEST_URLS is set, it prevents the default
sources from being loaded. This makes it easier to
test just a new site.

Change-Id: I463759ca43c7836e81524c2eac4dad769bc7032c

153c119 2011-10-04 06:35:27 Tor Norbye

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

a4fa35c 2011-10-04 06:20:17 Tor Norbye

Merge "Ensure that deletion hook is only run on valid parents"

9d1535a 2011-10-04 06:19:02 Tor Norbye

XML Comment Formatting Fixes

This changeset fixes issue 20452 related to XML comment
handling. There are several changes.

First it fixes a truncation bug where the last character in a comment
could get erased.

Second it makes sure we don't end up with double blank lines, since
there were cases where the comment formatter would insert a newline
(to preserve newlines after comments in the original document) and a
subsequent element or close tag would also insert a newline (which is
where the normal blank lines are added). Now the code will peek at the
write buffer to make sure we haven't already added a blank line.

Third, it attempts to handle multiline comments a bit better such that
the code which preserves indentation of the first comment line will
dedent down to the minimum indentation level of the block comment.
This means that we will format
<!-- First
Second -->
into
<!--
First
Second
-->
instead of
<!--
First
Second
-->
as the code did up until now. (The current handling was there to make
<!-- This is
a comment -->
format into
<!--
This is
a comment
-->
)

Unit tests.

Change-Id: Id98faadf3731b82880b37ff852c7c0787bb196f8

9664938 2011-10-03 23:01:16 The Android Automerger

merge in ics-release history after reset to master

0ceec0d 2011-10-01 13:35:21 Tor Norbye

am 390b825e: (-s ours) Refactoring quick fix adjustments to caret and selection handling. DO NOT MERGE

* commit '390b825e915b0c37825d2f3941197bd3abe3394b':
Refactoring quick fix adjustments to caret and selection handling. DO NOT MERGE

Show on old repository browser