diff --git a/lib/WebGUI/Help/WebGUI.pm b/lib/WebGUI/Help/WebGUI.pm index 160be3b25..9f9e38b67 100644 --- a/lib/WebGUI/Help/WebGUI.pm +++ b/lib/WebGUI/Help/WebGUI.pm @@ -702,6 +702,14 @@ our $HELP = { related => [ ], }, + 'webgui tips' => { + title => 'webgui tips title', + body => 'webgui tips body', + fields => [ + ], + related => [ + ], + }, }; 1; diff --git a/lib/WebGUI/i18n/English/WebGUI.pm b/lib/WebGUI/i18n/English/WebGUI.pm index f381d38c1..65dde91ee 100644 --- a/lib/WebGUI/i18n/English/WebGUI.pm +++ b/lib/WebGUI/i18n/English/WebGUI.pm @@ -3915,6 +3915,27 @@ Message Boards hold forums for users. There are many different Wobjects in WebG lastUpdated => 1141963573, }, + 'webgui tips title' => { + message => q|WebGUI Tips|, + lastUpdated => 1145658318, + }, + + 'webgui tips body' => { + message => q|
These are just random useful bits of information about WebGUI that we've collected.
+ +Dumping a whole WebGUI site statically.
+Len Kranendonk
+Get a copy of wget and use this: wget -p -r --html-extension -k http://the.webgui.site
+-p will fetch all page requisites (images, css, etc)
+-r is for recursively downloading all pages
+--html-extension will add .html to all pages. This is needed to avoid duplicate page /directory names ( /home and /home/contact).
+-k will convert all URLs to local URLs
+