├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE.txt ├── README.txt ├── admin ├── css │ └── responsify-wp.css ├── js │ └── responsify-wp.js ├── responsify-wp-admin.php └── views │ ├── content_filter.php │ ├── debug_mode.php │ ├── ignored_image_formats.php │ ├── media_queries.php │ ├── picturefill.php │ ├── retina.php │ ├── selected_element.php │ ├── selected_sizes.php │ └── settings.php ├── assets ├── banner-1544x500.png ├── banner-772x250.png ├── icon-128x128.png ├── icon-256x256.png ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png └── screenshot-4.png ├── bin └── install-wp-tests.sh ├── includes ├── Logger.php ├── content_filter.php ├── create_responsive_image.php ├── custom_media_queries.php ├── custom_media_query_rules.php ├── element.php ├── img.php ├── media_queries.php ├── native-element.php ├── native-img.php ├── picture.php ├── retina.php ├── rwp_functions.php ├── span.php └── style.php ├── phpunit.xml ├── readme.md ├── responsify-wp.php ├── src ├── picturefill.1.2.1.js └── picturefill.3.0.1.min.js ├── tests ├── bootstrap.php ├── create_attachment.php ├── test-add-filters.php ├── test-afilter-rwp_edit_attributes.php ├── test-content_filter-retina.php ├── test-content_filter.php ├── test-create_attributes.php ├── test-custom-media-queries.php ├── test-image-retina.php ├── test-image.php ├── test-media_queries.php ├── test-native-element.php ├── test-native-img-retina.php ├── test-native-img.php ├── test-picture-retina.php ├── test-picture_element.php ├── test-rwp_attributes.php ├── test-rwp_img.php ├── test-rwp_picture.php ├── test-rwp_span.php ├── test-rwp_style.php ├── test-span.php └── test-style.php └── uninstall.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | tests/_output/* 3 | *.swp 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/README.txt -------------------------------------------------------------------------------- /admin/css/responsify-wp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/css/responsify-wp.css -------------------------------------------------------------------------------- /admin/js/responsify-wp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/js/responsify-wp.js -------------------------------------------------------------------------------- /admin/responsify-wp-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/responsify-wp-admin.php -------------------------------------------------------------------------------- /admin/views/content_filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/views/content_filter.php -------------------------------------------------------------------------------- /admin/views/debug_mode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/views/debug_mode.php -------------------------------------------------------------------------------- /admin/views/ignored_image_formats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/views/ignored_image_formats.php -------------------------------------------------------------------------------- /admin/views/media_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/views/media_queries.php -------------------------------------------------------------------------------- /admin/views/picturefill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/views/picturefill.php -------------------------------------------------------------------------------- /admin/views/retina.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/views/retina.php -------------------------------------------------------------------------------- /admin/views/selected_element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/views/selected_element.php -------------------------------------------------------------------------------- /admin/views/selected_sizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/views/selected_sizes.php -------------------------------------------------------------------------------- /admin/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/admin/views/settings.php -------------------------------------------------------------------------------- /assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/assets/banner-1544x500.png -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/assets/icon-128x128.png -------------------------------------------------------------------------------- /assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/assets/icon-256x256.png -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/assets/screenshot-2.png -------------------------------------------------------------------------------- /assets/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/assets/screenshot-3.png -------------------------------------------------------------------------------- /assets/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/assets/screenshot-4.png -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /includes/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/Logger.php -------------------------------------------------------------------------------- /includes/content_filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/content_filter.php -------------------------------------------------------------------------------- /includes/create_responsive_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/create_responsive_image.php -------------------------------------------------------------------------------- /includes/custom_media_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/custom_media_queries.php -------------------------------------------------------------------------------- /includes/custom_media_query_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/custom_media_query_rules.php -------------------------------------------------------------------------------- /includes/element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/element.php -------------------------------------------------------------------------------- /includes/img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/img.php -------------------------------------------------------------------------------- /includes/media_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/media_queries.php -------------------------------------------------------------------------------- /includes/native-element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/native-element.php -------------------------------------------------------------------------------- /includes/native-img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/native-img.php -------------------------------------------------------------------------------- /includes/picture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/picture.php -------------------------------------------------------------------------------- /includes/retina.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/retina.php -------------------------------------------------------------------------------- /includes/rwp_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/rwp_functions.php -------------------------------------------------------------------------------- /includes/span.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/span.php -------------------------------------------------------------------------------- /includes/style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/includes/style.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/readme.md -------------------------------------------------------------------------------- /responsify-wp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/responsify-wp.php -------------------------------------------------------------------------------- /src/picturefill.1.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/src/picturefill.1.2.1.js -------------------------------------------------------------------------------- /src/picturefill.3.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/src/picturefill.3.0.1.min.js -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/create_attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/create_attachment.php -------------------------------------------------------------------------------- /tests/test-add-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-add-filters.php -------------------------------------------------------------------------------- /tests/test-afilter-rwp_edit_attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-afilter-rwp_edit_attributes.php -------------------------------------------------------------------------------- /tests/test-content_filter-retina.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-content_filter-retina.php -------------------------------------------------------------------------------- /tests/test-content_filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-content_filter.php -------------------------------------------------------------------------------- /tests/test-create_attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-create_attributes.php -------------------------------------------------------------------------------- /tests/test-custom-media-queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-custom-media-queries.php -------------------------------------------------------------------------------- /tests/test-image-retina.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-image-retina.php -------------------------------------------------------------------------------- /tests/test-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-image.php -------------------------------------------------------------------------------- /tests/test-media_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-media_queries.php -------------------------------------------------------------------------------- /tests/test-native-element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-native-element.php -------------------------------------------------------------------------------- /tests/test-native-img-retina.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-native-img-retina.php -------------------------------------------------------------------------------- /tests/test-native-img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-native-img.php -------------------------------------------------------------------------------- /tests/test-picture-retina.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-picture-retina.php -------------------------------------------------------------------------------- /tests/test-picture_element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-picture_element.php -------------------------------------------------------------------------------- /tests/test-rwp_attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-rwp_attributes.php -------------------------------------------------------------------------------- /tests/test-rwp_img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-rwp_img.php -------------------------------------------------------------------------------- /tests/test-rwp_picture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-rwp_picture.php -------------------------------------------------------------------------------- /tests/test-rwp_span.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-rwp_span.php -------------------------------------------------------------------------------- /tests/test-rwp_style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-rwp_style.php -------------------------------------------------------------------------------- /tests/test-span.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-span.php -------------------------------------------------------------------------------- /tests/test-style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/tests/test-style.php -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanledin/responsify-wp/HEAD/uninstall.php --------------------------------------------------------------------------------