source: palm/trunk/SCRIPTS/release_tutorial @ 1046

Last change on this file since 1046 was 1046, checked in by maronga, 11 years ago

put scripts and utilities under GPL

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1#!/bin/ksh
2#--------------------------------------------------------------------------------#
3# This file is part of PALM.
4#
5# PALM is free software: you can redistribute it and/or modify it under the terms
6# of the GNU General Public License as published by the Free Software Foundation,
7# either version 3 of the License, or (at your option) any later version.
8#
9# PALM is distributed in the hope that it will be useful, but WITHOUT ANY
10# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License along with
14# PALM. If not, see <http://www.gnu.org/licenses/>.
15#
16# Copyright 1997-2012  Leibniz University Hannover
17#--------------------------------------------------------------------------------#
18#
19# Current revisions:
20# -----------------
21# code put under GPL (PALM 3.9)
22#
23# Former revisions:
24# -----------------
25# $Id: release_tutorial 1046 2012-11-09 14:38:45Z maronga $
26#
27# 981 2012-08-09 14:57:44Z maronga
28# Typo removed
29#
30# 955 2012-07-20 09:54:04Z maronga
31# The pdf files are now directly transfered to the trac system. A user account
32# on the palm server is required. Without ssh-key, the passwort has to be given
33# four times.
34#
35# 946 2012-07-17 16:02:40Z maronga
36# Typo removed
37#
38# 915 2012-05-30 15:11:11Z maronga
39# Initial revision
40#
41# Description:
42# ------------
43# Script for copying the compiled PDFs to a desired web directory. This script
44# should be used by user raasch only.
45#
46# Execution:
47# ----------
48# release_tutorial --> Copy all PDF files to $release_directory on
49# the trac server (see below)
50#------------------------------------------------------------------------------!
51
52    release_directory="/palmdata/trac/htdocs/tutorial"
53    server="palm"
54    mod_lecture="664"
55    mod_handout="664"
56    mod_web="664"
57
58    full_name=`readlink -f $0`
59    directory="$(dirname $full_name)/../TUTORIAL/SOURCE"
60    input_dir="$(dirname $full_name)/../TUTORIAL"
61    cd $input_dir
62
63    printf "\n Files will be released in $release_directory/."
64    printf "\n Start copying...\n"
65
66#   copy files to trac system
67    scp LECTURE/*.pdf $USER@$server:"$release_directory/LECTURE/"
68    scp HANDOUT/*.pdf $USER@$server:"$release_directory/HANDOUT/"
69    scp WEB/*.pdf $USER@$server:"$release_directory/WEB/"
70
71#   change permissions
72    ssh $server -l $USER "cd $release_directory/LECTURE; chmod $mod_lecture $release_directory/LECTURE/*; chmod $mod_handout $release_directory/HANDOUT/*; chmod $mod_web $release_directory/WEB/*"
73
74    printf " \n *** All actions finished.\n"
75
76exit
77
78
79
Note: See TracBrowser for help on using the repository browser.