diff options
author | Robin Krahl <me@robin-krahl.de> | 2014-09-02 15:39:22 +0200 |
---|---|---|
committer | Robin Krahl <me@robin-krahl.de> | 2014-09-02 15:39:22 +0200 |
commit | cc5941acf287dd182698e87bdfc60604ab6cba7b (patch) | |
tree | b6b8127bc0a8261fa99e10ca99f8cc6c03caa824 | |
parent | e4b9313b7b6d6edcffcd6ce8e547e2a165042e51 (diff) | |
download | LrMediaWiki-cc5941acf287dd182698e87bdfc60604ab6cba7b.tar.gz LrMediaWiki-cc5941acf287dd182698e87bdfc60604ab6cba7b.tar.bz2 |
Fix #15: Show {{Location}} template in wikitext preview.
-rwxr-xr-x | mediawiki.lrdevplugin/MediaWikiExportServiceProvider.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediawiki.lrdevplugin/MediaWikiExportServiceProvider.lua b/mediawiki.lrdevplugin/MediaWikiExportServiceProvider.lua index 3ea7f48..90acf9e 100755 --- a/mediawiki.lrdevplugin/MediaWikiExportServiceProvider.lua +++ b/mediawiki.lrdevplugin/MediaWikiExportServiceProvider.lua @@ -265,7 +265,7 @@ MediaWikiExportServiceProvider.sectionsForTopOfDialog = function(viewFactory, pr viewFactory:push_button {
title = LOC '$$$/LrMediaWiki/Section/Licensing/Preview=Preview generated wikitext',
action = function(button)
- local wikitext = MediaWikiInterface.buildFileDescription('<!-- description -->', propertyTable.info_source, '<!-- date -->', propertyTable.info_author, propertyTable.info_license, propertyTable.info_templates, propertyTable.info_other, propertyTable.info_categories, '<!-- per-file categories -->')
+ local wikitext = MediaWikiInterface.buildFileDescription('<!-- description -->', propertyTable.info_source, '<!-- date -->', propertyTable.info_author, propertyTable.info_license, '<!-- {{Location}} if GPS metadata is available -->\n' . propertyTable.info_templates, propertyTable.info_other, propertyTable.info_categories, '<!-- per-file categories -->')
LrDialogs.message(LOC '$$$/LrMediaWiki/Section/Licensing/Preview=Preview generated wikitext', wikitext, 'info')
end,
},
|