~ubuntu-branches/debian/stretch/alpine/stretch

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2010-10-03 15:31:55 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20101003153155-2exypc96j1e8tw0p
Tags: 2.02-1
* New upstream release, based on re-alpine project
* Updated debian/copyright to reflect this fact
* re-alpine removed the non-free from the tarball, so now
  we do not repack the upstream tarball. (Yay!)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!./tclsh
2
 
# $Id: open.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
 
#  open.tcl
15
 
#
16
 
#  Purpose:  CGI script to perform folder opening via folders.tcl
17
 
 
18
 
#  Input: 
19
 
set open_vars {
20
 
  {cid          "Missing Command ID"}
21
 
  {oncancel     ""      "folders"}
22
 
}
23
 
 
24
 
#  Output:
25
 
#
26
 
 
27
 
# inherit global config
28
 
source ./alpine.tcl
29
 
source cmdfunc.tcl
30
 
 
31
 
WPEval $open_vars {
32
 
  source do_open.tcl
33
 
}