wip
This commit is contained in:
@ -1,47 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* app/controllers/bedrock.php
|
|
||||||
*
|
|
||||||
* This is the bedrock controller.
|
|
||||||
*
|
|
||||||
* @version 3.0
|
|
||||||
* @author Joey Kimsey <Joey@thetempusproject.com>
|
|
||||||
* @link https://TheTempusProject.com
|
|
||||||
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
|
||||||
*/
|
|
||||||
namespace TheTempusProject\Controllers;
|
|
||||||
|
|
||||||
use TheTempusProject\Hermes\Functions\Redirect;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Session;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Check;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Input;
|
|
||||||
use TheTempusProject\Hermes\Functions\Route as Routes;
|
|
||||||
use TheTempusProject\Houdini\Classes\Issues;
|
|
||||||
use TheTempusProject\Houdini\Classes\Views;
|
|
||||||
use TheTempusProject\Houdini\Classes\Components;
|
|
||||||
use TheTempusProject\Houdini\Classes\Template;
|
|
||||||
use TheTempusProject\Classes\Controller;
|
|
||||||
use TheTempusProject\Classes\Forms;
|
|
||||||
use TheTempusProject\TheTempusProject as App;
|
|
||||||
|
|
||||||
class Bedrock extends Controller {
|
|
||||||
public function index() {
|
|
||||||
self::$title = '{SITENAME} - Bedrock';
|
|
||||||
self::$pageDescription = 'Bedrock is a dependency of {SITENAME} that provides many components used to manipulate database data and many helper functions vital for running the entire application.';
|
|
||||||
Views::view( 'deps.bedrock' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function packagist() {
|
|
||||||
Redirect::external( 'https://packagist.org/packages/thetempusproject/bedrock' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function git() {
|
|
||||||
Redirect::external( 'https://git.thetempusproject.com/the-tempus-project/bedrock' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function changes() {
|
|
||||||
self::$title = '{SITENAME} - Bedrock Changes';
|
|
||||||
self::$pageDescription = 'Bedrock is a dependency of {SITENAME} and this pages lists the most recent changes with some details on those changes.';
|
|
||||||
Views::view( 'changes.bedrock' );
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,47 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* app/controllers/canary.php
|
|
||||||
*
|
|
||||||
* This is the canary controller.
|
|
||||||
*
|
|
||||||
* @version 3.0
|
|
||||||
* @author Joey Kimsey <Joey@thetempusproject.com>
|
|
||||||
* @link https://TheTempusProject.com
|
|
||||||
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
|
||||||
*/
|
|
||||||
namespace TheTempusProject\Controllers;
|
|
||||||
|
|
||||||
use TheTempusProject\Hermes\Functions\Redirect;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Session;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Check;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Input;
|
|
||||||
use TheTempusProject\Hermes\Functions\Route as Routes;
|
|
||||||
use TheTempusProject\Houdini\Classes\Issues;
|
|
||||||
use TheTempusProject\Houdini\Classes\Views;
|
|
||||||
use TheTempusProject\Houdini\Classes\Components;
|
|
||||||
use TheTempusProject\Houdini\Classes\Template;
|
|
||||||
use TheTempusProject\Classes\Controller;
|
|
||||||
use TheTempusProject\Classes\Forms;
|
|
||||||
use TheTempusProject\TheTempusProject as App;
|
|
||||||
|
|
||||||
class Canary extends Controller {
|
|
||||||
public function index() {
|
|
||||||
self::$title = '{SITENAME} - Canary';
|
|
||||||
self::$pageDescription = 'Canary is a dependency of {SITENAME} that both records and reports logs from various PHP applications.';
|
|
||||||
Views::view( 'deps.canary' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function packagist() {
|
|
||||||
Redirect::external( 'https://packagist.org/packages/thetempusproject/canary' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function git() {
|
|
||||||
Redirect::external( 'https://git.thetempusproject.com/the-tempus-project/canary' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function changes() {
|
|
||||||
self::$title = '{SITENAME} - Canary Changes';
|
|
||||||
self::$pageDescription = 'Canary is a dependency of {SITENAME} and this pages lists the most recent changes with some details on those changes.';
|
|
||||||
Views::view( 'changes.canary' );
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,47 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* app/controllers/hermes.php
|
|
||||||
*
|
|
||||||
* This is the hermes controller.
|
|
||||||
*
|
|
||||||
* @version 3.0
|
|
||||||
* @author Joey Kimsey <Joey@thetempusproject.com>
|
|
||||||
* @link https://TheTempusProject.com
|
|
||||||
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
|
||||||
*/
|
|
||||||
namespace TheTempusProject\Controllers;
|
|
||||||
|
|
||||||
use TheTempusProject\Hermes\Functions\Redirect;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Session;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Check;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Input;
|
|
||||||
use TheTempusProject\Hermes\Functions\Route as Routes;
|
|
||||||
use TheTempusProject\Houdini\Classes\Issues;
|
|
||||||
use TheTempusProject\Houdini\Classes\Views;
|
|
||||||
use TheTempusProject\Houdini\Classes\Components;
|
|
||||||
use TheTempusProject\Houdini\Classes\Template;
|
|
||||||
use TheTempusProject\Classes\Controller;
|
|
||||||
use TheTempusProject\Classes\Forms;
|
|
||||||
use TheTempusProject\TheTempusProject as App;
|
|
||||||
|
|
||||||
class Hermes extends Controller {
|
|
||||||
public function index() {
|
|
||||||
self::$title = '{SITENAME} - Hermes';
|
|
||||||
self::$pageDescription = 'Hermes is a dependency of {SITENAME} that provides many common helper functions for navigating url components and file systems; designed to work seamlessly regardless of architecture.';
|
|
||||||
Views::view( 'deps.hermes' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function packagist() {
|
|
||||||
Redirect::external( 'https://packagist.org/packages/thetempusproject/hermes' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function git() {
|
|
||||||
Redirect::external( 'https://git.thetempusproject.com/the-tempus-project/hermes' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function changes() {
|
|
||||||
self::$title = '{SITENAME} - Hermes Changes';
|
|
||||||
self::$pageDescription = 'Hermes is a dependency of {SITENAME} and this pages lists the most recent changes with some details on those changes.';
|
|
||||||
Views::view( 'changes.hermes' );
|
|
||||||
}
|
|
||||||
}
|
|
@ -28,7 +28,7 @@ class Home extends Controller {
|
|||||||
public function index() {
|
public function index() {
|
||||||
self::$title = '{SITENAME}';
|
self::$title = '{SITENAME}';
|
||||||
self::$pageDescription = '{SITENAME} is here to provide you a better, faster, and easier - way to create and manage your own web applications.';
|
self::$pageDescription = '{SITENAME} is here to provide you a better, faster, and easier - way to create and manage your own web applications.';
|
||||||
Views::view( 'landing' );
|
Views::view( 'index' );
|
||||||
}
|
}
|
||||||
|
|
||||||
public function login() {
|
public function login() {
|
||||||
@ -108,12 +108,6 @@ class Home extends Controller {
|
|||||||
Views::view( 'faq' );
|
Views::view( 'faq' );
|
||||||
}
|
}
|
||||||
|
|
||||||
public function libraries() {
|
|
||||||
self::$title = 'Libraries - {SITENAME}';
|
|
||||||
self::$pageDescription = '{SITENAME} depends on several very important libraries, some of which are developed exclusively to support the project. Here you can find a list with more information.' ;
|
|
||||||
Views::view( 'deps.index' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getstarted() {
|
public function getstarted() {
|
||||||
self::$title = 'Get Started - {SITENAME}';
|
self::$title = 'Get Started - {SITENAME}';
|
||||||
self::$pageDescription = '{SITENAME} is a great tool to bring your ideas to reality. On this page, you can find out how to get started today.' ;
|
self::$pageDescription = '{SITENAME} is a great tool to bring your ideas to reality. On this page, you can find out how to get started today.' ;
|
||||||
|
@ -1,47 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* app/controllers/houdini.php
|
|
||||||
*
|
|
||||||
* This is the houdini controller.
|
|
||||||
*
|
|
||||||
* @version 3.0
|
|
||||||
* @author Joey Kimsey <Joey@thetempusproject.com>
|
|
||||||
* @link https://TheTempusProject.com
|
|
||||||
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
|
||||||
*/
|
|
||||||
namespace TheTempusProject\Controllers;
|
|
||||||
|
|
||||||
use TheTempusProject\Hermes\Functions\Redirect;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Session;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Check;
|
|
||||||
use TheTempusProject\Bedrock\Functions\Input;
|
|
||||||
use TheTempusProject\Hermes\Functions\Route as Routes;
|
|
||||||
use TheTempusProject\Houdini\Classes\Issues;
|
|
||||||
use TheTempusProject\Houdini\Classes\Views;
|
|
||||||
use TheTempusProject\Houdini\Classes\Components;
|
|
||||||
use TheTempusProject\Houdini\Classes\Template;
|
|
||||||
use TheTempusProject\Classes\Controller;
|
|
||||||
use TheTempusProject\Classes\Forms;
|
|
||||||
use TheTempusProject\TheTempusProject as App;
|
|
||||||
|
|
||||||
class Houdini extends Controller {
|
|
||||||
public function index() {
|
|
||||||
self::$title = '{SITENAME} - Houdini';
|
|
||||||
self::$pageDescription = 'Houdini is a dependency of {SITENAME} that allows for the creation and manipulation of objects used in html page creation.';
|
|
||||||
Views::view( 'deps.houdini' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function packagist() {
|
|
||||||
Redirect::external( 'https://packagist.org/packages/thetempusproject/houdini' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function git() {
|
|
||||||
Redirect::external( 'https://git.thetempusproject.com/the-tempus-project/houdini' );
|
|
||||||
}
|
|
||||||
|
|
||||||
public function changes() {
|
|
||||||
self::$title = '{SITENAME} - Houdini Changes';
|
|
||||||
self::$pageDescription = 'Houdini is a dependency of {SITENAME} and this pages lists the most recent changes with some details on those changes.';
|
|
||||||
Views::view( 'changes.houdini' );
|
|
||||||
}
|
|
||||||
}
|
|
125
app/controllers/libraries.php
Normal file
125
app/controllers/libraries.php
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* app/controllers/houdini.php
|
||||||
|
*
|
||||||
|
* This is the houdini controller.
|
||||||
|
*
|
||||||
|
* @version 3.0
|
||||||
|
* @author Joey Kimsey <Joey@thetempusproject.com>
|
||||||
|
* @link https://TheTempusProject.com
|
||||||
|
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
|
||||||
|
*/
|
||||||
|
namespace TheTempusProject\Controllers;
|
||||||
|
|
||||||
|
use TheTempusProject\Hermes\Functions\Redirect;
|
||||||
|
use TheTempusProject\Houdini\Classes\Views;
|
||||||
|
use TheTempusProject\Classes\Controller;
|
||||||
|
|
||||||
|
class Libraries extends Controller {
|
||||||
|
public function index() {
|
||||||
|
self::$title = 'Libraries - {SITENAME}';
|
||||||
|
self::$pageDescription = '{SITENAME} depends on several very important libraries, some of which are developed exclusively to support the project. Here you can find a list with more information.' ;
|
||||||
|
Views::view( 'deps.index' );
|
||||||
|
}
|
||||||
|
|
||||||
|
public function ttp( $method = null ) {
|
||||||
|
self::$title = '{SITENAME} - TheTempusProject';
|
||||||
|
self::$pageDescription = 'TheTempusProject is the primary repo of {SITENAME} which houses the main application.';
|
||||||
|
if ( empty( $method ) ) {
|
||||||
|
return Views::view( 'deps.ttp' );
|
||||||
|
}
|
||||||
|
switch ( $method ) {
|
||||||
|
case 'git':
|
||||||
|
return Redirect::external( 'https://git.thetempusproject.com/the-tempus-project/thetempusproject' );
|
||||||
|
case 'packagist':
|
||||||
|
return Redirect::external( 'https://packagist.org/packages/thetempusproject/thetempusproject' );
|
||||||
|
case 'changes':
|
||||||
|
self::$title .= ' Changes';
|
||||||
|
self::$pageDescription = 'This pages lists the most recent changes to TheTempusProject with some details on those changes.';
|
||||||
|
return Views::view( 'changes.ttp' );
|
||||||
|
default:
|
||||||
|
return Views::view( 'deps.ttp' );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function hermes( $method = null ) {
|
||||||
|
self::$title = '{SITENAME} - Hermes';
|
||||||
|
self::$pageDescription = 'Hermes is a dependency of {SITENAME} that provides many common helper functions for navigating url components and file systems; designed to work seamlessly regardless of architecture.';
|
||||||
|
if ( empty( $method ) ) {
|
||||||
|
return Views::view( 'deps.hermes' );
|
||||||
|
}
|
||||||
|
switch ( $method ) {
|
||||||
|
case 'git':
|
||||||
|
return Redirect::external( 'https://git.thetempusproject.com/the-tempus-project/hermes' );
|
||||||
|
case 'packagist':
|
||||||
|
return Redirect::external( 'https://packagist.org/packages/thetempusproject/hermes' );
|
||||||
|
case 'changes':
|
||||||
|
self::$title .= ' Changes';
|
||||||
|
self::$pageDescription = 'Hermes is a dependency of {SITENAME} and this pages lists the most recent changes with some details on those changes.';
|
||||||
|
return Views::view( 'changes.hermes' );
|
||||||
|
default:
|
||||||
|
return Views::view( 'deps.hermes' );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function canary( $method = null ) {
|
||||||
|
self::$title = '{SITENAME} - Canary';
|
||||||
|
self::$pageDescription = 'Canary is a dependency of {SITENAME} that both records and reports logs from various PHP applications.';
|
||||||
|
if ( empty( $method ) ) {
|
||||||
|
return Views::view( 'deps.canary' );
|
||||||
|
}
|
||||||
|
switch ( $method ) {
|
||||||
|
case 'git':
|
||||||
|
return Redirect::external( 'https://git.thetempusproject.com/the-tempus-project/canary' );
|
||||||
|
case 'packagist':
|
||||||
|
return Redirect::external( 'https://packagist.org/packages/thetempusproject/canary' );
|
||||||
|
case 'changes':
|
||||||
|
self::$title .= ' Changes';
|
||||||
|
self::$pageDescription = 'Canary is a dependency of {SITENAME} and this pages lists the most recent changes with some details on those changes.';
|
||||||
|
return Views::view( 'changes.canary' );
|
||||||
|
default:
|
||||||
|
return Views::view( 'deps.canary' );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function bedrock( $method = null ) {
|
||||||
|
self::$title = '{SITENAME} - Bedrock';
|
||||||
|
self::$pageDescription = 'Bedrock is a dependency of {SITENAME} that provides many components used to manipulate database data and many helper functions vital for running the entire application.';
|
||||||
|
if ( empty( $method ) ) {
|
||||||
|
return Views::view( 'deps.bedrock' );
|
||||||
|
}
|
||||||
|
switch ( $method ) {
|
||||||
|
case 'git':
|
||||||
|
return Redirect::external( 'https://git.thetempusproject.com/the-tempus-project/bedrock' );
|
||||||
|
case 'packagist':
|
||||||
|
return Redirect::external( 'https://packagist.org/packages/thetempusproject/bedrock' );
|
||||||
|
case 'changes':
|
||||||
|
self::$title .= ' Changes';
|
||||||
|
self::$pageDescription = 'Bedrock is a dependency of {SITENAME} and this pages lists the most recent changes with some details on those changes.';
|
||||||
|
return Views::view( 'changes.bedrock' );
|
||||||
|
default:
|
||||||
|
return Views::view( 'deps.bedrock' );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function houdini( $method = null ) {
|
||||||
|
self::$title = '{SITENAME} - Houdini';
|
||||||
|
self::$pageDescription = 'Houdini is a dependency of {SITENAME} that allows for the creation and manipulation of objects used in html page creation.';
|
||||||
|
if ( empty( $method ) ) {
|
||||||
|
return Views::view( 'deps.houdini' );
|
||||||
|
}
|
||||||
|
switch ( $method ) {
|
||||||
|
case 'git':
|
||||||
|
return Redirect::external( 'https://git.thetempusproject.com/the-tempus-project/houdini' );
|
||||||
|
case 'packagist':
|
||||||
|
return Redirect::external( 'https://packagist.org/packages/thetempusproject/houdini' );
|
||||||
|
case 'changes':
|
||||||
|
self::$title .= ' Changes';
|
||||||
|
self::$pageDescription = 'Houdini is a dependency of {SITENAME} and this pages lists the most recent changes with some details on those changes.';
|
||||||
|
return Views::view( 'changes.houdini' );
|
||||||
|
default:
|
||||||
|
return Views::view( 'deps.houdini' );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,245 +1,291 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
<div class="card context-main-bg context-main">
|
<div class="col-12 col-sm-10 col-lg-8 mx-auto p-2 p-md-3 p-lg-4 rounded shadow-sm context-main-bg">
|
||||||
<div class="card-body">
|
<div class="card context-main-bg context-main border-0">
|
||||||
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries" class="text-decoration-none">
|
||||||
|
Libraries
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries/bedrock" class="text-decoration-none">
|
||||||
|
Bedrock
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
Changes
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
<div class="card-body text-center text-lg-start">
|
||||||
<h5 class="card-title">Bedrock Changes</h5>
|
<h5 class="card-title">Bedrock Changes</h5>
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
Here you can find a simple list of the important changes made to the Bedrock library.
|
Here you can find a simple list of the important changes made to the Bedrock library.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ul class="list-group list-group-flush">
|
<ul class="list-group list-group-flush">
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.1.1 <span class="badge text-bg-success">Latest</span></p>
|
<p class="h5">1.1.2 <span class="badge text-bg-success">Latest</span></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Comments and readme updates</li>
|
||||||
|
<li>Composer updates</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.1.1" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.1.1" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.1.1</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.1.1" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.1</p>
|
<p class="h5">1.1</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Composer updates</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.1" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.1" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.11</p>
|
<p class="h5">1.0.11</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Improved Config Form handling</li>
|
||||||
|
<li>Improved token handling</li>
|
||||||
|
<li>Improved error reporting</li>
|
||||||
|
<li>Adjusted log severity</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.11" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.11" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.10</p>
|
<p class="h5">1.0.10</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Pagination bugfix</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.10" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.10" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.9</p>
|
<p class="h5">1.0.9</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Composer updates</li>
|
||||||
|
<li>Naming Fixes</li>
|
||||||
|
<li>Migrate CustomException to Canary</li>
|
||||||
|
<li>Hermes autoloading added</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.9" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.9" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.8</p>
|
<p class="h5">1.0.8</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Pagination bugfix</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.8" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.8" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.7</p>
|
<p class="h5">1.0.7</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Session bugfixes</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.7" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.7" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.6</p>
|
<p class="h5">1.0.6</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Composer updates</li>
|
||||||
|
<li>Gitlab CI additions</li>
|
||||||
|
<li>Session bugfixes and improved logging</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.6" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.6" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.5</p>
|
<p class="h5">1.0.5</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Composer updates</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.5" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.5" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.4</p>
|
<p class="h5">1.0.4</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Composer updates</li>
|
||||||
|
<li>Naming bugfix</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.4" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.4" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.3</p>
|
<p class="h5">1.0.3</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Added constants</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.3" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.3" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.2</p>
|
<p class="h5">1.0.2</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Composer updates</li>
|
||||||
|
<li>Naming Convention Changes</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.2" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.2" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0.1</p>
|
<p class="h5">1.0.1</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Composer updates</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.1" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0.1" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.0</p>
|
<p class="h5">1.0</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Initial Release</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.0" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@ -247,8 +293,8 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="">
|
<p class="text-center text-lg-start">
|
||||||
Bedrock actually began its life as TempusProjectCore on <a href="https://github.com/TheTempusProject/TempusProjectCore">Github</a>.
|
Bedrock actually began its life as TempusProjectCore on <a href="https://github.com/TheTempusProject/TempusProjectCore" class="text-decoration-none">Github</a>.
|
||||||
On March 18, 2018 the latest released tag was <strong>2.1.0</strong>.
|
On March 18, 2018 the latest released tag was <strong>2.1.0</strong>.
|
||||||
Over the years this code has remained dormant, then received a ton of attention, then been forgotten again.
|
Over the years this code has remained dormant, then received a ton of attention, then been forgotten again.
|
||||||
For most intents, this is the same code, just being actively developed.
|
For most intents, this is the same code, just being actively developed.
|
||||||
@ -256,6 +302,10 @@
|
|||||||
<p class="text-muted text-center">
|
<p class="text-muted text-center">
|
||||||
Not all changes may be addressed individually on this page.
|
Not all changes may be addressed individually on this page.
|
||||||
</p>
|
</p>
|
||||||
|
<div class="text-center py-3">
|
||||||
|
<a href="#top" class="btn btn-outline-primary">Back to Top</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -1,24 +1,163 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
<div class="card context-main-bg context-main">
|
<div class="col-12 col-sm-10 col-lg-8 mx-auto p-2 p-md-3 p-lg-4 rounded shadow-sm context-main-bg">
|
||||||
<div class="card-body">
|
<div class="card context-main-bg context-main border-0">
|
||||||
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries" class="text-decoration-none">
|
||||||
|
Libraries
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries/canary" class="text-decoration-none">
|
||||||
|
Canary
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
Changes
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
<div class="card-body text-center text-lg-start">
|
||||||
<h5 class="card-title">Canary Changes</h5>
|
<h5 class="card-title">Canary Changes</h5>
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
Here you can find a simple list of the important changes made to the Canary library.
|
Here you can find a simple list of the important changes made to the Canary library.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ul class="list-group list-group-flush">
|
<ul class="list-group list-group-flush">
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.1.1 <span class="badge text-bg-success">Latest</span></p>
|
<p class="h5">1.0.7 <span class="badge text-bg-success">Latest</span></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Comments and readme updates</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.1.1" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/canary/-/tags/1.0.7" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.6</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Re-added log option for variables.</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/canary/-/tags/1.0.6" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.5</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Naming Convention Changes</li>
|
||||||
|
<li>Migrated CustomException from Bedrock</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/canary/-/tags/1.0.5" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.4</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Improve line limit and added a new config for it.</li>
|
||||||
|
<li>Bugfix for missed rename.</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/canary/-/tags/1.0.4" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.3</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Gitignore addition</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/canary/-/tags/1.0.3" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.2</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Bugfix for addLog events when the log is blank.</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/canary/-/tags/1.0.2" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.1</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Add Composer lock file</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/canary/-/tags/1.0.1" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Initial Release</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/canary/-/tags/1.0" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@ -26,15 +165,21 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="">
|
<p class="text-center text-lg-start">
|
||||||
Bedrock actually began its life as TempusProjectCore on <a href="https://github.com/TheTempusProject/TempusProjectCore">Github</a>.
|
Canary actually began its life as TempusDebugger on <a href="https://github.com/TheTempusProject/TempusDebugger" class="text-decoration-none">Github</a>.
|
||||||
On March 18, 2018 the latest released tag was <strong>2.1.0</strong>.
|
On March 26, 2018 the latest released tag was <strong>1.1</strong>.
|
||||||
Over the years this code has remained dormant, then received a ton of attention, then been forgotten again.
|
Over the years this code has remained dormant, then received a ton of attention, then been forgotten again.
|
||||||
For most intents, this is the same code, just being actively developed.
|
For most intents, this is the same code, just being actively developed.
|
||||||
|
The foundation of TempusDebugger was originally sending debug messages to chrome's developer-tools.
|
||||||
|
Now the primary focus lies in sending the logs directly to frontend elements or saving them to files.
|
||||||
</p>
|
</p>
|
||||||
<p class="text-muted text-center">
|
<p class="text-muted text-center">
|
||||||
Not all changes may be addressed individually on this page.
|
Not all changes may be addressed individually on this page.
|
||||||
</p>
|
</p>
|
||||||
|
<div class="text-center py-3">
|
||||||
|
<a href="#top" class="btn btn-outline-primary">Back to Top</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -1,24 +1,110 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
<div class="card context-main-bg context-main">
|
<div class="col-12 col-sm-10 col-lg-8 mx-auto p-2 p-md-3 p-lg-4 rounded shadow-sm context-main-bg">
|
||||||
<div class="card-body">
|
<div class="card context-main-bg context-main border-0">
|
||||||
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries" class="text-decoration-none">
|
||||||
|
Libraries
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries/hermes" class="text-decoration-none">
|
||||||
|
Hermes
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
Changes
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
<div class="card-body text-center text-lg-start">
|
||||||
<h5 class="card-title">Hermes Changes</h5>
|
<h5 class="card-title">Hermes Changes</h5>
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
Here you can find a simple list of the important changes made to the Hermes library.
|
Here you can find a simple list of the important changes made to the Hermes library.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ul class="list-group list-group-flush">
|
<ul class="list-group list-group-flush">
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.1.1 <span class="badge text-bg-success">Latest</span></p>
|
<p class="h5">1.0.4 <span class="badge text-bg-success">Latest</span></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Comments and readme updates</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.1.1" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/hermes/-/tags/1.0.4" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.3</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Improved http vs https detection when traffic is being forwarded or proxied.</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/hermes/-/tags/1.0.3" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.2</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Bugfix for camelCase filenames which lead to some cases where files where not auto-loaded by name properly.</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/hermes/-/tags/1.0.2" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.1</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Comments and readme updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/hermes/-/tags/1.0.1" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Initial Release</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/hermes/-/tags/1.0" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@ -26,15 +112,10 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="">
|
|
||||||
Bedrock actually began its life as TempusProjectCore on <a href="https://github.com/TheTempusProject/TempusProjectCore">Github</a>.
|
|
||||||
On March 18, 2018 the latest released tag was <strong>2.1.0</strong>.
|
|
||||||
Over the years this code has remained dormant, then received a ton of attention, then been forgotten again.
|
|
||||||
For most intents, this is the same code, just being actively developed.
|
|
||||||
</p>
|
|
||||||
<p class="text-muted text-center">
|
<p class="text-muted text-center">
|
||||||
Not all changes may be addressed individually on this page.
|
Not all changes may be addressed individually on this page.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
@ -1,24 +1,257 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
<div class="card context-main-bg context-main">
|
<div class="col-12 col-sm-10 col-lg-8 mx-auto p-2 p-md-3 p-lg-4 rounded shadow-sm context-main-bg">
|
||||||
<div class="card-body">
|
<div class="card context-main-bg context-main border-0">
|
||||||
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries" class="text-decoration-none">
|
||||||
|
Libraries
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries/houdini" class="text-decoration-none">
|
||||||
|
Houdini
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
Changes
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
<div class="card-body text-center text-lg-start">
|
||||||
<h5 class="card-title">Houdini Changes</h5>
|
<h5 class="card-title">Houdini Changes</h5>
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
Here you can find a simple list of the important changes made to the Houdini library.
|
Here you can find a simple list of the important changes made to the Houdini library.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ul class="list-group list-group-flush">
|
<ul class="list-group list-group-flush">
|
||||||
<li class="list-group-item context-main-bg context-main">
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<p class="h5">1.1.1 <span class="badge text-bg-success">Latest</span></p>
|
<p class="h5">2.0.3 <span class="badge text-bg-success">Latest</span></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-9">
|
<div class="col-9">
|
||||||
<ul>
|
<ul>
|
||||||
<li>sssssssss</li>
|
<li>Comments and readme updates</li>
|
||||||
|
<li>Improved Navigation display for Bootstrap 5</li>
|
||||||
|
<li>Improved active page select for Bootstrap 5</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="text-muted">
|
<p class="text-center">
|
||||||
<a class="text-decoration-none" href="https://git.thetempusproject.com/the-tempus-project/bedrock/-/tags/1.1.1" target="_blank">
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/2.0.2" target="_blank">
|
||||||
Gitlab
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">2.0.2</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Improved Navigation display for Bootstrap 5</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/2.0.2" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">2.0.1</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/2.0.1" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">2.0</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Improved issue display</li>
|
||||||
|
<li>Add component::prepend</li>
|
||||||
|
<li>Add switches to form html</li>
|
||||||
|
<li>Updated form html to Bootstrap 5</li>
|
||||||
|
<li>Updated navigation html to Bootstrap 5</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/2.0" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.8</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Added setIfNull to components</li>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
<li>Re-integrated CustomExceptions</li>
|
||||||
|
<li>Various filter updates to fix long-standing bugs and improve reliability.</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/1.0.8" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.7</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
<li>Gitlab CI fixes</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/1.0.7" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.6</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
<li>Gitlab CI additions</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/1.0.6" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.5</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/1.0.5" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.4</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/1.0.4" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.3</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Naming Convention Changes</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/1.0.3" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.2</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/1.0.2" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0.1</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/1.0.1" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">1.0</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Initial Release</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/houdini/-/tags/1.0" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@ -26,15 +259,22 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="">
|
<p class="text-center text-lg-start">
|
||||||
Bedrock actually began its life as TempusProjectCore on <a href="https://github.com/TheTempusProject/TempusProjectCore">Github</a>.
|
Houdini actually began its life as part of TempusProjectCore on <a href="https://github.com/TheTempusProject/TempusProjectCore" class="text-decoration-none">Github</a>.
|
||||||
On March 18, 2018 the latest released tag was <strong>2.1.0</strong>.
|
On March 18, 2018 the latest released tag was <strong>2.1.0</strong>.
|
||||||
Over the years this code has remained dormant, then received a ton of attention, then been forgotten again.
|
Over the years this code has remained dormant, then received a ton of attention, then been forgotten again.
|
||||||
For most intents, this is the same code, just being actively developed.
|
For most intents, this is the same code, just being actively developed.
|
||||||
|
Once TempusProjectCore got large enough, it became clear that the front-end needed some hard separation from the backend.
|
||||||
|
Over the years, this has morphed into several individual and distinct libraries.
|
||||||
|
The front-end is Houdini and all back-end code is handled by a series of more specialized libraries.
|
||||||
</p>
|
</p>
|
||||||
<p class="text-muted text-center">
|
<p class="text-muted text-center">
|
||||||
Not all changes may be addressed individually on this page.
|
Not all changes may be addressed individually on this page.
|
||||||
</p>
|
</p>
|
||||||
|
<div class="text-center py-3">
|
||||||
|
<a href="#top" class="btn btn-outline-primary">Back to Top</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
482
app/views/changes/ttp.html
Normal file
482
app/views/changes/ttp.html
Normal file
@ -0,0 +1,482 @@
|
|||||||
|
<div class="m-2 m-lg-4">
|
||||||
|
<div class="col-12 col-sm-10 col-lg-8 mx-auto p-2 p-md-3 p-lg-4 rounded shadow-sm context-main-bg">
|
||||||
|
<div class="card context-main-bg context-main border-0">
|
||||||
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries" class="text-decoration-none">
|
||||||
|
Libraries
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries/ttp" class="text-decoration-none">
|
||||||
|
TheTempusProject
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
Changes
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
<div class="card-body text-center text-lg-start">
|
||||||
|
<h5 class="card-title">TheTempusProject Changes</h5>
|
||||||
|
<p class="card-text">
|
||||||
|
Here you can find a simple list of the important changes made to the Houdini library.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<ul class="list-group list-group-flush">
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">5.0 <span class="badge text-bg-success">Latest</span></p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>sssssssss</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-muted">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/4.0.4" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">4.0.4</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
<li>UI Improvements</li>
|
||||||
|
<li>Added Contact list to dash</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/4.0.4" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">4.0.3</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Installer fixes for missing config values</li>
|
||||||
|
<li>Added new-registrations toggle</li>
|
||||||
|
<li>Added redirects link to main menu</li>
|
||||||
|
<li>UserCP uploads bugfix</li>
|
||||||
|
<li>Routes bugfix</li>
|
||||||
|
<li>SendMail bugfix</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/4.0.3" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">4.0.2</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Removed unused code</li>
|
||||||
|
<li>Install-Complete bugfix</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/4.0.2" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">4.0.1</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>DarkMode Added</li>
|
||||||
|
<li>Default-group bugfix</li>
|
||||||
|
<li>Notifications and Messages access better communicated.</li>
|
||||||
|
<li>Various UI improvements</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/4.0.1" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">4.0</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>sssssssss</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-muted">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/4.0" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.17</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>sssssssss</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-muted">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.17" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.16</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>sssssssss</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-muted">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.16" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.15</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>sssssssss</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-muted">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.15" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.14</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>sssssssss</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-muted">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.14" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.13</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>sssssssss</li>
|
||||||
|
<li>Readme update</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-muted">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.13" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.12</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Cleanup</li>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
<li>License update</li>
|
||||||
|
<li>Readme update</li>
|
||||||
|
<li>Docker updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.12" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.11</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.11" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.10</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
<li>Installer bugfixes</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.10" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.9</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
<li>Gitignore addition</li>
|
||||||
|
<li>Plugin bugfixes</li>
|
||||||
|
<li>Installer bugfixes</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.9" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.8</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
<li>Gitlab CI additions</li>
|
||||||
|
<li>Installer Bugfixes</li>
|
||||||
|
<li>Cleanup</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.8" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.7</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Installer Bugfixes</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.7" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.6</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.6" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.5</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
<li>Naming Convention Changes</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.5" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.4</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Constant changes to support autoloading</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.4" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.3</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
<li>Naming Fixes</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.3" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.2</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Composer updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.2" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0.1</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Add Composer lock file</li>
|
||||||
|
<li>Gitignore additions</li>
|
||||||
|
<li>Cleanup</li>
|
||||||
|
<li>Token Bugfix</li>
|
||||||
|
<li>Docker updates</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2"href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0.1" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="list-group-item context-main-bg context-main context-main-border">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-3">
|
||||||
|
<p class="h5">3.0</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-9">
|
||||||
|
<ul>
|
||||||
|
<li>Initial Release</li>
|
||||||
|
</ul>
|
||||||
|
<p class="text-center">
|
||||||
|
<a class="btn btn-md btn-outline-primary mt-2" href="https://git.thetempusproject.com/the-tempus-project/TheTempusProject/-/tags/3.0" target="_blank">
|
||||||
|
<span class="fa-brands fa-fw fa-gitlab"></span> Tag
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="card-body">
|
||||||
|
<p class="text-center text-lg-start">
|
||||||
|
Bedrock actually began its life on <a href="https://github.com/TheTempusProject/TheTempusProject" class="text-decoration-none">Github</a>.
|
||||||
|
On March 18, 2018 the latest released tag was <strong>2.1.0</strong>.
|
||||||
|
Over the years this code has remained dormant, then received a ton of attention, then been forgotten again.
|
||||||
|
For most intents, this is the same code, just being actively developed.
|
||||||
|
</p>
|
||||||
|
<p class="text-muted text-center">
|
||||||
|
Not all changes may be addressed individually on this page.
|
||||||
|
</p>
|
||||||
|
<div class="text-center py-3">
|
||||||
|
<a href="#top" class="btn btn-outline-primary">Back to Top</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -1,8 +1,21 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
|
<div class="col-12 col-md-10 col-lg-8 mx-auto p-4 context-main-bg">
|
||||||
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries" class="text-decoration-none">
|
||||||
|
Libraries
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
Bedrock
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
<div class="container col-xxl-8">
|
<div class="container col-xxl-8">
|
||||||
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
|
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
|
||||||
<div class="col-10 col-sm-8 col-lg-6">
|
<div class="col-10 col-sm-8 col-lg-6 mx-auto mx-lg-0">
|
||||||
<img src="{ROOT_URL}images/bedrock.jpg" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="700" height="500" loading="lazy">
|
<img src="{ROOT_URL}images/bedrock.jpg" class="d-block mx-lg-auto img-fluid rounded" alt="Bootstrap Themes" width="700" height="300" loading="lazy">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6">
|
<div class="col-lg-6">
|
||||||
<h1 class="display-5 fw-bold lh-1 mb-3">Bedrock</h1>
|
<h1 class="display-5 fw-bold lh-1 mb-3">Bedrock</h1>
|
||||||
@ -10,18 +23,19 @@
|
|||||||
Bedrock, as the name may suggest, is the core functionality the project is built on.
|
Bedrock, as the name may suggest, is the core functionality the project is built on.
|
||||||
From Basic text checks to the core functionality behind models and controllers, bedrock handles it all.
|
From Basic text checks to the core functionality behind models and controllers, bedrock handles it all.
|
||||||
</p>
|
</p>
|
||||||
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
|
<div class="d-flex justify-content-center justify-content-lg-start">
|
||||||
<a href="/bedrock/git" class="btn btn-primary btn-lg px-4 me-sm-3">
|
<a href="/libraries/bedrock/git" class="btn btn-primary px-3 btn-lg m-2">
|
||||||
Git
|
Git
|
||||||
</a>
|
</a>
|
||||||
<a href="/bedrock/packagist" class="btn btn-outline-primary btn-lg px-4">
|
<a href="/libraries/bedrock/packagist" class="btn btn-outline-primary px-3 m-2 btn-lg">
|
||||||
Packagist
|
Packagist
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p class="text-muted">
|
<p class="text-center text-muted">
|
||||||
For a list of recent changes, please check <a href="/bedrock/changes">here</a>.
|
For a list of recent changes, please check <a href="/libraries/bedrock/changes" class="text-decoration-none">here</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
@ -1,8 +1,21 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
|
<div class="col-12 col-md-10 col-lg-8 mx-auto p-4 context-main-bg">
|
||||||
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries" class="text-decoration-none">
|
||||||
|
Libraries
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
Canary
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
<div class="container col-xxl-8">
|
<div class="container col-xxl-8">
|
||||||
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
|
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
|
||||||
<div class="col-10 col-sm-8 col-lg-6">
|
<div class="col-10 col-sm-8 col-lg-6 mx-auto mx-lg-0">
|
||||||
<img src="{ROOT_URL}images/canary.jpg" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="700" height="500" loading="lazy">
|
<img src="{ROOT_URL}images/canary.jpg" class="d-block mx-lg-auto img-fluid rounded" alt="Bootstrap Themes" width="700" height="300" loading="lazy">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6">
|
<div class="col-lg-6">
|
||||||
<h1 class="display-5 fw-bold lh-1 mb-3">Canary</h1>
|
<h1 class="display-5 fw-bold lh-1 mb-3">Canary</h1>
|
||||||
@ -10,18 +23,19 @@
|
|||||||
Canary is a library that allows {SITENAME} to add logs during execution.
|
Canary is a library that allows {SITENAME} to add logs during execution.
|
||||||
The resulting logs can be printed to the browser console in real-time, saved to a log file, or even used on-page for debugging.
|
The resulting logs can be printed to the browser console in real-time, saved to a log file, or even used on-page for debugging.
|
||||||
</p>
|
</p>
|
||||||
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
|
<div class="d-flex justify-content-center justify-content-lg-start">
|
||||||
<a href="/canary/git" class="btn btn-primary btn-lg px-4 me-sm-3">
|
<a href="/libraries/canary/git" class="btn btn-primary px-3 btn-lg m-2">
|
||||||
Git
|
Git
|
||||||
</a>
|
</a>
|
||||||
<a href="/canary/packagist" class="btn btn-outline-primary btn-lg px-4">
|
<a href="/libraries/canary/packagist" class="btn btn-outline-primary px-3 m-2 btn-lg">
|
||||||
Packagist
|
Packagist
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p class="text-muted">
|
<p class="text-center text-muted">
|
||||||
For a list of recent changes, please check <a href="/canary/changes">here</a>.
|
For a list of recent changes, please check <a href="/libraries/canary/changes" class="text-decoration-none">here</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
@ -1,8 +1,21 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
|
<div class="col-12 col-md-10 col-lg-8 mx-auto p-4 context-main-bg">
|
||||||
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries" class="text-decoration-none">
|
||||||
|
Libraries
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
Hermes
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
<div class="container col-xxl-8">
|
<div class="container col-xxl-8">
|
||||||
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
|
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
|
||||||
<div class="col-10 col-sm-8 col-lg-6">
|
<div class="col-10 col-sm-8 col-lg-6 mx-auto mx-lg-0">
|
||||||
<img src="{ROOT_URL}images/hermes.jpg" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="700" height="500" loading="lazy">
|
<img src="{ROOT_URL}images/hermes.jpg" class="d-block mx-lg-auto img-fluid rounded" alt="Bootstrap Themes" width="700" height="300" loading="lazy">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6">
|
<div class="col-lg-6">
|
||||||
<h1 class="display-5 fw-bold lh-1 mb-3">Hermes</h1>
|
<h1 class="display-5 fw-bold lh-1 mb-3">Hermes</h1>
|
||||||
@ -10,18 +23,19 @@
|
|||||||
Hermes is a simple library that provides a small set of commonly used helper functions.
|
Hermes is a simple library that provides a small set of commonly used helper functions.
|
||||||
These functions primarily help with navigating the url or file systems in a consistent way across several libraries and projects.
|
These functions primarily help with navigating the url or file systems in a consistent way across several libraries and projects.
|
||||||
</p>
|
</p>
|
||||||
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
|
<div class="d-flex justify-content-center justify-content-lg-start">
|
||||||
<a href="/hermes/git" class="btn btn-primary btn-lg px-4 me-sm-3">
|
<a href="/libraries/hermes/git" class="btn btn-primary px-3 btn-lg m-2">
|
||||||
Git
|
Git
|
||||||
</a>
|
</a>
|
||||||
<a href="/hermes/packagist" class="btn btn-outline-primary btn-lg px-4">
|
<a href="/libraries/hermes/packagist" class="btn btn-outline-primary px-3 m-2 btn-lg">
|
||||||
Packagist
|
Packagist
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p class="text-muted">
|
<p class="text-center text-muted">
|
||||||
For a list of recent changes, please check <a href="/hermes/changes">here</a>.
|
For a list of recent changes, please check <a href="/libraries/hermes/changes" class="text-decoration-none">here</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
@ -1,8 +1,21 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
|
<div class="col-12 col-md-10 col-lg-8 mx-auto p-4 context-main-bg">
|
||||||
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries" class="text-decoration-none">
|
||||||
|
Libraries
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
Houdini
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
<div class="container col-xxl-8">
|
<div class="container col-xxl-8">
|
||||||
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
|
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
|
||||||
<div class="col-10 col-sm-8 col-lg-6">
|
<div class="col-10 col-sm-8 col-lg-6 mx-auto mx-lg-0">
|
||||||
<img src="{ROOT_URL}images/houdini.jpg" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="700" height="500" loading="lazy">
|
<img src="{ROOT_URL}images/houdini.jpg" class="d-block mx-lg-auto img-fluid rounded" alt="Bootstrap Themes" width="700" height="300" loading="lazy">
|
||||||
</div>
|
</div>
|
||||||
<div class="col-lg-6">
|
<div class="col-lg-6">
|
||||||
<h1 class="display-5 fw-bold lh-1 mb-3">Houdini</h1>
|
<h1 class="display-5 fw-bold lh-1 mb-3">Houdini</h1>
|
||||||
@ -10,18 +23,19 @@
|
|||||||
Houdini is where the front-end magic happens and it serves as the primary front-end html generator.
|
Houdini is where the front-end magic happens and it serves as the primary front-end html generator.
|
||||||
It handles the storage and applications of frontend components, all the views, templates, and several other critical features of the front-end.
|
It handles the storage and applications of frontend components, all the views, templates, and several other critical features of the front-end.
|
||||||
</p>
|
</p>
|
||||||
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
|
<div class="d-flex justify-content-center justify-content-lg-start">
|
||||||
<a href="/houdini/git" class="btn btn-primary btn-lg px-4 me-sm-3">
|
<a href="/libraries/houdini/git" class="btn btn-primary px-3 btn-lg m-2">
|
||||||
Git
|
Git
|
||||||
</a>
|
</a>
|
||||||
<a href="/houdini/packagist" class="btn btn-outline-primary btn-lg px-4">
|
<a href="/libraries/houdini/packagist" class="btn btn-outline-primary px-3 m-2 btn-lg">
|
||||||
Packagist
|
Packagist
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p class="text-muted">
|
<p class="text-center text-muted">
|
||||||
For a list of recent changes, please check <a href="/houdini/changes">here</a>.
|
For a list of recent changes, please check <a href="/libraries/houdini/changes" class="text-decoration-none">here</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
@ -1,43 +1,53 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
|
<div class="col-12 mx-5 col-sm-10 col-lg-8 mx-auto p-4 rounded shadow-sm context-main-bg">
|
||||||
<h2 class="text-center mb-4">{SITENAME} Libraries</h2>
|
<h2 class="text-center mb-4">{SITENAME} Libraries</h2>
|
||||||
|
<hr>
|
||||||
<p class="lead">
|
<p class="lead">
|
||||||
{SITENAME} uses a number of libraries developed in conjunction with the main project. Here you can find a list of these libraries with more information on each.
|
{SITENAME} uses a number of libraries developed in conjunction with the main project. Here you can find a list of these libraries with more information on each.
|
||||||
</p>
|
</p>
|
||||||
<hr>
|
<div class="container p-2 p-md-4" id="custom-cards">
|
||||||
<div class="container px-4 py-5" id="custom-cards">
|
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 align-items-center justify-content-center g-2 g-md-4">
|
||||||
<div class="row row-cols-1 row-cols-lg-3 align-items-stretch g-4 py-5">
|
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<a href="/bedrock" class="text-decoration-none">
|
<a href="/libraries/bedrock" class="text-decoration-none">
|
||||||
<div class="card card-cover h-100 overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('{ROOT_URL}images/bedrock.jpg');">
|
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('{ROOT_URL}images/bedrock.jpg'); height: 300px;">
|
||||||
<div class="d-flex flex-column h-100 p-5 pb-3 text-white text-shadow-1">
|
<div class="d-flex flex-column p-2 p-md-3 p-lg-3">
|
||||||
<h3 class="pt-5 mt-5 mb-4 display-6 lh-1 fw-bold">Bedrock</h3>
|
<h3 class="h4 lh-1 fw-bold text-dark">Bedrock</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<a href="/canary" class="text-decoration-none">
|
<a href="/libraries/canary" class="text-decoration-none">
|
||||||
<div class="card card-cover h-100 overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('{ROOT_URL}images/canary.jpg');">
|
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('{ROOT_URL}images/canary.jpg'); height: 300px;">
|
||||||
<div class="d-flex flex-column h-100 p-5 pb-3 text-white text-shadow-1">
|
<div class="d-flex flex-column p-2 p-md-3 p-lg-3">
|
||||||
<h3 class="pt-5 mt-5 mb-4 display-6 lh-1 fw-bold">Canary</h3>
|
<h3 class="h4 lh-1 fw-bold text-dark">Canary</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<a href="/hermes" class="text-decoration-none">
|
<a href="/libraries/hermes" class="text-decoration-none">
|
||||||
<div class="card card-cover h-100 overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('{ROOT_URL}images/hermes.jpg');">
|
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('{ROOT_URL}images/hermes.jpg'); height: 300px;">
|
||||||
<div class="d-flex flex-column h-100 p-5 pb-3 text-shadow-1">
|
<div class="d-flex flex-column p-2 p-md-3 p-lg-3">
|
||||||
<h3 class="pt-5 mt-5 mb-4 display-6 lh-1 fw-bold">Hermes</h3>
|
<h3 class="h4 lh-1 fw-bold text-dark">Hermes</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<a href="/houdini" class="text-decoration-none">
|
<a href="/libraries/houdini" class="text-decoration-none">
|
||||||
<div class="card card-cover h-100 overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('{ROOT_URL}images/houdini.jpg');">
|
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('{ROOT_URL}images/houdini.jpg'); height: 300px;">
|
||||||
<div class="d-flex flex-column h-100 p-5 pb-3 text-white text-shadow-1">
|
<div class="d-flex flex-column p-2 p-md-3 p-lg-3">
|
||||||
<h3 class="pt-5 mt-5 mb-4 display-6 lh-1 fw-bold">Houdini</h3>
|
<h3 class="h4 lh-1 fw-bold text-dark">Houdini</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<a href="/libraries/ttp" class="text-decoration-none">
|
||||||
|
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg" style="background-image: url('{ROOT_URL}images/logoLarge.jpg'); height: 300px;">
|
||||||
|
<div class="d-flex flex-column p-2 p-md-3 p-lg-3">
|
||||||
|
<h3 class="h4 lh-1 fw-bold text-light">The Tempus Project</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
@ -45,3 +55,4 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
40
app/views/deps/ttp.html
Normal file
40
app/views/deps/ttp.html
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<div class="m-2 m-lg-4">
|
||||||
|
<div class="col-12 col-md-10 col-lg-8 mx-auto p-4 context-main-bg">
|
||||||
|
<nav aria-label="breadcrumb">
|
||||||
|
<ol class="breadcrumb">
|
||||||
|
<li class="breadcrumb-item">
|
||||||
|
<a href="{ROOT_URL}libraries" class="text-decoration-none">
|
||||||
|
Libraries
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumb-item active" aria-current="page">
|
||||||
|
The Tempus Project
|
||||||
|
</li>
|
||||||
|
</ol>
|
||||||
|
</nav>
|
||||||
|
<div class="container col-xxl-8">
|
||||||
|
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
|
||||||
|
<div class="col-10 col-sm-8 col-lg-6 mx-auto mx-lg-0">
|
||||||
|
<img src="{ROOT_URL}images/logoLarge.jpg" class="d-block mx-lg-auto img-fluid rounded" alt="Bootstrap Themes" width="700" height="300" loading="lazy">
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6">
|
||||||
|
<h1 class="display-5 fw-bold lh-1 mb-3">The Tempus Project</h1>
|
||||||
|
<p class="lead">
|
||||||
|
The Tempus Project is the main repo housing the web application. Essentially the app you are using right now.
|
||||||
|
</p>
|
||||||
|
<div class="d-flex justify-content-center justify-content-lg-start">
|
||||||
|
<a href="/libraries/ttp/git" class="btn btn-primary px-3 btn-lg m-2">
|
||||||
|
Git
|
||||||
|
</a>
|
||||||
|
<a href="/libraries/ttp/packagist" class="btn btn-outline-primary px-3 m-2 btn-lg">
|
||||||
|
Packagist
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p class="text-center text-muted">
|
||||||
|
For a list of recent changes, please check <a href="/libraries/ttp/changes" class="text-decoration-none">here</a>.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -1,65 +1,65 @@
|
|||||||
<div class="container p-4 context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
<h1 class="mb-4">Frequently Asked Questions</h1>
|
<div class="context-main-bg container py-2 my-2 py-lg-4 my-lg-4">
|
||||||
|
<h2 class="text-center mb-4">Frequently Asked Questions</h2>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<!-- Table of Contents -->
|
<!-- Table of Contents -->
|
||||||
<div class="mb-5">
|
<div class="mb-4">
|
||||||
<h2 class="h4">Table of Contents</h2>
|
<h2 class="h4 text-primary">General Questions</h2>
|
||||||
<ul class="list-unstyled">
|
<ul class="list-unstyled">
|
||||||
<li><a href="#question1" class="text-decoration-none context-main">Does this work on mobile?</a></li>
|
<li><a href="#generalHeading1" class="text-decoration-none context-main" data-bs-toggle="collapse" data-bs-target="#collapse1">Does {SITENAME} work on mobile?</a></li>
|
||||||
<li><a href="#question2" class="text-decoration-none context-main">Does this work on Mac/PC/Linux?</a></li>
|
<li><a href="#generalHeading2" class="text-decoration-none context-main" data-bs-toggle="collapse" data-bs-target="#collapse2">Does {SITENAME} work on Mac/PC/Linux?</a></li>
|
||||||
<li><a href="#question3" class="text-decoration-none context-main">How do I use the extension on my mobile device?</a></li>
|
<li><a href="#generalHeading3" class="text-decoration-none context-main" data-bs-toggle="collapse" data-bs-target="#collapse3">How much does {SITENAME} cost?</a></li>
|
||||||
<li><a href="#question4" class="text-decoration-none context-main">How do I add this to my phone like an app?</a></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Accordion for Questions -->
|
<!-- Accordion for General Questions -->
|
||||||
<div class="accordion" id="faqAccordion">
|
<div class="accordion mb-5" id="generalAccordion">
|
||||||
<div class="accordion-item">
|
<div class="accordion-item">
|
||||||
<h2 class="accordion-header context-second-bg" id="heading1">
|
<h2 class="accordion-header context-second-bg" id="generalHeading1">
|
||||||
<button class="accordion-button context-main context-main-bg" type="button" data-bs-toggle="collapse" data-bs-target="#collapse1" aria-expanded="true" aria-controls="collapse1">
|
<button class="accordion-button context-main context-main-bg collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse1" aria-expanded="false" aria-controls="collapse1">
|
||||||
Does this work on mobile?
|
Does {SITENAME} work on mobile?
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
<div id="collapse1" class="accordion-collapse collapse show" aria-labelledby="heading1" data-bs-parent="#faqAccordion">
|
<div id="collapse1" class="accordion-collapse collapse" aria-labelledby="generalHeading1" data-bs-parent="#generalAccordion">
|
||||||
<div class="ml-5 accordion-body context-main context-main-bg" id="question1">
|
<div class="ml-5 accordion-body context-main context-other-bg" id="general1">
|
||||||
Yes, this works seamlessly on mobile devices.
|
<span class="text-lead">
|
||||||
|
Yes, {SITENAME} is a responsive web-app and it works seamlessly on mobile devices.
|
||||||
|
The front-end is powered by Bootstrap 5.2.3 the original design system used by twitter.
|
||||||
|
In addition to the powerful tools behind the scenes, every page on {SITENAME} has been tested to work on devices of all sizes.
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="accordion-item">
|
<div class="accordion-item">
|
||||||
<h2 class="accordion-header context-main context-second-bg" id="heading2">
|
<h2 class="accordion-header context-main context-second-bg" id="generalHeading2">
|
||||||
<button class="accordion-button context-main context-main-bg collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse2" aria-expanded="false" aria-controls="collapse2">
|
<button class="accordion-button context-main context-main-bg collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse2" aria-expanded="false" aria-controls="collapse2">
|
||||||
Does this work on Mac/PC/Linux?
|
Does {SITENAME} work on Mac/PC/Linux?
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
<div id="collapse2" class="accordion-collapse collapse" aria-labelledby="heading2" data-bs-parent="#faqAccordion">
|
<div id="collapse2" class="accordion-collapse collapse" aria-labelledby="generalHeading2" data-bs-parent="#generalAccordion">
|
||||||
<div class="accordion-body context-main context-main-bg" id="question2">
|
<div class="accordion-body context-main context-other-bg" id="general2">
|
||||||
Yes, it is compatible with Mac, PC, and Linux platforms.
|
<span class="text-lead">
|
||||||
|
Yes, in more ways than one.
|
||||||
|
Since {SITENAME} is designed as a responsive web-app, its accessible from any browser connected to the internet.
|
||||||
|
Behind the scenes, the app can be installed on any server hardware and has been tested with both nginx and Apache web-servers.
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="accordion-item">
|
<div class="accordion-item">
|
||||||
<h2 class="accordion-header context-main context-second-bg" id="heading3">
|
<h2 class="accordion-header context-main context-second-bg" id="generalHeading3">
|
||||||
<button class="accordion-button context-main context-main-bg collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse3" aria-expanded="false" aria-controls="collapse3">
|
<button class="accordion-button context-main context-main-bg collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse3" aria-expanded="false" aria-controls="collapse3">
|
||||||
How do I use the extension on my mobile device?
|
How much does {SITENAME} cost?
|
||||||
</button>
|
</button>
|
||||||
</h2>
|
</h2>
|
||||||
<div id="collapse3" class="accordion-collapse collapse" aria-labelledby="heading3" data-bs-parent="#faqAccordion">
|
<div id="collapse3" class="accordion-collapse collapse" aria-labelledby="generalHeading3" data-bs-parent="#generalAccordion">
|
||||||
<div class="accordion-body context-main context-main-bg" id="question3">
|
<div class="accordion-body context-main context-other-bg" id="general3">
|
||||||
To use the extension on mobile, open your browser, install the extension, and follow the setup instructions.
|
<span class="text-lead">
|
||||||
</div>
|
{SITENAME} is open source and available free of charge through <a href="{ROOT_URL}libraries/ttp/git" class="text-decoration-none">GitLab</a> and <a href="{ROOT_URL}libraries/ttp/packagist" class="text-decoration-none">Packagist</a>.
|
||||||
</div>
|
The developer behind the project is <a href="https://joeykimsey.com/" class="text-decoration-none">Joey Kimsey</a> and he can be contacted through his website for development services.
|
||||||
</div>
|
</span>
|
||||||
<div class="accordion-item">
|
</div>
|
||||||
<h2 class="accordion-header context-main context-second-bg" id="heading4">
|
|
||||||
<button class="accordion-button context-main context-main-bg collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapse4" aria-expanded="false" aria-controls="collapse4">
|
|
||||||
How do I add this to my phone like an app?
|
|
||||||
</button>
|
|
||||||
</h2>
|
|
||||||
<div id="collapse4" class="accordion-collapse collapse" aria-labelledby="heading4" data-bs-parent="#faqAccordion">
|
|
||||||
<div class="accordion-body context-main context-main-bg" id="question4">
|
|
||||||
You can add it to your phone by installing the app or creating a shortcut from your browser to your home screen.
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,75 +1,145 @@
|
|||||||
<div class="container">
|
<div class="pt-3 mt-4 text-center">
|
||||||
<div id="myCarousel" class="carousel slide m-3" data-bs-ride="carousel">
|
<img class="d-block mx-auto mb-4" src="{root_URL}images/logoWhite.png" alt="" width="72" height="57">
|
||||||
<div class="carousel-indicators">
|
<h1 class="display-5 fw-bold">The Tempus Project</h1>
|
||||||
<button type="button" data-bs-target="#myCarousel" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
|
<div class="col-lg-6 mx-auto px-2">
|
||||||
<button type="button" data-bs-target="#myCarousel" data-bs-slide-to="1" aria-label="Slide 2"></button>
|
<p class="lead mb-4">
|
||||||
<button type="button" data-bs-target="#myCarousel" data-bs-slide-to="2" aria-label="Slide 3"></button>
|
{SITENAME} allows you to quickly design, develop, and customize responsive mobile-first web applications.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="carousel-inner">
|
|
||||||
<div class="carousel-item active">
|
<div class="b-example-divider"></div>
|
||||||
<img src="{ROOT_URL}app/images/ttp.png" class="bd-placeholder-img" alt="First slide">
|
|
||||||
<div class="container">
|
<div class="container px-1 py-4 p-sm-4">
|
||||||
<div class="carousel-caption text-start bg-dark px-4">
|
<p class="col-12 col-lg-8 offset-lg-2">
|
||||||
<h1>Powerful</h1>
|
Utilizing our in-house <a href="/home/libraries" class="text-decoration-none">libraries</a>, {SITENAME} provides a very basic PHP web application utilizing the MVC (Model View Controller) pattern, paired with Bootstrap for a robust front-end experience. {SITENAME} can be deployed on most server architecture in seconds and can be installed and customized within minutes. Paired with Bootstrap, the world's most popular front-end open source toolkit, you have a great platform to build just about anything.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="b-example-divider"></div>
|
||||||
|
|
||||||
|
<div class="container pt-3 p-sm-4" id="hanging-icons">
|
||||||
|
<h2 class="pb-2 border-bottom context-main-border">Includes many systems right oout of the box</h2>
|
||||||
|
<div class="row g-4 py-5 row-cols-1 row-cols-lg-3">
|
||||||
|
<div class="col d-flex align-items-start">
|
||||||
|
<div
|
||||||
|
class="icon-square text-bg-light d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
|
||||||
|
<i class="fa-solid fa-user"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 class="fs-2">User Management</h3>
|
||||||
|
<p>From new user registrations to forgotten password recovery and everything in-between, the included authentication and authorization controls can handle all your needs and include groups with highly customizable permissions systems.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col d-flex align-items-start">
|
||||||
|
<div
|
||||||
|
class="icon-square text-bg-light d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
|
||||||
|
<i class="fa-solid fa-screwdriver-wrench"></i>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<h3 class="fs-2">Administration</h3>
|
||||||
<p>
|
<p>
|
||||||
The Tempus Project is built with expansion in mind. From a custom template engine to the simple to use MVC style, The Tempus Project is built to provide a powerful and stable foundation for web applications.
|
Everything from your sitename and timezone to notifications and emails are a breeze with the included Admin panel. Out of the box you will have direct control over most of your application and you can easily expand or add new controls as you need.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col d-flex align-items-start">
|
||||||
|
<div
|
||||||
|
class="icon-square text-bg-light d-inline-flex align-items-center justify-content-center fs-4 flex-shrink-0 me-3">
|
||||||
|
<i class="fa-regular fa-folder-open"></i>
|
||||||
</div>
|
</div>
|
||||||
<div class="carousel-item">
|
<div>
|
||||||
<img src="{ROOT_URL}app/images/ttp-install.png" class="bd-placeholder-img" alt="Second slide">
|
<h3 class="fs-2">Plugins</h3>
|
||||||
<div class="container">
|
|
||||||
<div class="carousel-caption bg-dark px-4">
|
|
||||||
<h1>Quick and Simple Installation</h1>
|
|
||||||
<p>
|
<p>
|
||||||
Built with rapid deployment in mind you can have The Tempus Project installed in just minutes.
|
One of the best features of {SITENAME} is the plugin functionality. Much of the system has been modeled to work as self-contained applications that work together. Many of the features available here are plugins aty their core.
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item">
|
|
||||||
<img src="{ROOT_URL}app/images/ttp-github.png" class="bd-placeholder-img" alt="Third slide">
|
|
||||||
<div class="container">
|
|
||||||
<div class="carousel-caption text-end bg-dark px-4">
|
|
||||||
<h1>Open Source</h1>
|
|
||||||
<p>
|
|
||||||
The Tempus Project is completely open source and only utilizes other open-source components. The Project is provided under the MIT license.
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<button class="carousel-control-prev" type="button" data-bs-target="#myCarousel" data-bs-slide="prev">
|
|
||||||
<span class="carousel-control-prev-icon text-dark" aria-hidden="true"></span>
|
<div class="b-example-divider"></div>
|
||||||
<span class="visually-hidden">Previous</span>
|
|
||||||
</button>
|
<div class="container pt-3 p-sm-4" id="icon-grid">
|
||||||
<button class="carousel-control-next" type="button" data-bs-target="#myCarousel" data-bs-slide="next">
|
<h2 class="pb-2 border-bottom context-main-border">Plugins</h2>
|
||||||
<span class="carousel-control-next-icon text-dark" aria-hidden="true"></span>
|
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 g-4 py-5">
|
||||||
<span class="visually-hidden">Next</span>
|
<div class="col d-flex align-items-start">
|
||||||
</button>
|
<i class="fa-solid fa-pen-nib fa-3x"></i>
|
||||||
|
<div class="ps-3">
|
||||||
|
<h3 class="fw-bold mb-0 fs-4">Blog</h3>
|
||||||
|
<p>Whether its the companies transparency or your own need to share, our blog plugin makes it simple.</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="row m-3">
|
</div>
|
||||||
<div class="col-lg-9 col-md-9 col-sm-12 col-centered">
|
<div class="col d-flex align-items-start">
|
||||||
<div class="row">
|
<i class="fa-solid fa-bug fa-3x"></i>
|
||||||
<div class="col-lg-12 col-md-12 col-sm-12">
|
<div class="ps-3">
|
||||||
<h2>Welcome to The Tempus Project</h2>
|
<h3 class="fw-bold mb-0 fs-4">Bug Reports</h3>
|
||||||
<hr>
|
<p>An unfortunate reality iis that every application has bugs, never leave your users without the ability to report them to you.</p>
|
||||||
<p>The aim of The Tempus Project is to create an easy to use and implement CMS based
|
</div>
|
||||||
around the MVC style and build using php 5.6 and MySQL. Here are some of the features:</p>
|
</div>
|
||||||
<ul>
|
<div class="col d-flex align-items-start">
|
||||||
<li>Fully secured registration/login system</li>
|
<i class="fa-solid fa-comment fa-3x"></i>
|
||||||
<li>Automatic error handling</li>
|
<div class="ps-3">
|
||||||
<li>Built in debugging tools</li>
|
<h3 class="fw-bold mb-0 fs-4">Comments</h3>
|
||||||
<li>Testing implements to help you expand it further</li>
|
<p>Allowing users the opportunity to share feedback is crucial. Our comments plugin not only integrates with the blog, but many other plugins to enable users to comment on any content you want.</p>
|
||||||
<li>Customizable logging to ensure you are always up to date on whats going on</li>
|
</div>
|
||||||
<li>Simple administration panel</li>
|
</div>
|
||||||
<li>Bug reports and feedback forms included!</li>
|
<div class="col d-flex align-items-start">
|
||||||
<li>Drag and drop simple to install</li>
|
<i class="fa-solid fa-envelope fa-3x"></i>
|
||||||
</ul>
|
<div class="ps-3">
|
||||||
<p>DISCLAIMER: as of January 1, 2025 this code is not production ready! Please use at your own risk! That being said, I am always trying to improve this system. If you have any suggestions or need to report a bug, you can do so on my <a href="https://github.com/TheTempusProject/TheTempusProject">GitHub</a>.</p>
|
<h3 class="fw-bold mb-0 fs-4">Contact</h3>
|
||||||
|
<p>A contact form is another simple but essential tool for your business or website.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col d-flex align-items-start">
|
||||||
|
<i class="fa-solid fa-file fa-3x"></i>
|
||||||
|
<div class="ps-3">
|
||||||
|
<h3 class="fw-bold mb-0 fs-4">Resume</h3>
|
||||||
|
<p>Whether you're looking for a new gig or just want an easy way for others to see your work, our resume plugin might be the key.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col d-flex align-items-start">
|
||||||
|
<i class="fa-solid fa-inbox fa-3x"></i>
|
||||||
|
<div class="ps-3">
|
||||||
|
<h3 class="fw-bold mb-0 fs-4">Subscribe</h3>
|
||||||
|
<p>Building your list should always be a part of your application and services and it made as simple as can be with this plugin.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col d-flex align-items-start">
|
||||||
|
<i class="fa-solid fa-list fa-3x"></i>
|
||||||
|
<div class="ps-3">
|
||||||
|
<h3 class="fw-bold mb-0 fs-4">WIP (Work in Progress)</h3>
|
||||||
|
<p>A light-weight and simple plugin that allows you to keep a running list of works in progress to share with site visitors..</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col d-flex align-items-start">
|
||||||
|
<i class="fa-brands fa-stripe fa-3x"></i>
|
||||||
|
<div class="ps-3">
|
||||||
|
<h3 class="fw-bold mb-0 fs-4">Memberships / Payments</h3>
|
||||||
|
<p>Our membership plugin integrates with Stripe to allow incredibly simple membership setup and can be easily expanded to sell any of your products.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="b-example-divider"></div>
|
||||||
|
<div class="container pt-3 p-sm-4">
|
||||||
|
<h2 class="pb-2 border-bottom context-main-border">Light / Dark Modes</h2>
|
||||||
|
<div class="d-lg-flex flex-lg-equal my-md-3 ps-md-3">
|
||||||
|
<div class="col-12 col-lg-6 text-bg-dark text-white col-6 text-center overflow-hidden d-flex flex-column mb-3 mb-lg-0">
|
||||||
|
<div class="my-3 py-3">
|
||||||
|
<h2 class="display-6">When you stick with the light</h2>
|
||||||
|
<p class="lead">everything looks great.</p>
|
||||||
|
</div>
|
||||||
|
<img class="bg-dark shadow-sm mx-auto d-flex mt-auto border-top border-light" src="{root_URL}images/lightMobile.png" alt="Light-mode mobile view" height="300" style="border-radius: 21px 21px 0 0;">
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-lg-6 bg-light text-dark col-6 text-center overflow-hidden d-flex flex-column">
|
||||||
|
<div class="my-3 py-3">
|
||||||
|
<h2 class="display-6">But when you go to the dark side</h2>
|
||||||
|
<p class="lead">everything is just a bit better.</p>
|
||||||
|
</div>
|
||||||
|
<img class="bg-dark shadow-sm mx-auto d-flex mt-auto border-top border-dark" src="{root_URL}images/darkMobile.png" alt="Dark-mode mobile view" height="300" style="border-radius: 21px 21px 0 0;">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
@ -1,23 +1,26 @@
|
|||||||
<div class="col-8 mx-auto p-4 rounded shadow-sm context-main-bg my-4">
|
<div class="m-2 m-lg-4">
|
||||||
|
<div class="col-12 mx-5 col-sm-10 col-lg-8 mx-auto p-4 rounded shadow-sm context-main-bg">
|
||||||
<h2 class="text-center mb-4">Getting Started with {SITENAME}</h2>
|
<h2 class="text-center mb-4">Getting Started with {SITENAME}</h2>
|
||||||
<p class="lead">
|
<p class="lead text-center text-lg-start">
|
||||||
{SITENAME} has been open source for many years now. The hopes and intentions for it were always to give others a leg-up to get started building web-apps like i wish i had as a kid.
|
{SITENAME} has been open source for many years now. The hopes and intentions for it were always to give others a leg-up to get started building web-apps like i wish i had as a kid.
|
||||||
There were so many tutorials and ideas, expansions and plans for the project.
|
There were so many tutorials and ideas, expansions and plans for the project.
|
||||||
Unfortunately no person is given unlimited time to accomplish their dreams and over the years the idea for a huge repository for learning and education has taken a back seat.
|
Unfortunately no person is given unlimited time to accomplish their dreams and over the years the idea for a huge repository for learning and education has taken a back seat.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p class="text-center text-lg-start">
|
||||||
At this time, the best recommendation available is to contact us for more information.
|
At this time, the best recommendation available is to contact us for more information.
|
||||||
The site here is actively maintained so feel free to utilize any of our available resources for contact.
|
The site here is actively maintained so feel free to utilize any of our available resources for contact.
|
||||||
In addition to the site here, you can contact the lead developer (me) directly through <a href="https://joeykimsey.com">JoeyKimsey.com</a>.
|
In addition to the site here, you can contact the lead developer (me) directly through <a href="https://joeykimsey.com">JoeyKimsey.com</a>.
|
||||||
</p>
|
</p>
|
||||||
<p class="text-muted">
|
<p class="text-muted text-center text-lg-start">
|
||||||
Right now, this entire system was built and managed by myself. As stated, I have used my own version of this for years, but translating it to a publicly available product is not a 1-to-1 job. There may be bugs or issues encountered while you use the product. I can't guarantee a fix for every need in every case immediately, but I do actively keep track of bugs and work hard to ensure everyone has a great experience using the app.
|
Right now, this entire system was built and managed by myself. As stated, I have used my own version of this for years, but translating it to a publicly available product is not a 1-to-1 job. There may be bugs or issues encountered while you use the product. I can't guarantee a fix for every need in every case immediately, but I do actively keep track of bugs and work hard to ensure everyone has a great experience using the app.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p class="text-center text-lg-start">
|
||||||
If you encounter any bugs, feel free to report them <a href="/bugreport" class="text-decoration-none">here</a>. Likewise, there are forms for feedback, reviews, suggestions, and a general contact form. Thanks for taking the time to check out the product!
|
If you encounter any bugs, feel free to report them <a href="/bugreport" class="text-decoration-none">here</a>. Likewise, there are forms for feedback, reviews, suggestions, and a general contact form. Thanks for taking the time to check out the product!
|
||||||
</p>
|
</p>
|
||||||
<div class="text-center mt-4 pb-4">
|
<div class="text-center mt-4 pb-4">
|
||||||
{loggedin}<a href="/bugreport" class="btn btn-primary btn-lg px-5">Report a Bug</a>{/loggedin}
|
{loggedin}
|
||||||
<a href="/contact" class="btn btn-outline-secondary btn-lg px-5 ms-3">Contact Us</a>
|
<a href="/bugreport" class="btn btn-primary px-3 btn-lg m-2">Report a Bug</a>
|
||||||
|
{/loggedin}
|
||||||
|
<a href="/contact" class="btn btn-outline-primary px-3 m-2 btn-lg">Contact Us</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
@ -151,7 +151,7 @@ class TheTempusProject extends Bedrock {
|
|||||||
],
|
],
|
||||||
[
|
[
|
||||||
'text' => 'Libraries',
|
'text' => 'Libraries',
|
||||||
'url' => '{ROOT_URL}home/libraries',
|
'url' => '{ROOT_URL}libraries',
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
'text' => 'Get Started',
|
'text' => 'Get Started',
|
||||||
|
BIN
images/darkMobile.png
Normal file
BIN
images/darkMobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
BIN
images/lightMobile.png
Normal file
BIN
images/lightMobile.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
Reference in New Issue
Block a user