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

[Gutenberg] 1008: Extend core blocks to add AMP-specific functionality. #1026

Merged
merged 33 commits into from
May 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
700b5cd
Initial take on extending Gutenberg core blocks to add ampLayout.
miina Mar 19, 2018
c7de18a
Add amp-runtime. Add amp-layout to Edit as well. Add option for using…
miina Mar 20, 2018
93f6a11
Use data-amp-layout.
miina Mar 21, 2018
55aa714
Add layout frontend support for amp-img and amp-audio added from Gute…
miina Mar 21, 2018
78ca3a9
Merge develop & resolve conflicts.
miina Apr 23, 2018
f023f73
Fixes to audio and video sanitizers for layout.
miina Apr 23, 2018
2e4cbd1
CS Fixes.
miina Apr 23, 2018
5bd7f07
Video amp-layout support.
miina Apr 23, 2018
011724e
Fix jshint issues.
miina Apr 23, 2018
e195c74
Start adding AMP layout conf for embeds.
miina Apr 24, 2018
73f4ad5
Layout for embeds.
miina Apr 25, 2018
fea3434
Add control to shortcode block for making use of amp-carousel optional.
miina Apr 26, 2018
7bf9df3
Add support for AMP noloading.
miina Apr 26, 2018
6c7f8e2
Fixes from review.
miina Apr 27, 2018
75f08c4
Add possible editor changes.
miina Apr 27, 2018
83b34a2
Remove incorrect changes.
miina Apr 27, 2018
703f8f1
Add tests.
miina May 1, 2018
f92e06b
Update dev-lib.
miina May 1, 2018
f271308
Merge develop & resolve conflicts.
miina May 1, 2018
deeea31
Update composer.lock to use XWP fork of PHP-CSS-Parser
westonruter May 1, 2018
c0ea186
Merge remote-tracking branch 'origin/develop' into add/1008-core_bloc…
miina May 4, 2018
b107296
Fix issue with setting fixed-height.
miina May 4, 2018
991c73c
Rework using CSS classes for AMP attributes.
miina May 4, 2018
9313375
Revert creating issue to test.
miina May 4, 2018
9e54106
Remove unnecessary code.
miina May 4, 2018
369650e
Restrict AMP attributes to media and embeds only.
miina May 4, 2018
fc7387f
Revert using CSS class for saving AMP attributes.
miina May 16, 2018
948e421
Fix tests.
miina May 16, 2018
589bf18
Fic phpcs.
miina May 16, 2018
7954b23
Let strings be translatable
westonruter May 19, 2018
dbc1c7c
Fixes from feedback.
miina May 21, 2018
e3dab51
Remove unused dynamicBlocks var.
miina May 21, 2018
f05bfb7
Eliminate inclusion of amp-runtime in Gutenberg editor since AMP comp…
westonruter May 21, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions amp.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ function amp_init() {
AMP_Post_Type_Support::add_post_type_support();
add_filter( 'request', 'amp_force_query_var_value' );
add_action( 'admin_init', 'AMP_Options_Manager::register_settings' );
add_action( 'wp_loaded', 'amp_editor_core_blocks' );
add_action( 'wp_loaded', 'amp_post_meta_box' );
add_action( 'wp_loaded', 'amp_add_options_menu' );
add_action( 'parse_query', 'amp_correct_query_when_is_front_page' );
Expand Down
Loading