Is it possible to add a special directive to the project-filename that would allow me to show up the content all at once?
for example <project-file filename="XXX.all-pngs.static"/>
the issue: I show all slides of my presenation on my WW and there are about 60 of them. This all is loaded quite slowly (not because of the implemented machinery, but just it is like in any program - if one decides to printf every step of the program, this will slow down the process in total)
example: http://lalashan.mcmaster.ca/theobio/akhmetzhanov/index.php/Taiwan14
otherwise, would it be possible to implement only static view for particular wikis?
ps: sorry for a possible repeat of our previous discussion
Anonymous
Sorry if this answer is also a repeat: you can take a look at how I implemented the all-pngs rule in the makefile, and write a similar makefile rule that does what you want.
The rule is in site/makefile-after, and it looks like this:
~~~~~
%.all-pngs.wikitext : $(SITE_RESOURCES)/all-pngs.pl %.pdf
perl -f $^ > $@
print "
";
~~~~
Then with a suitable make rule causing this script to be used to make .all-png.html targets, you could use
<project-file filename="xyz.all-pngs.html"/>to get the behavior you want.Last edit: Lee Worden 2015-04-21
My interpretation is that Andrei wants this (undocumented?) already existing feature: http://lalashan.mcmaster.ca/theobio/akhmetzhanov/index.php?title=Taiwan14&ww-static-files=1