Merge lp://staging/~jdstrand/webapps-core/lp1296170 into lp://staging/webapps-core
Proposed by
Jamie Strandboge
Status: | Superseded |
---|---|
Proposed branch: | lp://staging/~jdstrand/webapps-core/lp1296170 |
Merge into: | lp://staging/webapps-core |
Diff against target: |
12 lines (+1/-1) 1 file modified
webapp-facebook/webapp-facebook.desktop (+1/-1) |
To merge this branch: | bzr merge lp://staging/~jdstrand/webapps-core/lp1296170 |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
David Barth (community) | Approve | ||
Alexandre Abreu (community) | Approve | ||
Review via email: mp+213528@code.staging.launchpad.net |
This proposal has been superseded by a proposal from 2014-03-31.
Commit message
webapp-
Description of the change
webapp-
To post a comment you must log in.
Is there a specific reason why you have something like [a-z]+ and not e.g. [a-z][a-z0-9]+ ?
Also, the url patterns specified at this level (specified in --webappUrlPatt erns) are actually a weak versions of wildcard patterns (with '?' as an extra pattern char). So full blown regexp should not really used (although not strictly forbidden). In this context maybe 'https? ://*.facebook. com/*' would match your needs a bit more (it'll be translated to 'https? ://[^\\ ./]*.facebook. com/*' ?