Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2022-09-20 11:26:35 +03:00
parent d83711ff73
commit 1324644551
2 changed files with 4 additions and 1 deletions

View File

@ -912,6 +912,7 @@ object.Constructor('Page', BasePage, {
state.depends state.depends
?? new Set() ?? new Set()
handler = handler handler = handler
?? async function(src, state){ ?? async function(src, state){
return isolated ? return isolated ?
@ -1031,6 +1032,7 @@ object.Constructor('Page', BasePage, {
state.depends state.depends
?? new Set() ?? new Set()
var pages = src ? var pages = src ?
(!expandactions (!expandactions
&& await this.get(src).type == 'action' ? && await this.get(src).type == 'action' ?
@ -1287,6 +1289,7 @@ object.Constructor('Page', BasePage, {
&& this.get(pwpath.dirname(src)).path == this.path){ && this.get(pwpath.dirname(src)).path == this.path){
src += ':$ARGS' } src += ':$ARGS' }
join = _getBlock('join') join = _getBlock('join')
?? join ?? join
join = join join = join

View File

@ -26,7 +26,7 @@
* - fully transparent * - fully transparent
* levels: * levels:
* - memory * - memory
* - persistent * - persistent (???)
* XXX might also be a good idea to investigate a .tree directory index * XXX might also be a good idea to investigate a .tree directory index
* as a supplement to .paths() * as a supplement to .paths()
* XXX Q: can we access fs from a pwa??? * XXX Q: can we access fs from a pwa???