diff --git a/website/apps/frontend/config/routing.yml b/website/apps/frontend/config/routing.yml index a5e421276..3cb49ca12 100644 --- a/website/apps/frontend/config/routing.yml +++ b/website/apps/frontend/config/routing.yml @@ -3,6 +3,10 @@ homepage: url: / param: { module: main, action: index } +trac_register: + url: /trac/register + param: { module: main, action: trac_register } + blog: url: /blog param: { module: blog, action: index } diff --git a/website/apps/frontend/modules/blog/templates/_latest_blog_posts.php b/website/apps/frontend/modules/blog/templates/_latest_blog_posts.php index a34fffa22..a2dabd926 100644 --- a/website/apps/frontend/modules/blog/templates/_latest_blog_posts.php +++ b/website/apps/frontend/modules/blog/templates/_latest_blog_posts.php @@ -1,8 +1,10 @@ + +

Latest Blog Posts

\ No newline at end of file diff --git a/website/apps/frontend/modules/blog/templates/indexSuccess.php b/website/apps/frontend/modules/blog/templates/indexSuccess.php index 3e880370e..647080f4b 100644 --- a/website/apps/frontend/modules/blog/templates/indexSuccess.php +++ b/website/apps/frontend/modules/blog/templates/indexSuccess.php @@ -1,9 +1,12 @@ + +

Doctrine Blog

getName(), '@blog_post?slug='.$blogPost->getSlug()); ?>

+

Posted getCreatedAt())); ?> ago.

getBody(); ?>

diff --git a/website/apps/frontend/modules/blog/templates/viewSuccess.php b/website/apps/frontend/modules/blog/templates/viewSuccess.php index 4fbfea5cb..dc12f69c9 100644 --- a/website/apps/frontend/modules/blog/templates/viewSuccess.php +++ b/website/apps/frontend/modules/blog/templates/viewSuccess.php @@ -1,4 +1,7 @@ + +

getName(); ?>

+

Posted getCreatedAt())); ?> ago.

getBody(); ?>

diff --git a/website/apps/frontend/modules/main/actions/actions.class.php b/website/apps/frontend/modules/main/actions/actions.class.php index 9638f9f0d..d5bccd29e 100644 --- a/website/apps/frontend/modules/main/actions/actions.class.php +++ b/website/apps/frontend/modules/main/actions/actions.class.php @@ -32,4 +32,9 @@ class mainActions extends sfActions { $this->redirect('http://phpdoctrine.net/trac'); } + + public function executeTrac_register() + { + $this->redirect('http://phpdoctrine.net/trac/register'); + } } diff --git a/website/apps/frontend/modules/main/templates/aboutSuccess.php b/website/apps/frontend/modules/main/templates/aboutSuccess.php index be795adb0..cd840fa61 100644 --- a/website/apps/frontend/modules/main/templates/aboutSuccess.php +++ b/website/apps/frontend/modules/main/templates/aboutSuccess.php @@ -1,22 +1,50 @@

About Doctrine

+

What is Doctrine?

+

Who is behind Doctrine?

+ +

Here is a list of the people mainly responsible for Doctrine. Many other people not on this list contribute, they can be found + .

+ +
    +
  • Konsta Vesterinen(zYne-) - Konsta is the project founder and lead developer of Doctrine.
  • +
  • Roman S. Borschel(romanb) - Assists in the development of Doctrine through suggestions and small code contributions.
  • +
  • Ian P. Christian(pookey) - Hosts trac and SVN. Helps with testing and occasionally writes a line of code.
  • +
  • Janne Vanhala(jepso) - The lead developer of the official Doctrine subproject Sensei. Creator of the documentation tool Doctrine uses.
  • +
  • (jwage) - Website, Documentation, Packaging Releases, Bug Fixes, etc
  • +
+

Want to get involved?

+ + You can contribute to the Doctrine development in many different ways. First start by + access. Once you done that you can begin submitting tickets for issues/bugs you discover while working with Doctrine. If you wish to contribute directly to the code, + you must request svn commit access in IRC from either pookey or .
+ +

Quickjump

+ + +
+

Key Features

\ No newline at end of file diff --git a/website/apps/frontend/modules/manual/actions/actions.class.php b/website/apps/frontend/modules/manual/actions/actions.class.php index 2a40f435e..945a3ccaf 100644 --- a/website/apps/frontend/modules/manual/actions/actions.class.php +++ b/website/apps/frontend/modules/manual/actions/actions.class.php @@ -291,7 +291,7 @@ class manualActions extends sfActions $this->renderer->setOptions(array( 'section' => $section, - 'url_prefix' => 'manual/', + 'url_prefix' => '?chapter=', 'title' => $title )); diff --git a/website/apps/frontend/templates/_footer.php b/website/apps/frontend/templates/_footer.php index eb00c862a..d77fbfe65 100644 --- a/website/apps/frontend/templates/_footer.php +++ b/website/apps/frontend/templates/_footer.php @@ -1 +1 @@ -

Copyright Doctrine 2007

\ No newline at end of file +

Copyright Doctrine 2006-2007 - Powered by and sponsored by

\ No newline at end of file diff --git a/website/web/css/layout.css b/website/web/css/layout.css index 1f620d616..187a99426 100644 --- a/website/web/css/layout.css +++ b/website/web/css/layout.css @@ -140,6 +140,12 @@ body padding-top: 8px; } +#wrapper #footer h1 a +{ + text-decoration: underline; + color: white; +} + #right div { margin-bottom: 10px;