Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7fd7534b authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change I5101c2b1 into eclair-mr2

* changes:
  Extend the date time to handle the case where the month is in the full name.
parents bf13850b 5101c2b1
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -50,13 +50,15 @@ public final class HttpDateTime {
     * Wdy Mon DD HH:MM:SS YYYY GMT
     * 
     * HH can be H if the first digit is zero.
     * 
     * Mon can be the full name of the month.
     */
    private static final String HTTP_DATE_RFC_REGEXP =
            "([0-9]{1,2})[- ]([A-Za-z]{3,3})[- ]([0-9]{2,4})[ ]"
            "([0-9]{1,2})[- ]([A-Za-z]{3,9})[- ]([0-9]{2,4})[ ]"
            + "([0-9]{1,2}:[0-9][0-9]:[0-9][0-9])";

    private static final String HTTP_DATE_ANSIC_REGEXP =
            "[ ]([A-Za-z]{3,3})[ ]+([0-9]{1,2})[ ]"
            "[ ]([A-Za-z]{3,9})[ ]+([0-9]{1,2})[ ]"
            + "([0-9]{1,2}:[0-9][0-9]:[0-9][0-9])[ ]([0-9]{2,4})";

    /**