Author: justi9
Date: 2007-10-13 19:04:22 -0400 (Sat, 13 Oct 2007)
New Revision: 1051
Added:
mgmt/bin/devel
mgmt/bin/devel-etags
mgmt/etc/devel.el
mgmt/etc/devel.profile
Removed:
mgmt/bin/cumindev
mgmt/bin/cumindev-etags
mgmt/etc/cumindev.el
mgmt/etc/cumindev.profile
Modified:
mgmt/etc/
Log:
Renames cumindev things to be called "devel", in order to reflect
that the mgmt development area will contain other modules as well.
Deleted: mgmt/bin/cumindev
===================================================================
--- mgmt/bin/cumindev 2007-10-13 22:59:10 UTC (rev 1050)
+++ mgmt/bin/cumindev 2007-10-13 23:04:22 UTC (rev 1051)
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-if [ -z "$CUMINDEV_HOME" ]; then
- echo "CUMINDEV_HOME not set"
- exit 1
-fi
-
-echo "CUMINDEV_HOME is ${CUMINDEV_HOME}"
-
-source "${CUMINDEV_HOME}/etc/cumindev.profile"
-
-cumindev-etags
-
-exec emacs -nw -l "${CUMINDEV_HOME}/etc/cumindev.el"
Deleted: mgmt/bin/cumindev-etags
===================================================================
--- mgmt/bin/cumindev-etags 2007-10-13 22:59:10 UTC (rev 1050)
+++ mgmt/bin/cumindev-etags 2007-10-13 23:04:22 UTC (rev 1051)
@@ -1,7 +0,0 @@
-#!/bin/bash
-
-output="${CUMINDEV_HOME}/etc/cumindev.tags"
-
-find "$CUMINDEV_HOME" -name \*.py -print | etags --output="$output"
-
-find "$CUMINDEV_HOME" -name \*.strings -print \
- | etags --append --output="$output" --regex='/^\[.*\][ \t]*$/\1/'
-
Added: mgmt/bin/devel
===================================================================
--- mgmt/bin/devel (rev 0)
+++ mgmt/bin/devel 2007-10-13 23:04:22 UTC (rev 1051)
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+if [ -z "$DEVEL_HOME" ]; then
+ echo "DEVEL_HOME not set"
+ exit 1
+fi
+
+echo "DEVEL_HOME is ${DEVEL_HOME}"
+
+source "${DEVEL_HOME}/etc/devel.profile"
+
+devel-etags
+
+exec emacs -nw -l "${DEVEL_HOME}/etc/cumindev.el"
Property changes on: mgmt/bin/devel
___________________________________________________________________
Name: svn:executable
+ *
Added: mgmt/bin/devel-etags
===================================================================
--- mgmt/bin/devel-etags (rev 0)
+++ mgmt/bin/devel-etags 2007-10-13 23:04:22 UTC (rev 1051)
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+output="${DEVEL_HOME}/etc/devel.tags"
+
+find "$DEVEL_HOME" -name \*.py -print | etags --output="$output" -
+find "$DEVEL_HOME" -name \*.strings -print \
+ | etags --append --output="$output" --regex='/^\[.*\][ \t]*$/\1/'
-
Property changes on: mgmt/bin/devel-etags
___________________________________________________________________
Name: svn:executable
+ *
Property changes on: mgmt/etc
___________________________________________________________________
Name: svn:ignore
- cumindev.tags
+ devel.tags
Deleted: mgmt/etc/cumindev.el
===================================================================
--- mgmt/etc/cumindev.el 2007-10-13 22:59:10 UTC (rev 1050)
+++ mgmt/etc/cumindev.el 2007-10-13 23:04:22 UTC (rev 1051)
@@ -1,13 +0,0 @@
-(setq cumindev-home (getenv "CUMINDEV_HOME"))
-
-(if cumindev-home
- (progn
- (shell "dev")
- (setq tags-file-name (concat cumindev-home "/etc/cumindev.tags"))
- (setq grep-command (concat "find " cumindev-home
- " -name \\*.py -print | xargs fgrep -n "))
- (setq compile-command "cumin-test")
- (setq auto-mode-alist
- (cons '("\\.strings$" . html-mode) auto-mode-alist)))
- (display-warning 'cumindev
- "Environment variable CUMINDEV_HOME not set" :error))
Deleted: mgmt/etc/cumindev.profile
===================================================================
--- mgmt/etc/cumindev.profile 2007-10-13 22:59:10 UTC (rev 1050)
+++ mgmt/etc/cumindev.profile 2007-10-13 23:04:22 UTC (rev 1051)
@@ -1,11 +0,0 @@
-if [ -z "$CUMINDEV_HOME" ]; then
- export CUMINDEV_HOME="$PWD"
-fi
-
-export CUMIN_HOME="$CUMINDEV_HOME"/cumin-test-0
-
-export PYTHONPATH="$CUMIN_HOME"/lib:"$CUMIN_HOME"/python
-
-export CUMINDEV_ORIGINAL_PATH="$PATH"
-
-export
PATH="$CUMIN_HOME"/bin:"$CUMINDEV_HOME"/bin:"$CUMINDEV_ORIGINAL_PATH"
Added: mgmt/etc/devel.el
===================================================================
--- mgmt/etc/devel.el (rev 0)
+++ mgmt/etc/devel.el 2007-10-13 23:04:22 UTC (rev 1051)
@@ -0,0 +1,13 @@
+(setq devel-home (getenv "DEVEL_HOME"))
+
+(if devel-home
+ (progn
+ (shell "dev")
+ (setq tags-file-name (concat devel-home "/etc/devel.tags"))
+ (setq grep-command (concat "find " devel-home
+ " -name \\*.py -print | xargs fgrep -n "))
+ (setq compile-command "cumin-test")
+ (setq auto-mode-alist
+ (cons '("\\.strings$" . html-mode) auto-mode-alist)))
+ (display-warning 'devel
+ "Environment variable DEVEL_HOME not set" :error))
Added: mgmt/etc/devel.profile
===================================================================
--- mgmt/etc/devel.profile (rev 0)
+++ mgmt/etc/devel.profile 2007-10-13 23:04:22 UTC (rev 1051)
@@ -0,0 +1,11 @@
+if [ -z "$DEVEL_HOME" ]; then
+ export DEVEL_HOME="$PWD"
+fi
+
+export CUMIN_HOME="$DEVEL_HOME"/cumin-test-0
+
+export PYTHONPATH="$CUMIN_HOME"/lib:"$CUMIN_HOME"/python
+
+export DEVEL_ORIGINAL_PATH="$PATH"
+
+export
PATH="$CUMIN_HOME"/bin:"$DEVEL_HOME"/bin:"$DEVEL_ORIGINAL_PATH"
Show replies by date