検索オンラインについて

このコミットが含まれているのは:
守矢諏訪子 2022-06-04 21:55:45 +09:00
コミット 7a19c92425
3個のファイルの変更27行の追加41行の削除

ファイルの表示

@ -30,38 +30,3 @@ sudo apt install nginx php8.1 php8.1-{gd,fpm,common,cli,mbstring,intl,mysql,bcma
```sh
sudo pacman -S nginx php php-fpm mariadb curl whois tor torsocks pandoc
```
## やることリスト
### 1.0
- [x] ホームページ
- [x] 検索機能性
- [x] 検索結果
- [x] スタイリング
- [x] 更新BOT
- [x] ウエブサイトの追加
- [ ] ウエブサイトの追加は複数レベル化
- [ ] 検索オンラインについて
- [x] 複数キーワード
### 1.1
- [ ] "my ip"
- [ ] "my useragent"
- [ ] "is tor"
- [ ] "site:"
- [ ] 「""」で検索
- [ ] 通貨交換(例:!crnc 100 jpy to xmr)
- [ ] 電卓(例:!calc 2+2)
- [ ] 天気予報(例:!wttr tokyo)
- [ ] 翻訳(例:"!tran en ja frog")
### 1.2
- [ ] アーカイバー(hozon.site)で保存
- [ ] 短縮URL(urlo.li)で共有
### 1.3
- [ ] 画像検索
- [ ] 動画検索
### 1.4
- [ ] ドメイン検索

ファイルの表示

@ -1,13 +1,15 @@
<?php
define('SITE_NAME', '検索オンライン');
define('SITE_NAME_EN', 'Kensaku Online');
define('VERSION', '1.0');
define('IMAGE_SOURCES', []);
define('VIDEO_SOURCES', ['video.076.ne.jp', 'youtube.076.ne.jp', 'odysee.076.ne.jp']);
define('ARCHIVER', 'hozon.site');
define('URL_SHORTENER', 'urlo.li');
define('DOMAIN_SOURCES', []);
define('DB_HOST', 'localhost');
define('DB_USER', '');
define('DB_PASS', '');
define('DB_NAME', 'kensaku');
define('DBHOST', 'localhost');
define('DBUSER', '');
define('DBPASS', '');
define('DBNAME', 'kensaku');
?>

ファイルの表示

@ -3,14 +3,33 @@
require_once('../config.php');
$title = '検索オンラインについて';
$linktype = 'top';
$linktype = 'side';
require_once('../include/header.php');
require_once('../include/menu.php');
?>
<hr />
開発中…
<h1><?php echo SITE_NAME.' '.VERSION; ?></h1>
<p>
匿名自営業076のテクニカル諏訪子様の商品です。<br />
検索オンラインは日本産検索エンジンで、本当に匿名で検索可能となっております。<br />
検索オンラインはフリーソフトですので、ソースコードは勿論オープンソースです。<br /><br />
バグ報告は<a href="https://git.076.ne.jp/TechnicalSuwako/kensaku.online/issues">Gitレポジトリー</a>までお願い申し上げます。
</p>
<hr />
<h1><?php echo SITE_NAME_EN.' '.VERSION; ?></h1>
<p>
This is a product of TechnicalSuwako from 076 Anonymous Independent Business.<br />
Kensaku Online is a Made in Japan™ search engine withou which you can actually search anonymously.<br />
Kensaku Online is free software, so of course the source code is open source.<br /><br />
Bug reports should go into the <a href="https://git.076.ne.jp/TechnicalSuwako/kensaku.online/issues">Git repository</a>.
</p>
<?php
require_once('../include/footer.php');