# HG changeset patch # User ymh # Date 1320403967 -3600 # Node ID 57ff6d39f88c74320bb93a6fc61e655128e71ec7 # Parent 6b24cd6b51c5cb60b8698bce24a11695b29231f9 first full dynamic version of the bundle diff -r 6b24cd6b51c5 -r 57ff6d39f88c .hgignore --- a/.hgignore Fri Oct 28 14:57:11 2011 +0200 +++ b/.hgignore Fri Nov 04 11:52:47 2011 +0100 @@ -7,3 +7,6 @@ ^web/bundles$ ^src/IRI$ ^app/config/parameters\.ini$ + +syntax: regexp +^app/console\.php$ \ No newline at end of file diff -r 6b24cd6b51c5 -r 57ff6d39f88c .hgsubstate --- a/.hgsubstate Fri Oct 28 14:57:11 2011 +0200 +++ b/.hgsubstate Fri Nov 04 11:52:47 2011 +0100 @@ -1,1 +1,1 @@ -99c15cfe420b623bddca280fd7d1fea675e1cbfc vendor/bundles/IRI/Bundle/WikiTagBundle +780ef37e63b922fb20f49e7e08ada12fd8f74a2b vendor/bundles/IRI/Bundle/WikiTagBundle diff -r 6b24cd6b51c5 -r 57ff6d39f88c app/autoload.php --- a/app/autoload.php Fri Oct 28 14:57:11 2011 +0200 +++ b/app/autoload.php Fri Nov 04 11:52:47 2011 +0100 @@ -33,6 +33,9 @@ $loader->registerNamespaceFallbacks(array( __DIR__.'/../src', + __DIR__.'/cache/dev/wikitag', + __DIR__.'/cache/prod/wikitag', + __DIR__.'/cache/test/wikitag', )); $loader->register(); diff -r 6b24cd6b51c5 -r 57ff6d39f88c app/config/config.yml --- a/app/config/config.yml Fri Oct 28 14:57:11 2011 +0200 +++ b/app/config/config.yml Fri Nov 04 11:52:47 2011 +0100 @@ -74,5 +74,4 @@ accessor: getTitle description: type: text - #shortTitle: ~ diff -r 6b24cd6b51c5 -r 57ff6d39f88c src/Company/BaseBundle/Entity/Document.php --- a/src/Company/BaseBundle/Entity/Document.php Fri Oct 28 14:57:11 2011 +0200 +++ b/src/Company/BaseBundle/Entity/Document.php Fri Nov 04 11:52:47 2011 +0100 @@ -28,7 +28,8 @@ * @ORM\Column(name="title", type="string", length=255) */ private $title; - + + /** * @var text $description * @@ -67,6 +68,7 @@ return $this->title; } + /** * Set description *