From 0c918cafbef2e6c402e6852e821397114ea62284 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Fri, 26 Apr 2019 20:02:42 +0200 Subject: Rename "standard" template to "default" --- template/standard/html/403.php | 11 ---- template/standard/html/404.php | 11 ---- template/standard/html/feed/item_page.php | 27 -------- template/standard/html/feed/item_post.php | 27 -------- template/standard/html/feed/main.php | 52 --------------- template/standard/html/home.php | 19 ------ template/standard/html/main.php | 102 ------------------------------ template/standard/html/page/item.php | 20 ------ template/standard/html/page/list.php | 19 ------ template/standard/html/page/main.php | 34 ---------- template/standard/html/pagination.php | 39 ------------ template/standard/html/post/item.php | 20 ------ template/standard/html/post/list.php | 19 ------ template/standard/html/post/main.php | 34 ---------- template/standard/html/search/main.php | 34 ---------- template/standard/html/search/result.php | 36 ----------- template/standard/html/user/item.php | 20 ------ template/standard/html/user/list.php | 19 ------ template/standard/html/user/main.php | 31 --------- 19 files changed, 574 deletions(-) delete mode 100644 template/standard/html/403.php delete mode 100644 template/standard/html/404.php delete mode 100644 template/standard/html/feed/item_page.php delete mode 100644 template/standard/html/feed/item_post.php delete mode 100644 template/standard/html/feed/main.php delete mode 100644 template/standard/html/home.php delete mode 100644 template/standard/html/main.php delete mode 100644 template/standard/html/page/item.php delete mode 100644 template/standard/html/page/list.php delete mode 100644 template/standard/html/page/main.php delete mode 100644 template/standard/html/pagination.php delete mode 100644 template/standard/html/post/item.php delete mode 100644 template/standard/html/post/list.php delete mode 100644 template/standard/html/post/main.php delete mode 100644 template/standard/html/search/main.php delete mode 100644 template/standard/html/search/result.php delete mode 100644 template/standard/html/user/item.php delete mode 100644 template/standard/html/user/list.php delete mode 100644 template/standard/html/user/main.php (limited to 'template/standard/html') diff --git a/template/standard/html/403.php b/template/standard/html/403.php deleted file mode 100644 index 337dd44..0000000 --- a/template/standard/html/403.php +++ /dev/null @@ -1,11 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> -

text('403_heading_text')?>

-

text('403_heading_desc')?>

\ No newline at end of file diff --git a/template/standard/html/404.php b/template/standard/html/404.php deleted file mode 100644 index 54866a4..0000000 --- a/template/standard/html/404.php +++ /dev/null @@ -1,11 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> -

text('404_heading_text')?>

-

text('404_heading_desc')?>

\ No newline at end of file diff --git a/template/standard/html/feed/item_page.php b/template/standard/html/feed/item_page.php deleted file mode 100644 index ff9f209..0000000 --- a/template/standard/html/feed/item_page.php +++ /dev/null @@ -1,27 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# - -$HTML = $PAGE['BODY']['HTML'](); -?> - - <?=escapeHTML($PAGE['ATTR']['NAME'])?> - - - - - - - - ]]> - - - - - \ No newline at end of file diff --git a/template/standard/html/feed/item_post.php b/template/standard/html/feed/item_post.php deleted file mode 100644 index 07d400d..0000000 --- a/template/standard/html/feed/item_post.php +++ /dev/null @@ -1,27 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# - -$HTML = $POST['BODY']['HTML'](); -?> - - <?=escapeHTML($POST['ATTR']['NAME'])?> - - - - - - - - ]]> - - - - - \ No newline at end of file diff --git a/template/standard/html/feed/main.php b/template/standard/html/feed/main.php deleted file mode 100644 index 588ee02..0000000 --- a/template/standard/html/feed/main.php +++ /dev/null @@ -1,52 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# - -$BLOGMETA_NAME = escapeHTML($BLOGMETA['NAME']); - -switch($FEED['TYPE']) { - case 'post': - $title = $Language->text('feed_name_posts', $BLOGMETA_NAME); - $self = Application::getURL('feed/post/'); - break; - case 'page': - $title = $Language->text('feed_name_pages', $BLOGMETA_NAME); - $self = Application::getURL('feed/page/'); - break; - default: - $title = $Language->text('feed_name_items', $BLOGMETA_NAME); - $self = Application::getURL('feed/'); -} -?> -'?> - - - <?=$title?> - - - - - - - - <?=$title?> - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/template/standard/html/home.php b/template/standard/html/home.php deleted file mode 100644 index 3f6ba47..0000000 --- a/template/standard/html/home.php +++ /dev/null @@ -1,19 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> -

text('home_heading_text', escapeHTML(Application::get('BLOGMETA.NAME')))?>Feed

-

text('home_heading_desc', Application::get('POST.LIST_SIZE'))?>

