mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
use relative path template for backup.html
This commit is contained in:
parent
68014621bb
commit
b0aaa72b31
11 changed files with 11 additions and 44 deletions
|
@ -79,7 +79,7 @@ It formats as "[input mimetype]/[output mimetype]".<br>
|
|||
</ul>
|
||||
<p><a target="_self" href="i:0hcheck.js:https://fastly.jsdelivr.net/gh/torappinfo/uweb/zh/searchurl/txt/check.js">checked.js</a>: Evaluate checked.js and return value as standard input for the command line. For any file url ending with "/", optionally append "?[prefix][<em>[postfix]]". For example, "file:///sdcard/?</em>.png" lists all .png files under the folder "/sdcard". Select files and process them with checked.js(such as "copy to PC" as the later example).</p>
|
||||
<p>default.select sample file:<br>
|
||||
copy2addressbar:uweb:printf i:15;cat<br>
|
||||
copy2addressbar:/uweb:printf i:15;cat<br>
|
||||
copy2PCClipboard::ssh [user:password]@192.168.2.102 "DISPLAY=:0 xsel -i"<br>
|
||||
richtext2PCClipboard:html:ssh [user:password]@192.168.2.102 "DISPLAY=:0 xsel -i"<br>
|
||||
copyFiles:checked.js:while read fname;do scp $fname [user:password]@192.168.2.102:Downloads/.; done</p>
|
||||
|
|
11
index.html
11
index.html
|
@ -1,10 +1 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>en/</title>
|
||||
<link rel="canonical" href="en/">
|
||||
<meta name="robots" content="noindex">
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="refresh" content="0; url=en/">
|
||||
</head>
|
||||
</html>
|
||||
<meta http-equiv="refresh" content="0; url=en/index.html">
|
||||
|
|
|
@ -275,10 +275,7 @@ html/text/html: 选中富文本为html格式, 输出mimetype为text/html。
|
|||
/termux: 命令运行结果将作为termux下命令运行。
|
||||
checked.js: 运行配置目录下checked.js,其返回值作为命令行标准输入。对任何目录型(以“/”结尾)文件url,后面可附&quot;?[文件前缀][[文件后缀]]&quot;。譬如&quot;file:///sdcard/?.png&quot;会列举出&quot;/sdcard&quot;目录下所有.png文件。此时选择选定文件,则可利用checked.js复制文件至PC。(参看下面具体配置)
|
||||
配置default.select如下:
|
||||
复制文本到地址栏:uweb:printf i:15;cat
|
||||
笔记::(cat;echo;echo;)&gt;&gt;notes.txt
|
||||
富文本笔记:html:(cat;echo '&lt;p&gt;&lt;/p&gt;';echo;)&gt;&gt;notes.html
|
||||
命名笔记::(cat;echo;echo;)&gt;&gt;%s
|
||||
复制文本到地址栏:/uweb:printf i:15;cat
|
||||
复制至PC剪贴板::ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制富文本至PC剪贴板:html:ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制文件至PC:checked.js:while read fname;do scp $fname [user:password]@192.168.2.102:Downloads/.; done
|
||||
|
|
|
@ -487,10 +487,7 @@ html/text/html: 选中富文本为html格式, 输出mimetype为text/html。
|
|||
/termux: 命令运行结果将作为termux下命令运行。
|
||||
checked.js: 运行配置目录下checked.js,其返回值作为命令行标准输入。对任何目录型(以“/”结尾)文件url,后面可附&quot;?[文件前缀][[文件后缀]]&quot;。譬如&quot;file:///sdcard/?.png&quot;会列举出&quot;/sdcard&quot;目录下所有.png文件。此时选择选定文件,则可利用checked.js复制文件至PC。(参看下面具体配置)
|
||||
配置default.select如下:
|
||||
复制文本到地址栏:uweb:printf i:15;cat
|
||||
笔记::(cat;echo;echo;)&gt;&gt;notes.txt
|
||||
富文本笔记:html:(cat;echo '&lt;p&gt;&lt;/p&gt;';echo;)&gt;&gt;notes.html
|
||||
命名笔记::(cat;echo;echo;)&gt;&gt;%s
|
||||
复制文本到地址栏:/uweb:printf i:15;cat
|
||||
复制至PC剪贴板::ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制富文本至PC剪贴板:html:ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制文件至PC:checked.js:while read fname;do scp $fname [user:password]@192.168.2.102:Downloads/.; done
|
||||
|
|
|
@ -78,10 +78,7 @@ html/text/html: 选中富文本为html格式, 输出mimetype为text/html。<br>
|
|||
/termux: 命令运行结果将作为termux下命令运行。<br>
|
||||
<a target="_self" href="i:0hcheck.js:https://fastly.jsdelivr.net/gh/torappinfo/uweb/zh/searchurl/txt/check.js">checked.js</a>: 运行配置目录下checked.js,其返回值作为命令行标准输入。对任何目录型(以“/”结尾)文件url,后面可附"?[文件前缀][<em>[文件后缀]]"。譬如"file:///sdcard/?</em>.png"会列举出"/sdcard"目录下所有.png文件。此时选择选定文件,则可利用checked.js复制文件至PC。(参看下面具体配置)</p>
|
||||
<p>配置default.select如下:<br>
|
||||
复制文本到地址栏:uweb:printf i:15;cat<br>
|
||||
笔记::(cat;echo;echo;)>>notes.txt<br>
|
||||
富文本笔记:html:(cat;echo '<p></p>';echo;)>>notes.html<br>
|
||||
命名笔记::(cat;echo;echo;)>>%s<br>
|
||||
复制文本到地址栏:/uweb:printf i:15;cat<br>
|
||||
复制至PC剪贴板::ssh [user:password]@192.168.2.102 "DISPLAY=:0 xsel -i"<br>
|
||||
复制富文本至PC剪贴板:html:ssh [user:password]@192.168.2.102 "DISPLAY=:0 xsel -i"<br>
|
||||
复制文件至PC:checked.js:while read fname;do scp $fname [user:password]@192.168.2.102:Downloads/.; done</p>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<script>function g(){
|
||||
let d=document;
|
||||
let f=d.forms[0];
|
||||
window.open("f:"+f.i.value+"::"+f.e.value+"&"+f.u.value+":https://fastly.jsdelivr.net/gh/torappinfo/uweb/searchurl/template/backup.html");
|
||||
window.open("f:"+f.i.value+"::"+f.e.value+"&"+f.u.value+":template/backup.html");
|
||||
return false;
|
||||
}
|
||||
</script><style>
|
||||
|
|
|
@ -33,10 +33,7 @@ html/text/html: 选中富文本为html格式, 输出mimetype为text/html。
|
|||
/termux: 命令运行结果将作为termux下命令运行。
|
||||
checked.js: 运行配置目录下checked.js,其返回值作为命令行标准输入。对任何目录型(以“/”结尾)文件url,后面可附&quot;?[文件前缀][[文件后缀]]&quot;。譬如&quot;file:///sdcard/?.png&quot;会列举出&quot;/sdcard&quot;目录下所有.png文件。此时选择选定文件,则可利用checked.js复制文件至PC。(参看下面具体配置)
|
||||
配置default.select如下:
|
||||
复制文本到地址栏:uweb:printf i:15;cat
|
||||
笔记::(cat;echo;echo;)&gt;&gt;notes.txt
|
||||
富文本笔记:html:(cat;echo '&lt;p&gt;&lt;/p&gt;';echo;)&gt;&gt;notes.html
|
||||
命名笔记::(cat;echo;echo;)&gt;&gt;%s
|
||||
复制文本到地址栏:/uweb:printf i:15;cat
|
||||
复制至PC剪贴板::ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制富文本至PC剪贴板:html:ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制文件至PC:checked.js:while read fname;do scp $fname [user:password]@192.168.2.102:Downloads/.; done
|
||||
|
|
|
@ -33,10 +33,7 @@ html/text/html: 选中富文本为html格式, 输出mimetype为text/html。
|
|||
/termux: 命令运行结果将作为termux下命令运行。
|
||||
checked.js: 运行配置目录下checked.js,其返回值作为命令行标准输入。对任何目录型(以“/”结尾)文件url,后面可附&quot;?[文件前缀][[文件后缀]]&quot;。譬如&quot;file:///sdcard/?.png&quot;会列举出&quot;/sdcard&quot;目录下所有.png文件。此时选择选定文件,则可利用checked.js复制文件至PC。(参看下面具体配置)
|
||||
配置default.select如下:
|
||||
复制文本到地址栏:uweb:printf i:15;cat
|
||||
笔记::(cat;echo;echo;)&gt;&gt;notes.txt
|
||||
富文本笔记:html:(cat;echo '&lt;p&gt;&lt;/p&gt;';echo;)&gt;&gt;notes.html
|
||||
命名笔记::(cat;echo;echo;)&gt;&gt;%s
|
||||
复制文本到地址栏:/uweb:printf i:15;cat
|
||||
复制至PC剪贴板::ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制富文本至PC剪贴板:html:ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制文件至PC:checked.js:while read fname;do scp $fname [user:password]@192.168.2.102:Downloads/.; done
|
||||
|
|
|
@ -33,10 +33,7 @@ html/text/html: 选中富文本为html格式, 输出mimetype为text/html。
|
|||
/termux: 命令运行结果将作为termux下命令运行。
|
||||
checked.js: 运行配置目录下checked.js,其返回值作为命令行标准输入。对任何目录型(以“/”结尾)文件url,后面可附&quot;?[文件前缀][[文件后缀]]&quot;。譬如&quot;file:///sdcard/?.png&quot;会列举出&quot;/sdcard&quot;目录下所有.png文件。此时选择选定文件,则可利用checked.js复制文件至PC。(参看下面具体配置)
|
||||
配置default.select如下:
|
||||
复制文本到地址栏:uweb:printf i:15;cat
|
||||
笔记::(cat;echo;echo;)&gt;&gt;notes.txt
|
||||
富文本笔记:html:(cat;echo '&lt;p&gt;&lt;/p&gt;';echo;)&gt;&gt;notes.html
|
||||
命名笔记::(cat;echo;echo;)&gt;&gt;%s
|
||||
复制文本到地址栏:/uweb:printf i:15;cat
|
||||
复制至PC剪贴板::ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制富文本至PC剪贴板:html:ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制文件至PC:checked.js:while read fname;do scp $fname [user:password]@192.168.2.102:Downloads/.; done
|
||||
|
|
|
@ -33,10 +33,7 @@ html/text/html: 选中富文本为html格式, 输出mimetype为text/html。
|
|||
/termux: 命令运行结果将作为termux下命令运行。
|
||||
checked.js: 运行配置目录下checked.js,其返回值作为命令行标准输入。对任何目录型(以“/”结尾)文件url,后面可附&quot;?[文件前缀][[文件后缀]]&quot;。譬如&quot;file:///sdcard/?.png&quot;会列举出&quot;/sdcard&quot;目录下所有.png文件。此时选择选定文件,则可利用checked.js复制文件至PC。(参看下面具体配置)
|
||||
配置default.select如下:
|
||||
复制文本到地址栏:uweb:printf i:15;cat
|
||||
笔记::(cat;echo;echo;)&gt;&gt;notes.txt
|
||||
富文本笔记:html:(cat;echo '&lt;p&gt;&lt;/p&gt;';echo;)&gt;&gt;notes.html
|
||||
命名笔记::(cat;echo;echo;)&gt;&gt;%s
|
||||
复制文本到地址栏:/uweb:printf i:15;cat
|
||||
复制至PC剪贴板::ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制富文本至PC剪贴板:html:ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制文件至PC:checked.js:while read fname;do scp $fname [user:password]@192.168.2.102:Downloads/.; done
|
||||
|
|
|
@ -33,10 +33,7 @@ html/text/html: 选中富文本为html格式, 输出mimetype为text/html。
|
|||
/termux: 命令运行结果将作为termux下命令运行。
|
||||
checked.js: 运行配置目录下checked.js,其返回值作为命令行标准输入。对任何目录型(以“/”结尾)文件url,后面可附&quot;?[文件前缀][[文件后缀]]&quot;。譬如&quot;file:///sdcard/?.png&quot;会列举出&quot;/sdcard&quot;目录下所有.png文件。此时选择选定文件,则可利用checked.js复制文件至PC。(参看下面具体配置)
|
||||
配置default.select如下:
|
||||
复制文本到地址栏:uweb:printf i:15;cat
|
||||
笔记::(cat;echo;echo;)&gt;&gt;notes.txt
|
||||
富文本笔记:html:(cat;echo '&lt;p&gt;&lt;/p&gt;';echo;)&gt;&gt;notes.html
|
||||
命名笔记::(cat;echo;echo;)&gt;&gt;%s
|
||||
复制文本到地址栏:/uweb:printf i:15;cat
|
||||
复制至PC剪贴板::ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制富文本至PC剪贴板:html:ssh [user:password]@192.168.2.102 &quot;DISPLAY=:0 xsel -i&quot;
|
||||
复制文件至PC:checked.js:while read fname;do scp $fname [user:password]@192.168.2.102:Downloads/.; done
|
||||
|
|
Loading…
Reference in a new issue