diff --git a/src/plugins/bookreport.gpr.py b/src/plugins/bookreport.gpr.py index e1791297b..4c7273562 100644 --- a/src/plugins/bookreport.gpr.py +++ b/src/plugins/bookreport.gpr.py @@ -33,7 +33,7 @@ description = _("Produces a book containing several reports."), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'BookReport.py', +fname = 'bookreport.py', authors = ["Alex Roitman"], authors_email = ["shura@gramps-project.org"], category = CATEGORY_BOOK, diff --git a/src/plugins/BookReport.py b/src/plugins/bookreport.py similarity index 100% rename from src/plugins/BookReport.py rename to src/plugins/bookreport.py diff --git a/src/plugins/docgen/AsciiDoc.py b/src/plugins/docgen/asciidoc.py similarity index 100% rename from src/plugins/docgen/AsciiDoc.py rename to src/plugins/docgen/asciidoc.py diff --git a/src/plugins/docgen/docgen.gpr.py b/src/plugins/docgen/docgen.gpr.py index bf751c3eb..cf86deb2f 100644 --- a/src/plugins/docgen/docgen.gpr.py +++ b/src/plugins/docgen/docgen.gpr.py @@ -33,7 +33,7 @@ plg.description = _("Generates documents in plain text format (.txt).") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'AsciiDoc.py' +plg.fname = 'asciidoc.py' plg.ptype = DOCGEN plg.basedocclass = 'AsciiDoc' plg.paper = True @@ -53,7 +53,7 @@ plg.description = _("Generates documents and prints them directly.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'GtkPrint.py' +plg.fname = 'gtkprint.py' plg.ptype = DOCGEN plg.basedocclass = 'GtkPrint' plg.paper = True @@ -73,7 +73,7 @@ plg.description = _("Generates documents in HTML format.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'HtmlDoc.py' +plg.fname = 'htmldoc.py' plg.ptype = DOCGEN plg.basedocclass = 'HtmlDoc' plg.paper = False @@ -93,7 +93,7 @@ plg.description = _("Generates documents in LaTeX format.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'LaTeXDoc.py' +plg.fname = 'latexdoc.py' plg.ptype = DOCGEN plg.basedocclass = 'LaTeXDoc' plg.paper = True @@ -114,7 +114,7 @@ plg.description = _("Generates documents in OpenDocument " plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ODFDoc.py' +plg.fname = 'odfdoc.py' plg.ptype = DOCGEN plg.basedocclass = 'ODFDoc' plg.paper = True @@ -134,7 +134,7 @@ plg.description = _("Generates documents in PDF format (.pdf).") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'PdfDoc.py' +plg.fname = 'pdfdoc.py' plg.ptype = DOCGEN plg.basedocclass = 'PdfDoc' plg.paper = True @@ -154,7 +154,7 @@ plg.description = _("Generates documents in PostScript format (.ps).") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'PSDrawDoc.py' +plg.fname = 'psdrawdoc.py' plg.ptype = DOCGEN plg.basedocclass = 'PSDrawDoc' plg.paper = True @@ -174,7 +174,7 @@ plg.description = _("Generates documents in Rich Text format (.rtf).") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'RTFDoc.py' +plg.fname = 'rtfdoc.py' plg.ptype = DOCGEN plg.basedocclass = 'RTFDoc' plg.paper = True @@ -195,7 +195,7 @@ plg.description = _("Generates documents in Scalable " plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'SvgDrawDoc.py' +plg.fname = 'svgdrawdoc.py' plg.ptype = DOCGEN plg.basedocclass = 'SvgDrawDoc' plg.paper = True diff --git a/src/plugins/docgen/GtkPrint.py b/src/plugins/docgen/gtkprint.py similarity index 100% rename from src/plugins/docgen/GtkPrint.py rename to src/plugins/docgen/gtkprint.py diff --git a/src/plugins/docgen/HtmlDoc.py b/src/plugins/docgen/htmldoc.py similarity index 100% rename from src/plugins/docgen/HtmlDoc.py rename to src/plugins/docgen/htmldoc.py diff --git a/src/plugins/docgen/LaTeXDoc.py b/src/plugins/docgen/latexdoc.py similarity index 100% rename from src/plugins/docgen/LaTeXDoc.py rename to src/plugins/docgen/latexdoc.py diff --git a/src/plugins/docgen/ODFDoc.py b/src/plugins/docgen/odfdoc.py similarity index 100% rename from src/plugins/docgen/ODFDoc.py rename to src/plugins/docgen/odfdoc.py diff --git a/src/plugins/docgen/PdfDoc.py b/src/plugins/docgen/pdfdoc.py similarity index 100% rename from src/plugins/docgen/PdfDoc.py rename to src/plugins/docgen/pdfdoc.py diff --git a/src/plugins/docgen/PSDrawDoc.py b/src/plugins/docgen/psdrawdoc.py similarity index 100% rename from src/plugins/docgen/PSDrawDoc.py rename to src/plugins/docgen/psdrawdoc.py diff --git a/src/plugins/docgen/RTFDoc.py b/src/plugins/docgen/rtfdoc.py similarity index 100% rename from src/plugins/docgen/RTFDoc.py rename to src/plugins/docgen/rtfdoc.py diff --git a/src/plugins/docgen/SvgDrawDoc.py b/src/plugins/docgen/svgdrawdoc.py similarity index 100% rename from src/plugins/docgen/SvgDrawDoc.py rename to src/plugins/docgen/svgdrawdoc.py diff --git a/src/plugins/drawreport/AncestorTree.py b/src/plugins/drawreport/ancestortree.py similarity index 100% rename from src/plugins/drawreport/AncestorTree.py rename to src/plugins/drawreport/ancestortree.py diff --git a/src/plugins/drawreport/Calendar.py b/src/plugins/drawreport/calendar.py similarity index 100% rename from src/plugins/drawreport/Calendar.py rename to src/plugins/drawreport/calendar.py diff --git a/src/plugins/drawreport/DescendTree.py b/src/plugins/drawreport/descendtree.py similarity index 100% rename from src/plugins/drawreport/DescendTree.py rename to src/plugins/drawreport/descendtree.py diff --git a/src/plugins/drawreport/drawplugins.gpr.py b/src/plugins/drawreport/drawplugins.gpr.py index ee4c21bfb..cc48ea94e 100644 --- a/src/plugins/drawreport/drawplugins.gpr.py +++ b/src/plugins/drawreport/drawplugins.gpr.py @@ -34,7 +34,7 @@ plg.description = _("Produces a graphical ancestral chart") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'AncestorTree.py' +plg.fname = 'ancestortree.py' plg.ptype = REPORT plg.authors = ["Craig J. Anderson"] plg.authors_email = ["ander882@hotmail.com"] @@ -50,7 +50,7 @@ plg.description = _("Produces a graphical ancestral tree") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'AncestorTree.py' +plg.fname = 'ancestortree.py' plg.ptype = REPORT plg.authors = ["Craig J. Anderson"] plg.authors_email = ["ander882@hotmail.com"] @@ -72,7 +72,7 @@ plg.description = _("Produces a graphical calendar") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'Calendar.py' +plg.fname = 'calendar.py' plg.ptype = REPORT plg.authors = ["Douglas S. Blank"] plg.authors_email = ["dblank@cs.brynmawr.edu"] @@ -94,7 +94,7 @@ plg.description = _("Produces a graphical descendant chart") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'DescendTree.py' +plg.fname = 'descendtree.py' plg.ptype = REPORT plg.authors = ["Craig J. Anderson"] plg.authors_email = ["ander882@hotmail.com"] @@ -110,7 +110,7 @@ plg.description = _("Produces a graphical descendant tree") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'DescendTree.py' +plg.fname = 'descendtree.py' plg.ptype = REPORT plg.authors = ["Craig J. Anderson"] plg.authors_email = ["ander882@hotmail.com"] @@ -131,7 +131,7 @@ plg.name = _("Family Descendant Chart") plg.description = _("Produces a graphical descendant chart around a family") plg.version = '1.0' plg.status = STABLE -plg.fname = 'DescendTree.py' +plg.fname = 'descendtree.py' plg.ptype = REPORT plg.category = CATEGORY_DRAW plg.gramps_target_version = '3.5' @@ -148,7 +148,7 @@ plg.name = _("Family Descendant Tree") plg.description = _("Produces a graphical descendant tree around a family") plg.version = '1.0' plg.status = STABLE -plg.fname = 'DescendTree.py' +plg.fname = 'descendtree.py' plg.ptype = REPORT plg.category = CATEGORY_DRAW plg.gramps_target_version = '3.5' @@ -172,7 +172,7 @@ plg.description = _("Produces fan charts") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'FanChart.py' +plg.fname = 'fanchart.py' plg.ptype = REPORT plg.authors = ["Donald N. Allingham"] plg.authors_email = ["don@gramps-project.org"] @@ -195,7 +195,7 @@ plg.description = _("Produces statistical bar and pie charts of the people " plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'StatisticsChart.py' +plg.fname = 'statisticschart.py' plg.ptype = REPORT plg.authors = ["Eero Tamminen"] plg.authors_email = [""] @@ -218,7 +218,7 @@ plg.description = _("Produces a timeline chart.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'TimeLine.py' +plg.fname = 'timeline.py' plg.ptype = REPORT plg.authors = ["Donald N. Allingham"] plg.authors_email = ["don@gramps-project.org"] diff --git a/src/plugins/drawreport/FanChart.py b/src/plugins/drawreport/fanchart.py similarity index 100% rename from src/plugins/drawreport/FanChart.py rename to src/plugins/drawreport/fanchart.py diff --git a/src/plugins/drawreport/StatisticsChart.py b/src/plugins/drawreport/statisticschart.py similarity index 100% rename from src/plugins/drawreport/StatisticsChart.py rename to src/plugins/drawreport/statisticschart.py diff --git a/src/plugins/drawreport/TimeLine.py b/src/plugins/drawreport/timeline.py similarity index 100% rename from src/plugins/drawreport/TimeLine.py rename to src/plugins/drawreport/timeline.py diff --git a/src/plugins/export/export.gpr.py b/src/plugins/export/export.gpr.py index 1c5e2fc80..c9a396329 100644 --- a/src/plugins/export/export.gpr.py +++ b/src/plugins/export/export.gpr.py @@ -34,7 +34,7 @@ plg.description = _("CSV is a common spreadsheet format.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ExportCsv.py' +plg.fname = 'exportcsv.py' plg.ptype = EXPORT plg.export_function = 'exportData' plg.export_options = 'CSVWriterOptionBox' @@ -55,7 +55,7 @@ plg.description = _("Web Family Tree format") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ExportFtree.py' +plg.fname = 'exportftree.py' plg.ptype = EXPORT plg.export_function = 'writeData' plg.export_options = 'WriterOptionBox' @@ -77,7 +77,7 @@ plg.description = _('GEDCOM is used to transfer data between genealogy programs plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ExportGedcom.py' +plg.fname = 'exportgedcom.py' plg.ptype = EXPORT plg.export_function = 'export_data' plg.export_options = 'WriterOptionBox' @@ -98,7 +98,7 @@ plg.description = _('GeneWeb is a web based genealogy program.') plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ExportGeneWeb.py' +plg.fname = 'exportgeneweb.py' plg.ptype = EXPORT plg.export_function = 'exportData' plg.export_options = 'WriterOptionBox' @@ -120,7 +120,7 @@ plg.description = _('Gramps package is an archived XML family tree together ' plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ExportPkg.py' +plg.fname = 'exportpkg.py' plg.ptype = EXPORT plg.export_function = 'writeData' plg.export_options = 'WriterOptionBox' @@ -143,7 +143,7 @@ plg.description = _('Gramps XML export is a complete archived XML backup of a' plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ExportXml.py' +plg.fname = 'exportxml.py' plg.ptype = EXPORT plg.export_function = 'export_data' plg.export_options = 'WriterOptionBox' @@ -164,7 +164,7 @@ plg.description = _('vCalendar is used in many calendaring and PIM applications plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ExportVCalendar.py' +plg.fname = 'exportvcalendar.py' plg.ptype = EXPORT plg.export_function = 'exportData' plg.export_options = 'WriterOptionBox' @@ -185,7 +185,7 @@ plg.description = _('vCard is used in many addressbook and pim applications.') plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ExportVCard.py' +plg.fname = 'exportvcard.py' plg.ptype = EXPORT plg.export_function = 'exportData' plg.export_options = 'WriterOptionBox' diff --git a/src/plugins/export/ExportCsv.py b/src/plugins/export/exportcsv.py similarity index 100% rename from src/plugins/export/ExportCsv.py rename to src/plugins/export/exportcsv.py diff --git a/src/plugins/export/ExportFtree.py b/src/plugins/export/exportftree.py similarity index 100% rename from src/plugins/export/ExportFtree.py rename to src/plugins/export/exportftree.py diff --git a/src/plugins/export/ExportGedcom.py b/src/plugins/export/exportgedcom.py similarity index 100% rename from src/plugins/export/ExportGedcom.py rename to src/plugins/export/exportgedcom.py diff --git a/src/plugins/export/ExportGeneWeb.py b/src/plugins/export/exportgeneweb.py similarity index 100% rename from src/plugins/export/ExportGeneWeb.py rename to src/plugins/export/exportgeneweb.py diff --git a/src/plugins/export/ExportPkg.py b/src/plugins/export/exportpkg.py similarity index 100% rename from src/plugins/export/ExportPkg.py rename to src/plugins/export/exportpkg.py diff --git a/src/plugins/export/ExportVCalendar.py b/src/plugins/export/exportvcalendar.py similarity index 100% rename from src/plugins/export/ExportVCalendar.py rename to src/plugins/export/exportvcalendar.py diff --git a/src/plugins/export/ExportVCard.py b/src/plugins/export/exportvcard.py similarity index 100% rename from src/plugins/export/ExportVCard.py rename to src/plugins/export/exportvcard.py diff --git a/src/plugins/export/ExportXml.py b/src/plugins/export/exportxml.py similarity index 100% rename from src/plugins/export/ExportXml.py rename to src/plugins/export/exportxml.py diff --git a/src/plugins/gramplet/AgeOnDateGramplet.py b/src/plugins/gramplet/ageondategramplet.py similarity index 100% rename from src/plugins/gramplet/AgeOnDateGramplet.py rename to src/plugins/gramplet/ageondategramplet.py diff --git a/src/plugins/gramplet/AgeStats.py b/src/plugins/gramplet/agestats.py similarity index 100% rename from src/plugins/gramplet/AgeStats.py rename to src/plugins/gramplet/agestats.py diff --git a/src/plugins/gramplet/Attributes.py b/src/plugins/gramplet/attributes.py similarity index 100% rename from src/plugins/gramplet/Attributes.py rename to src/plugins/gramplet/attributes.py diff --git a/src/plugins/gramplet/AttributesGramplet.py b/src/plugins/gramplet/attributesgramplet.py similarity index 100% rename from src/plugins/gramplet/AttributesGramplet.py rename to src/plugins/gramplet/attributesgramplet.py diff --git a/src/plugins/gramplet/Backlinks.py b/src/plugins/gramplet/backlinks.py similarity index 100% rename from src/plugins/gramplet/Backlinks.py rename to src/plugins/gramplet/backlinks.py diff --git a/src/plugins/gramplet/CalendarGramplet.py b/src/plugins/gramplet/calendargramplet.py similarity index 100% rename from src/plugins/gramplet/CalendarGramplet.py rename to src/plugins/gramplet/calendargramplet.py diff --git a/src/plugins/gramplet/Children.py b/src/plugins/gramplet/children.py similarity index 100% rename from src/plugins/gramplet/Children.py rename to src/plugins/gramplet/children.py diff --git a/src/plugins/gramplet/Citations.py b/src/plugins/gramplet/citations.py similarity index 100% rename from src/plugins/gramplet/Citations.py rename to src/plugins/gramplet/citations.py diff --git a/src/plugins/gramplet/DescendGramplet.py b/src/plugins/gramplet/descendgramplet.py similarity index 100% rename from src/plugins/gramplet/DescendGramplet.py rename to src/plugins/gramplet/descendgramplet.py diff --git a/src/plugins/gramplet/EditExifMetadata.py b/src/plugins/gramplet/editexifmetadata.py similarity index 100% rename from src/plugins/gramplet/EditExifMetadata.py rename to src/plugins/gramplet/editexifmetadata.py diff --git a/src/plugins/gramplet/Events.py b/src/plugins/gramplet/events.py similarity index 100% rename from src/plugins/gramplet/Events.py rename to src/plugins/gramplet/events.py diff --git a/src/plugins/gramplet/FanChartGramplet.py b/src/plugins/gramplet/fanchartgramplet.py similarity index 100% rename from src/plugins/gramplet/FanChartGramplet.py rename to src/plugins/gramplet/fanchartgramplet.py diff --git a/src/plugins/gramplet/FaqGramplet.py b/src/plugins/gramplet/faqgramplet.py similarity index 100% rename from src/plugins/gramplet/FaqGramplet.py rename to src/plugins/gramplet/faqgramplet.py diff --git a/src/plugins/gramplet/Filter.py b/src/plugins/gramplet/filter.py similarity index 100% rename from src/plugins/gramplet/Filter.py rename to src/plugins/gramplet/filter.py diff --git a/src/plugins/gramplet/Gallery.py b/src/plugins/gramplet/gallery.py similarity index 100% rename from src/plugins/gramplet/Gallery.py rename to src/plugins/gramplet/gallery.py diff --git a/src/plugins/gramplet/GivenNameGramplet.py b/src/plugins/gramplet/givennamegramplet.py similarity index 100% rename from src/plugins/gramplet/GivenNameGramplet.py rename to src/plugins/gramplet/givennamegramplet.py diff --git a/src/plugins/gramplet/gramplet.gpr.py b/src/plugins/gramplet/gramplet.gpr.py index 16520cf0a..84aa76441 100644 --- a/src/plugins/gramplet/gramplet.gpr.py +++ b/src/plugins/gramplet/gramplet.gpr.py @@ -34,7 +34,7 @@ register(GRAMPLET, version="2.0.0", gramps_target_version="3.5", status = STABLE, - fname="AgeOnDateGramplet.py", + fname="ageondategramplet.py", height=200, gramplet = 'AgeOnDateGramplet', gramplet_title=_("Age on Date"), @@ -45,7 +45,7 @@ register(GRAMPLET, name = _("Age Stats"), description = _("Gramplet showing graphs of various ages"), status = STABLE, - fname="AgeStats.py", + fname="agestats.py", height=100, expand=True, gramplet = 'AgeStatsGramplet', @@ -61,7 +61,7 @@ register(GRAMPLET, name=_("Attributes"), description = _("Gramplet showing active person's attributes"), status = STABLE, - fname="AttributesGramplet.py", + fname="attributesgramplet.py", height=150, expand=True, gramplet = 'AttributesGramplet', @@ -78,7 +78,7 @@ register(GRAMPLET, name=_("Calendar"), description = _("Gramplet showing calendar and events on specific dates in history"), status = STABLE, - fname="CalendarGramplet.py", + fname="calendargramplet.py", height=200, gramplet = 'CalendarGramplet', gramplet_title=_("Calendar"), @@ -91,7 +91,7 @@ register(GRAMPLET, name=_("Descendant"), description = _("Gramplet showing active person's descendants"), status = STABLE, - fname="DescendGramplet.py", + fname="descendgramplet.py", height=100, expand=True, gramplet = 'DescendantGramplet', @@ -108,7 +108,7 @@ register(GRAMPLET, name=_("Fan Chart"), description = _("Gramplet showing active person's direct ancestors as a fanchart"), status = STABLE, - fname="FanChartGramplet.py", + fname="fanchartgramplet.py", height=430, expand=True, gramplet = 'FanChartGramplet', @@ -125,7 +125,7 @@ register(GRAMPLET, name=_("FAQ"), description = _("Gramplet showing frequently asked questions"), status = STABLE, - fname="FaqGramplet.py", + fname="faqgramplet.py", height=300, gramplet = 'FAQGramplet', gramplet_title=_("FAQ"), @@ -138,7 +138,7 @@ register(GRAMPLET, name=_("Given Name Cloud"), description = _("Gramplet showing all given names as a text cloud"), status = STABLE, - fname="GivenNameGramplet.py", + fname="givennamegramplet.py", height=300, expand=True, gramplet = 'GivenNameCloudGramplet', @@ -152,7 +152,7 @@ register(GRAMPLET, name=_("Pedigree"), description = _("Gramplet showing active person's ancestors"), status = STABLE, - fname="PedigreeGramplet.py", + fname="pedigreegramplet.py", height=300, gramplet = 'PedigreeGramplet', gramplet_title=_("Pedigree"), @@ -169,7 +169,7 @@ register(GRAMPLET, name=_("Plugin Manager"), description = _("Gramplet showing available third-party plugins (addons)"), status = STABLE, - fname="PluginManagerGramplet.py", + fname="pluginmanagergramplet.py", height=300, expand=True, gramplet = 'PluginManagerGramplet', @@ -183,7 +183,7 @@ register(GRAMPLET, name=_("Quick View"), description = _("Gramplet showing an active item Quick View"), status = STABLE, - fname="QuickViewGramplet.py", + fname="quickviewgramplet.py", height=300, expand=True, gramplet = 'QuickViewGramplet', @@ -199,7 +199,7 @@ register(GRAMPLET, name=_("Relatives"), description = _("Gramplet showing active person's relatives"), status = STABLE, - fname="RelativeGramplet.py", + fname="relativegramplet.py", height=200, gramplet = 'RelativesGramplet', gramplet_title=_("Relatives"), @@ -215,7 +215,7 @@ register(GRAMPLET, name=_("Session Log"), description = _("Gramplet showing all activity for this session"), status = STABLE, - fname="SessionLogGramplet.py", + fname="sessionloggramplet.py", height=230, #data=['no'], gramplet = 'LogGramplet', @@ -229,7 +229,7 @@ register(GRAMPLET, name=_("Statistics"), description = _("Gramplet showing summary data of the family tree"), status = STABLE, - fname="StatsGramplet.py", + fname="statsgramplet.py", height=230, expand=True, gramplet = 'StatsGramplet', @@ -243,7 +243,7 @@ register(GRAMPLET, name=_("Surname Cloud"), description = _("Gramplet showing all surnames as a text cloud"), status = STABLE, - fname="SurnameCloudGramplet.py", + fname="surnamecloudgramplet.py", height=300, expand=True, gramplet = 'SurnameCloudGramplet', @@ -257,7 +257,7 @@ register(GRAMPLET, name=_("TODO"), description = _("Gramplet for generic notes"), status = STABLE, - fname="ToDoGramplet.py", + fname="todogramplet.py", height=300, expand=True, gramplet = 'TODOGramplet', @@ -271,7 +271,7 @@ register(GRAMPLET, name=_("Top Surnames"), description = _("Gramplet showing most frequent surnames in this tree"), status = STABLE, - fname="TopSurnamesGramplet.py", + fname="topsurnamesgramplet.py", height=230, gramplet = 'TopSurnamesGramplet', gramplet_title=_("Top Surnames"), @@ -284,7 +284,7 @@ register(GRAMPLET, name=_("Welcome"), description = _("Gramplet showing a welcome message"), status = STABLE, - fname="WelcomeGramplet.py", + fname="welcomegramplet.py", height=300, expand=True, gramplet = 'WelcomeGramplet', @@ -298,7 +298,7 @@ register(GRAMPLET, name =_("What's Next"), description = _("Gramplet suggesting items to research"), status = STABLE, - fname="WhatsNext.py", + fname="whatsnext.py", height = 230, expand = True, gramplet = 'WhatNextGramplet', @@ -323,7 +323,7 @@ register(GRAMPLET, version = '1.5.0', gramps_target_version = '3.5', status = STABLE, - fname = "EditExifMetadata.py", + fname = "editexifmetadata.py", help_url = "Edit Image Exif Metadata", authors = ['Rob G. Healey'], authors_email = ['robhealey1@gmail.com'], @@ -340,7 +340,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="PersonDetails.py", + fname="persondetails.py", height=200, gramplet = 'PersonDetails', gramplet_title=_("Details"), @@ -354,7 +354,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="RepositoryDetails.py", + fname="repositorydetails.py", height=200, gramplet = 'RepositoryDetails', gramplet_title=_("Details"), @@ -368,7 +368,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="PlaceDetails.py", + fname="placedetails.py", height=200, gramplet = 'PlaceDetails', gramplet_title=_("Details"), @@ -382,7 +382,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="MediaPreview.py", + fname="mediapreview.py", height=200, gramplet = 'MediaPreview', gramplet_title=_("Preview"), @@ -406,7 +406,7 @@ if available: version = "1.0.0", gramps_target_version = "3.5", status = STABLE, - fname = "MetadataViewer.py", + fname = "metadataviewer.py", height = 200, gramplet = 'MetadataViewer', gramplet_title = _("Image Metadata"), @@ -420,7 +420,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="PersonResidence.py", + fname="personresidence.py", height=200, gramplet = 'PersonResidence', gramplet_title=_("Residence"), @@ -434,7 +434,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Events.py", + fname="events.py", height=200, gramplet = 'PersonEvents', gramplet_title=_("Events"), @@ -448,7 +448,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Events.py", + fname="events.py", height=200, gramplet = 'FamilyEvents', gramplet_title=_("Events"), @@ -462,7 +462,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Gallery.py", + fname="gallery.py", height=200, gramplet = 'PersonGallery', gramplet_title=_("Gallery"), @@ -476,7 +476,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Gallery.py", + fname="gallery.py", height=200, gramplet = 'FamilyGallery', gramplet_title=_("Gallery"), @@ -490,7 +490,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Gallery.py", + fname="gallery.py", height=200, gramplet = 'EventGallery', gramplet_title=_("Gallery"), @@ -504,7 +504,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Gallery.py", + fname="gallery.py", height=200, gramplet = 'PlaceGallery', gramplet_title=_("Gallery"), @@ -518,7 +518,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Gallery.py", + fname="gallery.py", height=200, gramplet = 'SourceGallery', gramplet_title=_("Gallery"), @@ -532,7 +532,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Gallery.py", + fname="gallery.py", height=200, gramplet = 'CitationGallery', gramplet_title=_("Gallery"), @@ -546,7 +546,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Attributes.py", + fname="attributes.py", height=200, gramplet = 'PersonAttributes', gramplet_title=_("Attributes"), @@ -560,7 +560,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Attributes.py", + fname="attributes.py", height=200, gramplet = 'EventAttributes', gramplet_title=_("Attributes"), @@ -574,7 +574,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Attributes.py", + fname="attributes.py", height=200, gramplet = 'FamilyAttributes', gramplet_title=_("Attributes"), @@ -588,7 +588,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Attributes.py", + fname="attributes.py", height=200, gramplet = 'MediaAttributes', gramplet_title=_("Attributes"), @@ -602,7 +602,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Notes.py", + fname="notes.py", height=200, gramplet = 'PersonNotes', gramplet_title=_("Notes"), @@ -616,7 +616,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Notes.py", + fname="notes.py", height=200, gramplet = 'EventNotes', gramplet_title=_("Notes"), @@ -630,7 +630,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Notes.py", + fname="notes.py", height=200, gramplet = 'FamilyNotes', gramplet_title=_("Notes"), @@ -644,7 +644,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Notes.py", + fname="notes.py", height=200, gramplet = 'PlaceNotes', gramplet_title=_("Notes"), @@ -658,7 +658,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Notes.py", + fname="notes.py", height=200, gramplet = 'SourceNotes', gramplet_title=_("Notes"), @@ -672,7 +672,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Notes.py", + fname="notes.py", height=200, gramplet = 'CitationNotes', gramplet_title=_("Notes"), @@ -686,7 +686,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Notes.py", + fname="notes.py", height=200, gramplet = 'RepositoryNotes', gramplet_title=_("Notes"), @@ -700,7 +700,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Notes.py", + fname="notes.py", height=200, gramplet = 'MediaNotes', gramplet_title=_("Notes"), @@ -714,7 +714,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Citations.py", + fname="citations.py", height=200, gramplet = 'PersonCitations', gramplet_title=_("Citations"), @@ -728,7 +728,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Citations.py", + fname="citations.py", height=200, gramplet = 'EventCitations', gramplet_title=_("Citations"), @@ -742,7 +742,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Citations.py", + fname="citations.py", height=200, gramplet = 'FamilyCitations', gramplet_title=_("Citations"), @@ -756,7 +756,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Citations.py", + fname="citations.py", height=200, gramplet = 'PlaceCitations', gramplet_title=_("Citations"), @@ -770,7 +770,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Citations.py", + fname="citations.py", height=200, gramplet = 'MediaCitations', gramplet_title=_("Citations"), @@ -784,7 +784,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Children.py", + fname="children.py", height=200, gramplet = 'PersonChildren', gramplet_title=_("Children"), @@ -798,7 +798,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Children.py", + fname="children.py", height=200, gramplet = 'FamilyChildren', gramplet_title=_("Children"), @@ -812,7 +812,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Backlinks.py", + fname="backlinks.py", height=200, gramplet = 'PersonBacklinks', gramplet_title=_("References"), @@ -826,7 +826,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Backlinks.py", + fname="backlinks.py", height=200, gramplet = 'EventBacklinks', gramplet_title=_("References"), @@ -840,7 +840,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Backlinks.py", + fname="backlinks.py", height=200, gramplet = 'FamilyBacklinks', gramplet_title=_("References"), @@ -854,7 +854,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Backlinks.py", + fname="backlinks.py", height=200, gramplet = 'PlaceBacklinks', gramplet_title=_("References"), @@ -868,7 +868,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Backlinks.py", + fname="backlinks.py", height=200, gramplet = 'SourceBacklinks', gramplet_title=_("References"), @@ -882,7 +882,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Backlinks.py", + fname="backlinks.py", height=200, gramplet = 'CitationBacklinks', gramplet_title=_("References"), @@ -896,7 +896,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Backlinks.py", + fname="backlinks.py", height=200, gramplet = 'RepositoryBacklinks', gramplet_title=_("References"), @@ -910,7 +910,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Backlinks.py", + fname="backlinks.py", height=200, gramplet = 'MediaBacklinks', gramplet_title=_("References"), @@ -924,7 +924,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Backlinks.py", + fname="backlinks.py", height=200, gramplet = 'NoteBacklinks', gramplet_title=_("References"), @@ -938,7 +938,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Filter.py", + fname="filter.py", height=200, gramplet = 'PersonFilter', gramplet_title=_("Filter"), @@ -952,7 +952,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Filter.py", + fname="filter.py", height=200, gramplet = 'FamilyFilter', gramplet_title=_("Filter"), @@ -966,7 +966,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Filter.py", + fname="filter.py", height=200, gramplet = 'EventFilter', gramplet_title=_("Filter"), @@ -980,7 +980,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Filter.py", + fname="filter.py", height=200, gramplet = 'SourceFilter', gramplet_title=_("Filter"), @@ -994,7 +994,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Filter.py", + fname="filter.py", height=200, gramplet = 'CitationFilter', gramplet_title=_("Filter"), @@ -1008,7 +1008,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Filter.py", + fname="filter.py", height=200, gramplet = 'PlaceFilter', gramplet_title=_("Filter"), @@ -1022,7 +1022,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Filter.py", + fname="filter.py", height=200, gramplet = 'MediaFilter', gramplet_title=_("Filter"), @@ -1036,7 +1036,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Filter.py", + fname="filter.py", height=200, gramplet = 'RepositoryFilter', gramplet_title=_("Filter"), @@ -1050,7 +1050,7 @@ register(GRAMPLET, version="1.0.0", gramps_target_version="3.5", status = STABLE, - fname="Filter.py", + fname="filter.py", height=200, gramplet = 'NoteFilter', gramplet_title=_("Filter"), diff --git a/src/plugins/gramplet/MediaPreview.py b/src/plugins/gramplet/mediapreview.py similarity index 100% rename from src/plugins/gramplet/MediaPreview.py rename to src/plugins/gramplet/mediapreview.py diff --git a/src/plugins/gramplet/MetadataViewer.py b/src/plugins/gramplet/metadataviewer.py similarity index 100% rename from src/plugins/gramplet/MetadataViewer.py rename to src/plugins/gramplet/metadataviewer.py diff --git a/src/plugins/gramplet/Notes.py b/src/plugins/gramplet/notes.py similarity index 100% rename from src/plugins/gramplet/Notes.py rename to src/plugins/gramplet/notes.py diff --git a/src/plugins/gramplet/PedigreeGramplet.py b/src/plugins/gramplet/pedigreegramplet.py similarity index 100% rename from src/plugins/gramplet/PedigreeGramplet.py rename to src/plugins/gramplet/pedigreegramplet.py diff --git a/src/plugins/gramplet/PersonDetails.py b/src/plugins/gramplet/persondetails.py similarity index 100% rename from src/plugins/gramplet/PersonDetails.py rename to src/plugins/gramplet/persondetails.py diff --git a/src/plugins/gramplet/PersonResidence.py b/src/plugins/gramplet/personresidence.py similarity index 100% rename from src/plugins/gramplet/PersonResidence.py rename to src/plugins/gramplet/personresidence.py diff --git a/src/plugins/gramplet/PlaceDetails.py b/src/plugins/gramplet/placedetails.py similarity index 100% rename from src/plugins/gramplet/PlaceDetails.py rename to src/plugins/gramplet/placedetails.py diff --git a/src/plugins/gramplet/PluginManagerGramplet.py b/src/plugins/gramplet/pluginmanagergramplet.py similarity index 100% rename from src/plugins/gramplet/PluginManagerGramplet.py rename to src/plugins/gramplet/pluginmanagergramplet.py diff --git a/src/plugins/gramplet/QuickViewGramplet.py b/src/plugins/gramplet/quickviewgramplet.py similarity index 100% rename from src/plugins/gramplet/QuickViewGramplet.py rename to src/plugins/gramplet/quickviewgramplet.py diff --git a/src/plugins/gramplet/RelativeGramplet.py b/src/plugins/gramplet/relativegramplet.py similarity index 100% rename from src/plugins/gramplet/RelativeGramplet.py rename to src/plugins/gramplet/relativegramplet.py diff --git a/src/plugins/gramplet/RepositoryDetails.py b/src/plugins/gramplet/repositorydetails.py similarity index 100% rename from src/plugins/gramplet/RepositoryDetails.py rename to src/plugins/gramplet/repositorydetails.py diff --git a/src/plugins/gramplet/SessionLogGramplet.py b/src/plugins/gramplet/sessionloggramplet.py similarity index 100% rename from src/plugins/gramplet/SessionLogGramplet.py rename to src/plugins/gramplet/sessionloggramplet.py diff --git a/src/plugins/gramplet/StatsGramplet.py b/src/plugins/gramplet/statsgramplet.py similarity index 100% rename from src/plugins/gramplet/StatsGramplet.py rename to src/plugins/gramplet/statsgramplet.py diff --git a/src/plugins/gramplet/SurnameCloudGramplet.py b/src/plugins/gramplet/surnamecloudgramplet.py similarity index 100% rename from src/plugins/gramplet/SurnameCloudGramplet.py rename to src/plugins/gramplet/surnamecloudgramplet.py diff --git a/src/plugins/gramplet/ToDoGramplet.py b/src/plugins/gramplet/todogramplet.py similarity index 100% rename from src/plugins/gramplet/ToDoGramplet.py rename to src/plugins/gramplet/todogramplet.py diff --git a/src/plugins/gramplet/TopSurnamesGramplet.py b/src/plugins/gramplet/topsurnamesgramplet.py similarity index 100% rename from src/plugins/gramplet/TopSurnamesGramplet.py rename to src/plugins/gramplet/topsurnamesgramplet.py diff --git a/src/plugins/gramplet/WelcomeGramplet.py b/src/plugins/gramplet/welcomegramplet.py similarity index 100% rename from src/plugins/gramplet/WelcomeGramplet.py rename to src/plugins/gramplet/welcomegramplet.py diff --git a/src/plugins/gramplet/WhatsNext.py b/src/plugins/gramplet/whatsnext.py similarity index 100% rename from src/plugins/gramplet/WhatsNext.py rename to src/plugins/gramplet/whatsnext.py diff --git a/src/plugins/graph/graphplugins.gpr.py b/src/plugins/graph/graphplugins.gpr.py index f5ca8a4e7..a7eddfe82 100644 --- a/src/plugins/graph/graphplugins.gpr.py +++ b/src/plugins/graph/graphplugins.gpr.py @@ -33,7 +33,7 @@ plg.description = _("Produces family line graphs using GraphViz.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'GVFamilyLines.py' +plg.fname = 'gvfamilylines.py' plg.ptype = REPORT plg.authors = ["Stephane Charette"] plg.authors_email = ["stephanecharette@gmail.com"] @@ -56,7 +56,7 @@ plg.description = _("Produces an hourglass graph using Graphviz.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'GVHourGlass.py' +plg.fname = 'gvhourglass.py' plg.ptype = REPORT plg.authors = ["Brian G. Matherly"] plg.authors_email = ["brian@gramps-project.org"] @@ -78,7 +78,7 @@ plg.description = _("Produces relationship graphs using Graphviz.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'GVRelGraph.py' +plg.fname = 'gvrelgraph.py' plg.ptype = REPORT plg.authors = ["Brian G. Matherly"] plg.authors_email = ["brian@gramps-project.org"] diff --git a/src/plugins/graph/GVFamilyLines.py b/src/plugins/graph/gvfamilylines.py similarity index 100% rename from src/plugins/graph/GVFamilyLines.py rename to src/plugins/graph/gvfamilylines.py diff --git a/src/plugins/graph/GVHourGlass.py b/src/plugins/graph/gvhourglass.py similarity index 100% rename from src/plugins/graph/GVHourGlass.py rename to src/plugins/graph/gvhourglass.py diff --git a/src/plugins/graph/GVRelGraph.py b/src/plugins/graph/gvrelgraph.py similarity index 100% rename from src/plugins/graph/GVRelGraph.py rename to src/plugins/graph/gvrelgraph.py diff --git a/src/plugins/import/import.gpr.py b/src/plugins/import/import.gpr.py index ef57e3885..6fe31680e 100644 --- a/src/plugins/import/import.gpr.py +++ b/src/plugins/import/import.gpr.py @@ -35,7 +35,7 @@ plg.description = _("Import data from CSV files") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ImportCsv.py' +plg.fname = 'importcsv.py' plg.ptype = IMPORT plg.import_function = 'importData' plg.extension = "csv" @@ -54,7 +54,7 @@ plg.description = _('GEDCOM is used to transfer data between genealogy programs plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ImportGedcom.py' +plg.fname = 'importgedcom.py' plg.ptype = IMPORT plg.import_function = 'importData' plg.extension = "ged" @@ -72,7 +72,7 @@ plg.description = _('Import data from GeneWeb files') plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ImportGeneWeb.py' +plg.fname = 'importgeneweb.py' plg.ptype = IMPORT plg.import_function = 'importData' plg.extension = "gw" @@ -91,7 +91,7 @@ plg.description = _('Import data from a Gramps package (an archived XML ' plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ImportGpkg.py' +plg.fname = 'importgpkg.py' plg.ptype = IMPORT plg.import_function = 'impData' plg.extension = "gpkg" @@ -112,7 +112,7 @@ plg.description = _('The Gramps XML format is a text ' plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ImportXml.py' +plg.fname = 'importxml.py' plg.ptype = IMPORT plg.import_function = 'importData' plg.extension = "gramps" @@ -130,7 +130,7 @@ plg.description = _('Import data from Gramps 2.x database files') plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ImportGrdb.py' +plg.fname = 'importgrdb.py' plg.ptype = IMPORT plg.import_function = 'importData' plg.extension = "grdb" @@ -148,7 +148,7 @@ plg.description = _('Import data from Pro-Gen files') plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ImportProGen.py' +plg.fname = 'importprogen.py' plg.ptype = IMPORT plg.import_function = '_importData' plg.extension = "def" @@ -166,7 +166,7 @@ plg.description = _('Import data from vCard files') plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'ImportVCard.py' +plg.fname = 'importvcard.py' plg.ptype = IMPORT plg.import_function = 'importData' plg.extension = "vcf" diff --git a/src/plugins/import/ImportCsv.py b/src/plugins/import/importcsv.py similarity index 100% rename from src/plugins/import/ImportCsv.py rename to src/plugins/import/importcsv.py diff --git a/src/plugins/import/ImportGedcom.py b/src/plugins/import/importgedcom.py similarity index 100% rename from src/plugins/import/ImportGedcom.py rename to src/plugins/import/importgedcom.py diff --git a/src/plugins/import/ImportGeneWeb.py b/src/plugins/import/importgeneweb.py similarity index 100% rename from src/plugins/import/ImportGeneWeb.py rename to src/plugins/import/importgeneweb.py diff --git a/src/plugins/import/ImportGpkg.py b/src/plugins/import/importgpkg.py similarity index 100% rename from src/plugins/import/ImportGpkg.py rename to src/plugins/import/importgpkg.py diff --git a/src/plugins/import/ImportGrdb.py b/src/plugins/import/importgrdb.py similarity index 100% rename from src/plugins/import/ImportGrdb.py rename to src/plugins/import/importgrdb.py diff --git a/src/plugins/import/ImportProGen.py b/src/plugins/import/importprogen.py similarity index 100% rename from src/plugins/import/ImportProGen.py rename to src/plugins/import/importprogen.py diff --git a/src/plugins/import/ImportVCard.py b/src/plugins/import/importvcard.py similarity index 100% rename from src/plugins/import/ImportVCard.py rename to src/plugins/import/importvcard.py diff --git a/src/plugins/import/ImportXml.py b/src/plugins/import/importxml.py similarity index 100% rename from src/plugins/import/ImportXml.py rename to src/plugins/import/importxml.py diff --git a/src/plugins/quickview/AgeOnDate.py b/src/plugins/quickview/ageondate.py similarity index 100% rename from src/plugins/quickview/AgeOnDate.py rename to src/plugins/quickview/ageondate.py diff --git a/src/plugins/quickview/AttributeMatch.py b/src/plugins/quickview/attributematch.py similarity index 100% rename from src/plugins/quickview/AttributeMatch.py rename to src/plugins/quickview/attributematch.py diff --git a/src/plugins/quickview/FilterByName.py b/src/plugins/quickview/filterbyname.py similarity index 100% rename from src/plugins/quickview/FilterByName.py rename to src/plugins/quickview/filterbyname.py diff --git a/src/plugins/quickview/LinkReferences.py b/src/plugins/quickview/linkreferences.py similarity index 100% rename from src/plugins/quickview/LinkReferences.py rename to src/plugins/quickview/linkreferences.py diff --git a/src/plugins/quickview/OnThisDay.py b/src/plugins/quickview/onthisday.py similarity index 100% rename from src/plugins/quickview/OnThisDay.py rename to src/plugins/quickview/onthisday.py diff --git a/src/plugins/quickview/quickview.gpr.py b/src/plugins/quickview/quickview.gpr.py index f788853fd..3b46e4582 100644 --- a/src/plugins/quickview/quickview.gpr.py +++ b/src/plugins/quickview/quickview.gpr.py @@ -34,7 +34,7 @@ description = _("Display people and ages on a particular date"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'AgeOnDate.py', +fname = 'ageondate.py', authors = ["Douglas Blank"], authors_email = ["dblank@cs.brynmawr.edu"], category = CATEGORY_QR_DATE, @@ -54,7 +54,7 @@ description = _("Display people with same attribute."), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'AttributeMatch.py', +fname = 'attributematch.py', authors = ["Douglas Blank"], authors_email = ["dblank@cs.brynmawr.edu"], category = CATEGORY_QR_MISC, @@ -129,7 +129,7 @@ description = _("Display filtered data"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'FilterByName.py', +fname = 'filterbyname.py', authors = ["Douglas Blank"], authors_email = ["dblank@cs.brynmawr.edu"], category = CATEGORY_QR_MISC, @@ -183,7 +183,7 @@ description = _("Display events on a particular day"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'OnThisDay.py', +fname = 'onthisday.py', authors = ["Douglas Blank"], authors_email = ["dblank@cs.brynmawr.edu"], category = CATEGORY_QR_EVENT, @@ -216,7 +216,7 @@ for (category, item, trans) in refitems: version = '1.0', gramps_target_version = '3.5', status = STABLE, - fname = 'References.py', + fname = 'references.py', authors = ["Douglas Blank"], authors_email = ["dblank@cs.brynmawr.edu"], category = category, @@ -230,7 +230,7 @@ register(QUICKREPORT, version = '1.0', gramps_target_version = '3.5', status = STABLE, - fname = 'LinkReferences.py', + fname = 'linkreferences.py', authors = ["Douglas Blank"], authors_email = ["doug.blank@gmail.com"], category = CATEGORY_QR_NOTE, @@ -251,7 +251,7 @@ description = _("Display the repository reference for sources related to" version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'Reporef.py', +fname = 'reporef.py', authors = ["Jerome Rapinat"], authors_email = ["romjerome@yahoo.fr"], category = CATEGORY_QR_REPOSITORY, @@ -271,7 +271,7 @@ description = _("Display people with the same surname as a person."), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'SameSurnames.py', +fname = 'samesurnames.py', authors = ["Douglas Blank"], authors_email = ["dblank@cs.brynmawr.edu"], category = CATEGORY_QR_PERSON, @@ -285,7 +285,7 @@ description = _("Display people with the same given name as a person."), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'SameSurnames.py', +fname = 'samesurnames.py', authors = ["Douglas Blank"], authors_email = ["dblank@cs.brynmawr.edu"], category = CATEGORY_QR_PERSON, @@ -299,7 +299,7 @@ description = _("Display people with the same given name as a person."), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'SameSurnames.py', +fname = 'samesurnames.py', authors = ["Douglas Blank"], authors_email = ["dblank@cs.brynmawr.edu"], category = CATEGORY_QR_MISC, diff --git a/src/plugins/quickview/References.py b/src/plugins/quickview/references.py similarity index 100% rename from src/plugins/quickview/References.py rename to src/plugins/quickview/references.py diff --git a/src/plugins/quickview/Reporef.py b/src/plugins/quickview/reporef.py similarity index 100% rename from src/plugins/quickview/Reporef.py rename to src/plugins/quickview/reporef.py diff --git a/src/plugins/quickview/SameSurnames.py b/src/plugins/quickview/samesurnames.py similarity index 100% rename from src/plugins/quickview/SameSurnames.py rename to src/plugins/quickview/samesurnames.py diff --git a/src/plugins/records.gpr.py b/src/plugins/records.gpr.py index bf4387a4a..750102b8b 100644 --- a/src/plugins/records.gpr.py +++ b/src/plugins/records.gpr.py @@ -34,7 +34,7 @@ description = _("Shows some interesting records about people and families"), version = '1.1', gramps_target_version = '3.5', status = STABLE, -fname = 'Records.py', +fname = 'records.py', authors = [u"Reinhard Müller"], authors_email = ["reinhard.mueller@bytewise.at"], category = CATEGORY_TEXT, @@ -50,7 +50,7 @@ description = _("Shows some interesting records about people and families"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'Records.py', +fname = 'records.py', authors = [u"Reinhard Müller"], authors_email = ["reinhard.mueller@bytewise.at"], gramplet = 'RecordsGramplet', diff --git a/src/plugins/Records.py b/src/plugins/records.py similarity index 100% rename from src/plugins/Records.py rename to src/plugins/records.py diff --git a/src/plugins/textreport/AlphabeticalIndex.py b/src/plugins/textreport/alphabeticalindex.py similarity index 100% rename from src/plugins/textreport/AlphabeticalIndex.py rename to src/plugins/textreport/alphabeticalindex.py diff --git a/src/plugins/textreport/AncestorReport.py b/src/plugins/textreport/ancestorreport.py similarity index 100% rename from src/plugins/textreport/AncestorReport.py rename to src/plugins/textreport/ancestorreport.py diff --git a/src/plugins/textreport/BirthdayReport.py b/src/plugins/textreport/birthdayreport.py similarity index 100% rename from src/plugins/textreport/BirthdayReport.py rename to src/plugins/textreport/birthdayreport.py diff --git a/src/plugins/textreport/CustomBookText.py b/src/plugins/textreport/custombooktext.py similarity index 100% rename from src/plugins/textreport/CustomBookText.py rename to src/plugins/textreport/custombooktext.py diff --git a/src/plugins/textreport/DescendReport.py b/src/plugins/textreport/descendreport.py similarity index 100% rename from src/plugins/textreport/DescendReport.py rename to src/plugins/textreport/descendreport.py diff --git a/src/plugins/textreport/DetAncestralReport.py b/src/plugins/textreport/detancestralreport.py similarity index 100% rename from src/plugins/textreport/DetAncestralReport.py rename to src/plugins/textreport/detancestralreport.py diff --git a/src/plugins/textreport/DetDescendantReport.py b/src/plugins/textreport/detdescendantreport.py similarity index 100% rename from src/plugins/textreport/DetDescendantReport.py rename to src/plugins/textreport/detdescendantreport.py diff --git a/src/plugins/textreport/EndOfLineReport.py b/src/plugins/textreport/endoflinereport.py similarity index 100% rename from src/plugins/textreport/EndOfLineReport.py rename to src/plugins/textreport/endoflinereport.py diff --git a/src/plugins/textreport/FamilyGroup.py b/src/plugins/textreport/familygroup.py similarity index 100% rename from src/plugins/textreport/FamilyGroup.py rename to src/plugins/textreport/familygroup.py diff --git a/src/plugins/textreport/IndivComplete.py b/src/plugins/textreport/indivcomplete.py similarity index 100% rename from src/plugins/textreport/IndivComplete.py rename to src/plugins/textreport/indivcomplete.py diff --git a/src/plugins/textreport/KinshipReport.py b/src/plugins/textreport/kinshipreport.py similarity index 100% rename from src/plugins/textreport/KinshipReport.py rename to src/plugins/textreport/kinshipreport.py diff --git a/src/plugins/textreport/NumberOfAncestorsReport.py b/src/plugins/textreport/numberofancestorsreport.py similarity index 100% rename from src/plugins/textreport/NumberOfAncestorsReport.py rename to src/plugins/textreport/numberofancestorsreport.py diff --git a/src/plugins/textreport/PlaceReport.py b/src/plugins/textreport/placereport.py similarity index 100% rename from src/plugins/textreport/PlaceReport.py rename to src/plugins/textreport/placereport.py diff --git a/src/plugins/textreport/SimpleBookTitle.py b/src/plugins/textreport/simplebooktitle.py similarity index 100% rename from src/plugins/textreport/SimpleBookTitle.py rename to src/plugins/textreport/simplebooktitle.py diff --git a/src/plugins/textreport/Summary.py b/src/plugins/textreport/summary.py similarity index 100% rename from src/plugins/textreport/Summary.py rename to src/plugins/textreport/summary.py diff --git a/src/plugins/textreport/TableOfContents.py b/src/plugins/textreport/tableofcontents.py similarity index 100% rename from src/plugins/textreport/TableOfContents.py rename to src/plugins/textreport/tableofcontents.py diff --git a/src/plugins/textreport/TagReport.py b/src/plugins/textreport/tagreport.py similarity index 100% rename from src/plugins/textreport/TagReport.py rename to src/plugins/textreport/tagreport.py diff --git a/src/plugins/textreport/textplugins.gpr.py b/src/plugins/textreport/textplugins.gpr.py index e1b72d722..40537cee8 100644 --- a/src/plugins/textreport/textplugins.gpr.py +++ b/src/plugins/textreport/textplugins.gpr.py @@ -33,7 +33,7 @@ plg.description = _("Produces a textual ancestral report") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'AncestorReport.py' +plg.fname = 'ancestorreport.py' plg.ptype = REPORT plg.authors = ["Donald N. Allingham"] plg.authors_email = ["don@gramps-project.org"] @@ -55,7 +55,7 @@ plg.description = _("Produces a report of birthdays and anniversaries") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'BirthdayReport.py' +plg.fname = 'birthdayreport.py' plg.ptype = REPORT plg.authors = ["Douglas S. Blank"] plg.authors_email = ["dblank@cs.brynmawr.edu"] @@ -77,7 +77,7 @@ plg.description = _("Add custom text to the book report") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'CustomBookText.py' +plg.fname = 'custombooktext.py' plg.ptype = REPORT plg.authors = ["The Gramps Project"] plg.authors_email = [""] @@ -99,7 +99,7 @@ plg.description = _("Produces a list of descendants of the active person") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'DescendReport.py' +plg.fname = 'descendreport.py' plg.ptype = REPORT plg.authors = ["Donald N. Allingham"] plg.authors_email = ["don@gramps-project.org"] @@ -121,7 +121,7 @@ plg.description = _("Produces a detailed ancestral report") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'DetAncestralReport.py' +plg.fname = 'detancestralreport.py' plg.ptype = REPORT plg.authors = ["Bruce DeGrasse"] plg.authors_email = ["bdegrasse1@attbi.com"] @@ -143,7 +143,7 @@ plg.description = _("Produces a detailed descendant report") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'DetDescendantReport.py' +plg.fname = 'detdescendantreport.py' plg.ptype = REPORT plg.authors = ["Bruce DeGrasse"] plg.authors_email = ["bdegrasse1@attbi.com"] @@ -165,7 +165,7 @@ plg.description = _("Produces a textual end of line report") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'EndOfLineReport.py' +plg.fname = 'endoflinereport.py' plg.ptype = REPORT plg.authors = ["Brian G. Matherly"] plg.authors_email = ["brian@gramps-project.org"] @@ -188,7 +188,7 @@ plg.description = _("Produces a family group report showing information " plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'FamilyGroup.py' +plg.fname = 'familygroup.py' plg.ptype = REPORT plg.authors = ["Donald N. Allingham"] plg.authors_email = ["don@gramps-project.org"] @@ -210,7 +210,7 @@ plg.description = _("Produces a complete report on the selected people") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'IndivComplete.py' +plg.fname = 'indivcomplete.py' plg.ptype = REPORT plg.authors = ["Donald N. Allingham"] plg.authors_email = ["don@gramps-project.org"] @@ -232,7 +232,7 @@ plg.description = _("Produces a textual report of kinship for a given person") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'KinshipReport.py' +plg.fname = 'kinshipreport.py' plg.ptype = REPORT plg.authors = ["Brian G. Matherly"] plg.authors_email = ["brian@gramps-project.org"] @@ -254,7 +254,7 @@ plg.description = _("Produces a list of people with a specified tag") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'TagReport.py' +plg.fname = 'tagreport.py' plg.ptype = REPORT plg.authors = ["Brian G. Matherly"] plg.authors_email = ["brian@gramps-project.org"] @@ -277,7 +277,7 @@ plg.description = _("Counts number of ancestors of selected person") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'NumberOfAncestorsReport.py' +plg.fname = 'numberofancestorsreport.py' plg.ptype = REPORT plg.authors = ["Brian G. Matherly"] plg.authors_email = ["brian@gramps-project.org"] @@ -299,7 +299,7 @@ plg.description = _("Produces a textual place report") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'PlaceReport.py' +plg.fname = 'placereport.py' plg.ptype = REPORT plg.authors = ["Gary Burton"] plg.authors_email = ["gary.burton@zen.co.uk"] @@ -322,7 +322,7 @@ plg.description = _("Produces a title page for book reports.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'SimpleBookTitle.py' +plg.fname = 'simplebooktitle.py' plg.ptype = REPORT plg.authors = ["Brian G. Matherly"] plg.authors_email = ["brian@gramps-project.org"] @@ -344,7 +344,7 @@ plg.description = _("Provides a summary of the current database") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'Summary.py' +plg.fname = 'summary.py' plg.ptype = REPORT plg.authors = ["Brian G. Matherly"] plg.authors_email = ["brian@gramps-project.org"] @@ -367,7 +367,7 @@ plg.description = _("Produces a table of contents for book reports.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'TableOfContents.py' +plg.fname = 'tableofcontents.py' plg.ptype = REPORT plg.authors = ["Nick Hall"] plg.authors_email = ["nick__hall@hotmail.com"] @@ -389,7 +389,7 @@ plg.description = _("Produces an alphabetical index for book reports.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'AlphabeticalIndex.py' +plg.fname = 'alphabeticalindex.py' plg.ptype = REPORT plg.authors = ["Nick Hall"] plg.authors_email = ["nick__hall@hotmail.com"] diff --git a/src/plugins/tool/ChangeNames.py b/src/plugins/tool/changenames.py similarity index 100% rename from src/plugins/tool/ChangeNames.py rename to src/plugins/tool/changenames.py diff --git a/src/plugins/tool/ChangeTypes.py b/src/plugins/tool/changetypes.py similarity index 100% rename from src/plugins/tool/ChangeTypes.py rename to src/plugins/tool/changetypes.py diff --git a/src/plugins/tool/Check.py b/src/plugins/tool/check.py similarity index 100% rename from src/plugins/tool/Check.py rename to src/plugins/tool/check.py diff --git a/src/plugins/tool/DateParserDisplayTest.py b/src/plugins/tool/dateparserdisplaytest.py similarity index 100% rename from src/plugins/tool/DateParserDisplayTest.py rename to src/plugins/tool/dateparserdisplaytest.py diff --git a/src/plugins/tool/Desbrowser.py b/src/plugins/tool/desbrowser.py similarity index 100% rename from src/plugins/tool/Desbrowser.py rename to src/plugins/tool/desbrowser.py diff --git a/src/plugins/tool/DumpGenderStats.py b/src/plugins/tool/dumpgenderstats.py similarity index 100% rename from src/plugins/tool/DumpGenderStats.py rename to src/plugins/tool/dumpgenderstats.py diff --git a/src/plugins/tool/Eval.py b/src/plugins/tool/eval.py similarity index 100% rename from src/plugins/tool/Eval.py rename to src/plugins/tool/eval.py diff --git a/src/plugins/tool/EventCmp.py b/src/plugins/tool/eventcmp.py similarity index 100% rename from src/plugins/tool/EventCmp.py rename to src/plugins/tool/eventcmp.py diff --git a/src/plugins/tool/EventNames.py b/src/plugins/tool/eventnames.py similarity index 100% rename from src/plugins/tool/EventNames.py rename to src/plugins/tool/eventnames.py diff --git a/src/plugins/tool/ExtractCity.py b/src/plugins/tool/extractcity.py similarity index 100% rename from src/plugins/tool/ExtractCity.py rename to src/plugins/tool/extractcity.py diff --git a/src/plugins/tool/FindDupes.py b/src/plugins/tool/finddupes.py similarity index 100% rename from src/plugins/tool/FindDupes.py rename to src/plugins/tool/finddupes.py diff --git a/src/plugins/tool/Leak.py b/src/plugins/tool/leak.py similarity index 100% rename from src/plugins/tool/Leak.py rename to src/plugins/tool/leak.py diff --git a/src/plugins/tool/MediaManager.py b/src/plugins/tool/mediamanager.py similarity index 100% rename from src/plugins/tool/MediaManager.py rename to src/plugins/tool/mediamanager.py diff --git a/src/plugins/tool/MergeCitations.py b/src/plugins/tool/mergecitations.py similarity index 100% rename from src/plugins/tool/MergeCitations.py rename to src/plugins/tool/mergecitations.py diff --git a/src/plugins/tool/NotRelated.py b/src/plugins/tool/notrelated.py similarity index 100% rename from src/plugins/tool/NotRelated.py rename to src/plugins/tool/notrelated.py diff --git a/src/plugins/tool/OwnerEditor.py b/src/plugins/tool/ownereditor.py similarity index 100% rename from src/plugins/tool/OwnerEditor.py rename to src/plugins/tool/ownereditor.py diff --git a/src/plugins/tool/PatchNames.py b/src/plugins/tool/patchnames.py similarity index 100% rename from src/plugins/tool/PatchNames.py rename to src/plugins/tool/patchnames.py diff --git a/src/plugins/tool/PHPGedViewConnector.py b/src/plugins/tool/phpgedviewconnector.py similarity index 100% rename from src/plugins/tool/PHPGedViewConnector.py rename to src/plugins/tool/phpgedviewconnector.py diff --git a/src/plugins/tool/PopulateSources.py b/src/plugins/tool/populatesources.py similarity index 100% rename from src/plugins/tool/PopulateSources.py rename to src/plugins/tool/populatesources.py diff --git a/src/plugins/tool/Rebuild.py b/src/plugins/tool/rebuild.py similarity index 100% rename from src/plugins/tool/Rebuild.py rename to src/plugins/tool/rebuild.py diff --git a/src/plugins/tool/RebuildRefMap.py b/src/plugins/tool/rebuildrefmap.py similarity index 100% rename from src/plugins/tool/RebuildRefMap.py rename to src/plugins/tool/rebuildrefmap.py diff --git a/src/plugins/tool/RelCalc.py b/src/plugins/tool/relcalc.py similarity index 100% rename from src/plugins/tool/RelCalc.py rename to src/plugins/tool/relcalc.py diff --git a/src/plugins/tool/RemoveUnused.py b/src/plugins/tool/removeunused.py similarity index 100% rename from src/plugins/tool/RemoveUnused.py rename to src/plugins/tool/removeunused.py diff --git a/src/plugins/tool/ReorderIds.py b/src/plugins/tool/reorderids.py similarity index 100% rename from src/plugins/tool/ReorderIds.py rename to src/plugins/tool/reorderids.py diff --git a/src/plugins/tool/SortEvents.py b/src/plugins/tool/sortevents.py similarity index 100% rename from src/plugins/tool/SortEvents.py rename to src/plugins/tool/sortevents.py diff --git a/src/plugins/tool/SoundGen.py b/src/plugins/tool/soundgen.py similarity index 100% rename from src/plugins/tool/SoundGen.py rename to src/plugins/tool/soundgen.py diff --git a/src/plugins/tool/TestcaseGenerator.py b/src/plugins/tool/testcasegenerator.py similarity index 100% rename from src/plugins/tool/TestcaseGenerator.py rename to src/plugins/tool/testcasegenerator.py diff --git a/src/plugins/tool/tools.gpr.py b/src/plugins/tool/tools.gpr.py index 239af8125..66b216348 100644 --- a/src/plugins/tool/tools.gpr.py +++ b/src/plugins/tool/tools.gpr.py @@ -38,7 +38,7 @@ description = _("Searches the entire database and attempts to " version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'ChangeNames.py', +fname = 'changenames.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DBPROC, @@ -61,7 +61,7 @@ description = _("Allows all the events of a certain name " version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'ChangeTypes.py', +fname = 'changetypes.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DBPROC, @@ -84,7 +84,7 @@ description = _("Checks the database for integrity problems, fixing the " version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'Check.py', +fname = 'check.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DBFIX, @@ -106,7 +106,7 @@ description = _("Provides a browsable hierarchy based on the active person"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'Desbrowser.py', +fname = 'desbrowser.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_ANAL, @@ -129,7 +129,7 @@ description = "Provides a window that can evaluate python code", version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'Eval.py', +fname = 'eval.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DEBUG, @@ -153,7 +153,7 @@ description = _("Aids in the analysis of data by allowing the " version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'EventCmp.py', +fname = 'eventcmp.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_ANAL, @@ -175,7 +175,7 @@ description = _("Extracts event descriptions from the event data"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'EventNames.py', +fname = 'eventnames.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DBPROC, @@ -198,7 +198,7 @@ description = _("Attempts to extract city and state/province " version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'ExtractCity.py', +fname = 'extractcity.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DBPROC, @@ -221,7 +221,7 @@ description = _("Searches the entire database, looking for " version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'FindDupes.py', +fname = 'finddupes.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DBPROC, @@ -243,7 +243,7 @@ description = "Provide a window listing all uncollected objects", version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'Leak.py', +fname = 'leak.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DEBUG, @@ -265,7 +265,7 @@ description = _("Manages batch operations on media files"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'MediaManager.py', +fname = 'mediamanager.py', authors = ["Alex Roitman"], authors_email = ["shura@gramps-project.org"], category = TOOL_UTILS, @@ -288,7 +288,7 @@ description = _("Find people who are not in any way related to the " version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'NotRelated.py', +fname = 'notrelated.py', authors = ["Stephane Charette"], authors_email = ["stephanecharette@gmail.com"], category = TOOL_UTILS, @@ -310,7 +310,7 @@ description = _("Allow editing database owner information."), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'OwnerEditor.py', +fname = 'ownereditor.py', authors = ["Zsolt Foldvari"], authors_email = ["zfoldvar@users.sourceforge.net"], category = TOOL_DBPROC, @@ -332,7 +332,7 @@ description = _("Extract titles, prefixes and compound surnames from given name version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'PatchNames.py', +fname = 'patchnames.py', authors = ["Donald N. Allingham", "Benny Malengier"], authors_email = ["don@gramps-project.org"], category = TOOL_DBPROC, @@ -354,7 +354,7 @@ description = _("Rebuilds secondary indexes"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'Rebuild.py', +fname = 'rebuild.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DBFIX, @@ -376,7 +376,7 @@ description = _("Rebuilds reference maps"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'RebuildRefMap.py', +fname = 'rebuildrefmap.py', authors = ["Alex Roitman"], authors_email = ["shura@gramps-project.org"], category = TOOL_DBFIX, @@ -398,7 +398,7 @@ description = _("Calculates the relationship between two people"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'RelCalc.py', +fname = 'relcalc.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_UTILS, @@ -420,7 +420,7 @@ description = _("Removes unused objects from the database"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'RemoveUnused.py', +fname = 'removeunused.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DBFIX, @@ -443,7 +443,7 @@ description = _("Reorders the Gramps IDs " version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'ReorderIds.py', +fname = 'reorderids.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_DBPROC, @@ -465,7 +465,7 @@ description = _("Sorts events"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'SortEvents.py', +fname = 'sortevents.py', authors = ["Gary Burton"], authors_email = ["gary.burton@zen.co.uk"], category = TOOL_DBPROC, @@ -487,7 +487,7 @@ description = _("Generates SoundEx codes for names"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'SoundGen.py', +fname = 'soundgen.py', authors = ["Donald N. Allingham"], authors_email = ["don@gramps-project.org"], category = TOOL_UTILS, @@ -509,7 +509,7 @@ description = _("Verifies the data against user-defined tests"), version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'Verify.py', +fname = 'verify.py', authors = ["Alex Roitman"], authors_email = ["shura@gramps-project.org"], category = TOOL_UTILS, @@ -532,7 +532,7 @@ description = _("Searches the entire database, looking for " version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'MergeCitations.py', +fname = 'mergecitations.py', authors = ["Tim G L Lyons"], authors_email = ["gramps-project.org"], category = TOOL_DBPROC, diff --git a/src/plugins/tool/toolsdebug.gpr.py b/src/plugins/tool/toolsdebug.gpr.py index 4ccdc6422..843be90f4 100644 --- a/src/plugins/tool/toolsdebug.gpr.py +++ b/src/plugins/tool/toolsdebug.gpr.py @@ -41,7 +41,7 @@ description = ("This test tool will create many people showing all" version = '1.0', gramps_target_version = '3.5', status = UNSTABLE, -fname = 'DateParserDisplayTest.py', +fname = 'dateparserdisplaytest.py', authors = ["Martin Hawlisch"], authors_email = ["martin@hawlisch.de"], category = TOOL_DEBUG, @@ -64,7 +64,7 @@ description = ("Will dump the statistics for the gender guessing " version = '1.0', gramps_target_version = '3.5', status = STABLE, -fname = 'DumpGenderStats.py', +fname = 'dumpgenderstats.py', authors = ["Donald N. Allingham", "Martin Hawlisch"], authors_email = ["don@gramps-project.org", "martin@hawlisch.de"], category = TOOL_DEBUG, @@ -88,7 +88,7 @@ description = ("The testcase generator will generate some persons " version = '1.0', gramps_target_version = '3.5', status = UNSTABLE, -fname = 'TestcaseGenerator.py', +fname = 'testcasegenerator.py', authors = ["Martin Hawlisch"], authors_email = ["martin@hawlisch.de"], category = TOOL_DEBUG, @@ -112,7 +112,7 @@ description = ("This tool generates sources and citations ofr each source in " version = '1.0', gramps_target_version = '3.5', status = UNSTABLE, -fname = 'PopulateSources.py', +fname = 'populatesources.py', authors = ["Tim Lyons"], authors_email = [""], category = TOOL_DEBUG, diff --git a/src/plugins/tool/Verify.py b/src/plugins/tool/verify.py similarity index 100% rename from src/plugins/tool/Verify.py rename to src/plugins/tool/verify.py diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/narrativeweb.py similarity index 100% rename from src/plugins/webreport/NarrativeWeb.py rename to src/plugins/webreport/narrativeweb.py diff --git a/src/plugins/webreport/WebCal.py b/src/plugins/webreport/webcal.py similarity index 100% rename from src/plugins/webreport/WebCal.py rename to src/plugins/webreport/webcal.py diff --git a/src/plugins/webreport/webplugins.gpr.py b/src/plugins/webreport/webplugins.gpr.py index 91174220b..2b7ca1ee5 100644 --- a/src/plugins/webreport/webplugins.gpr.py +++ b/src/plugins/webreport/webplugins.gpr.py @@ -34,7 +34,7 @@ plg.description = _("Produces web (HTML) pages for individuals, or a set of " plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'NarrativeWeb.py' +plg.fname = 'narrativeweb.py' plg.ptype = REPORT plg.authors = ["Donald N. Allingham", "Rob G. Healey"] plg.authors_email = ["don@gramps-project.org", "robhealey1@gmail.com"] @@ -57,7 +57,7 @@ plg.description = _("Produces web (HTML) calendars.") plg.version = '1.0' plg.gramps_target_version = '3.5' plg.status = STABLE -plg.fname = 'WebCal.py' +plg.fname = 'webcal.py' plg.ptype = REPORT plg.authors = ["Thom Sturgill", "Rob G. Healey"] plg.authors_email = ["thsturgill@yahoo.com", "robhealey1@gmail.com"]