From 6869744bb5c5d5d1a76bbfdd495d7485405f8571 Mon Sep 17 00:00:00 2001 From: WouterJ Date: Thu, 1 Aug 2013 23:17:46 +0200 Subject: [PATCH 1/3] Updated README --- README.md | 66 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 42 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index d131c34..8e8bdff 100644 --- a/README.md +++ b/README.md @@ -1,36 +1,54 @@ -[WIP] Symfony Cmf Blog Bundle -============================= +# Symfony CMF Blog Bundle -This is part of the Symfony Cmf: +[![Build Status](https://travis-ci.org/symfony-cmf/BlogBundle.png?branch=master)](https://travis-ci.org/symfony-cmf/BlogBundle) +[![Latest Stable Version](https://poser.pugx.org/symfony-cmf/blog-bundle/v/stable.png)](https://packagist.org/packages/symfony-cmf/blog-bundle) +[![Total Downloads](https://poser.pugx.org/symfony-cmf/blog-bundle/downloads.png)](https://packagist.org/packages/symfony-cmf/blog-bundle) -## About +This bundle is part of the [Symfony Content Management Framework (CMF)](http://cmf.symfony.com/) +and licensed under the [MIT License](LICENSE). -The blog bundle is a very much "work in progress" and will only be complete -when all the necessary pieces of the CMF are available. +This bundle aims to provide everything you need to create a full blog or +blog-like system. It also includes in-built support for the Sonata Admin +bundle to help you get up-and-running quickly. -The missing pieces: +Current features: -* **TaxonomyBundle**: for tagging -* **phpcr-odm/something-else**: Way to automatically order nodes when saving - (ensure next / previous posts are indeed the next and previous posts - according to date) +* Host multiple blogs within a single website; +* Place blogs anywhere within your route hierarchy; +* Sonata Admin integration. -Currently implemented: +Pending features: -* **PublishWorkFlowChecker**: The PWFC from the CoreBundle handles the - publication status of blog posts. +* Full tag support; +* Frontend pagination (using knp-paginator); +* RSS/ATOM feed; +* Comments; +* User support (FOSUserBundle). -## Links -- GitHub: -- Sandbox: -- Web: -- Wiki: -- Issue Tracker: -- IRC: irc://freenode/#symfony-cmf -- Users mailing list: -- Devs mailing list: +## Requirements + +* Symfony 2.2.x +* [CoreBundle](https://github.com/symfony-cmf/CoreBundle) +* [RoutingAutoBundle](https://github.com/symfony-cmf/RoutingAutoBundle) + ## Documentation -http://symfony.com/doc/master/cmf/bundles/blog.html +For the install guide and reference, see: + +* [BlogBundle documentation](http://symfony.com/doc/master/cmf/bundles/blog.html) + +See also: + +* [All Symfony CMF documentation](http://symfony.com/doc/master/cmf/index.html) - complete Symfony CMF reference +* [Symfony CMF Website](http://cmf.symfony.com/) - introduction, live demo, support and community links + + +## Contributing + +Pull requests are welcome. Please see our [CONTRIBUTING](https://github.com/symfony-cmf/BlogBundle/blob/master/CONTRIBUTING.md) guide. + +Unit and/or functional tests exist for this bundle. See the [Testing documentation](http://symfony.com/doc/master/cmf/components/testing.html) for a guide to running the tests. + +Thanks to [everyone who has contributed](https://github.com/symfony-cmf/BlogBundle/contributors) already. From d5a510f58be228e2fc4a44ad6924343490b512a3 Mon Sep 17 00:00:00 2001 From: WouterJ Date: Fri, 2 Aug 2013 11:41:11 +0200 Subject: [PATCH 2/3] Moved to xliff --- Resources/translations/CmfBlogBundle.en.xliff | 142 ++++++++++++++++++ Resources/translations/CmfBlogBundle.en.yml | 35 ----- Resources/translations/CmfBlogBundle.pl.xliff | 142 ++++++++++++++++++ Resources/translations/CmfBlogBundle.pl.yml | 36 ----- 4 files changed, 284 insertions(+), 71 deletions(-) create mode 100644 Resources/translations/CmfBlogBundle.en.xliff delete mode 100644 Resources/translations/CmfBlogBundle.en.yml create mode 100644 Resources/translations/CmfBlogBundle.pl.xliff delete mode 100644 Resources/translations/CmfBlogBundle.pl.yml diff --git a/Resources/translations/CmfBlogBundle.en.xliff b/Resources/translations/CmfBlogBundle.en.xliff new file mode 100644 index 0000000..6a5122e --- /dev/null +++ b/Resources/translations/CmfBlogBundle.en.xliff @@ -0,0 +1,142 @@ + + + + + + breadcrumb.link_blog_list + Blogs + + + + breadcrumb.link_blog_create + Create + + + + breadcrumb.link_blog_edit + Edit + + + + breadcrumb.link_blog_delete + Delete + + + + breadcrumb.link_post_list + Posts + + + + breadcrumb.link_post_create + Create + + + + breadcrumb.link_post_edit + Edit + + + + breadcrumb.link_post_delete + Delete + + + + list.label_blog + Blog + + + + list.label_date + Date + + + + list.label_id + Id + + + + list.label_name + Name + + + + list.label_status + Status + + + + list.label_tags + Tags + + + + list.label_title + Title + + + + form.group_general + General + + + + form.label_blog + Blog + + + + form.label_body + Content + + + + form.label_date + Date + + + + form.label_id + Id + + + + form.label_name + Name + + + + form.label_parent + Parent + + + + form.label_status + Status + + + + form.label_tags + Tags + + + + form.label_title + Title + + + + dashboard.label_post + Post + + + + dashboard.label_blog + Blog + + + + + diff --git a/Resources/translations/CmfBlogBundle.en.yml b/Resources/translations/CmfBlogBundle.en.yml deleted file mode 100644 index 0aacf0f..0000000 --- a/Resources/translations/CmfBlogBundle.en.yml +++ /dev/null @@ -1,35 +0,0 @@ -breadcrumb: - link_blog_list: Blogs - link_blog_create: Create - link_blog_edit: Edit - link_blog_delete: Delete - - link_post_list: Posts - link_post_create: Create - link_post_edit: Edit - link_post_delete: Delete - -list: - label_blog: Blog - label_date: Date - label_id: Id - label_name: Name - label_status: Status - label_tags: Tags - label_title: Title - -form: - group_general: General - label_blog: Blog - label_body: Content - label_date: Date - label_id: Id - label_name: Name - label_parent: Parent - label_status: Status - label_tags: Tags - label_title: Title - -dashboard: - label_post: Post - label_blog: Blog diff --git a/Resources/translations/CmfBlogBundle.pl.xliff b/Resources/translations/CmfBlogBundle.pl.xliff new file mode 100644 index 0000000..8af6ef1 --- /dev/null +++ b/Resources/translations/CmfBlogBundle.pl.xliff @@ -0,0 +1,142 @@ + + + + + + breadcrumb.link_blog_list + Listy wpisów + + + + breadcrumb.link_blog_create + Dodaj + + + + breadcrumb.link_blog_edit + Edytuj + + + + breadcrumb.link_blog_delete + Usuń + + + + breadcrumb.link_post_list + Wpisy + + + + breadcrumb.link_post_create + Dodaj + + + + breadcrumb.link_post_edit + Edytuj + + + + breadcrumb.link_post_delete + Usuń + + + + list.label_blog + Blog + + + + list.label_date + Data + + + + list.label_id + Id + + + + list.label_name + Nazwa + + + + list.label_status + Status + + + + list.label_tags + Tagi + + + + list.label_title + Tytuł + + + + form.group_general + Ogólne + + + + form.label_blog + Wydarzenia + + + + form.label_body + Zawartość + + + + form.label_date + Data + + + + form.label_id + Id + + + + form.label_name + Nazwa + + + + form.label_parent + Nadrzędny + + + + form.label_status + Status + + + + form.label_tags + Tagi + + + + form.label_title + Tytuł + + + + dashboard.label_post + Wpisy + + + + dashboard.label_blog + Blog + + + + + diff --git a/Resources/translations/CmfBlogBundle.pl.yml b/Resources/translations/CmfBlogBundle.pl.yml deleted file mode 100644 index 7f70e19..0000000 --- a/Resources/translations/CmfBlogBundle.pl.yml +++ /dev/null @@ -1,36 +0,0 @@ -breadcrumb: - link_blog_list: Listy wpisów - link_blog_create: Dodaj - link_blog_edit: Edytuj - link_blog_delete: Usuń - - link_post_list: Wpisy - link_post_create: Dodaj - link_post_edit: Edytuj - link_post_delete: Usuń - -list: - label_blog: Blog - label_date: Data - label_id: Id - label_name: Nazwa - label_status: Status - label_tags: Tagi - label_title: Tytuł - -form: - group_general: Ogólne - label_blog: Wydarzenia - label_body: Zawartość - label_date: Data - label_id: Id - label_name: Nazwa - label_parent: Nadrzędny - label_status: Status - label_tags: Tagi - label_title: Tytuł - -dashboard: - label_post: Wpisy - label_blog: Blog - From 0b1bcfb1de4c680a9f34f97731ffc5b782f4f922 Mon Sep 17 00:00:00 2001 From: WouterJ Date: Sat, 3 Aug 2013 11:39:31 +0200 Subject: [PATCH 3/3] Readded WIP warning --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 8e8bdff..459126f 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,9 @@ This bundle is part of the [Symfony Content Management Framework (CMF)](http://cmf.symfony.com/) and licensed under the [MIT License](LICENSE). + > **WARNING** The Blog Bundle is a "work in progress" and will only be + > complete when all the neessary pieces of the CMF are available. + This bundle aims to provide everything you need to create a full blog or blog-like system. It also includes in-built support for the Sonata Admin bundle to help you get up-and-running quickly.