Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .phrozn/entries/blog/18-08-2012/documentation-updates.twig
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ layout: page.twig
</div>
<div class="well" id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = '/blog/18-07-2012/documentation-updates';
var disqus_identifier = '/blog/18-08-2012/documentation-updates';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ layout: page.twig
</div>
<div class="well" id="disqus_thread"></div>
<script type="text/javascript">
var disqus_identifier = '/blog/18-07-2012/essential-framework-components';
var disqus_identifier = '/blog/25-08-2012/essential-framework-components';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
Expand Down
2 changes: 1 addition & 1 deletion .phrozn/entries/docs/current/bootstrap.twig
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ layout: docs/current.twig
}
</pre>
<p>
Here Proem sets up a <a href="/docs/current/signal-component.html">Signal Manager</a> and a <a href="/docs/services-component.html">Service Manager</a>.
Here Proem sets up a <a href="/docs/current/signal-component.html">Signal Manager</a> and a <a href="/docs/current/services-component.html">Service Manager</a>.
(Asset is an alias of <a href="https://github.com/proem/proem/blob/develop/lib/Proem/Service/Asset/Standard.php">\Proem\Service\Asset\Standard</a>).
These two objects form the heart of an application built on top of Proem and are passed around the entire bootstrap process and into userland <em>(your application)</em>.
</p>
Expand Down
2 changes: 1 addition & 1 deletion .phrozn/entries/docs/current/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ layout: docs/current.twig
The <em>Userland</em> section covers how you can write code to extend and build upon the Proem framework.
</p>
<p>
If you are then still looking for more detail we also have available the <a href="http://prdoc/api/namespaces/Proem.html">API Documentation</a>. This documentation documents every class and method
If you are then still looking for more detail we also have available the <a href="/api/namespaces/Proem.html">API Documentation</a>. This documentation documents every class and method
within Proem and is automatically generated from comments within the actual code itself.
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion .phrozn/entries/docs/current/modules.twig
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ layout: docs/current.twig
All that is left now is to load our <em>Module</em>. Edit the <em>htdocs/index.php</em> file so that it looks lie the following:
</p>
<pre class="prettyprint">
require_once '/Users/thorpe/www/lib/proem/framework/lib/Proem/Autoloader.php';
require_once '../lib/Proem/Autoloader.php';

(new Proem\Autoloader())
->attachNamespace('Module', '../lib')
Expand Down
4 changes: 2 additions & 2 deletions .phrozn/entries/docs/current/plugins.twig
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ layout: docs/current.twig
Next, we need to load our <em>Plugin</em>. Simple, open our <em>htdocs/index.php</em> file and edit it to look like:
</p>
<pre class="prettyprint">
require_once '/Users/thorpe/www/lib/proem/framework/lib/Proem/Autoloader.php';
require_once '../lib/Proem/Autoloader.php';

