All public logs

From MaRDI portal

Combined display of all available logs of MaRDI portal. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)
  • 14:53, 14 December 2023 Tconrad talk contribs created page PersonList (Created page with "{{PersonList|offset=0|limit=10}}")
  • 22:56, 13 December 2023 Tconrad talk contribs created page Template:PersonList (Created page with "{{#invoke:Module:PersonList|buildTableFromSparql |offset={{{offset|0}}} |limit={{{limit|10}}} }}")
  • 22:50, 13 December 2023 Tconrad talk contribs created page Module:PersonList (Created page with "-- Required module containing helper methods local helper = require('Module:HelperMethods') -- Required modules for SPARQL queries and HTML table generation local sparql = require('SPARQL') local mwHtml = require('mw.html') -- Main table to hold all functions local p = {} -- Function to build a HTML table from SPARQL query results function p.buildTableFromSparql(frame) -- Retrieve target1 from frame arguments or return error message if not set local target = fr...")
  • 11:37, 13 December 2023 Tconrad talk contribs created page Module:PersonDoctoralStudents (Created page with "-- Required module containing helper methods local helper = require('Module:HelperMethods') -- Required modules for SPARQL queries and HTML table generation local sparql = require('SPARQL') local mwHtml = require('mw.html') -- Main table to hold all functions local p = {} -- Function to build a HTML table from SPARQL query results function p.buildTableFromSparql(frame) -- Retrieve target1 from frame arguments or return error message if not set local target = fr...")
  • 10:23, 13 December 2023 Tconrad talk contribs created page Module:HelperMethods (Created page with "-- Required modules for SPARQL queries and HTML table generation local sparql = require('SPARQL') local mwHtml = require('mw.html') -- Utility function to trim and lowercase a string function trimAndLower(str) if str == nil then return nil end str = str:gsub("^%s*(.-)%s*$", "%1") return str:lower() end -- Function to convert JSON results into a Lua table function convertJsonToTable(jsonResults) local resultsTable = {} if jsonResults and jsonResults.results a...")
  • 23:01, 12 December 2023 Tconrad talk contribs created page Template:TestTimChart1 (Created page with "{{:MediaWiki:ChartLoader.js}} {{#invoke:TestTimChart1|renderChart|height=400px}}")
  • 22:59, 12 December 2023 Tconrad talk contribs created page Module:TestTimChart1 (Created page with "local p = {} function p.renderChart(frame) local height = frame.args.height or '500px' -- Default height is 500px if not specified -- Enhanced and more visually interesting chart data local chartData = { type = 'bar', data = { labels = {'January', 'February', 'March', 'April', 'May', 'June'}, datasets = { { label = 'Dataset 1', backgroundColor = '#ff6384',...")
  • 22:57, 12 December 2023 Tconrad talk contribs created page MediaWiki:ChartLoader.js (Created page with "document.addEventListener('DOMContentLoaded', function() { var chartContainers = document.querySelectorAll('.wikiChartContainer'); if (chartContainers.length > 0) { var script = document.createElement('script'); script.src = 'https://cdn.jsdelivr.net/npm/chart.js'; script.onload = function() { chartContainers.forEach(function(container) { var chartData = JSON.parse(container.getAttribute('data-chartdata'));...")
  • 11:31, 8 December 2023 Tconrad talk contribs created page Module:PersonOtherPropertiesScholiaStyle/doc (Created page with " '''This module is not used at the moment.''' This is getting the properties (actually relations) from the local (MaRDI) knowledge graph, similar to the style that Scholia is using. I left it for comparison reasons.")
  • 11:28, 8 December 2023 Tconrad talk contribs deleted page Module:PersonOtherProperties2 (Deprecated way of retrieving properties)
  • 11:26, 8 December 2023 Tconrad talk contribs created page Module:PersonOtherRelations/doc (Created page with "== Overview == This Lua module queries the local SPARQL endpoints to show all known relations and their values (e.g. is doctoral student of) and not a value (e.g birthdate). The module operates by executing the SPARQL query against a specified Wikidata entity. The query is constructed to retrieve a set of properties (?property), their labels (?propertyLabel), and their corresponding values (?value) for the target entity. In cases where a value is another Wikidata entity...")
  • 11:17, 8 December 2023 Tconrad talk contribs created page Module:PersonOtherRelations (Created page with "-- Required modules for SPARQL queries and HTML table generation local sparql = require('SPARQL') local mwHtml = require('mw.html') -- Main table to hold all functions local p = {} -- Function to build a HTML table from SPARQL query results function p.buildTableFromSparql(frame) -- Retrieve target1 from frame arguments or return error message if not set local target = frame.args[1] if not target or target == '' then return "No records found" end...")
  • 11:02, 8 December 2023 Tconrad talk contribs created page Module:PersonOtherPropertiesScholiaStyle (Created page with "-- Required modules for SPARQL queries and HTML table generation local sparql = require('SPARQL') local mwHtml = require('mw.html') -- Main table to hold all functions local p = {} -- Function to build a HTML table from SPARQL query results function p.buildTableFromSparql(frame) -- Retrieve target1 from frame arguments or return error message if not set local target = frame.args[1] if not target or target == '' then return "No records found" end...")
  • 10:28, 8 December 2023 Tconrad talk contribs created page Module:PersonOtherProperties2 (Created page with "-- Required modules for SPARQL queries and HTML table generation local sparql = require('SPARQL') local mwHtml = require('mw.html') -- Main table to hold all functions local p = {} -- Function to build a HTML table from SPARQL query results function p.buildTableFromSparql(frame) -- Retrieve target1 from frame arguments or return error message if not set local target = frame.args[1] if not target or target == '' then return "No records found" end...")
  • 00:11, 8 December 2023 Tconrad talk contribs created page Module:PersonOtherProperties/doc (Created page with "== Overview == This Lua module is designed to query SPARQL endpoints and display the results in an HTML table on a MediaWiki page. It is specifically tailored for handling and presenting data from a given Wikidata entity. The module processes SPARQL query results, formats them, and renders an HTML table suitable for embedding in wiki pages. == Dependencies == '''SPARQL Module''': Used for executing SPARQL queries. '''mw.html Module''': Utilized for constructing HTML co...")
  • 21:53, 7 December 2023 Tconrad talk contribs created page Module:PersonOtherProperties (Created page with "-- Required modules for SPARQL queries and HTML table generation local sparql = require('SPARQL') local mwHtml = require('mw.html') -- Main table to hold all functions local p = {} -- Function to build a HTML table from SPARQL query results function p.buildTableFromSparql(frame) -- Retrieve target1 from frame arguments or return error message if not set local target1 = frame.args[1] if not target1 or target1 == '' then return "No records found" e...")
  • 12:53, 6 December 2023 Tconrad talk contribs created page Module:PersonPaperList/doc (Created page with " == Overview == This Lua module is designed for use in a MediaWiki environment. It provides functionality to execute a SPARQL query and present its results in an HTML table format. The module is particularly tailored for generating tables from SPARQL query results, relevant to specific entities identified by a dynamic parameter. == Dependencies == * '''SPARQL Module''': Used to execute SPARQL queries. * '''mw.html Module''': Utilized for generating HTML content, specifi...")
  • 12:25, 6 December 2023 Tconrad talk contribs created page Module:PersonPaperList (Created page with "-- This example builds a HTML table with the results of a SPARQL query. -- By default one column is used per SPARQL variable. -- If the second parameter is set to "true", the first two columns are combined into one column. local sparql = require('SPARQL') local mwHtml = require('mw.html') local p = {} function p.buildTableFromSparql(frame) -- mw.log("Calling buildTableFromSparql") local target1 = frame.args[1] or 'Q161115' -- Default value if not provided...")
  • 13:25, 5 December 2023 Tconrad talk contribs created page Template:TestTim1 (Created page with "<includeonly> {{#invoke:YourModuleName|buildTableFromSparql |1={{{1|Q20895785}}} |2={{{2|Q70357595}}} |3={{{combine|false}}} }} </includeonly>")
  • 13:23, 5 December 2023 Tconrad talk contribs created page Module:TestTim1 (Created page with "-- This example builds a HTML table with the results of a SPARQL query. -- By default one column is used per SPARQL variable. -- If the second parameter is set to "true", the first two columns are combined into one column. local sparql = require('SPARQL') local mwHtml = require('mw.html') local p = {} function p.buildTableFromSparql(frame) local target1 = frame.args[1] or 'Q20895785' -- Default value if not provided local target2 = frame.args[2] or 'Q70357595...")
  • 11:18, 27 April 2023 Tconrad talk contribs created page Overview Task Areas (Initial creation) Tag: Visual edit
  • 10:34, 27 April 2023 Tconrad talk contribs created page Task Areas Overview (Initial creation) Tag: Visual edit
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)