Releases for sf 1.4
| Version |
License |
API |
Released |
|
0.1.6beta
|
MIT |
0.1.0beta
|
04/09/2010 |
|
0.1.5beta
|
MIT |
0.1.0beta
|
11/04/2010 |
|
0.1.4beta
|
MIT |
0.1.0beta
|
24/02/2010 |
|
0.1.3beta
|
MIT |
0.1.0beta
|
08/02/2010 |
|
0.1.1beta
|
MIT |
0.1.0beta
|
24/01/2010 |
|
0.1.0beta
|
MIT |
0.1.0beta
|
22/01/2010 |
Releases for sf 1.3
| Version |
License |
API |
Released |
|
0.1.6beta
|
MIT |
0.1.0beta
|
04/09/2010 |
|
0.1.5beta
|
MIT |
0.1.0beta
|
11/04/2010 |
|
0.1.4beta
|
MIT |
0.1.0beta
|
24/02/2010 |
|
0.1.3beta
|
MIT |
0.1.0beta
|
08/02/2010 |
|
0.1.1beta
|
MIT |
0.1.0beta
|
24/01/2010 |
|
0.1.0beta
|
MIT |
0.1.0beta
|
22/01/2010 |
| Name |
Channel |
Version |
| tdCorePlugin |
plugins.symfony-project.org |
0.1.10- |
| sfDoctrineGuardPlugin |
plugins.symfony-project.org |
4.0.1- |
Changelog for release 0.1.6 - 04/09/2010
- added backend module AJAX activate/deactivate interface
Other releases
Release 0.1.6 - 04/09/2010
- added backend module AJAX activate/deactivate interface
Release 0.1.5 - 11/04/2010
- added sfDoctrineGuardPlugin dependency
- fixed schema bug with wrong author foreign key
Release 0.1.4 - 24/02/2010
- short description sign count moved to core
- article admin generator updated
- fixtures bug fixed
- article frontend template - ommit displaying image if no image uploaded
Release 0.1.3 - 08/02/2010
- switched articles list to be shown with descending create time
- fixed image showing in admin list
- fixed upload directory bug
Release 0.1.1 - 24/01/2010
- fixed short text method
- translation added
- article admin generator updated
- documentation updated
Release 0.1.0 - 22/01/2010
tdBlogPlugin
The tdBlogPlugin provides basic blog functionalties.
This plugin is a part of TD CMF and is based on Doctrine ORM.
Installation
Install the plugin via the subversion repository by executing the following
command from the project root directory:
$ svn co http://svn.symfony-project.com/plugins/tdBlogPlugin/trunk plugins/tdBlogPlugin
or by using the default symfony plugin install command:
$ ./symfony plugin:install -s beta tdBlogPlugin
as the actual release is in its beta stage.
Usage
Enable the tdSampleArticle module in your frontend application's
config/settings.yml enabled_modules section:
enabled_modules: [tdSampleArticle ]( ...,)
Fixtures are provided with the plugin - randomly generated data. Run the
following commands:
$ ./symfony doctrine:build --all
and
$ ./symfony doctrine:data-load
Now you have to create a directory for video uploads:
$ mkdir web/uploads/td/blog
and make it writeable:
$ chmod 777 web/uploads/td/blog
Now you have to copy the sample.jpg file from tdBlogPlugin/data/samples
to the blog upload directory created above. Everything is ready to run the
following URL in your browser:
http://your-project/sample-article
Enable the td_aticle admin generator in your backend application's
config/settings.yml enabled_modules section:
enabled_modules: [td_article ]( ...,)
To use the activate/deactivate AJAX interface in the backend td_article
module, remember to enable the graphics module of the tdCorePlugin
inside your settings.yml file (see tdCorePlugin README).
enabled_modules: [graphics ]( ...,)
Configuration
You can modify settings of the tdGuestbookPlugin in the
config/tdBlogPluginConfiguration.class.php file:
Translations
You may translate tdSampleArticle module to your own language by creating
td.XX.xml file under modules/tdSampleArticle/i18n directory (where XX is
the language code). So far, English language is the default one and additionally
Polish translationis provided.
Dependencies