Просмотр исходного кода

Move koseven.ga to koseven.dev

Tobias Oitzinger 5 лет назад
Родитель
Сommit
4ef4973cfd

+ 4 - 4
README.md

@@ -1,4 +1,4 @@
-[![Koseven Logo](https://i.imgur.com/2CeT8JL.png)](https://koseven.ga/)
+[![Koseven Logo](https://i.imgur.com/2CeT8JL.png)](https://koseven.dev/)
 
 [![Latest Stable Version](https://poser.pugx.org/koseven/koseven/v/stable)](https://packagist.org/packages/koseven/koseven)
 [![Build Status](https://action-badges.now.sh/koseven/koseven?workflow=test)](https://github.com/koseven/koseven/actions)
@@ -16,7 +16,7 @@ Released under a [BSD license](LICENSE.md), Koseven can be used legally for any
 
 ## Will work as dropin of Kohana?
 
-If you were using 3.3.x version you may need to make some small changes. Please refer to [upgrading from kohana](https://docs.koseven.ga/guide/kohana/upgrading-from-kohana) section of the documentation.
+If you were using 3.3.x version you may need to make some small changes. Please refer to [upgrading from kohana](https://koseven.dev/guide/kohana/upgrading-from-kohana) section of the documentation.
 
 ## I Need help!
 
@@ -34,7 +34,7 @@ And so the Koseven repository was born and will keep this repository updated for
 
 ## Are modules of the original Kohana compatible?
 
-Yes they are, just be sure that they are compatible with Kohana 3.3.X. An overview of Koseven's team own modules can be found on [modules](https://koseven.ga/modules.html) page. There's also a list online with a nice overview of existing kohana modules maintained (or abandoned) by others. You can consult this list at [kohana-modules.com](https://kohana-modules.com)
+Yes they are, just be sure that they are compatible with Kohana 3.3.X. An overview of Koseven's team own modules can be found on [modules](https://koseven.dev/modules.html) page. There's also a list online with a nice overview of existing kohana modules maintained (or abandoned) by others. You can consult this list at [kohana-modules.com](https://kohana-modules.com)
 
 ### Why all modules in 1 repo?
 
@@ -48,7 +48,7 @@ There is a dedicated [versions and roadmap](https://koseven.discourse.group/t/ro
 
 ## Documentation
 
-Koseven documentation can be found at [docs.koseven.ga](https://docs.koseven.ga) which also contains an API browser.
+Koseven documentation can be found at [koseven.dev](https://koseven.dev) which also contains an API browser.
 
 The `userguide` module included in all Kohana/Koseven releases allows you to view the documentation locally. To use it you need to enable the`userguide` module in the bootstrap.php file (found in the `application` directory). Next you should be able to read the documentation from your own site via `/index.php/guide` (or just `/guide` if you are rewriting your URLs).
 

+ 4 - 4
application/bootstrap.php

@@ -19,7 +19,7 @@ else
 /**
  * Set the default time zone.
  *
- * @link http://koseven.ga/guide/using.configuration
+ * @link http://koseven.dev/guide/using.configuration
  * @link http://www.php.net/manual/timezones
  */
 date_default_timezone_set('America/Chicago');
@@ -27,7 +27,7 @@ date_default_timezone_set('America/Chicago');
 /**
  * Set the default locale.
  *
- * @link http://koseven.ga/guide/using.configuration
+ * @link http://koseven.dev/guide/using.configuration
  * @link http://www.php.net/manual/function.setlocale
  */
 setlocale(LC_ALL, 'en_US.utf-8');
@@ -35,7 +35,7 @@ setlocale(LC_ALL, 'en_US.utf-8');
 /**
  * Enable the KO7 auto-loader.
  *
- * @link http://koseven.ga/guide/using.autoloading
+ * @link http://koseven.dev/guide/using.autoloading
  * @link http://www.php.net/manual/function.spl-autoload-register
  */
 spl_autoload_register(['KO7', 'auto_load']);
@@ -165,7 +165,7 @@ KO7::modules($modules);
 
 /**
  * Cookie Salt
- * @see  http://koseven.ga/3.3/guide/ko7/cookies
+ * @see  http://koseven.dev/3.3/guide/ko7/cookies
  *
  * If you have not defined a cookie salt in your Cookie class then
  * uncomment the line below and define a preferrably long salt.

+ 2 - 2
composer.json

@@ -7,11 +7,11 @@
     "kohana-php7",
     "koseven"
   ],
-  "homepage": "https://koseven.ga/",
+  "homepage": "https://koseven.dev/",
   "authors": [
     {
       "name": "Koseven Team",
-      "homepage": "https://koseven.ga/",
+      "homepage": "https://koseven.dev/",
       "role": "developer"
     },
     {

+ 1 - 1
modules/auth/classes/KO7/Auth.php

@@ -7,7 +7,7 @@
  *
  * @copyright  (c) 2007-2016  Kohana Team
  * @copyright  (c) since 2016 Koseven Team
- * @license    https://koseven.ga/LICENSE
+ * @license    https://koseven.dev/LICENSE
  */
 abstract class KO7_Auth {
 

+ 1 - 1
modules/auth/classes/KO7/Auth/File.php

@@ -7,7 +7,7 @@
  *
  * @copyright  (c) 2007-2016  Kohana Team
  * @copyright  (c) since 2016 Koseven Team
- * @license    https://koseven.ga/LICENSE
+ * @license    https://koseven.dev/LICENSE
  */
 class KO7_Auth_File extends Auth {
 

+ 1 - 1
modules/cache/classes/KO7/Cache.php

@@ -77,7 +77,7 @@
  *
  * @copyright  (c) 2007-2016  Kohana Team
  * @copyright  (c) since 2016 Koseven Team
- * @license    https://koseven.ga/LICENSE
+ * @license    https://koseven.dev/LICENSE
  */
 abstract class KO7_Cache {
 

+ 1 - 1
modules/cache/classes/KO7/Cache/Apcu.php

@@ -35,7 +35,7 @@
  *
  * @copyright  (c) 2007-2016  Kohana Team
  * @copyright  (c) since 2016 Koseven Team
- * @license    https://koseven.ga/LICENSE
+ * @license    https://koseven.dev/LICENSE
  */
 class KO7_Cache_Apcu extends Cache implements Cache_Arithmetic {
 

+ 1 - 1
modules/cache/classes/KO7/Cache/Arithmetic.php

@@ -8,7 +8,7 @@
  *
  * @copyright  (c) 2007-2016  Kohana Team
  * @copyright  (c) since 2016 Koseven Team
- * @license    https://koseven.ga/LICENSE
+ * @license    https://koseven.dev/LICENSE
  * @since      3.2.0
  */
 interface KO7_Cache_Arithmetic {

+ 1 - 1
modules/cache/classes/KO7/Cache/Exception.php

@@ -7,6 +7,6 @@
  *
  * @copyright  (c) 2007-2016  Kohana Team
  * @copyright  (c) since 2016 Koseven Team
- * @license    https://koseven.ga/LICENSE
+ * @license    https://koseven.dev/LICENSE
  */
 class KO7_Cache_Exception extends KO7_Exception {}

+ 1 - 1
modules/cache/classes/KO7/Cache/File.php

@@ -37,7 +37,7 @@
  *
  * @copyright  (c) 2007-2016  Kohana Team
  * @copyright  (c) since 2016 Koseven Team
- * @license    https://koseven.ga/LICENSE
+ * @license    https://koseven.dev/LICENSE
  */
 class KO7_Cache_File extends Cache implements Cache_GarbageCollect {
 

Некоторые файлы не были показаны из-за большого количества измененных файлов