(new Proem\Autoloader())
->attachNamespace('Module', '../lib')
Expand All @@ -77,7 +77,7 @@ layout: docs/current.twig
</p>
<p>
In fact, under the hood, a <em>Module</em> and a <em>Plugin</em> are currently exactly the same. This will likely change somewhat in future versions, but for now, it's more a simple naming convention.
<em>Modules</em> are designed to manipulate <a href="http://prdoc/docs/current/route-component.html">Routes</a> and house <a href="/docs/current/controllers.html">Controllers</a> while <em>Plugins</em>
<em>Modules</em> are designed to manipulate <a href="/docs/current/route-component.html">Routes</a> and house <a href="/docs/current/controllers.html">Controllers</a> while <em>Plugins</em>
are designed to inject third party code.
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion .phrozn/entries/docs/current/route-component.twig
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ layout: docs/current.twig
<p>
The above examples demonstrate how to configure simple rules, but web applications these days are complex beasts with multiple
url's all pointing to multiple resources. How do we handle all this in a simple uniformed manner? Easy, this is where the
<a href="(https://github.com/proem/proem/blob/develop/lib/Proem/Routing/Router.php">Router</a> comes into play. The <em>Router</em>
<a href="https://github.com/proem/proem/blob/develop/lib/Proem/Routing/Router.php">Router</a> comes into play. The <em>Router</em>
is basically responsible for storing a series of <em>Routes</em> and managing the execution of there <em>process()</em> method's against the supplied url.
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion .phrozn/entries/docs/dev/bootstrap.twig
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ layout: docs/dev.twig
}
</pre>
<p>
Here Proem sets up a <a href="/docs/dev/signal-component.html">Signal Manager</a> and a <a href="/docs/services-component.html">Service Manager</a>.
Here Proem sets up a <a href="/docs/dev/signal-component.html">Signal Manager</a> and a <a href="/docs/dev/services-component.html">Service Manager</a>.
(Asset is an alias of <a href="https://github.com/proem/proem/blob/develop/lib/Proem/Service/Asset/Standard.php">\Proem\Service\Asset\Standard</a>).
These two objects form the heart of an application built on top of Proem and are passed around the entire bootstrap process and into userland <em>(your application)</em>.
</p>
Expand Down
2 changes: 1 addition & 1 deletion .phrozn/entries/docs/dev/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ layout: docs/dev.twig
The <em>Userland</em> section covers how you can write code to extend and build upon the Proem framework.
</p>
<p>
If you are then still looking for more detail we also have available the <a href="http://prdoc/api/namespaces/Proem.html">API Documentation</a>. This documentation documents every class and method
If you are then still looking for more detail we also have available the <a href="/api/namespaces/Proem.html">API Documentation</a>. This documentation documents every class and method
within Proem and is automatically generated from comments within the actual code itself.
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion .phrozn/entries/docs/dev/modules.twig
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ layout: docs/dev.twig
All that is left now is to load our <em>Module</em>. Edit the <em>htdocs/index.php</em> file so that it looks lie the following:
</p>
<pre class="prettyprint">
require_once '/Users/thorpe/www/lib/proem/framework/lib/Proem/Autoloader.php';
require_once '../lib/Proem/Autoloader.php';

(new Proem\Autoloader())
->attachNamespace('Module', '../lib')
Expand Down
4 changes: 2 additions & 2 deletions .phrozn/entries/docs/dev/plugins.twig
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ layout: docs/dev.twig
Next, we need to load our <em>Plugin</em>. Simple, open our <em>htdocs/index.php</em> file and edit it to look like:
</p>
<pre class="prettyprint">
require_once '/Users/thorpe/www/lib/proem/framework/lib/Proem/Autoloader.php';
require_once '../lib/Proem/Autoloader.php';

(new Proem\Autoloader())
->attachNamespace('Module', '../lib')
Expand All @@ -77,7 +77,7 @@ layout: docs/dev.twig
</p>
<p>
In fact, under the hood, a <em>Module</em> and a <em>Plugin</em> are currently exactly the same. This will likely change somewhat in future versions, but for now, it's more a simple naming convention.
<em>Modules</em> are designed to manipulate <a href="http://prdoc/docs/dev/route-component.html">Routes</a> and house <a href="/docs/dev/controllers.html">Controllers</a> while <em>Plugins</em>
<em>Modules</em> are designed to manipulate <a href="/docs/dev/route-component.html">Routes</a> and house <a href="/docs/dev/controllers.html">Controllers</a> while <em>Plugins</em>
are designed to inject third party code.
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion .phrozn/entries/docs/dev/route-component.twig
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ layout: docs/dev.twig
<p>
The above examples demonstrate how to configure simple rules, but web applications these days are complex beasts with multiple
url's all pointing to multiple resources. How do we handle all this in a simple uniformed manner? Easy, this is where the
<a href="(https://github.com/proem/proem/blob/develop/lib/Proem/Routing/Router.php">Router</a> comes into play. The <em>Router</em>
<a href="https://github.com/proem/proem/blob/develop/lib/Proem/Routing/Router.php">Router</a> comes into play. The <em>Router</em>
is basically responsible for storing a series of <em>Routes</em> and managing the execution of there <em>process()</em> method's against the supplied url.
</p>
<p>
Expand Down
4 changes: 2 additions & 2 deletions .phrozn/layouts/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
</div>
<div class="span4">
<div class="well">
<h3><a href="/docs/services-component.html">Dependency Injection</a></h3>
<h3><a href="/docs/current/services-component.html">Dependency Injection</a></h3>
<p>
A simple dependency injection implementation allows easy decoupling and configuration of individual components via DI containers (services) and assets.
</p>
</div>
</div>
<div class="span4">
<div class="well">
<h3><a href="/docs/signal-component.html">Event Driven</a></h3>
<h3><a href="/docs/current/signal-component.html">Event Driven</a></h3>
<p>
The entire bootstrap process is event driven in Proem. This allows you to register a listener for events and easily inject your own code into the process.
</p>
Expand Down