diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | buildscripts/apigen/pradosoft/@layout.latte | 2 | ||||
-rw-r--r-- | buildscripts/classtree/ExtensionReadme.html | 2 | ||||
-rw-r--r-- | composer.json | 2 | ||||
-rw-r--r-- | demos/quickstart/protected/pages/GettingStarted/Introduction.page | 2 | ||||
-rw-r--r-- | tests/FunctionalTests/tickets/protected/pages/Layout.php | 1 |
6 files changed, 6 insertions, 5 deletions
@@ -26,7 +26,7 @@ Just create a composer.json file for your project: ```JSON { "require": { - "comperio/prado": "~3.2" + "pradosoft/prado": "~3.2" } } ``` diff --git a/buildscripts/apigen/pradosoft/@layout.latte b/buildscripts/apigen/pradosoft/@layout.latte index 739b00e8..2790d92c 100644 --- a/buildscripts/apigen/pradosoft/@layout.latte +++ b/buildscripts/apigen/pradosoft/@layout.latte @@ -64,7 +64,7 @@ the file LICENSE.md that was distributed with this source code. <li><a href="/download/" >Download</a></li> <li><a href="/documentation/" class="active">Documentation</a></li> <li><a href="/forum/" >Forum</a></li> - <li><a href="http://code.google.com/p/prado3">Development</a></li> + <li><a href="http://github.com/pradosoft/prado">Development</a></li> </ul> </div><!-- mainmenu --> </div><!-- header --> diff --git a/buildscripts/classtree/ExtensionReadme.html b/buildscripts/classtree/ExtensionReadme.html index fed1205c..b2307942 100644 --- a/buildscripts/classtree/ExtensionReadme.html +++ b/buildscripts/classtree/ExtensionReadme.html @@ -7,7 +7,7 @@ This directory used to contain the editor's extensions for PRADO. </p> <p>They have been moved elsewhere; we suggest you to download the most -up-to-date versions at <a href="http://code.google.com/p/prado3/downloads/list" >PRADO's google code page</a> +up-to-date versions from the <a href="http://github.com/pradosoft/prado" >project's repository</a> </p> <p>Currently we provide extensions for the following editors: <ul> diff --git a/composer.json b/composer.json index 5441c43f..481e52a1 100644 --- a/composer.json +++ b/composer.json @@ -84,7 +84,7 @@ }, "support" : { "forum" : "http://www.pradosoft.com/forum", - "source" : "https://code.google.com/p/prado3/source" + "source" : "https://github.com/pradosoft/prado" }, "bin" : [ "bin/prado-cli" diff --git a/demos/quickstart/protected/pages/GettingStarted/Introduction.page b/demos/quickstart/protected/pages/GettingStarted/Introduction.page index 2119f9b6..522e385c 100644 --- a/demos/quickstart/protected/pages/GettingStarted/Introduction.page +++ b/demos/quickstart/protected/pages/GettingStarted/Introduction.page @@ -56,7 +56,7 @@ You may refer to the following resources if you find this tutorial does not fulf <li><a href="http://www.pradosoft.com/docs/manual/">PRADO API Documentation</a></li>
<li><a href="http://www.pradosoft.com/forum/">PRADO Forum</a></li>
<li><a href="http://www.pradosoft.com/wiki/">PRADO Wiki</a></li>
- <li><a href="http://code.google.com/p/prado3/issues/list">PRADO Issue Tracker</a></li>
+ <li><a href="http://github.com/pradosoft/prado/issues">PRADO Issue Tracker</a></li>
</ul>
</com:TContent>
diff --git a/tests/FunctionalTests/tickets/protected/pages/Layout.php b/tests/FunctionalTests/tickets/protected/pages/Layout.php index da23db77..b971fb1c 100644 --- a/tests/FunctionalTests/tickets/protected/pages/Layout.php +++ b/tests/FunctionalTests/tickets/protected/pages/Layout.php @@ -10,6 +10,7 @@ class Layout extends TTemplateControl $this->getPage()->setTitle("Verifying $type $num"); $this->ticketlink->setText("Verifying $type $num"); + //TODO New issues will link to https://github.com/pradosoft/prado/issues/{$num} if(strToLower($type) === 'issue') { $this->ticketlink->setNavigateUrl("http://code.google.com/p/prado3/issues/detail?id={$num}"); } |