# TRANSLATORS: Translate the values in quotes volatile.q_label = "Q"; # appears before questions as Q: volatile.a_label = "A"; # appears before answers as A: # NO TRANSLATION NEEDED BEYOND THIS POINT # KHP 18/Aug/2010 - added base_util, required by get_current_language() include "templates.util.base_util"; # docs_user_chapter_link() returns a link to an option documentation page in the user guide, given the shortcut or option name subroutine(docs_user_chapter_link(string chapter), ( expand(""); $("docs.user_guide.page_titles." . chapter); ""; )); # docs_user_chapter_link # start_docs_page() starts a documentation page with the specified title subroutine(start_docs_page(string title), ( # KHP 06/Sep/2010 - Set output language string user_node_name = node_name(volatile.authenticated_user_node_path); string current_language = get_current_language(user_node_name); set_language(current_language); # debug_message("#### start_docs_page() - user_node_name: " . user_node_name . "\n"); # debug_message("#### start_docs_page() - current_language: " . current_language . "\n"); volatile.docs_page_title = title; #debug_message("volatile.docs_page_title: " . volatile.docs_page_title . "\n"); docs.header; # '
' . title . ' | \n'); # "
\n";
#
if (internal.docs.tab eq 'USER') and (internal.docs.index eq 'FALSE') then (
' '; '
'; ); )); subroutine(end_docs_page, ( # " | \n";
# "
" . function . "()
";
"";
)); # docs_function
# docs_faq_link() returns a link to an FAQ entry, given the name
subroutine(docs_faq_link(string name), (
expand("");
$("docs.faq.db." . name . ".label");
"";
)); # docs_faq_link
# docs_user_faq_link() returns a link to an FAQ entry in the User FAQ, given the name
subroutine(docs_user_faq_link(string name), (
expand("");
$("docs.user_faq.db." . name . ".label");
"";
)); # docs_user_faq_link
# docs_faq_short_description() returns a short description of a FAQ entry
subroutine(docs_faq_short_description(string name), (
# expand("$volatile.q_label: ") . $("docs.faq.db." . name . ".question") . "If you are considering $PRODUCT_NAME for a very large dataset (more than 200 million lines of data), it is recommended that you contact $PRODUCT_NAME technical support in advance, to get expert guidance with your profile configuration. There is no charge for pre-sales technical consultations, and it is very likely to improve your initial experience of $PRODUCT_NAME.
Contact support@sawmill.net for pre-sales support.
'; ));