add OPENGL_CFLAGS to CPPFLAGS for OpenBSD
[gnash.git] / libbase / gnashrc.in
blobd18463c596464ea25ac45cb4f537369dead21168
1 ###########################################################
3 # Sat Apr 26 11:47:04 CEST 2008
5 # This file will be used as a config file by
6 # all gnash processes.
8 # At time of writing, the plugin will first parse the
9 # systemwide 'gnashrc' file, then the user '.gnashrc'
10 # file, then the systemwide 'gnashpluginrc' file and
11 # finally user '.gnashpluginrc'.
13 ###########################################################
16 # Display a splash screen when starting.
18 # Default: on
20 #set splashScreen off
22 # Only access remote content from our local domain 
24 # Default: off
26 #set localdomain on
28 # Only access content from our local host
30 # Default: off
32 #set localhost on
34 # If whitelist is non-empty, only SWF from the given domains
35 # are allowed to be loaded.
37 # Default: empty
39 #set whitelist www.doonesbury.com www.cnn.com
40 #append whiteList www.9news.com
42 # If whitelist is empty, these are the only domains from 
43 # which loading SWFs will be forbidden.
45 # Default: empty
47 #set blacklist www.doubleclick.com www.ebay.com
48 #append blacklist www.evil.com
50 # The delay between frame advance,
51 # 0 to use what's specified in the SWF.
53 # Default: 0
55 #set delay 50
57 # Gnash verbosity level:
58 #  0: no output
59 #  1: user traces, internal errors, unimplemented messages
60 #  2: debug messages
62 # Default: 0
64 #set verbosity 1
66 # Print a lot of info about ActionScript processing
68 # Default: off
69
70 #set actionDump on
72 # Print a lot of info about SWF parsing
74 # Default: off
75
76 #set parserDump on
78 # File to send logs to (if writelog is on)
80 # Default: gnash-dbg.log (in current working dir)
82 #set debuglog /tmp/gnash-dbg.log
84 # Write a debug log to disk
86 # Default: off
88 #set writelog on
90 # Version string to pass to ActionScript
92 # Default: @DEFAULT_FLASH_PLATFORM_ID@ @DEFAULT_FLASH_MAJOR_VERSION@,@DEFAULT_FLASH_MINOR_VERSION@,@DEFAULT_FLASH_REV_NUMBER@,0
94 # When modifying this consider also exporting
95 # GNASH_PLUGIN_DESCRIPTION to match the version.
96 # Javascript based version detectors expect something like:
97 # "Shockwave Flash @DEFAULT_FLASH_MAJOR_VERSION@.@DEFAULT_FLASH_MINOR_VERSION@ r@DEFAULT_FLASH_REV_NUMBER@"
100 #set flashVersionString GSH 9,0,99,0
102 # Enable the ActionScript debugger (if compile-time support was enabled)
104 # Default: off
106 #set debugger on
108 # Activate sound
110 # Default: on
112 #set sound off
114 # Activate sound when called as a plugin
116 # NOTE: this is a deprecated directive, should
117 #       use the gnashpluginrc file for plugin-specific
118 #       settings
120 # Default: on
122 #set pluginSoUND off
124 # Enable Gnash extensions (custom ActionScript classes in the player API)
126 # You shouldn't enable this unless you really know what you're doing
128 # Default: off
130 #set enableExtensions on
132 # Start the gui in STOP mode
134 # This is a commonly wanted feature for plugin
135 # runs, better override in gnashpluginrc
137 # Default: off
139 #set startStopped on
141 # Allow unverified SSL connections
143 # Default: false
145 #set insecureSSL on
147 # Timeout in seconds for stream download
149 # The download will timeout after the given seconds
150 # of inactivity. Every activity resets the timer.
151 # 0 means never timeout.
153 # Default: @DEFAULT_STREAMS_TIMEOUT@
155 #set streamsTimeout 0
157 # A space-separated list of directories you want movies
158 # to have access to.
160 # Note that the directory from which your swf was loaded
161 # (if loaded from local filesystem) will be always appended
162 # to the list.
164 # Default: empty
166 #set localSandboxPath /tmp/flashsandbox
167 #append localSandboxPath /tmp/flashsandbox2
169 # Use the following command format to open urls if 
170 # no host-request FD was given.
172 # The '%u' label will be substituted with the url
173 # to open.
175 # NOTE that the NPAPI plugin provides an host request FD
176 # to send url opening requests to.
178 # Default: firefox -remote 'openurl(%u)'
180 #set urlOpenerFormat lynx %u
182 # Directory to store SharedObject files 
184 # If the directory doens't exist SharedObject won't work.
186 # Default: @DEFAULT_SOL_SAFEDIR@
188 #set SOLSafeDir /dev/null
190 # Never write SharedObject (kind of cookies), only read them
192 # Default: false
194 #set SOLReadOnly true
196 # Enable LocalConnection ActionScript class
198 # Default: false
200 #set LocalConnection on
202 # This is the shared memory key for your system
203 #set LCShmKey 3711621821
205 # Enable support for the X Video extension. Note that this requires a
206 # kernel/X11 driver, and compile-time gstreamer or ffmpeg and libXv.
208 # Default: false
210 #set XVideo true
212 # Force rendering quality to "BEST".
214 # Possible values:
215 #       -1 : let SWF code drive it
216 #        0 : low quality
217 #        1 : medium quality
218 #        3 : high quality
219 #        4 : best quality
221 # Default: -1 
223 #set quality 4
226 # SSL settings. These are the default values currently used.
229 # Set the default CA file name
230 #set RootCert rootcert.pem
233 # Set the default client certificate currently used,
234 #set CertFile client.pem
236 # Set the default directory used for certificates
237 #set CertDir /etc/pki/tls
239 # By default gnash ignores changes to Stage.showMenu which limits what appears
240 # in the context menu (right click menu). Set to false to allow the swf author
241 # to suppress some menu settings
243 # Default: true
244 #set ignoreShowMenu false