source: trunk/src/testing/sageConfig/applications/applications.conf @ 4

Revision 4, 3.1 KB checked in by ajaworski, 13 years ago (diff)

Added modified SAGE sources

Line 
1#################################################
2# sage application configuration file
3#-----------------------------------------------
4#
5# Sample app config format:
6#
7# atlantis {                  # name of application (HAS TO BE THE SAME AS THE APP CONFIG FILE IT'S TRYING TO LOAD)
8# configName default          # name of this particular configuration
9# nodeNum 1                   # OPTIONAL - number of nodes (used only for parallel applications)
10# Init 100 100 2000 1500      # initial position and size of this app's window on SAGE
11# exec 10.0.8.160 atlantis params    # ip addres where to execute the application and all its parameters
12# nwProtocol TCP              # OPTIONAL - TCP or UDP protocol used for streaming (default TCP)
13# bridgeIP 10.0.8.160         # OPTIONAL - sageBridge information to use for visualcasting
14# bridgePort 42000            #            (default is specified at the bottom of this file)
15# staticApp                   # should be specified for static applications that do not refresh often
16# binDir some_dir             # OPTIONAL - specifies where the application binary resides (use full paths) - default is $SAGE_DIRECTORY/bin
17# sync NO_SYNC | SOFT_SYNC | HARD_SYNC   # OPTIONAL... specifies the syncronization mode for the application streams
18# audioFile some_file         # OPTIONAL - specify the audio file to play with the app (without this the audio wont play)
19# sampleFormat Int16          # OPTIONAL - the format of the file (default is "Int16")
20# samplingRate 44000          # OPTIONAL - the sampling rate of the file (default is 44000)
21# }
22#
23##################################################
24
25
26atlantis {
27
28configName default
29Init 100 100 1000 1000
30exec 127.0.0.1 atlantis
31masterIP 127.0.0.1
32
33}
34
35#------------------------------
36
37sagepdf {
38
39configName default
40Init 100 100 -1 -1
41exec 127.0.0.1 sagepdf
42staticApp
43masterIP 127.0.0.1
44sync SAGE_BLOCK_NO_SYNC
45
46}
47#------------------------------
48
49pdfviewer {
50
51configName default
52Init 100 100 -1 -1
53exec 127.0.0.1 pdfviewer
54staticApp
55masterIP 127.0.0.1
56sync SAGE_BLOCK_NO_SYNC
57
58}
59
60#------------------------------
61
62imageviewer {
63
64configName default
65Init 100 100 -1 -1
66exec 127.0.0.1 imageviewer
67masterIP 127.0.0.1
68sync SAGE_BLOCK_NO_SYNC
69staticApp
70}
71
72#------------------------------
73
74render {
75
76configName default
77Init 100 100 1000 1000
78exec 127.0.0.1 render
79staticApp
80masterIP 127.0.0.1
81
82}
83
84#------------------------------
85
86mplayer {
87
88configName default
89Init 100 100 -1 -1
90exec 127.0.0.1 mplayer
91nwProtocol TCP
92masterIP 127.0.0.1
93
94}
95
96#------------------------------
97
98VNCViewer {
99
100configName MyDesktop
101Init 100 100 1024 768
102exec 127.0.0.1 VNCViewer
103staticApp
104masterIP 127.0.0.1
105sync SAGE_BLOCK_NO_SYNC
106
107}
108
109
110#----------------------------------------------------
111# These are the default values that will be used in
112# case sageBridge information is not specified
113# for each app separately.
114# However, the application will only use sageBridge
115# if it is run in sageBridge mode from the SAGE UI,
116# otherwise it will ignore sageBridge info
117#----------------------------------------------------
118
119
120defaultBridgeIP 10.0.8.160
121defaultBridgePort 42000
122
Note: See TracBrowser for help on using the repository browser.