2009-12-07 Rolf Bjarne Kvinge <RKvinge@novell.com>
[moon.git] / README
blob33e658b8806a5b6c8a93ca2d9b51e33430c365c3
2 This is Moonlight, an open source implementation of Silverlight 1.0
3 and 2.0 for Unix systems.   
5 See http://www.mono-project.com/Moonlight for more information. 
7 Installation
8 ============
10         For standard Unix configuration/installation instructions, see the INSTALL file.
12 Requirements
13 ============
15         At this time, Moonlight trunk (this release) requires you to use the
16         Mono 2.6 branch.   To build Moonlight, you need to get both
17         the mono and mcs modules from the mono-2-6 branch at revisons:
18         r147226.
20         Do this like this:
22                 svn co -r 147226 http://anonsvn.mono-project.com/source/branches/mono-2-6/mono
23                 svn co -r 147226 http://anonsvn.mono-project.com/source/branches/mono-2-6/mcs
24         
26 Runtime Options
27 ===============
29         There is a couple of runtime-parameters that affect Moonlight behavior
30         and turn on/off certain features. Those options are specified through
31         the MOONLIGHT_OVERRIDES env variable. The more interesting ones are:
33         * shapecache=yes/no 
35                 Use some extra memory for caching shapes.  Increases
36                 memory usage but helps with performance (off by
37                 default). The shape cache size is 6MB max.
39         * render=ftb/btf
41                 Use front-to-back or back-to-front rendering (ftb is
42                 the default).
44         * cache=show/hide 
46                 Show the (shape) cache usage statistics. In plugin
47                 mode they're available through the right-click popup
48                 menu (hide by default). 
50         * converter=yuv/ffmpeg 
52                 Use native mmx/sse2 conversion code or ffmpeg to do
53                 the yuv -> rgb colorspace conversion (by default we
54                 use the native yuv code).
56         To launch Firefox with shape caching and ffmpeg converters use:
58                 $> MOONLIGHT_OVERRIDES="shapecache=yes,converter=ffmpeg" firefox
61         Other options include:
63         * ms-codecs=yes/no
64         * ffmpeg-codecs=yes/no
66                 Controls which sets of codecs to use, the Microsoft
67                 ones or the ffmpeg ones.
69         * timesource=manual/system
71                 Defaults to `system'.   
74         Also if --with-debug=yes option was provided to configure script, the
75         MOONLIGHT_DEBUG env variable controls which debug output is printed
76         on the console. Valid values are: 
78                 alsa, alsa-ex, audio, audio-ex, pulse, pulse-ex, httpstreaming, 
79                 markers, markers-ex, mms, mediaplayer, mediaplayer-ex, pipeline, 
80                 pipeline-error, framereaderloop, ui, ffmpeg, codecs, dependencyobject, 
81                 downloader, font, layout, media, mediaelement, mediaelement-ex, 
82                 buffering, asf, playlist, playlist-warn, text, xaml
85 Licensing
86 =========
88         The C and C++ code that makes up the engine is dual-licensed
89         under the LGPL v2 license and is also available commercially
90         for developers interested in using Moonlight on embedded
91         systems or other systems where the end-user can not upgrade
92         the LGPL code on his own.
94         The C# tests in test/2.0/Microsoft.Silverlight.Testing are
95         copyrighted by Microsoft and released by them under the 
96         open source MS-PL license.
97         
98         The C# controls in class/Microsoft.SilverlightControls/ and
99         class/WPF.Toolkit are copyrighted by Microsoft and released by
100         them under the open source MS-PL license.
102 Technical Details
103 =================
105         For implementation details and notes, see the NOTES file.
108 Test Suite
109 ==========
111         To run the test suite, make sure that the output from
112         configure indicates that the tests will be run.  Once this is
113         done, you can run the tests like this:
115         To run the Novell tests:
117                 cd moon/tests
118                 ./make-xephyr run-tests
120         To run the Microsoft tests (you need the moonlight-ms module
121         as a peer of moon):
123                 cd moon/test
124                 ./make-xephyr run-ms-tests
126         To run the Moonlight Unit Tests:
128                 cd moon/test/2.0/moon-unit
129                 make test
130                 
132 Firefox 3
133 =========
135         The original Silverlight.js shipped by Microsoft was incompatible
136         with Firefox 3.  We have released a greasemonkey script 
137         (data/silverlight-ff3-quirks.user.js) that will patch this behaviour
138         for some sites.