alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Scala example source code file (review)

This example Scala source code file (review) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Scala tags/keywords

id, log, postreview, prev, repo, repo, rev, rev, revarg, revarg, summary, summary, usage

The Scala review source code

#!/bin/sh

if [ -z $1 ] || [ "$1" = "-h" ] || [ "$1" = "--help" ] || [ "$1" = "-help" ] || [ "$1" = "-?" ]; then
  echo "Usage: `basename $0` [rev] [args]\n"
  echo "  [rev]  : either the revision number without leading 'r' (post-commit),"
  echo "           or '-loc' to create a review from current local changes (pre-commit)\n"
  echo "  [args] : optional arguments:"
  echo "     -r ID     existing review request ID to update\n"
  exit 1
fi

POSTREVIEW=`dirname $0`/postreview.py

if [ "$1" = "-loc" ]; then
  echo "creating review request from local changes..."
  REVARG=""
  LOG=""
  SUMMARY="local changes"
  REPO=""
else
  REV=$1
  PREV=`expr $REV - 1`
  if [ $? -ne 0 ]; then
    echo "argument revision not a number: $REV"
    exit 1
  fi

  echo "creating review request for changeset $REV..."

  LOG="`svn log http://lampsvn.epfl.ch/svn-repos/scala -c $REV`"
  if [ $? -ne 0 ]; then
    echo "could not get svn log for revision $REV"
    exit 1
  fi

  REVARG="--revision-range=$PREV:$REV"
  SUMMARY="r$REV"
  REPO="--repository-url=http://lampsvn.epfl.ch/svn-repos/scala"
fi


shift # remove parameter $1 (revision)

python $POSTREVIEW --server="https://chara2.epfl.ch" $REVARG --summary="$SUMMARY" --description="$LOG" $REPO -o $@

Other Scala examples (source code examples)

Here is a short list of links related to this Scala review source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.