Overview
| Comment: | [lo] New feature: enumerator |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | new_feature | lo |
| Files: | files | file ages | folders |
| SHA3-256: |
860712215716c3aa45eb79013fb25aa6 |
| User & Date: | olr on 2018-02-21 19:16:47 |
| Other Links: | manifest | tags |
Context
|
2018-02-22
| ||
| 06:41 | [lo] update the enumerator check-in: ff502ce05c user: olr tags: trunk, lo | |
|
2018-02-21
| ||
| 19:16 | [lo] New feature: enumerator check-in: 8607122157 user: olr tags: trunk, new_feature, lo | |
| 19:14 | [graphspell][py] defaut module import check-in: 31837970bd user: olr tags: trunk, graphspell | |
Changes
Modified gc_lang/fr/config.ini from [e2c23eef6d] to [93df40f5c3].
| ︙ | |||
88 89 90 91 92 93 94 95 96 97 98 99 | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | + + + | oxt/ContextMenu/ContextMenu.py = ContextMenu.py oxt/ContextMenu/jobs.xcu = config/jobs.xcu # TextFormatter oxt/TextFormatter/TextFormatter.py = pythonpath/TextFormatter.py oxt/TextFormatter/tf_strings.py = pythonpath/tf_strings.py oxt/TextFormatter/tf_options.py = pythonpath/tf_options.py oxt/TextFormatter/tf_tabrep.py = pythonpath/tf_tabrep.py # Lexicographer oxt/Lexicographer/Enumerator.py = pythonpath/Enumerator.py oxt/Lexicographer/enum_strings.py = pythonpath/enum_strings.py # Conjugueur oxt/Conjugueur/Conjugueur.py = pythonpath/Conjugueur.py # Modify author oxt/ChangeAuthor/Author.py = pythonpath/Author.py oxt/ChangeAuthor/ca_strings.py = pythonpath/ca_strings.py |
Modified gc_lang/fr/oxt/AppLauncher.py from [30bcae4623] to [f6fd0dec5a].
| ︙ | |||
50 51 52 53 54 55 56 57 58 59 60 61 62 63 | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | + + + + |
import Author
xDialog = Author.Author(self.ctx)
xDialog.run(self.sLang)
elif sCmd == "OP":
import Options
xDialog = Options.GC_Options(self.ctx)
xDialog.run(self.sLang)
elif sCmd == "EN":
import Enumerator
xDialog = Enumerator.Enumerator(self.ctx)
xDialog.run(self.sLang)
elif sCmd.startswith("FA/"):
findAll(sCmd[6:], (sCmd[3:4] == "y"), (sCmd[4:5] == "y"))
# elif sCmd.startswith("URL/"):
# # Call from context menu to launch URL?
# # http://opengrok.libreoffice.org/xref/core/sw/source/ui/lingu/olmenu.cxx#785
# xSystemShellExecute = self.ctx.getServiceManager().createInstanceWithContext('com.sun.star.system.SystemShellExecute', self.ctx)
# xSystemShellExecute.execute(url, "", uno.getConstantByName("com.sun.star.system.SystemShellExecuteFlags.URIS_ONLY"))
|
| ︙ |
Added gc_lang/fr/oxt/Lexicographer/Enumerator.py version [96cb003561].