crashtesting: fix crash seen on loading forum-mso-de-98993.xlsx
[LibreOffice.git] / extensions / README.md
blob94cf2acbebd6a93fa674ce9f3f33c36ef96c930c
1 # Miscellaneous Modules
3 This module contains a grab-bag of unrelated miscellaneous libraries, *none* of
4 which is an extension.
6 ## Application Online Update Checking
8 When we start LO, first `InitUpdateCheckJobThread` is created, via
9 `UpdateCheckJob::execute()` (from `extensions/source/update/check/updatecheckjob.cxx`),
10 as a reaction to a `onFirstVisibleTask` event. It waits 25 seconds (so that it
11 does not interfere with the startup itself), and then calls
12 `UpdateCheck::initialize()` (from `extensions/source/update/check/updatecheck.cxx`).
14 This creates one more thread, `UpdateCheckThread`, that regularly checks whether
15 we have reached the time when we should ask for the update.  If yes, asks for
16 that, and shows the download button in the menu (if the new update is
17 available).
19 ## OLE Automation Bridge
21 A bridge between "OLE automation" and UNO, so you can use UNO services
22 from JScript, VBScript, etc.
24 <https://www.openoffice.org/udk/common/man/spec/ole_bridge.html>
26 See `udkapi/com/sun/star/bridge/oleautomation/ApplicationRegistration.idl`
28 This is initialized in `Desktop::Main()` in `Desktop::OpenClients_Impl()`
29 by creating the service `com.sun.star.bridge.OleApplicationRegistration`,
30 which is implemented by `OleServer_Impl`.
32 See `extensions/source/ole/`
34 ## ActiveX Control
36 This allows embedding LO into a Win32 application as an ActiveX control.
38 See `extensions/source/activex/`
40 ## Spotlight Provider
42 On macOS, this allows indexing ODF documents with Spotlight.
44 See `extensions/source/macosx/spotlight/`
46 ## Scanner Support
48 You can scan from LibreOffice, using platform specific backends like TWAIN/SANE.
50 See `extensions/source/scanner/`