amphtml icon indicating copy to clipboard operation
amphtml copied to clipboard

✨ [amp-google-read-aloud-player] Adds support for the Read Aloud player Google Analytics 4.

Open mhalabi-google opened this issue 2 years ago • 2 comments

Modifies the validator of amp-google-read-aloud-player extension to also support Google Analytics 4 tracking IDs.

mhalabi-google avatar Aug 16 '22 13:08 mhalabi-google

Hey @ampproject/wg-caching! These files were changed:

extensions/amp-google-read-aloud-player/0.1/test/validator-amp-google-read-aloud-player.html
extensions/amp-google-read-aloud-player/0.1/test/validator-amp-google-read-aloud-player.out
extensions/amp-google-read-aloud-player/validator-amp-google-read-aloud-player.protoascii

Hey @alanorozco! These files were changed:

extensions/amp-google-read-aloud-player/amp-google-read-aloud-player.md

amp-owners-bot[bot] avatar Aug 16 '22 13:08 amp-owners-bot[bot]

@MichaelRybak Thank you for the review. Please take another look.

mhalabi-google avatar Aug 17 '22 12:08 mhalabi-google

Validator tests are failing. Happy to merge once fixed

alanorozco avatar Aug 25 '22 15:08 alanorozco

@alanorozco The validator error seems redundant ("ValidatorRulesMakeSense : value_regex_casei must have unicode named groups"). The expression (tracking ID) should only support English letters.

What do you suggest to fix this?

mhalabi-google avatar Aug 28 '22 09:08 mhalabi-google

@mhalabi-google I'd suggest using [A-Z0-9] instead of \w.

The test ensures that every \w is followed by \p{L}\p{N}. Although excessive, it prevents developer from forgetting to support Unicode when adding a validator rule. For details see CL/166781166.

MichaelRybak avatar Aug 29 '22 15:08 MichaelRybak

@mhalabi-google I'd suggest using [A-Z0-9] instead of \w.

The test ensures that every \w is followed by \p{L}\p{N}. Although excessive, it prevents developer from forgetting to support Unicode when adding a validator rule. For details see CL/166781166.

Done.

mhalabi-google avatar Aug 30 '22 09:08 mhalabi-google

@alanorozco Tests are passing now. Thank you for the help!

mhalabi-google avatar Aug 30 '22 10:08 mhalabi-google

@alanorozco Can you please merge this to head?

mhalabi-google avatar Sep 11 '22 13:09 mhalabi-google