Recent changes
Track the most recent changes to the wiki on this page.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
- Temporarily watched page
11 September 2024
|
N 20:37 | Templated SVG test 2 changes history +221 [172.16.5.238 (2×)] | |||
|
20:37 (cur | prev) +110 172.16.5.238 talk | ||||
N |
|
20:33 (cur | prev) +111 172.16.5.238 talk (Created page with "<code><nowiki>{{#invoke:Circle svg|main|color=green}}</nowiki></code>: {{#invoke:Circle svg|main|color=green}}") |
N 20:31 | Module:Circle svg diffhist +509 172.16.5.238 talk (Created page with "local p = {} local SVGW = require("Module:SVGWriter") local Arguments = require("Module:Arguments") p.main = function(args) args = Arguments.getArgs(args) -- Create a new SVG document -- width -- | height local doc = SVGW.Document:new(100, 100) -- Creates a circle and adds it to the document. doc:addCircle( 50, -- cx 50, -- cy 45, -- r { fill = args.color } ) return mw.getCurrentFrame():preproce...") |
N 20:30 | Module:Arguments diffhist +10,054 172.16.5.238 talk (copy from enwiki) |
N 20:05 | Module:SVGWriter diffhist +50,328 172.16.5.238 talk (Created page with "-- From https://gitlab.com/hansonry/luasvgwriter/-/blob/master/SVGWriter.lua -- Licence: GPLv3 https://www.gnu.org/licenses/gpl-3.0.en.html local SVGWriter = {} local LineBuilder = {} LineBuilder.__index = LineBuilder function LineBuilder:new(indentAmount, newlineText) local ret = { indentAmount = indentAmount or 2, newlineText = newlineText or "\n", indentLevel = 0, indentText = "", text = "" } setmetatable(ret, self) return...") |