recover local git disaster
This commit is contained in:
parent
c18744c45f
commit
9d636c7b2c
|
@ -0,0 +1,67 @@
|
||||||
|
<form action="index.php" method="GET">
|
||||||
|
<div>
|
||||||
|
<input type="submit" name="home" value="home" accesskey="h">
|
||||||
|
<input type="submit" name="open" value="open">
|
||||||
|
<input type="submit" name="filter" value="filter">
|
||||||
|
<input type="submit" name="search" value="search">
|
||||||
|
<input type="submit" name="tags" value="tags">
|
||||||
|
<input type="submit" name="clip" value="clip">
|
||||||
|
<br>
|
||||||
|
<input autocomplete="off" class="title" name="param" value="<?php echo $param; ?>">
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
<div class="editor">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
|
||||||
|
$files = glob($dir . '/*');
|
||||||
|
usort($files, function($a, $b)
|
||||||
|
{
|
||||||
|
return filemtime($b) - filemtime($a);
|
||||||
|
});
|
||||||
|
|
||||||
|
foreach($files as $path)
|
||||||
|
{
|
||||||
|
$tags = '';
|
||||||
|
$name = basename($path);
|
||||||
|
if (!str_ends_with($name, '.del') && ($action != 'filter' || str_contains(strtolower($name), strtolower($param))))
|
||||||
|
{
|
||||||
|
if ($action == 'search' || $action == 'tags')
|
||||||
|
{
|
||||||
|
$content = file_get_contents($path);
|
||||||
|
|
||||||
|
if (($action == 'search' && !str_contains(strtolower($content), strtolower($param))) ||
|
||||||
|
($action == 'tags' && !preg_match('/tags:.*' . $param . '/i', $content)))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
echo '<div><a href=index.php?open=true¶m=' . urlencode($name) . '>' . $name .'</a>';
|
||||||
|
if ($action == 'tags')
|
||||||
|
{
|
||||||
|
$tags = array();
|
||||||
|
$hastags = preg_match_all('/tags:(.*)/i', $content, $tags, PREG_SET_ORDER);
|
||||||
|
if ($hastags)
|
||||||
|
{
|
||||||
|
$tagslist = explode(',', $tags[0][1]);
|
||||||
|
echo '<span class="grey"> ';
|
||||||
|
foreach ($tagslist as $tag)
|
||||||
|
{
|
||||||
|
$tag = trim($tag);
|
||||||
|
echo('<a class="grey" href="index.php?tags=true¶m=' . $tag . '">' . $tag . '</a> ');
|
||||||
|
}
|
||||||
|
echo '</span>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if ($action == 'search')
|
||||||
|
{
|
||||||
|
$pos = strpos(strtolower($content), strtolower($param));
|
||||||
|
echo '<span class="grey"> <b>' . $param . '</b>' . substr($content, $pos + strlen($param), 42) . '</span>';
|
||||||
|
}
|
||||||
|
echo'</div>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
</div>
|
182
index.php
182
index.php
|
@ -14,7 +14,6 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<?php
|
<?php
|
||||||
|
@ -28,18 +27,55 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
$action = '';
|
$action = '';
|
||||||
if (isset($_POST['action'])) $action = $_POST['action'];
|
|
||||||
else if (isset($_GET['action'])) $action = $_GET['action'];
|
|
||||||
|
|
||||||
$param = '';
|
if (isset($_GET['open']))
|
||||||
if (isset($_GET['param'])) $param = $_GET['param'];
|
{
|
||||||
|
$action = 'open';
|
||||||
if (isset($_POST['home']))
|
}
|
||||||
|
else if (isset($_GET['filter']))
|
||||||
|
{
|
||||||
|
$action = 'filter';
|
||||||
|
}
|
||||||
|
else if (isset($_GET['search']))
|
||||||
|
{
|
||||||
|
$action = 'search';
|
||||||
|
}
|
||||||
|
else if (isset($_GET['tags']))
|
||||||
|
{
|
||||||
|
$action = 'tags';
|
||||||
|
}
|
||||||
|
else if (isset($_GET['clip']))
|
||||||
|
{
|
||||||
|
$action = 'clip';
|
||||||
|
}
|
||||||
|
else if (isset($_POST['save']))
|
||||||
|
{
|
||||||
|
$action = 'save';
|
||||||
|
}
|
||||||
|
else if (isset($_POST['delete']))
|
||||||
|
{
|
||||||
|
$action = 'delete';
|
||||||
|
}
|
||||||
|
else if (isset($_POST['home']))
|
||||||
{
|
{
|
||||||
$action = 'save';
|
$action = 'save';
|
||||||
}
|
}
|
||||||
|
else if(isset($_GET['home']))
|
||||||
|
{
|
||||||
|
$action = '';
|
||||||
|
}
|
||||||
|
else if (isset($_POST['preview']))
|
||||||
|
{
|
||||||
|
$action = 'preview';
|
||||||
|
}
|
||||||
|
|
||||||
$content = '';
|
$content = '';
|
||||||
|
if ($action == 'clip' && $_GET['param'])
|
||||||
|
{
|
||||||
|
$content = $_GET['param'] . "\r\n" . file_get_contents($dir . '/clip');
|
||||||
|
file_put_contents($dir . '/clip', $content);
|
||||||
|
$_GET['param'] = '';
|
||||||
|
}
|
||||||
if ($action == 'save')
|
if ($action == 'save')
|
||||||
{
|
{
|
||||||
$title = $_POST['title'];
|
$title = $_POST['title'];
|
||||||
|
@ -53,7 +89,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
$action = 'open';
|
$action = 'open';
|
||||||
$param = $title;
|
$_GET['param'] = $title;
|
||||||
|
|
||||||
if (isset($_POST['home']))
|
if (isset($_POST['home']))
|
||||||
{
|
{
|
||||||
|
@ -71,140 +107,42 @@
|
||||||
require 'libs/Parsedown.php';
|
require 'libs/Parsedown.php';
|
||||||
$title = $_POST['title'];
|
$title = $_POST['title'];
|
||||||
$content = $_POST['content'];
|
$content = $_POST['content'];
|
||||||
|
$pos = 0;
|
||||||
|
if (str_starts_with($content, '---'))
|
||||||
|
{
|
||||||
|
$pos = strpos($content, '---', 3);
|
||||||
|
}
|
||||||
$Parsedown = new Parsedown();
|
$Parsedown = new Parsedown();
|
||||||
$Parsedown->setBreaksEnabled(true);
|
$Parsedown->setBreaksEnabled(true);
|
||||||
echo $Parsedown->text('# ' . $title . "\r\n" . $content);
|
echo $Parsedown->text('# ' . $title . "\r\n" . substr($content, $pos + 3));
|
||||||
}
|
}
|
||||||
else if ($action == 'open')
|
else if ($action == 'open')
|
||||||
{
|
{
|
||||||
|
$title = $_GET['param'];
|
||||||
$now = date("Y-m-d H.i.s", time());
|
$now = date("Y-m-d H.i.s", time());
|
||||||
if (!$param)
|
if (!$title)
|
||||||
{
|
{
|
||||||
$param = $now;
|
$title = $now;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!file_exists($dir . '/' . $param))
|
if (!file_exists($dir . '/' . $title))
|
||||||
{
|
{
|
||||||
$content = "---\r\ndate: " . substr($now, 0, 10) . "\r\ntags: \r\n---\r\n";
|
$content = "---\r\ndate: " . substr($now, 0, 10) . "\r\ntags: \r\n---\r\n";
|
||||||
file_put_contents($dir . '/' . $param, $content);
|
file_put_contents($dir . '/' . $title, $content);
|
||||||
}
|
}
|
||||||
else if (!$content)
|
else if (!$content)
|
||||||
{
|
{
|
||||||
$content = file_get_contents($dir . '/' . $param);
|
$content = file_get_contents($dir . '/' . $title);
|
||||||
}
|
}
|
||||||
|
require('note.php');
|
||||||
$lines = substr_count($content, "\r\n") + 1;
|
|
||||||
$words = $lines + substr_count($content, " ");
|
|
||||||
$rows = max(20, $lines) + 10;
|
|
||||||
$length = strlen($content);
|
|
||||||
|
|
||||||
echo '<form action="index.php" method="POST">
|
|
||||||
<div>
|
|
||||||
<input type="submit" name="home" value="home" accesskey="h">
|
|
||||||
<select name="action">
|
|
||||||
<option value="save">save</option>
|
|
||||||
<option value="delete">delete</option>
|
|
||||||
<option value="preview">preview</option>
|
|
||||||
</select>
|
|
||||||
<input class="title" name="title" value="' . $param . '">
|
|
||||||
<input type="submit" name="go" value="go" accesskey="s">
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<div>
|
|
||||||
<textarea rows="' . $rows. '" autofocus name="content" spellcheck="false">' . $content . '</textarea>
|
|
||||||
</div>
|
|
||||||
<input hidden name="previoustitle" value="' . $param . '">
|
|
||||||
</form>';
|
|
||||||
|
|
||||||
$links = array();
|
|
||||||
if (preg_match_all('/\[\[(.*)\]\]/', $content, $links, PREG_SET_ORDER))
|
|
||||||
{
|
|
||||||
echo '<div>Internal links:</div>';
|
|
||||||
foreach($links as $link)
|
|
||||||
{
|
|
||||||
echo '<div>
|
|
||||||
<a href="index.php?action=open¶m=' . urlencode($link[1]) . '">' . $link[1] . '</a>
|
|
||||||
</div>';
|
|
||||||
}
|
|
||||||
echo '<br>';
|
|
||||||
}
|
|
||||||
$links = array();
|
|
||||||
if (preg_match_all('/https:(.*)[ \r]/', $content, $links, PREG_SET_ORDER))
|
|
||||||
{
|
|
||||||
echo '<div>External links:</div>';
|
|
||||||
foreach($links as $link)
|
|
||||||
{
|
|
||||||
echo '<div>
|
|
||||||
<a target="_blank" href="https:' . $link[1] . '">https:' . $link[1] . '</a>
|
|
||||||
</div>';
|
|
||||||
}
|
|
||||||
echo '<br>';
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '<span class="grey">' . $param . ' - ' . $now . ' - ' . $length . 'c - ' . $words . 'w - ' . $lines . 'l </span>';
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
echo '<form action="index.php" method="GET">
|
if (isset($_GET['param']))
|
||||||
<select name="action">
|
|
||||||
<option ' . ($action == 'open' ? 'selected' : '') . ' value="open">open</option>
|
|
||||||
<option ' . ($action == 'filter' ? 'selected' : '') . ' value="filter">filter</option>
|
|
||||||
<option ' . ($action == 'search' ? 'selected' : '') . ' value="search">search</option>
|
|
||||||
<option ' . ($action == 'tags' ? 'selected' : '') . ' value="tags">tags</option>
|
|
||||||
</select>
|
|
||||||
<input autofocus name="param" value="' . $param . '">
|
|
||||||
<input accesskey="s" type="submit" value="go">
|
|
||||||
</form>';
|
|
||||||
echo '<br>';
|
|
||||||
|
|
||||||
$files = glob($dir . '/*');
|
|
||||||
usort($files, function($a, $b)
|
|
||||||
{
|
{
|
||||||
return filemtime($b) - filemtime($a);
|
$param = $_GET['param'];
|
||||||
});
|
|
||||||
|
|
||||||
foreach($files as $path)
|
|
||||||
{
|
|
||||||
$tags = '';
|
|
||||||
$name = basename($path);
|
|
||||||
if (!str_ends_with($name, '.del') && ($action != 'filter' || str_contains($name, $param)))
|
|
||||||
{
|
|
||||||
if ($action == 'search' || $action == 'tags')
|
|
||||||
{
|
|
||||||
$content = file_get_contents($path);
|
|
||||||
|
|
||||||
if (($action == 'search' && !str_contains($content, $param)) ||
|
|
||||||
($action == 'tags' && !preg_match('/tags:.*' . $param . '/', $content)))
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
echo '<div><a href=index.php?action=open¶m=' . urlencode($name) . '>' . $name .'</a>';
|
|
||||||
if ($action == 'tags')
|
|
||||||
{
|
|
||||||
$tags = array();
|
|
||||||
$hastags = preg_match_all('/tags:(.*)/', $content, $tags, PREG_SET_ORDER);
|
|
||||||
if ($hastags)
|
|
||||||
{
|
|
||||||
$tagslist = explode(',', $tags[0][1]);
|
|
||||||
echo '<span class="grey"> ';
|
|
||||||
foreach ($tagslist as $tag)
|
|
||||||
{
|
|
||||||
$tag = trim($tag);
|
|
||||||
echo('<a class="grey" href="index.php?action=tags¶m=' . $tag . '">' . $tag . '</a> ');
|
|
||||||
}
|
|
||||||
echo '</span>';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if ($action == 'search')
|
|
||||||
{
|
|
||||||
$pos = strpos($content, $param);
|
|
||||||
echo '<span class="grey"> <b>' . $param . '</b>' . substr($content, $pos + strlen($param), 42) . '</span>';
|
|
||||||
}
|
|
||||||
echo'</div>';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
echo '<br>';
|
require('home.php');
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -0,0 +1,51 @@
|
||||||
|
<?
|
||||||
|
$lines = substr_count($content, "\r\n") + 1;
|
||||||
|
$words = $lines + substr_count($content, " ");
|
||||||
|
$rows = max(20, $lines) * 2;
|
||||||
|
$length = strlen($content);
|
||||||
|
?>
|
||||||
|
|
||||||
|
<form action="index.php" method="POST">
|
||||||
|
<div>
|
||||||
|
<input type="submit" name="home" value="home" accesskey="h">
|
||||||
|
<input type="submit" name="save" value="save" accesskey="s">
|
||||||
|
<input type="submit" name="delete" value="delete">
|
||||||
|
<input type="submit" name="preview" value="preview">
|
||||||
|
<br>
|
||||||
|
<input autocomplete="off" class="title" name="title" value="<? echo $title; ?>">
|
||||||
|
</div>
|
||||||
|
<div class="editor">
|
||||||
|
<textarea rows="<? echo $rows; ?>" autofocus name="content" spellcheck="false"><? echo $content; ?></textarea>
|
||||||
|
</div>
|
||||||
|
<input hidden name="previoustitle" value="<? echo $title; ?>">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<?
|
||||||
|
$links = array();
|
||||||
|
if (preg_match_all('/\[\[(.*)\]\]/', $content, $links, PREG_SET_ORDER))
|
||||||
|
{
|
||||||
|
echo '<div>Internal links:</div>';
|
||||||
|
foreach($links as $link)
|
||||||
|
{
|
||||||
|
echo '<div>
|
||||||
|
<a href="index.php?open=true¶m=' . urlencode($link[1]) . '">' . $link[1] . '</a>
|
||||||
|
</div>';
|
||||||
|
}
|
||||||
|
echo '<br>';
|
||||||
|
}
|
||||||
|
$links = array();
|
||||||
|
if (preg_match_all('/https:(.*)[ \r]/', $content, $links, PREG_SET_ORDER))
|
||||||
|
{
|
||||||
|
echo '<div>External links:</div>';
|
||||||
|
foreach($links as $link)
|
||||||
|
{
|
||||||
|
echo '<div>
|
||||||
|
<a target="_blank" href="https:' . $link[1] . '">https:' . $link[1] . '</a>
|
||||||
|
</div>';
|
||||||
|
}
|
||||||
|
echo '<br>';
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '<span class="grey">' . $title . ' - ' . $now . ' - ' . $length . 'c - ' . $words . 'w - ' . $lines . 'l </span>';
|
||||||
|
|
||||||
|
?>
|
30
style.css
30
style.css
|
@ -2,8 +2,10 @@ body {
|
||||||
color: rgb(55, 53, 47);
|
color: rgb(55, 53, 47);
|
||||||
font-family: helvetica;
|
font-family: helvetica;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
margin: 30px;
|
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
margin-left: 7%;
|
||||||
|
margin-right: 7%;
|
||||||
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
textarea {
|
textarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -13,7 +15,6 @@ textarea {
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
font-size: inherit;
|
|
||||||
}
|
}
|
||||||
.grey {
|
.grey {
|
||||||
color: lightgrey;
|
color: lightgrey;
|
||||||
|
@ -22,3 +23,28 @@ textarea {
|
||||||
a {
|
a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.editor {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font: inherit;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-top: 10px;
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
form input[type="submit"] {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
color: lightgrey;
|
||||||
|
font: inherit;
|
||||||
|
text-decoration: underline;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue