From d513bc565782965d66c6307bfefe21dc3fd36c1a Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Sat, 27 Jun 2015 21:12:01 +0200 Subject: Add a configuration section to the plugin information dialog. Customize the plugin information dialog and add a configuration section. In this section, the user may enable or disable logging. - create MediaWikiPluginInfoProvider to customize the plugin information dialog - add MediaWikiPluginInfoProvider to Info to activate it - enable or disable logging in MediaWikiUtils according to the configuration - update the localization See #31. --- .../MediaWikiPluginInfoProvider.lua | 96 ++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 mediawiki.lrdevplugin/MediaWikiPluginInfoProvider.lua (limited to 'mediawiki.lrdevplugin/MediaWikiPluginInfoProvider.lua') diff --git a/mediawiki.lrdevplugin/MediaWikiPluginInfoProvider.lua b/mediawiki.lrdevplugin/MediaWikiPluginInfoProvider.lua new file mode 100644 index 0000000..7bd76ab --- /dev/null +++ b/mediawiki.lrdevplugin/MediaWikiPluginInfoProvider.lua @@ -0,0 +1,96 @@ +-- This file is part of the LrMediaWiki project and distributed under the terms +-- of the MIT license (see LICENSE.txt file in the project root directory or +-- [0]). See [1] for more information about LrMediaWiki. +-- +-- Copyright (C) 2015 by the LrMediaWiki team (see CREDITS.txt file in the +-- project root directory or [2]) +-- +-- [0] +-- [1] +-- [2] + +-- Code status: +-- doc: missing +-- i18n: complete + +local LrView = import 'LrView' + +local MediaWikiUtils = require 'MediaWikiUtils' + +local bind = LrView.bind +local prefs = import 'LrPrefs'.prefsForPlugin() + +local MediaWikiPluginInfoProvider = {} + +MediaWikiPluginInfoProvider.startDialog = function(propertyTable) + propertyTable.logging = prefs.logging or false +end + +MediaWikiPluginInfoProvider.endDialog = function(propertyTable) + prefs.logging = propertyTable.logging + MediaWikiUtils.setLogging(prefs.logging) +end + +MediaWikiPluginInfoProvider.sectionsForBottomOfDialog = function(viewFactory, propertyTable) + local labelAlignment = 'right'; + local widthLong = 50; + + return { + { + title = LOC '$$$/LrMediaWiki/Section/Config/Title=Configuration', + bind_to_object = propertyTable, + + viewFactory:column { + spacing = viewFactory:control_spacing(), + + viewFactory:row { + spacing = viewFactory:label_spacing(), + + viewFactory:static_text { + alignment = labelAlignment, + width = LrView.share "label_width", + }, + + viewFactory:checkbox { + value = bind 'logging', + title = LOC '$$$/LrMediaWiki/Section/Config/Logging=Enable logging', + }, + }, + + viewFactory:row { + spacing = viewFactory:label_spacing(), + + viewFactory:static_text { + alignment = labelAlignment, + width = LrView.share "label_width", + }, + + viewFactory:static_text { + title = LOC '$$$/LrMediaWiki/Section/Config/Logging/Description=If you enable logging, all API requests are logged. The log file is located in your "My Documents" directory.', + wrap = true, + }, + }, + + viewFactory:row { + spacing = viewFactory:label_spacing(), + + viewFactory:static_text { + alignment = labelAlignment, + width = LrView.share "label_width", + }, + + viewFactory:static_text { + title = LOC '$$$/LrMediaWiki/Section/Config/Logging/Warning=Warning:', + font = '', + }, + + viewFactory:static_text { + title = LOC '$$$/LrMediaWiki/Section/Config/Logging/Password=The log file contains your password!:', + }, + }, + }, + }, + } +end + +return MediaWikiPluginInfoProvider -- cgit v1.2.1