Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dawehner/amp-library #1

Merged
merged 37 commits into from
May 16, 2017
Merged

dawehner/amp-library #1

merged 37 commits into from
May 16, 2017

Commits on Sep 23, 2016

  1. Configuration menu
    Copy the full SHA
    49b376e View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2016

  1. Add amp-ad support. Regenerated validator-generated.php file with cus…

    …tom script tags from:
    
    https://github.com/ampproject/amphtml/blob/master/extensions/amp-ad/0.1/validator-amp-ad.protoascii
    
    Regenerating the validator was necessary to avoid flagging the script tag for <amp-ad> in <head> as an error
    FuzzyTree committed Sep 24, 2016
    Configuration menu
    Copy the full SHA
    0f71259 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2016

  1. Configuration menu
    Copy the full SHA
    ab6eea9 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2016

  1. Configuration menu
    Copy the full SHA
    2f9a7ed View commit details
    Browse the repository at this point in the history
  2. Fix unit tests

    FuzzyTree committed Oct 5, 2016
    Configuration menu
    Copy the full SHA
    c58b205 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2016

  1. Configuration menu
    Copy the full SHA
    3339a46 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    262b834 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2017

  1. Update README.md

    removed duplicate word "output"
    Cashewz authored Jan 13, 2017
    Configuration menu
    Copy the full SHA
    1dac838 View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2017

  1. Configuration menu
    Copy the full SHA
    c1169e5 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2017

  1. fix typo

    dawehner committed Feb 8, 2017
    Configuration menu
    Copy the full SHA
    c095c0d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dda5e38 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d10e691 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3f4990f View commit details
    Browse the repository at this point in the history
  5. Merge pull request Lullabot#144 from FuzzyTree/amp-img-fixed-layout

    Add img_max_fixed_layout_width option
    sebastianbenz authored Feb 8, 2017
    Configuration menu
    Copy the full SHA
    ea94a03 View commit details
    Browse the repository at this point in the history
  6. Merge pull request Lullabot#145 from FuzzyTree/amp-ad

    Add amp-ad script to <head> if needed
    sebastianbenz authored Feb 8, 2017
    Configuration menu
    Copy the full SHA
    86f3254 View commit details
    Browse the repository at this point in the history
  7. Merge pull request Lullabot#146 from FuzzyTree/facebook-photos

    Support Facebook posts with photo url schemas
    sebastianbenz authored Feb 8, 2017
    Configuration menu
    Copy the full SHA
    e01d6b0 View commit details
    Browse the repository at this point in the history
  8. Merge pull request Lullabot#149 from FuzzyTree/amp-img-height

    Bug fix: height check on setResponsiveImgHeightAndWidth
    sebastianbenz authored Feb 8, 2017
    Configuration menu
    Copy the full SHA
    19fa863 View commit details
    Browse the repository at this point in the history
  9. Merge pull request Lullabot#152 from mayrop/master

    Fix for the Youtube code getter
    sebastianbenz authored Feb 8, 2017
    Configuration menu
    Copy the full SHA
    fdf242a View commit details
    Browse the repository at this point in the history
  10. Merge pull request Lullabot#154 from Cashewz/patch-1

    Update README.md
    sebastianbenz authored Feb 8, 2017
    Configuration menu
    Copy the full SHA
    fbfe225 View commit details
    Browse the repository at this point in the history
  11. Merge pull request Lullabot#163 from renzit/master

    Add amp-sidebar component mapping on context.php
    sebastianbenz authored Feb 8, 2017
    Configuration menu
    Copy the full SHA
    b91b246 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2017

  1. Badly formatted youtube URLs cause a parse error

    The DOM parser throws away invalid HTML.
    
    When you have http://youtube.com/embed/_FlV6pgwlrk&list=123 then
    the `IframeYouTubeTagTransformPass::getYouTubeCode()` will match the
    ID as `_FlV6pgwlrk&list=123` but since the ampersand isn't in a
    proper HTML format (`&amp;`), then DOM will throw this whole
    element away.
    
    I wrote a test to make sure noone breaks this in the future.
    Sigurdur Gudbrandsson committed Feb 9, 2017
    Configuration menu
    Copy the full SHA
    ad852d3 View commit details
    Browse the repository at this point in the history
  2. fix-image-height-missing

    Deuh authored and Sigurdur Gudbrandsson committed Feb 9, 2017
    Configuration menu
    Copy the full SHA
    9bfcb27 View commit details
    Browse the repository at this point in the history
  3. youtube-start-time : Fix IframeYotubeTransformPass::getYouTubeCode()

    Deuh authored and Sigurdur Gudbrandsson committed Feb 9, 2017
    Configuration menu
    Copy the full SHA
    514a743 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2017

  1. Configuration menu
    Copy the full SHA
    5265d55 View commit details
    Browse the repository at this point in the history
  2. Add amp-anim for animated image + remove non-converted img tag in Amp…

    …ImgFixPass
    Deuh authored and Sigurdur Gudbrandsson committed Feb 13, 2017
    Configuration menu
    Copy the full SHA
    30fbd97 View commit details
    Browse the repository at this point in the history
  3. Fixing builds to pass testing

    Sigurdur Gudbrandsson committed Feb 13, 2017
    Configuration menu
    Copy the full SHA
    211b8f4 View commit details
    Browse the repository at this point in the history
  4. Allow Travis builds to fail on PHP nightly

    Sigurdur Gudbrandsson committed Feb 13, 2017
    Configuration menu
    Copy the full SHA
    0e89046 View commit details
    Browse the repository at this point in the history
  5. Merge pull request Lullabot#164 from GuideToIceland/upstream-migration

    Migrating multiple fixes upstream
    sebastianbenz authored Feb 13, 2017
    Configuration menu
    Copy the full SHA
    a9bb7fe View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2017

  1. Configuration menu
    Copy the full SHA
    5d1e1a7 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2017

  1. Provide a proper testcase

    dawehner committed Feb 15, 2017
    Configuration menu
    Copy the full SHA
    39d279f View commit details
    Browse the repository at this point in the history
  2. fix pass

    dawehner committed Feb 15, 2017
    Configuration menu
    Copy the full SHA
    4485bd7 View commit details
    Browse the repository at this point in the history
  3. Add inline script

    dawehner committed Feb 15, 2017
    Configuration menu
    Copy the full SHA
    e87bede View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a18c8a7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e4190a6 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2017

  1. fix a lot of failures

    dawehner committed Feb 22, 2017
    Configuration menu
    Copy the full SHA
    a21e886 View commit details
    Browse the repository at this point in the history
  2. Another small bugfix£

    dawehner committed Feb 22, 2017
    Configuration menu
    Copy the full SHA
    66ea994 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2017

  1. fix some failures

    dawehner committed Mar 3, 2017
    Configuration menu
    Copy the full SHA
    bebaf75 View commit details
    Browse the repository at this point in the history