~ubuntu-branches/debian/squeeze/alpine/squeeze

« back to all changes in this revision

Viewing changes to web/cgi/alpine/help.tcl

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2007-02-17 13:17:42 UTC
  • Revision ID: james.westby@ubuntu.com-20070217131742-99x5c6cpg1pbkdhw
Tags: upstream-0.82+dfsg
ImportĀ upstreamĀ versionĀ 0.82+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!./tclsh
 
2
# $Id: help.tcl 391 2007-01-25 03:53:59Z mikes@u.washington.edu $
 
3
# ========================================================================
 
4
# Copyright 2006 University of Washington
 
5
#
 
6
# Licensed under the Apache License, Version 2.0 (the "License");
 
7
# you may not use this file except in compliance with the License.
 
8
# You may obtain a copy of the License at
 
9
#
 
10
#     http://www.apache.org/licenses/LICENSE-2.0
 
11
#
 
12
# ========================================================================
 
13
 
 
14
#  help.tcl
 
15
#
 
16
#  Purpose:  CGI script to generate html help text for Alpine
 
17
 
 
18
#  Input:
 
19
set help_vars {
 
20
  {topic        {}      ""}
 
21
  {topicclass   {}      ""}
 
22
  {index        {}      ""}
 
23
  {oncancel     {}      main}
 
24
  {params       {}      ""}
 
25
}
 
26
 
 
27
#  Output:
 
28
#
 
29
#       HTML/Javascript/CSS help text for alpine
 
30
 
 
31
# inherit global config
 
32
source ./alpine.tcl
 
33
 
 
34
WPEval $help_vars {
 
35
  source do_help.tcl
 
36
}