Changeset 122:014251f26abf

Show
Ignore:
Timestamp:
11/08/08 16:19:32 (3 years ago)
Author:
chris
Branch:
unix
Message:

start moving files around to make it more package friendly

Files:
1 added
2 modified
17 moved

Legend:

Unmodified
Added
Removed
  • Makefile

    r113 r122  
    11DATE=`date +"%m-%d-%Y"` 
    22EXCLUDES=-x stormsiren/trac\* -x stormsiren/website\* -x stormsiren/.hg\* 
     3TRASH=*.pyc .*.swp 
    34 
    45.PHONY : clean 
    56clean: 
    6         rm -f *.pyc .*.swp 
     7        rm -f $(TRASH) 
     8        cd StormSiren && rm -f $(TRASH) 
    79 
    810pack: clean packbz2 packzip 
  • StormSiren.py

    r120 r122  
    4545from optparse import OptionParser 
    4646 
    47 from TestAlert import TestAlert 
    48 from WeatherAlert import WeatherAlert 
    49 from StormWeather import StormWeather 
    50 from StormConfig import StormConfig 
    51 from History import History, DEFAULT_MAX_HISTORICAL_EVENTS 
     47from StormSiren.TestAlert import TestAlert 
     48from StormSiren.WeatherAlert import WeatherAlert 
     49from StormSiren.StormWeather import StormWeather 
     50from StormSiren.StormConfig import StormConfig 
     51from StormSiren.History import History, DEFAULT_MAX_HISTORICAL_EVENTS 
    5252 
    5353__RELEASE_VERSION = "2.0 RC2"