From 200702b5eb7e3038d32b902c6fc09a61f4ef9865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=A0=E3=81=84=E3=81=A1=E3=81=BE=E3=82=8B?= <98202777+Daichimarukana@users.noreply.github.com> Date: Thu, 17 Aug 2023 19:58:49 +0900 Subject: [PATCH] Delete rule directory --- rule/privacypolicy.php | 80 ------------------------------------ rule/releasenotes.php | 93 ------------------------------------------ rule/terms.php | 80 ------------------------------------ rule/uwuzuabout.php | 93 ------------------------------------------ 4 files changed, 346 deletions(-) delete mode 100644 rule/privacypolicy.php delete mode 100644 rule/releasenotes.php delete mode 100644 rule/terms.php delete mode 100644 rule/uwuzuabout.php diff --git a/rule/privacypolicy.php b/rule/privacypolicy.php deleted file mode 100644 index f1b9214..0000000 --- a/rule/privacypolicy.php +++ /dev/null @@ -1,80 +0,0 @@ - - -

$1

', $markdownText); - - // 画像(#img)をHTMLのimgタグに変換 - $markdownText = preg_replace('/^#img (.+)/m', '', $markdownText); - - // タイトル(#、##、###)をHTMLのhタグに変換 - $markdownText = preg_replace('/^# (.+)/m', '

$1

', $markdownText); - $markdownText = preg_replace('/^## (.+)/m', '

$1

', $markdownText); - $markdownText = preg_replace('/^### (.+)/m', '

$1

', $markdownText); - - // 箇条書き(-)をHTMLのul/liタグに変換 - $markdownText = preg_replace('/^- (.+)/m', '', $markdownText); - - // 空行の前に何もない行をHTMLのpタグに変換 - $markdownText = preg_replace('/(^\s*)(?!\s)(.*)/m', '$1

$2

', $markdownText); - - return $markdownText; -} - -$sprivacypolicy = explode("\n", $privacypolicydata); -$htmltext = ''; // 初期化 - -foreach ($sprivacypolicy as $privacypolicy) { - $markdowntext = $privacypolicy; - $convertedText = processMarkdownAndWrapEmptyLines($markdowntext); - $htmltext .= $convertedText . "\n"; // 変換されたテキストを追加 -} - - -?> - - - - - - -プライバシーポリシー - <?php echo file_get_contents($servernamefile);?> - - - - -
- -
- -
- -

プライバシーポリシー

-
-
- -

- -
- - - - - \ No newline at end of file diff --git a/rule/releasenotes.php b/rule/releasenotes.php deleted file mode 100644 index 54f0a02..0000000 --- a/rule/releasenotes.php +++ /dev/null @@ -1,93 +0,0 @@ - - -

$1

', $markdownText); - - // 画像(#img)をHTMLのimgタグに変換 - $markdownText = preg_replace('/^#img (.+)/m', '', $markdownText); - - // タイトル(#、##、###)をHTMLのhタグに変換 - $markdownText = preg_replace('/^# (.+)/m', '

$1

', $markdownText); - $markdownText = preg_replace('/^## (.+)/m', '

$1

', $markdownText); - $markdownText = preg_replace('/^### (.+)/m', '

$1

', $markdownText); - - // 箇条書き(-)をHTMLのul/liタグに変換 - $markdownText = preg_replace('/^- (.+)/m', '', $markdownText); - - // 空行の前に何もない行をHTMLのpタグに変換 - $markdownText = preg_replace('/(^\s*)(?!\s)(.*)/m', '$1

$2

', $markdownText); - - return $markdownText; -} - -$srelease = explode("\n", $releasedata); -$htmltext = ''; // 初期化 - -foreach ($srelease as $release) { - $markdowntext = $release; - $convertedText = processMarkdownAndWrapEmptyLines($markdowntext); - $htmltext .= $convertedText . "\n"; // 変換されたテキストを追加 -} - - -?> - - - - - - -<?php echo $uwuzuinfo[0]?> リリースノート - <?php echo file_get_contents($servernamefile);?> - - - - - -
- -
- -
- -

リリースノート

-
-
-
-
Version :
Developer :
Last Update :
- - -

- -
- - - - - \ No newline at end of file diff --git a/rule/terms.php b/rule/terms.php deleted file mode 100644 index 5f09619..0000000 --- a/rule/terms.php +++ /dev/null @@ -1,80 +0,0 @@ - - -

$1

', $markdownText); - - // 画像(#img)をHTMLのimgタグに変換 - $markdownText = preg_replace('/^#img (.+)/m', '', $markdownText); - - // タイトル(#、##、###)をHTMLのhタグに変換 - $markdownText = preg_replace('/^# (.+)/m', '

$1

', $markdownText); - $markdownText = preg_replace('/^## (.+)/m', '

$1

', $markdownText); - $markdownText = preg_replace('/^### (.+)/m', '

$1

', $markdownText); - - // 箇条書き(-)をHTMLのul/liタグに変換 - $markdownText = preg_replace('/^- (.+)/m', '', $markdownText); - - // 空行の前に何もない行をHTMLのpタグに変換 - $markdownText = preg_replace('/(^\s*)(?!\s)(.*)/m', '$1

$2

', $markdownText); - - return $markdownText; -} - -$sterms = explode("\n", $termsdata); -$htmltext = ''; // 初期化 - -foreach ($sterms as $terms) { - $markdowntext = $terms; - $convertedText = processMarkdownAndWrapEmptyLines($markdowntext); - $htmltext .= $convertedText . "\n"; // 変換されたテキストを追加 -} - - -?> - - - - - - -利用規約 - <?php echo file_get_contents($servernamefile);?> - - - - -
- -
- -
- -

利用規約

-
-
- -

- -
- - - - - \ No newline at end of file diff --git a/rule/uwuzuabout.php b/rule/uwuzuabout.php deleted file mode 100644 index 2694f3a..0000000 --- a/rule/uwuzuabout.php +++ /dev/null @@ -1,93 +0,0 @@ - - -

$1

', $markdownText); - - // 画像(#img)をHTMLのimgタグに変換 - $markdownText = preg_replace('/^#img (.+)/m', '', $markdownText); - - // タイトル(#、##、###)をHTMLのhタグに変換 - $markdownText = preg_replace('/^# (.+)/m', '

$1

', $markdownText); - $markdownText = preg_replace('/^## (.+)/m', '

$1

', $markdownText); - $markdownText = preg_replace('/^### (.+)/m', '

$1

', $markdownText); - - // 箇条書き(-)をHTMLのul/liタグに変換 - $markdownText = preg_replace('/^- (.+)/m', '', $markdownText); - - // 空行の前に何もない行をHTMLのpタグに変換 - $markdownText = preg_replace('/(^\s*)(?!\s)(.*)/m', '$1

$2

', $markdownText); - - return $markdownText; -} - -$sterms = explode("\n", $termsdata); -$htmltext = ''; // 初期化 - -foreach ($sterms as $terms) { - $markdowntext = $terms; - $convertedText = processMarkdownAndWrapEmptyLines($markdowntext); - $htmltext .= $convertedText . "\n"; // 変換されたテキストを追加 -} - - -?> - - - - - - -<?php echo $uwuzuinfo[0]?>について - <?php echo file_get_contents($servernamefile);?> - - - - - -
- -
- -
- -

について

-
-
-
-
Version :
Developer :
Last Update :
- - -

- -
- - - - - \ No newline at end of file