Click twice on a sub-heading to reveal the individual to-do items. Click again to hide.
+
Click on a sub-heading to reveal the individual to-do items. Click again to hide.
If a heading is in italics, then there are hidden items.
+
Click on the main "How this works" heading to toggle reveal/hide everything.
Printing this page uses a much smaller font. Complain to the nerd list if you don't like this behaviour.
Edit this page by clicking on the big blue button. It uses the same "Edit this page" function that you may have used before. Just be careful not to touch the code at the top and bottom of the page.
@@ -33,19 +34,25 @@ If a heading is in italics, then there are hidden items.
Wallets and new-cave
-
Explain (in the wallets process) how to view the surveys
+
Explain (in the wallets process) how to view the surveys
online so that (1) you can see an example of how to do your new one,
and (2) so that you can check that you have done it properly when you
have finished.
-
Explain how to link a new cave into the other caves in
+
Explain how to link a new cave into the other caves in
troggle filesystem
-
Explain how to add photos with the correct URL format to sub-HTML files attached to New Caves
-
svx check
+
Explain how to add photos with the correct URL format to sub-HTML files attached to New Caves
+
svx check
explain command line to run on newly typed survex file to check for format errors '$cavern xxxx.svx'
+
explain when to use svx2qm.py -> qms.csv-> tablize-qms.pl current scripts
+
explain when to use find-dead-qms.py and qmreader.pl current scripts
-
+
Surveys data entry
+
QMs check
+
Collect together the old "to do" and "readme" notes and put them in a standard place: expoweb/[year]/TODO.html(with self-edit instructionslike this page)
Write code to automatically extract ref info about wallets from tunnel xml files
This will replace :drawings:chk-xml.txt as used by :drawings:check-xml.sh
Do similar for Therion files when people start using #REF comments
@@ -111,19 +118,19 @@ If a heading is in italics, then there are hidden items.
Wookey Overview presentation
extract content from Troggle which does not render properly and extract the HTML not in slide format - correcting things now outdated.
-
-
Photos
-
-
-
Fix the BINS package
+
+
Photos
+
+
+
Fix the BINS package
set up git on the BINS software? Fix base url sautret.org
set up a cron / Makefile job to run BINS
why is 'updatephotos' script in expofiles?
Document the ~expo/webphotos/ directory and how it works
Why does expofiles/photos/xml/ get created containing all the generated xml files? Fix this.
-
-
-
+
+
+
System Documentation
@@ -152,7 +159,7 @@ If a heading is in italics, then there are hidden items.
-
+
Troggle
Better import error messages
@@ -167,11 +174,11 @@ If a heading is in italics, then there are hidden items.
-
Expo Server
-
-
document directory structure
-
-
as per Julian's GitHub list - then close that issue
+
Expo Server
+
+
document directory structure
+
+
as per Julian's GitHub list - then close that issue
permissions
do we need a cron job or has the group membership fix fixed it ? either way, document it.
@@ -186,103 +193,129 @@ If a heading is in italics, then there are hidden items.
<
BUY A4 plastic boxes for filing cabinet for logbooks getting damp there.
2017, 2018, 2019 wallet binders are in Philip S.'s house.
We need two of these: 1.for expo systems work (troggle & scripts) - the current priority as we have nowhere currently that Wookey is willing to use
- 2.for survey data progress/issues (though troggle itself can be used for some of this if cleaned up a bit)
-
-
-
-
Try to automate simple functions in javascript
-
-
to control this document
- in-place (tick, delete) instead of using the
- tinymce HTML editor in Django
We need two of these: 1.for expo systems work (troggle & scripts) - the current priority as we have nowhere currently that Wookey is willing to use
+ 2.for survey data progress/issues (though troggle itself can be used for some of this if cleaned up a bit)
+
+
+
+
Try to automate simple functions in javascript
+
+
to control this document
+ in-place (tick, delete) instead of using the
+ tinymce HTML editor in Django
Maybe restructure whole page as JSON and use
javascript editor to create (edit), re-order and demote items.
if using tinymcs, use the INLINE mode.
-
Implement comments on an issue, mimicking GitHub issues wiki
-
Use javascript to skip over the _edit page and submit changes
- direct to server when updating. Needs direct POST and include the javascript in the posted content.
+
Implement comments on an issue, mimicking GitHub issues wiki
+
Use javascript to skip over the _edit page and submit changes
+ direct to server when updating. Needs direct POST and include the javascript in the posted content.
checkboxes so that items can be ticked (which also does strike-through)
promotion/demotion options?
-
bin icon to delete an item? Better to have an archive process.
+
bin icon to delete an item? Better to have an archive process.
Local WSL server
Why is it using recuced-capability tinymce, a paths problem ?
Italics management
Hide ALL DD if any Heading clicked.
Put DL into italics when *any* DD is hidden
-
-
+
+
-
-
-
+
+
+
Testing area..
Demonstation text as initially read from disc
-
-
-
+
+
+ var x = this;
+ if (x.style.display != "block") {
+ x.style.display = "block";
+ } else {
+ x.style.display = "none";
+ }
+}
+
+function h2toggle () {
+// When clicking on a
item, toggle the display of absolutely everything
+ var itemlist = document.getElementsByTagName('dd');
+ for (i = 0; i < itemlist.length; i++) {
+ x = itemlist[i]
+ if (x.style.display != "block") {
+ x.style.display = "block";
+ } else {
+ x.style.display = "none";
+ }
+ }
+ var dtlist = document.getElementsByTagName('dt');
+ for (i = 0; i < dtlist.length; i++) {
+ x = dtlist[i]
+ if (x.style.fontStyle != "normal") {
+ x.style.fontStyle = "normal";
+ } else {
+ x.style.fontStyle = "italic";
+ }
+ }
+}
+
diff --git a/handbook/troggle/otherscripts.html b/handbook/troggle/otherscripts.html
index e68a086f2..d28169e8c 100644
--- a/handbook/troggle/otherscripts.html
+++ b/handbook/troggle/otherscripts.html
@@ -19,7 +19,7 @@