- -
- - - -
- - \ No newline at end of file diff --git a/template/standard/html/main.php b/template/standard/html/main.php deleted file mode 100644 index 46f4f09..0000000 --- a/template/standard/html/main.php +++ /dev/null @@ -1,102 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# - -#=============================================================================== -# Escape parameters which are used several times here to reduce escapeHTML calls -#=============================================================================== -$HEAD_NAME = isset($HEAD['NAME']) ? escapeHTML($HEAD['NAME']) : NULL; -$HEAD_DESC = isset($HEAD['DESC']) ? escapeHTML($HEAD['DESC']) : NULL; -$BLOGMETA_NAME = escapeHTML($BLOGMETA['NAME']); -$BLOGMETA_DESC = escapeHTML($BLOGMETA['DESC']); -?> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <?="{$HEAD_NAME} | {$BLOGMETA_NAME} {$BLOGMETA_DESC}"?> - - -
-
-
- "> - - -
- -
-
- -
-
- © -
-
- - \ No newline at end of file diff --git a/template/standard/html/page/item.php b/template/standard/html/page/item.php deleted file mode 100644 index 00da4c2..0000000 --- a/template/standard/html/page/item.php +++ /dev/null @@ -1,20 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> -
-
-

- -

- -
-
-

-
-
\ No newline at end of file diff --git a/template/standard/html/page/list.php b/template/standard/html/page/list.php deleted file mode 100644 index c4a04b2..0000000 --- a/template/standard/html/page/list.php +++ /dev/null @@ -1,19 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> -

text('page_overview')?>Feed

-

text('page_overview_heading_desc', $PAGINATION['THIS'])?>

- -
- - - -
- - \ No newline at end of file diff --git a/template/standard/html/page/main.php b/template/standard/html/page/main.php deleted file mode 100644 index 1f8e140..0000000 --- a/template/standard/html/page/main.php +++ /dev/null @@ -1,34 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# - -$user = "{$USER['ATTR']['FULLNAME']}"; -$time = ""; -?> -

-

text('page_main_heading_desc', [$user, $time])?>

- -
- -
- - \ No newline at end of file diff --git a/template/standard/html/pagination.php b/template/standard/html/pagination.php deleted file mode 100644 index 48e353f..0000000 --- a/template/standard/html/pagination.php +++ /dev/null @@ -1,39 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> - \ No newline at end of file diff --git a/template/standard/html/post/item.php b/template/standard/html/post/item.php deleted file mode 100644 index e0d49bd..0000000 --- a/template/standard/html/post/item.php +++ /dev/null @@ -1,20 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> -
-
-

- -

- -
-
- -
-
\ No newline at end of file diff --git a/template/standard/html/post/list.php b/template/standard/html/post/list.php deleted file mode 100644 index f16fd52..0000000 --- a/template/standard/html/post/list.php +++ /dev/null @@ -1,19 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> -

text('post_overview')?>Feed

-

text('post_overview_heading_desc', $PAGINATION['THIS'])?>

- -
- - - -
- - \ No newline at end of file diff --git a/template/standard/html/post/main.php b/template/standard/html/post/main.php deleted file mode 100644 index b84fc63..0000000 --- a/template/standard/html/post/main.php +++ /dev/null @@ -1,34 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# - -$user = "{$USER['ATTR']['FULLNAME']}"; -$time = ""; -?> -

-

text('post_main_heading_desc', [$user, $time])?>

- -
- -
- - \ No newline at end of file diff --git a/template/standard/html/search/main.php b/template/standard/html/search/main.php deleted file mode 100644 index 61bd6a5..0000000 --- a/template/standard/html/search/main.php +++ /dev/null @@ -1,34 +0,0 @@ -

text('search_base_heading_text')?>

-

text('search_base_heading_desc')?>

- - -
- - -
- - - - - - - -
\ No newline at end of file diff --git a/template/standard/html/search/result.php b/template/standard/html/search/result.php deleted file mode 100644 index 044afe1..0000000 --- a/template/standard/html/search/result.php +++ /dev/null @@ -1,36 +0,0 @@ -

text('search_result_heading_text', escapeHTML($SEARCH['TEXT']))?>

-

text('search_result_heading_desc')?>

- -
- - - - - - - -
- -
- - - -
\ No newline at end of file diff --git a/template/standard/html/user/item.php b/template/standard/html/user/item.php deleted file mode 100644 index d03d330..0000000 --- a/template/standard/html/user/item.php +++ /dev/null @@ -1,20 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> -
-
-

- -

- -
-
- -
-
\ No newline at end of file diff --git a/template/standard/html/user/list.php b/template/standard/html/user/list.php deleted file mode 100644 index 98fa840..0000000 --- a/template/standard/html/user/list.php +++ /dev/null @@ -1,19 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> -

text('user_overview')?>

-

text('user_overview_heading_desc', $PAGINATION['THIS'])?>

- -
- - - -
- - \ No newline at end of file diff --git a/template/standard/html/user/main.php b/template/standard/html/user/main.php deleted file mode 100644 index 7c19b96..0000000 --- a/template/standard/html/user/main.php +++ /dev/null @@ -1,31 +0,0 @@ -] # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -# # -# [see documentation] # -# # -#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# -?> -

-

text('user_main_heading_desc', [escapeHTML($USER['ATTR']['USERNAME']), $COUNT['POST'], $COUNT['PAGE']])?>

- -
- -
- - \ No newline at end of file -- cgit v1.2.3