├── tags ├── 0.5.0 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ ├── afb-de_DE.mo │ │ └── afb.pot │ ├── afb_instant_articles.php │ ├── inc │ │ └── lhafb_ia.core.php │ ├── templates │ │ └── feed-instant_articles.php │ └── readme.txt ├── 0.5.1 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ ├── afb-de_DE.mo │ │ └── afb.pot │ ├── afb_instant_articles.php │ ├── inc │ │ └── lhafb_ia.core.php │ ├── templates │ │ └── feed-instant_articles.php │ └── readme.txt ├── 0.5.2 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ ├── afb-de_DE.mo │ │ └── afb.pot │ ├── inc │ │ ├── lhafb_ia.core.php │ │ └── lhafb_ia.filters.php │ ├── afb_instant_articles.php │ └── templates │ │ └── feed-instant_articles.php ├── 0.5.3 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── afb-de_DE.mo │ ├── afb_instant_articles.php │ ├── inc │ │ └── lhafb_ia.core.php │ └── templates │ │ └── feed-instant_articles.php ├── 0.5.4 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── afb-de_DE.mo │ ├── afb_instant_articles.php │ ├── inc │ │ └── lhafb_ia.core.php │ └── templates │ │ └── feed-instant_articles.php ├── 0.5.5 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── afb-de_DE.mo │ ├── afb_instant_articles.php │ ├── inc │ │ └── lhafb_ia.core.php │ └── templates │ │ └── feed-instant_articles.php ├── 0.5.6 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── afb-de_DE.mo │ ├── afb_instant_articles.php │ ├── inc │ │ └── lhafb_ia.core.php │ └── templates │ │ └── feed-instant_articles.php ├── 0.5.7 │ ├── js │ │ └── afb_ia.min.js │ ├── afb_instant_articles.php │ └── lang │ │ └── afb-de_DE.mo ├── 0.5.8 │ ├── js │ │ └── afb_ia.min.js │ ├── afb_instant_articles.php │ └── lang │ │ └── afb-de_DE.mo ├── 0.5.9 │ ├── js │ │ └── afb_ia.min.js │ ├── afb_instant_articles.php │ └── lang │ │ └── afb-de_DE.mo ├── 0.6.0 │ ├── js │ │ └── afb_ia.min.js │ ├── afb_instant_articles.php │ └── lang │ │ └── afb-de_DE.mo ├── 0.6.1 │ ├── js │ │ └── afb_ia.min.js │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.7.0 │ ├── js │ │ └── afb_ia.min.js │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.7.1 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── afb-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.7.2 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── afb-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.7.3 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── afb-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.8.0 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── afb-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.8.1 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.8.2 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.8.3 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── inc │ │ └── lhafb_ia.jetpack-support.php │ └── afb_instant_articles.php ├── 0.8.4 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── inc │ │ └── lhafb_ia.jetpack-support.php │ └── afb_instant_articles.php ├── 0.8.5 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── inc │ │ └── lhafb_ia.jetpack-support.php │ └── afb_instant_articles.php ├── 0.8.6 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── inc │ │ └── lhafb_ia.jetpack-support.php │ └── afb_instant_articles.php ├── 0.8.7 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── inc │ │ └── lhafb_ia.jetpack-support.php │ └── afb_instant_articles.php ├── 0.8.8 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── inc │ │ └── lhafb_ia.jetpack-support.php │ └── afb_instant_articles.php ├── 0.8.9 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.9.0 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.9.1 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── allfacebook-instant-articles-de_DE.mo │ ├── admin │ │ └── admin.min.js │ ├── afb_instant_articles.php │ └── inc │ │ └── lhafb_ia.jetpack-support.php ├── 0.5.6.1 │ ├── js │ │ └── afb_ia.min.js │ ├── lang │ │ └── afb-de_DE.mo │ ├── afb_instant_articles.php │ ├── inc │ │ └── lhafb_ia.core.php │ └── templates │ │ └── feed-instant_articles.php └── 0.5.6.2 │ ├── js │ └── afb_ia.min.js │ ├── afb_instant_articles.php │ ├── lang │ └── afb-de_DE.mo │ ├── inc │ └── lhafb_ia.core.php │ └── templates │ └── feed-instant_articles.php ├── .eslintignore ├── .gitignore ├── assets ├── banner-772x250.png ├── icon-1000x1000.psd ├── icon-256x256.png ├── screenshot-1.png ├── banner-1544x500.png └── banner-1544x500.psd ├── .csslintrc ├── archives ├── allfacebook-instant-articles.0.5.0.zip ├── allfacebook-instant-articles.0.5.1.zip ├── allfacebook-instant-articles.0.5.2.zip ├── allfacebook-instant-articles.0.5.3.zip ├── allfacebook-instant-articles.0.5.4.zip ├── allfacebook-instant-articles.0.5.5.zip ├── allfacebook-instant-articles.0.5.6.zip ├── allfacebook-instant-articles.0.5.7.zip ├── allfacebook-instant-articles.0.5.8.zip ├── allfacebook-instant-articles.0.5.9.zip ├── allfacebook-instant-articles.0.6.0.zip ├── allfacebook-instant-articles.0.6.1.zip ├── allfacebook-instant-articles.0.7.0.zip ├── allfacebook-instant-articles.0.7.1.zip ├── allfacebook-instant-articles.0.7.2.zip ├── allfacebook-instant-articles.0.7.3.zip ├── allfacebook-instant-articles.0.8.0.zip ├── allfacebook-instant-articles.0.8.1.zip ├── allfacebook-instant-articles.0.8.2.zip ├── allfacebook-instant-articles.0.8.3.zip ├── allfacebook-instant-articles.0.8.4.zip ├── allfacebook-instant-articles.0.8.5.zip ├── allfacebook-instant-articles.0.8.6.zip ├── allfacebook-instant-articles.0.8.7.zip ├── allfacebook-instant-articles.0.8.8.zip ├── allfacebook-instant-articles.0.8.9.zip ├── allfacebook-instant-articles.0.9.0.zip ├── allfacebook-instant-articles.0.9.1.zip ├── allfacebook_instant_articles.0.7.1.zip ├── allfacebook-instant-articles.0.5.6.1.zip └── allfacebook-instant-articles.0.5.6.2.zip ├── svnignore.txt ├── ISSUE_TEMPLATE.md ├── .codeclimate.yml ├── package.json ├── README.md └── CONTRIBUTING.md /tags/0.5.0/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.5.1/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.5.2/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.5.3/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.5.4/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.5.5/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.5.6/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.5.7/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.5.8/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.5.9/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.6.0/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.6.1/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.7.0/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.7.1/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.7.2/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.7.3/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.8.0/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.8.1/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.8.2/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.8.3/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.8.4/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.8.5/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.8.6/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.8.7/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.8.8/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.8.9/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.9.0/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.9.1/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /tags/0.5.6.1/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/0.5.6.2/js/afb_ia.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .svn 3 | trunk 4 | 5 | # Ignore OS X .DS_Store files 6 | .DS_Store -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/icon-1000x1000.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/assets/icon-1000x1000.psd -------------------------------------------------------------------------------- /assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/assets/icon-256x256.png -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /.csslintrc: -------------------------------------------------------------------------------- 1 | --exclude-exts=.min.css 2 | --ignore=adjoining-classes,box-model,ids,order-alphabetical,unqualified-attributes 3 | -------------------------------------------------------------------------------- /assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/assets/banner-1544x500.png -------------------------------------------------------------------------------- /assets/banner-1544x500.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/assets/banner-1544x500.psd -------------------------------------------------------------------------------- /tags/0.7.1/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.7.1/lang/afb-de_DE.mo -------------------------------------------------------------------------------- /tags/0.7.2/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.7.2/lang/afb-de_DE.mo -------------------------------------------------------------------------------- /tags/0.7.3/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.7.3/lang/afb-de_DE.mo -------------------------------------------------------------------------------- /tags/0.8.0/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.8.0/lang/afb-de_DE.mo -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.0.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.1.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.2.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.3.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.4.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.5.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.6.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.7.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.8.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.9.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.6.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.6.0.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.6.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.6.1.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.7.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.7.0.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.7.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.7.1.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.7.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.7.2.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.7.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.7.3.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.8.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.8.0.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.8.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.8.1.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.8.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.8.2.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.8.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.8.3.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.8.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.8.4.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.8.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.8.5.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.8.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.8.6.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.8.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.8.7.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.8.8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.8.8.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.8.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.8.9.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.9.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.9.0.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.9.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.9.1.zip -------------------------------------------------------------------------------- /archives/allfacebook_instant_articles.0.7.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook_instant_articles.0.7.1.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.6.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.6.1.zip -------------------------------------------------------------------------------- /archives/allfacebook-instant-articles.0.5.6.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/archives/allfacebook-instant-articles.0.5.6.2.zip -------------------------------------------------------------------------------- /tags/0.8.1/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.8.1/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /tags/0.8.2/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.8.2/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /tags/0.8.3/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.8.3/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /tags/0.8.4/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.8.4/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /tags/0.8.5/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.8.5/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /tags/0.8.6/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.8.6/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /tags/0.8.7/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.8.7/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /tags/0.8.8/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.8.8/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /tags/0.8.9/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.8.9/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /tags/0.9.0/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.9.0/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /tags/0.9.1/lang/allfacebook-instant-articles-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luehrsenheinrich/afb_instant_articles/HEAD/tags/0.9.1/lang/allfacebook-instant-articles-de_DE.mo -------------------------------------------------------------------------------- /svnignore.txt: -------------------------------------------------------------------------------- 1 | // Ignore everything from the start, we add things back in 2 | * 3 | 4 | !trunk/* 5 | !tags/* 6 | !assets/* 7 | !branches/* 8 | 9 | // No PSDs 10 | *.psd 11 | 12 | // No Node Modules 13 | node_modules -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### What did you expect to happen? 2 | 3 | ### What happened instead? 4 | 5 | ### How can we reproduce this behavior? 6 | 7 | Can you provide a link to a page which shows this issue? 8 | 9 | ### Technical info 10 | * WordPress version: 11 | * allfacebook Instant Articles version: 12 | -------------------------------------------------------------------------------- /tags/0.6.1/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()};jQuery(document).ready(function(a){new settingsNavCtrl}); -------------------------------------------------------------------------------- /tags/0.7.0/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()};jQuery(document).ready(function(a){new settingsNavCtrl}); -------------------------------------------------------------------------------- /tags/0.7.1/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()};jQuery(document).ready(function(a){new settingsNavCtrl}); -------------------------------------------------------------------------------- /tags/0.7.2/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()};jQuery(document).ready(function(a){new settingsNavCtrl}); -------------------------------------------------------------------------------- /tags/0.7.3/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()};jQuery(document).ready(function(a){new settingsNavCtrl}); -------------------------------------------------------------------------------- /tags/0.8.0/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()};jQuery(document).ready(function(a){new settingsNavCtrl}); -------------------------------------------------------------------------------- /tags/0.8.1/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()};jQuery(document).ready(function(a){new settingsNavCtrl}); -------------------------------------------------------------------------------- /tags/0.8.2/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()};jQuery(document).ready(function(a){new settingsNavCtrl}); -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | --- 2 | engines: 3 | csslint: 4 | enabled: true 5 | duplication: 6 | enabled: true 7 | config: 8 | languages: 9 | - ruby 10 | - javascript 11 | - python 12 | - php 13 | eslint: 14 | enabled: true 15 | fixme: 16 | enabled: true 17 | phpmd: 18 | enabled: true 19 | ratings: 20 | paths: 21 | - "**.css" 22 | - "**.inc" 23 | - "**.js" 24 | - "**.jsx" 25 | - "**.module" 26 | - "**.php" 27 | - "**.py" 28 | - "**.rb" 29 | ## other configuration excluded from example... 30 | exclude_paths: 31 | - "archives/" 32 | - "tags/" 33 | - "Gruntfile.js" 34 | - "build/inc/lhafb_ia.filters.php" -------------------------------------------------------------------------------- /tags/0.5.0/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- 1 | �� $ , 8 � 9 Project-Id-Version: allfacebook Instant Articles 2 | POT-Creation-Date: 2015-11-27 10:55+0100 3 | PO-Revision-Date: 2015-11-27 10:58+0100 4 | Last-Translator: 5 | Language-Team: 6 | Language: de_DE 7 | MIME-Version: 1.0 8 | Content-Type: text/plain; charset=UTF-8 9 | Content-Transfer-Encoding: 8bit 10 | X-Generator: Poedit 1.8.6 11 | X-Poedit-Basepath: .. 12 | X-Poedit-WPHeader: afb_instant_articles.php 13 | Plural-Forms: nplurals=2; plural=(n != 1); 14 | X-Poedit-SourceCharset: UTF-8 15 | X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2 16 | X-Poedit-SearchPath-0: . 17 | X-Poedit-SearchPathExcluded-0: *.js 18 | -------------------------------------------------------------------------------- /tags/0.5.1/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- 1 | �� $ , 8 � 9 Project-Id-Version: allfacebook Instant Articles 2 | POT-Creation-Date: 2015-11-27 10:55+0100 3 | PO-Revision-Date: 2015-11-27 10:58+0100 4 | Last-Translator: 5 | Language-Team: 6 | Language: de_DE 7 | MIME-Version: 1.0 8 | Content-Type: text/plain; charset=UTF-8 9 | Content-Transfer-Encoding: 8bit 10 | X-Generator: Poedit 1.8.6 11 | X-Poedit-Basepath: .. 12 | X-Poedit-WPHeader: afb_instant_articles.php 13 | Plural-Forms: nplurals=2; plural=(n != 1); 14 | X-Poedit-SourceCharset: UTF-8 15 | X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2 16 | X-Poedit-SearchPath-0: . 17 | X-Poedit-SearchPathExcluded-0: *.js 18 | -------------------------------------------------------------------------------- /tags/0.5.2/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- 1 | �� $ , 8 � 9 Project-Id-Version: allfacebook Instant Articles 2 | POT-Creation-Date: 2015-11-27 10:55+0100 3 | PO-Revision-Date: 2015-11-27 10:58+0100 4 | Last-Translator: 5 | Language-Team: 6 | Language: de_DE 7 | MIME-Version: 1.0 8 | Content-Type: text/plain; charset=UTF-8 9 | Content-Transfer-Encoding: 8bit 10 | X-Generator: Poedit 1.8.6 11 | X-Poedit-Basepath: .. 12 | X-Poedit-WPHeader: afb_instant_articles.php 13 | Plural-Forms: nplurals=2; plural=(n != 1); 14 | X-Poedit-SourceCharset: UTF-8 15 | X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2 16 | X-Poedit-SearchPath-0: . 17 | X-Poedit-SearchPathExcluded-0: *.js 18 | -------------------------------------------------------------------------------- /tags/0.5.3/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- 1 | �� $ , 8 � 9 Project-Id-Version: allfacebook Instant Articles 2 | POT-Creation-Date: 2015-11-27 10:55+0100 3 | PO-Revision-Date: 2015-11-27 10:58+0100 4 | Last-Translator: 5 | Language-Team: 6 | Language: de_DE 7 | MIME-Version: 1.0 8 | Content-Type: text/plain; charset=UTF-8 9 | Content-Transfer-Encoding: 8bit 10 | X-Generator: Poedit 1.8.6 11 | X-Poedit-Basepath: .. 12 | X-Poedit-WPHeader: afb_instant_articles.php 13 | Plural-Forms: nplurals=2; plural=(n != 1); 14 | X-Poedit-SourceCharset: UTF-8 15 | X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2 16 | X-Poedit-SearchPath-0: . 17 | X-Poedit-SearchPathExcluded-0: *.js 18 | -------------------------------------------------------------------------------- /tags/0.5.4/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- 1 | �� $ , 8 � 9 Project-Id-Version: allfacebook Instant Articles 2 | POT-Creation-Date: 2015-11-27 10:55+0100 3 | PO-Revision-Date: 2015-11-27 10:58+0100 4 | Last-Translator: 5 | Language-Team: 6 | Language: de_DE 7 | MIME-Version: 1.0 8 | Content-Type: text/plain; charset=UTF-8 9 | Content-Transfer-Encoding: 8bit 10 | X-Generator: Poedit 1.8.6 11 | X-Poedit-Basepath: .. 12 | X-Poedit-WPHeader: afb_instant_articles.php 13 | Plural-Forms: nplurals=2; plural=(n != 1); 14 | X-Poedit-SourceCharset: UTF-8 15 | X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2 16 | X-Poedit-SearchPath-0: . 17 | X-Poedit-SearchPathExcluded-0: *.js 18 | -------------------------------------------------------------------------------- /tags/0.5.5/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- 1 | �� $ , 8 � 9 Project-Id-Version: allfacebook Instant Articles 2 | POT-Creation-Date: 2015-11-27 10:55+0100 3 | PO-Revision-Date: 2015-11-27 10:58+0100 4 | Last-Translator: 5 | Language-Team: 6 | Language: de_DE 7 | MIME-Version: 1.0 8 | Content-Type: text/plain; charset=UTF-8 9 | Content-Transfer-Encoding: 8bit 10 | X-Generator: Poedit 1.8.6 11 | X-Poedit-Basepath: .. 12 | X-Poedit-WPHeader: afb_instant_articles.php 13 | Plural-Forms: nplurals=2; plural=(n != 1); 14 | X-Poedit-SourceCharset: UTF-8 15 | X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2 16 | X-Poedit-SearchPath-0: . 17 | X-Poedit-SearchPathExcluded-0: *.js 18 | -------------------------------------------------------------------------------- /tags/0.5.6.1/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- 1 | �� $ , 8 � 9 Project-Id-Version: allfacebook Instant Articles 2 | POT-Creation-Date: 2015-11-27 10:55+0100 3 | PO-Revision-Date: 2015-11-27 10:58+0100 4 | Last-Translator: 5 | Language-Team: 6 | Language: de_DE 7 | MIME-Version: 1.0 8 | Content-Type: text/plain; charset=UTF-8 9 | Content-Transfer-Encoding: 8bit 10 | X-Generator: Poedit 1.8.6 11 | X-Poedit-Basepath: .. 12 | X-Poedit-WPHeader: afb_instant_articles.php 13 | Plural-Forms: nplurals=2; plural=(n != 1); 14 | X-Poedit-SourceCharset: UTF-8 15 | X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2 16 | X-Poedit-SearchPath-0: . 17 | X-Poedit-SearchPathExcluded-0: *.js 18 | -------------------------------------------------------------------------------- /tags/0.5.6/lang/afb-de_DE.mo: -------------------------------------------------------------------------------- 1 | �� $ , 8 � 9 Project-Id-Version: allfacebook Instant Articles 2 | POT-Creation-Date: 2015-11-27 10:55+0100 3 | PO-Revision-Date: 2015-11-27 10:58+0100 4 | Last-Translator: 5 | Language-Team: 6 | Language: de_DE 7 | MIME-Version: 1.0 8 | Content-Type: text/plain; charset=UTF-8 9 | Content-Transfer-Encoding: 8bit 10 | X-Generator: Poedit 1.8.6 11 | X-Poedit-Basepath: .. 12 | X-Poedit-WPHeader: afb_instant_articles.php 13 | Plural-Forms: nplurals=2; plural=(n != 1); 14 | X-Poedit-SourceCharset: UTF-8 15 | X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2 16 | X-Poedit-SearchPath-0: . 17 | X-Poedit-SearchPathExcluded-0: *.js 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.9.1", 3 | "title": "WordPress Instant Articles by allfacebook.de", 4 | "slug": "allfacebook-instant-articles", 5 | "description": "Harness the power of Facebook Instant Articles on your WordPress site.", 6 | "author": "WP Munich & Luehrsen // Heinrich", 7 | "private": true, 8 | "devDependencies": { 9 | "grunt": "~0.4.5", 10 | "grunt-autoprefixer": "^3.0.0", 11 | "grunt-concat-in-order": "~0.1.6", 12 | "grunt-contrib-clean": "^0.6.0", 13 | "grunt-contrib-compress": "^0.14.0", 14 | "grunt-contrib-copy": "^0.8.0", 15 | "grunt-contrib-jshint": "~0.11.0", 16 | "grunt-contrib-less": "~0.11.0", 17 | "grunt-contrib-uglify": "~0.4.0", 18 | "grunt-contrib-watch": "~0.6.1", 19 | "grunt-newer": "^1.1.1", 20 | "grunt-phplint": "0.0.5", 21 | "jit-grunt": "~0.7.0", 22 | "jshint-stylish": "~1.0.0" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /tags/0.8.3/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()},settingsMultiCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".settings-container fieldset.multi").each(function(){var c=a(this),d=a(".multi-input",c).first().clone();a("input",d).val(""),a(c).on("click",".multi-input .add-input",function(){b.addInput(d.clone(),c)}),a(c).on("click",".multi-input .remove-input",function(b){var d=a(b.currentTarget).parents(".multi-input");a(".multi-input",c).length>1&&d.remove()})})},this.addInput=function(b,c){b.insertAfter(a(".multi-input",c).last())},this.init()};jQuery(document).ready(function(a){new settingsNavCtrl,new settingsMultiCtrl}); -------------------------------------------------------------------------------- /tags/0.8.4/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()},settingsMultiCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".settings-container fieldset.multi").each(function(){var c=a(this),d=a(".multi-input",c).first().clone();a("input",d).val(""),a(c).on("click",".multi-input .add-input",function(){b.addInput(d.clone(),c)}),a(c).on("click",".multi-input .remove-input",function(b){var d=a(b.currentTarget).parents(".multi-input");a(".multi-input",c).length>1&&d.remove()})})},this.addInput=function(b,c){b.insertAfter(a(".multi-input",c).last())},this.init()};jQuery(document).ready(function(a){new settingsNavCtrl,new settingsMultiCtrl}); -------------------------------------------------------------------------------- /tags/0.8.5/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()},settingsMultiCtrl=function(){var a=jQuery;this.init=function(){var b=this;a("fieldset.multi").each(function(){var c=a(this),d=a(".multi-input",c).first().clone();a("input",d).val(""),a(c).on("click",".multi-input .add-input",function(){b.addInput(d.clone(),c)}),a(c).on("click",".multi-input .remove-input",function(b){var d=a(b.currentTarget).parents(".multi-input");a(".multi-input",c).length>1&&d.remove()})})},this.addInput=function(b,c){b.insertAfter(a(".multi-input",c).last())},this.init()};jQuery(document).ready(function(a){var b=(new settingsNavCtrl,new settingsMultiCtrl,window.wp);a(".afbia-review.is-dismissible").on("click",".notice-dismiss",function(a){b.ajax.send("afbia_dismiss_review")})}); -------------------------------------------------------------------------------- /tags/0.8.6/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()},settingsMultiCtrl=function(){var a=jQuery;this.init=function(){var b=this;a("fieldset.multi").each(function(){var c=a(this),d=a(".multi-input",c).first().clone();a("input",d).val(""),a(c).on("click",".multi-input .add-input",function(){b.addInput(d.clone(),c)}),a(c).on("click",".multi-input .remove-input",function(b){var d=a(b.currentTarget).parents(".multi-input");a(".multi-input",c).length>1&&d.remove()})})},this.addInput=function(b,c){b.insertAfter(a(".multi-input",c).last())},this.init()};jQuery(document).ready(function(a){var b=(new settingsNavCtrl,new settingsMultiCtrl,window.wp);a(".afbia-review.is-dismissible").on("click",".notice-dismiss",function(a){b.ajax.send("afbia_dismiss_review")})}); -------------------------------------------------------------------------------- /tags/0.8.7/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()},settingsMultiCtrl=function(){var a=jQuery;this.init=function(){var b=this;a("fieldset.multi").each(function(){var c=a(this),d=a(".multi-input",c).first().clone();a("input",d).val(""),a(c).on("click",".multi-input .add-input",function(){b.addInput(d.clone(),c)}),a(c).on("click",".multi-input .remove-input",function(b){var d=a(b.currentTarget).parents(".multi-input");a(".multi-input",c).length>1&&d.remove()})})},this.addInput=function(b,c){b.insertAfter(a(".multi-input",c).last())},this.init()};jQuery(document).ready(function(a){var b=(new settingsNavCtrl,new settingsMultiCtrl,window.wp);a(".afbia-review.is-dismissible").on("click",".notice-dismiss",function(a){b.ajax.send("afbia_dismiss_review")})}); -------------------------------------------------------------------------------- /tags/0.8.8/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()},settingsMultiCtrl=function(){var a=jQuery;this.init=function(){var b=this;a("fieldset.multi").each(function(){var c=a(this),d=a(".multi-input",c).first().clone();a("input",d).val(""),a(c).on("click",".multi-input .add-input",function(){b.addInput(d.clone(),c)}),a(c).on("click",".multi-input .remove-input",function(b){var d=a(b.currentTarget).parents(".multi-input");a(".multi-input",c).length>1&&d.remove()})})},this.addInput=function(b,c){b.insertAfter(a(".multi-input",c).last())},this.init()};jQuery(document).ready(function(a){var b=(new settingsNavCtrl,new settingsMultiCtrl,window.wp);a(".afbia-review.is-dismissible").on("click",".notice-dismiss",function(a){b.ajax.send("afbia_dismiss_review")})}); -------------------------------------------------------------------------------- /tags/0.8.9/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()},settingsMultiCtrl=function(){var a=jQuery;this.init=function(){var b=this;a("fieldset.multi").each(function(){var c=a(this),d=a(".multi-input",c).first().clone();a("input",d).val(""),a(c).on("click",".multi-input .add-input",function(){b.addInput(d.clone(),c)}),a(c).on("click",".multi-input .remove-input",function(b){var d=a(b.currentTarget).parents(".multi-input");a(".multi-input",c).length>1&&d.remove()})})},this.addInput=function(b,c){b.insertAfter(a(".multi-input",c).last())},this.init()};jQuery(document).ready(function(a){var b=(new settingsNavCtrl,new settingsMultiCtrl,window.wp);a(".afbia-review.is-dismissible").on("click",".notice-dismiss",function(a){b.ajax.send("afbia_dismiss_review")})}); -------------------------------------------------------------------------------- /tags/0.9.0/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()},settingsMultiCtrl=function(){var a=jQuery;this.init=function(){var b=this;a("fieldset.multi").each(function(){var c=a(this),d=a(".multi-input",c).first().clone();a("input",d).val(""),a(c).on("click",".multi-input .add-input",function(){b.addInput(d.clone(),c)}),a(c).on("click",".multi-input .remove-input",function(b){var d=a(b.currentTarget).parents(".multi-input");a(".multi-input",c).length>1&&d.remove()})})},this.addInput=function(b,c){b.insertAfter(a(".multi-input",c).last())},this.init()};jQuery(document).ready(function(a){var b=(new settingsNavCtrl,new settingsMultiCtrl,window.wp);a(".afbia-review.is-dismissible").on("click",".notice-dismiss",function(a){b.ajax.send("afbia_dismiss_review")})}); -------------------------------------------------------------------------------- /tags/0.9.1/admin/admin.min.js: -------------------------------------------------------------------------------- 1 | var settingsNavCtrl=function(){var a=jQuery;this.init=function(){var b=this;a(".afbia-settings-page").each(function(){var c=a(this),d=a(".navigation a",c).first().attr("href").replace("#","");b.setActive(d,c),a(".navigation a",c).click(function(){var d=a(this).attr("href").replace("#","");b.setActive(d,c)})})},this.setActive=function(b,c){a(".navigation a",c).parent().removeClass("active"),a(".navigation a[href='#"+b+"']",c).parent().addClass("active"),a(".section",c).hide(),a("#section-"+b,c).show()},this.init()},settingsMultiCtrl=function(){var a=jQuery;this.init=function(){var b=this;a("fieldset.multi").each(function(){var c=a(this),d=a(".multi-input",c).first().clone();a("input",d).val(""),a(c).on("click",".multi-input .add-input",function(){b.addInput(d.clone(),c)}),a(c).on("click",".multi-input .remove-input",function(b){var d=a(b.currentTarget).parents(".multi-input");a(".multi-input",c).length>1&&d.remove()})})},this.addInput=function(b,c){b.insertAfter(a(".multi-input",c).last())},this.init()};jQuery(document).ready(function(a){var b=(new settingsNavCtrl,new settingsMultiCtrl,window.wp);a(".afbia-review.is-dismissible").on("click",".notice-dismiss",function(a){b.ajax.send("afbia_dismiss_review")})}); -------------------------------------------------------------------------------- /tags/0.5.0/afb_instant_articles.php: -------------------------------------------------------------------------------- 1 | filter_dispatcher(); 10 | $this->action_dispatcher(); 11 | } 12 | 13 | 14 | /** 15 | * filter_dispatcher function. 16 | * 17 | * @access private 18 | * @return void 19 | */ 20 | private function filter_dispatcher(){ 21 | add_filter( 'afbia_content', array($this, 'format_content') ); 22 | } 23 | 24 | 25 | /** 26 | * action_dispatcher function. 27 | * 28 | * @access private 29 | * @return void 30 | */ 31 | private function action_dispatcher(){ 32 | add_action( 'do_feed_instant_articles', array( $this, 'do_feed' ) ); 33 | } 34 | 35 | /** 36 | * Generate the custom RSS Feed for facebook instant articles. 37 | * Called by action 'do_feed_instant_articles' 38 | * 39 | * @see https://developers.facebook.com/docs/instant-articles/publishing 40 | * @access public 41 | * @return void 42 | */ 43 | public function do_feed(){ 44 | $rss_template = LHAFB__PLUGIN_DIR . 'templates/feed-instant_articles.php'; 45 | load_template($rss_template); 46 | } 47 | 48 | public function format_content($content){ 49 | 50 | // Replace the wrapping 'p' tags with figure tags for images 51 | $content = preg_replace( 52 | '/
\\s*?( \\s*?( Tag
58 | /**/
59 | $content = preg_replace(
60 | '/ \s*?((?: $2 Tag
66 | /**/
67 | $content = preg_replace(
68 | '/ (.*?)((?: $1 (\s*|\ )<\/p>/',
106 | '',
107 | $content
108 | );
109 |
110 | return $content;
111 | }
112 |
113 | }
--------------------------------------------------------------------------------
/tags/0.5.0/lang/afb.pot:
--------------------------------------------------------------------------------
1 | #, fuzzy
2 | msgid ""
3 | msgstr ""
4 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5 | "Project-Id-Version: allfacebook Instant Articles\n"
6 | "POT-Creation-Date: 2015-11-27 10:59+0100\n"
7 | "PO-Revision-Date: 2015-11-27 10:59+0100\n"
8 | "Last-Translator: \n"
9 | "Language-Team: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Generator: Poedit 1.8.6\n"
14 | "X-Poedit-Basepath: ..\n"
15 | "X-Poedit-WPHeader: afb_instant_articles.php\n"
16 | "X-Poedit-SourceCharset: UTF-8\n"
17 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20 | "X-Poedit-SearchPath-0: .\n"
21 | "X-Poedit-SearchPathExcluded-0: *.js\n"
22 |
23 | #: inc/lhafb_ia.metaboxes.php:38 inc/lhafb_ia.settings.php:97
24 | #: inc/lhafb_ia.settings.php:111
25 | msgid "Instant Articles"
26 | msgstr ""
27 |
28 | #: inc/lhafb_ia.metaboxes.php:67
29 | msgid "Credits"
30 | msgstr ""
31 |
32 | #: inc/lhafb_ia.settings.php:33
33 | msgid "Settings"
34 | msgstr ""
35 |
36 | #: inc/lhafb_ia.settings.php:35
37 | msgid ""
38 | "These settings control some general aspects of the instant article plugin "
39 | "and how your instant articles are shown on facebook."
40 | msgstr ""
41 |
42 | #: inc/lhafb_ia.settings.php:42
43 | msgid "Copyright"
44 | msgstr ""
45 |
46 | #: inc/lhafb_ia.settings.php:45
47 | msgid "The standard copyright details for your instant articles."
48 | msgstr ""
49 |
50 | #: inc/lhafb_ia.settings.php:53
51 | msgid "Tracking"
52 | msgstr ""
53 |
54 | #: inc/lhafb_ia.settings.php:56
55 | msgid ""
56 | "The tracking code, that will be embedded in your instant articles. See this link for more information."
59 | msgstr ""
60 |
61 | #: inc/lhafb_ia.settings.php:64
62 | msgid "Like Media"
63 | msgstr ""
64 |
65 | #: inc/lhafb_ia.settings.php:67
66 | msgid "Allow users to like the media you embedded."
67 | msgstr ""
68 |
69 | #: inc/lhafb_ia.settings.php:75
70 | msgid "Comment Media"
71 | msgstr ""
72 |
73 | #: inc/lhafb_ia.settings.php:78
74 | msgid "Allow users to comment on the media you embedded."
75 | msgstr ""
76 |
77 | #: inc/lhafb_ia.settings.php:111
78 | msgid "Show feed"
79 | msgstr ""
80 |
81 | #: inc/lhafb_ia.settings.php:119
82 | msgid "Save Changes"
83 | msgstr ""
84 |
85 | #: inc/lhafb_ia.settings.php:139
86 | msgid "Successfully updated."
87 | msgstr ""
88 |
89 | #: inc/lhafb_ia.settings.php:309
90 | msgid "Not selected"
91 | msgstr ""
92 |
93 | #. Plugin Name of the plugin/theme
94 | msgid "allfacebook Instant Articles"
95 | msgstr ""
96 |
97 | #. Description of the plugin/theme
98 | msgid "This plugin lets your WordPress display instant articles directly on your facebook page."
99 | msgstr ""
100 |
101 | #. Author of the plugin/theme
102 | msgid "Luehrsen // Heinrich"
103 | msgstr ""
104 |
105 | #. Author URI of the plugin/theme
106 | msgid "http://www.luehrsen-heinrich.de"
107 | msgstr ""
108 |
--------------------------------------------------------------------------------
/tags/0.5.1/lang/afb.pot:
--------------------------------------------------------------------------------
1 | #, fuzzy
2 | msgid ""
3 | msgstr ""
4 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5 | "Project-Id-Version: allfacebook Instant Articles\n"
6 | "POT-Creation-Date: 2015-11-27 10:59+0100\n"
7 | "PO-Revision-Date: 2015-11-27 10:59+0100\n"
8 | "Last-Translator: \n"
9 | "Language-Team: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Generator: Poedit 1.8.6\n"
14 | "X-Poedit-Basepath: ..\n"
15 | "X-Poedit-WPHeader: afb_instant_articles.php\n"
16 | "X-Poedit-SourceCharset: UTF-8\n"
17 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20 | "X-Poedit-SearchPath-0: .\n"
21 | "X-Poedit-SearchPathExcluded-0: *.js\n"
22 |
23 | #: inc/lhafb_ia.metaboxes.php:38 inc/lhafb_ia.settings.php:97
24 | #: inc/lhafb_ia.settings.php:111
25 | msgid "Instant Articles"
26 | msgstr ""
27 |
28 | #: inc/lhafb_ia.metaboxes.php:67
29 | msgid "Credits"
30 | msgstr ""
31 |
32 | #: inc/lhafb_ia.settings.php:33
33 | msgid "Settings"
34 | msgstr ""
35 |
36 | #: inc/lhafb_ia.settings.php:35
37 | msgid ""
38 | "These settings control some general aspects of the instant article plugin "
39 | "and how your instant articles are shown on facebook."
40 | msgstr ""
41 |
42 | #: inc/lhafb_ia.settings.php:42
43 | msgid "Copyright"
44 | msgstr ""
45 |
46 | #: inc/lhafb_ia.settings.php:45
47 | msgid "The standard copyright details for your instant articles."
48 | msgstr ""
49 |
50 | #: inc/lhafb_ia.settings.php:53
51 | msgid "Tracking"
52 | msgstr ""
53 |
54 | #: inc/lhafb_ia.settings.php:56
55 | msgid ""
56 | "The tracking code, that will be embedded in your instant articles. See this link for more information."
59 | msgstr ""
60 |
61 | #: inc/lhafb_ia.settings.php:64
62 | msgid "Like Media"
63 | msgstr ""
64 |
65 | #: inc/lhafb_ia.settings.php:67
66 | msgid "Allow users to like the media you embedded."
67 | msgstr ""
68 |
69 | #: inc/lhafb_ia.settings.php:75
70 | msgid "Comment Media"
71 | msgstr ""
72 |
73 | #: inc/lhafb_ia.settings.php:78
74 | msgid "Allow users to comment on the media you embedded."
75 | msgstr ""
76 |
77 | #: inc/lhafb_ia.settings.php:111
78 | msgid "Show feed"
79 | msgstr ""
80 |
81 | #: inc/lhafb_ia.settings.php:119
82 | msgid "Save Changes"
83 | msgstr ""
84 |
85 | #: inc/lhafb_ia.settings.php:139
86 | msgid "Successfully updated."
87 | msgstr ""
88 |
89 | #: inc/lhafb_ia.settings.php:309
90 | msgid "Not selected"
91 | msgstr ""
92 |
93 | #. Plugin Name of the plugin/theme
94 | msgid "allfacebook Instant Articles"
95 | msgstr ""
96 |
97 | #. Description of the plugin/theme
98 | msgid "This plugin lets your WordPress display instant articles directly on your facebook page."
99 | msgstr ""
100 |
101 | #. Author of the plugin/theme
102 | msgid "Luehrsen // Heinrich"
103 | msgstr ""
104 |
105 | #. Author URI of the plugin/theme
106 | msgid "http://www.luehrsen-heinrich.de"
107 | msgstr ""
108 |
--------------------------------------------------------------------------------
/tags/0.5.2/lang/afb.pot:
--------------------------------------------------------------------------------
1 | #, fuzzy
2 | msgid ""
3 | msgstr ""
4 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5 | "Project-Id-Version: allfacebook Instant Articles\n"
6 | "POT-Creation-Date: 2015-11-27 10:59+0100\n"
7 | "PO-Revision-Date: 2015-11-27 10:59+0100\n"
8 | "Last-Translator: \n"
9 | "Language-Team: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Generator: Poedit 1.8.6\n"
14 | "X-Poedit-Basepath: ..\n"
15 | "X-Poedit-WPHeader: afb_instant_articles.php\n"
16 | "X-Poedit-SourceCharset: UTF-8\n"
17 | "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
18 | "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
19 | "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
20 | "X-Poedit-SearchPath-0: .\n"
21 | "X-Poedit-SearchPathExcluded-0: *.js\n"
22 |
23 | #: inc/lhafb_ia.metaboxes.php:38 inc/lhafb_ia.settings.php:97
24 | #: inc/lhafb_ia.settings.php:111
25 | msgid "Instant Articles"
26 | msgstr ""
27 |
28 | #: inc/lhafb_ia.metaboxes.php:67
29 | msgid "Credits"
30 | msgstr ""
31 |
32 | #: inc/lhafb_ia.settings.php:33
33 | msgid "Settings"
34 | msgstr ""
35 |
36 | #: inc/lhafb_ia.settings.php:35
37 | msgid ""
38 | "These settings control some general aspects of the instant article plugin "
39 | "and how your instant articles are shown on facebook."
40 | msgstr ""
41 |
42 | #: inc/lhafb_ia.settings.php:42
43 | msgid "Copyright"
44 | msgstr ""
45 |
46 | #: inc/lhafb_ia.settings.php:45
47 | msgid "The standard copyright details for your instant articles."
48 | msgstr ""
49 |
50 | #: inc/lhafb_ia.settings.php:53
51 | msgid "Tracking"
52 | msgstr ""
53 |
54 | #: inc/lhafb_ia.settings.php:56
55 | msgid ""
56 | "The tracking code, that will be embedded in your instant articles. See this link for more information."
59 | msgstr ""
60 |
61 | #: inc/lhafb_ia.settings.php:64
62 | msgid "Like Media"
63 | msgstr ""
64 |
65 | #: inc/lhafb_ia.settings.php:67
66 | msgid "Allow users to like the media you embedded."
67 | msgstr ""
68 |
69 | #: inc/lhafb_ia.settings.php:75
70 | msgid "Comment Media"
71 | msgstr ""
72 |
73 | #: inc/lhafb_ia.settings.php:78
74 | msgid "Allow users to comment on the media you embedded."
75 | msgstr ""
76 |
77 | #: inc/lhafb_ia.settings.php:111
78 | msgid "Show feed"
79 | msgstr ""
80 |
81 | #: inc/lhafb_ia.settings.php:119
82 | msgid "Save Changes"
83 | msgstr ""
84 |
85 | #: inc/lhafb_ia.settings.php:139
86 | msgid "Successfully updated."
87 | msgstr ""
88 |
89 | #: inc/lhafb_ia.settings.php:309
90 | msgid "Not selected"
91 | msgstr ""
92 |
93 | #. Plugin Name of the plugin/theme
94 | msgid "allfacebook Instant Articles"
95 | msgstr ""
96 |
97 | #. Description of the plugin/theme
98 | msgid "This plugin lets your WordPress display instant articles directly on your facebook page."
99 | msgstr ""
100 |
101 | #. Author of the plugin/theme
102 | msgid "Luehrsen // Heinrich"
103 | msgstr ""
104 |
105 | #. Author URI of the plugin/theme
106 | msgid "http://www.luehrsen-heinrich.de"
107 | msgstr ""
108 |
--------------------------------------------------------------------------------
$1
',
89 | $content
90 | );
91 |
92 | return $content;
93 | }
94 |
95 | /**
96 | * empty_tags function.
97 | *
98 | * @access public
99 | * @param mixed $content
100 | * @return void
101 | */
102 | public function empty_tags($content){
103 | // Replace empty characters
104 | $content = preg_replace(
105 | '/