summaryrefslogtreecommitdiffstats
path: root/common
Commit message (Collapse)AuthorAgeFilesLines
* Bug 2330111Paul Westbrook2010-01-212-498/+0
| | | | | | | | Make NumberPicker public Made setCurrent() more robust, as the value needs to be within the range specified earlier. setCurrent() will now throw an exception if the specified doesn't fall in the range
* DomainNameValiator: Remove workaroundMakoto Onuki2010-01-201-15/+6
| | | | | | | Remove the workaround introduced in CL 68137-p9. Validation should fail when a certification can't be parsed. Bug: 2369689
* Addign more tests for DomainNameValidator.Makoto Onuki2010-01-198-10/+182
| | | | | | Added tests that use actual certificates. See bug:2369689 for background.
* allow + in usernamesFred Quintana2010-01-141-1/+1
|
* Moved DomainNameChecker to android common.Makoto Onuki2010-01-124-0/+1113
| | | | | | | | - Moved DomainNameChecker from android.net.http to android common, and renamed to DomainNameValidator. - Added a simplified version of DNParser, which DomainNameValidator uses instead of X509Name in order to extract Subject Name from a certificate. - Added unit tests for DomainNameChecker and DNParser. There's a suspicious comment in DomainNameChecker saying something like "X509Certificate fails to parse a certificate when a subject alt name begins with '*'". I think we should fix it if it's really the case -- otherwise certificates with the wildcard wouldn't work. I'll see if it's true after submitting this patch.
* change remaining frameworks/base Gservices to Secure settingsDoug Zongker2010-01-071-13/+3
| | | | Change-Id: I61bdb05a2526523700c2833154d5a4133881ef10
* Move various utility classes to android-commonTom Taylor2009-12-184-0/+1557
| | | | | | | In the process of making Mms unbundled, copy a few non-public-API classes into the android-common library. The Mms app now uses this library. The next step is to update the other apps that use these classes and then delete the classes from their original location.
* Unbundling workPaul Westbrook2009-12-145-0/+1203
| | | | | | Moved AndroidHttpClient, Rfc822InputFilter, Rfc822Validator NumberPicker, NumberPickerButton to android-common ---
* Add OperationScheduler (and test) to the common static library;Dan Egnor2009-11-214-14/+430
| | | | includes new string parsing function (and test).
* Solve the mutual interdependency problem between common and framework:Dan Egnor2009-11-182-3/+4
| | | | | | | | Have framework include the common source files directly when building, then build common as a static library separately (depending on framework, like everything else). Goes with a companion change to build/core/pathmap.mk.
* Attempt to fix the build server build: make the common libraryDan Egnor2009-11-181-0/+2
| | | | not depend on the framework library (for now, at least).
* Create android-common static library which gets included in frameworks.jar,Dan Egnor2009-11-185-0/+411
but can also be used by unbundled apps. Move android.text.util.Regex there as a starting example, renamed to a more sensible (?) com.android.common.Patterns. Set up a corresponding test package, and move RegexTest (to PatternsTest). Update clients.