Changeset 10945
- Timestamp:
- 11/09/11 02:59:40 (19 months ago)
- Location:
- ossiedev/branches/jsnyder/trunk/tools/cornetApps
- Files:
-
- 3 modified
-
settings.py (modified) (2 diffs)
-
settingsWeb.py (modified) (1 diff)
-
templates/HtmlPages/ossie.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/branches/jsnyder/trunk/tools/cornetApps/settings.py
r10944 r10945 52 52 # trailing slash. 53 53 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/" 54 MEDIA_URL = '' 55 56 # Base URL for website to reference anchors 57 URL_ROOT = 'http://cornet.wireless.vt.edu/~webdemo/django/' 54 MEDIA_URL = 'http://localhost:8000/' 58 55 59 56 # Absolute path to the directory static files should be collected to. … … 140 137 ) 141 138 142 LOGIN_URL = '/login/'143 144 139 # A sample logging configuration. The only tangible logging 145 140 # performed by this configuration is to send an email to -
ossiedev/branches/jsnyder/trunk/tools/cornetApps/settingsWeb.py
r10938 r10945 47 47 # Absolute filesystem path to the directory that will hold user-uploaded files. 48 48 # Example: "/home/media/media.lawrence.com/media/" 49 MEDIA_ROOT = ' '49 MEDIA_ROOT = '/home/webdemo/cornetApps/' 50 50 51 51 # URL that handles the media served from MEDIA_ROOT. Make sure to use a 52 52 # trailing slash. 53 # Base URL for website to reference anchors 53 54 # Examples: "http://media.lawrence.com/media/", "http://example.com/media/" 54 MEDIA_URL = '' 55 56 # Base URL for website to reference anchors 57 URL_ROOT = 'http://cornet.wireless.vt.edu/~webdemo/django/' 55 MEDIA_URL = 'http://cornet.wireless.vt.edu/~webdemo/django/' 58 56 59 57 # Absolute path to the directory static files should be collected to. -
ossiedev/branches/jsnyder/trunk/tools/cornetApps/templates/HtmlPages/ossie.html
r10944 r10945 10 10 <div id="left_top"> 11 11 <p>Waveforms 12 <a href="/"><img src="{{STATIC_URL}}pics/home.png" title="Home"/></a> 13 <a href="#" id="load"><img src="{{STATIC_URL}}pics/refresh.png" title="Refresh Node Directory"/></a> 14 <a href="/logout/"><img src="{{STATIC_URL}}pics/logout.png" title="Logout"/></a></p> 12 <a href="{{MEDIA_URL}}"><img src="{{STATIC_URL}}pics/home.png" title="Home"/></a> 13 <a href="{{MEDIA_URL}}logout/"><img src="{{STATIC_URL}}pics/logout.png" title="Logout"/></a></p> 15 14 <br/> 16 15 <div id="directory"> </div>{#end menu div#} … … 25 24 <ul class="tabs"> 26 25 <li class="current"><a href="../grid/">Grid View</a></li> 27 <li><a href=" ../map/1/">Floor 1</a></li>28 <li><a href=" ../map/2/">Floor 2</a></li>29 <li><a href=" ../map/3/">Floor 3</a></li>30 <li><a href=" ../map/4/">Floor 4</a></li>26 <li><a href="{{MEDIA_URL}}map/1/">Floor 1</a></li> 27 <li><a href="{{MEDIA_URL}}map/2/">Floor 2</a></li> 28 <li><a href="{{MEDIA_URL}}map/3/">Floor 3</a></li> 29 <li><a href="{{MEDIA_URL}}map/4/">Floor 4</a></li> 31 30 <li id="task manager"><a href="../tasks/">Task Manager</a></li> 32 31 </ul>