mirror of
https://github.com/typemill/typemill.git
synced 2025-08-01 20:00:37 +02:00
Finish V 2.10.0
This commit is contained in:
@@ -6,7 +6,7 @@ To create a new page in Typemill, follow these simple steps:
|
||||
* **Enter a page title** for your new page into one of the grey input fields.
|
||||
* **Click the page icon** to create a new page. You can also create a folder if you want to add sub-pages later.
|
||||
|
||||
Here's a quick breakdown of the options:
|
||||
Here's a quick breakdown of the options.
|
||||
|
||||
* **Folders**: Use folders to organize your website hierarchically. Folders can contain subfolders or pages. Unlike a traditional file system, folders in Typemill can also have content, similar to pages.
|
||||
* **Pages**: Utilize pages for simple content without needing a deeper structure.
|
||||
|
@@ -144,7 +144,8 @@ class License
|
||||
return false;
|
||||
}
|
||||
|
||||
private function checkLicenseDomain(string $licensedomain, array $urlinfo)
|
||||
# NOT IN USE ANYMORE: Check licese domain deeply with subdomains
|
||||
private function checkLicenseDomainDeep(string $licensedomain, array $urlinfo)
|
||||
{
|
||||
$licensehost = parse_url($licensedomain, PHP_URL_HOST);
|
||||
$licensehost = str_replace("www.", "", $licensehost);
|
||||
@@ -165,8 +166,8 @@ class License
|
||||
return false;
|
||||
}
|
||||
|
||||
# NOT IN USE: Compare only domain without subdomains or subfolders
|
||||
private function checkLicenseBaseDomain(string $licensedomain, array $urlinfo)
|
||||
# Compare only domain without subdomains or subfolders
|
||||
private function checkLicenseDomain(string $licensedomain, array $urlinfo)
|
||||
{
|
||||
$licensehost = parse_url($licensedomain, PHP_URL_HOST);
|
||||
$licensehost = preg_replace('/^www\./', '', $licensehost);
|
||||
@@ -189,7 +190,7 @@ class License
|
||||
return false;
|
||||
}
|
||||
|
||||
# NOT IN USE: Function to extract the base domain (ignoring subdomains)
|
||||
# Function to extract the base domain (ignoring subdomains)
|
||||
private function extractBaseDomain($host)
|
||||
{
|
||||
$parts = explode('.', $host);
|
||||
|
@@ -1,4 +1,4 @@
|
||||
version: '2.9.0'
|
||||
version: '2.10.0'
|
||||
title: 'Typemill'
|
||||
author: 'Unknown'
|
||||
copyright: false
|
||||
|
Reference in New Issue
Block a user