All public logs
Combined display of all available logs of Candypedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 01:44, 21 November 2024 NeonWabbit talk contribs created page Template:Clear (Created page with "<div style="clear:{{{1|both}}};" class={{{class|}}}></div>")
- 14:14, 19 November 2024 NeonWabbit talk contribs created page MediaWiki:Sidebar (Created page with " * navigation ** mainpage|mainpage-description ** recentchanges-url|recentchanges ** randompage-url|randompage ** helppage|help-mediawiki ** https://bittersweetcandybowl.com|BCB homepage * Socials ** https://bsky.app/profile/taeshi.bcb.cat|Taeshi on Bluesky ** https://x.com/Taeshi|@Taeshi on X ** https://x.com/Suitcase874|@Suitcase874 on X * SEARCH * TOOLBOX * LANGUAGES")
- 12:40, 13 November 2024 NeonWabbit talk contribs moved page Template:Cite BCB to Template:Cite chapter (Misspelled title)
- 15:01, 12 November 2024 NeonWabbit talk contribs created page Template:Cite BCB (Created page with "<includeonly> {{#invoke:Citation/BCB|formatBCBReference|{{{url}}}}} </includeonly>")
- 15:01, 12 November 2024 NeonWabbit talk contribs created page Module:Citation/BCB (Created page with "local p = {} local mw = require('mw') -- Function to fetch and parse chapter data from the `Template:ChapterList` function p.formatBCBReference(url) if not url or type(url) ~= 'string' then return nil -- Return nil if `url` is not valid end -- Check if the URL matches the expected pattern local chapter, page = url:match("^https://www%.bittersweetcandybowl%.com/c(%d+)/p(%d+)") if not chapter then chapter, page = url:match("^https://bc...")
- 15:00, 12 November 2024 NeonWabbit talk contribs deleted page Module:Citation/CS1/BCB chapter (content was: "local p = {} local mw = require('mw') local chapter_data_cache local cache_timestamp -- Utility function to parse chapter data from Template:ChapterList local function parseChapterData() local title = mw.title.new('Template:ChapterList') if not title or not title.exists then return {} -- Return an empty table if the template does not exist end...", and the only contributor was "NeonWabbit" (talk))
- 13:29, 12 November 2024 NeonWabbit talk contribs created page Module:Citation/CS1/BCB chapter (Created page with "local p = {} local mw = require('mw') -- Function to parse chapter data from a specified page function p.getChapterData() local title = mw.title.new('Template:ChapterList') if not title or not title.exists then return {} end local content = title:getContent() local chapter_data = {} -- Parse the content for chapter entries for number, title, pagecount in content:gmatch('{{Chapter|number=([^|]+)|title=([^|]+)|date=[^|]+|pagecount=(%d...")
- 02:01, 7 November 2024 NeonWabbit talk contribs created page Module:Format link (Created page with "-------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the {{format link}} template. -------------------------------------------------------------------------------- local libraryUtil = require(...")
- 02:00, 7 November 2024 NeonWabbit talk contribs created page Module:Hatnote list (Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote list -- -- -- -- This module produces and formats lists for use in hatnotes. In particular, -- -- it implements the for-see list, i.e. lists of "For X, see Y" statements, -- -- as used in {{about}}, {{redirect}}, and their variants. Also introd...")
- 01:59, 7 November 2024 NeonWabbit talk contribs created page Module:For (Created page with "local mArguments --initialize lazily local mHatlist = require('Module:Hatnote list') local mHatnote = require('Module:Hatnote') local yesNo = require('Module:Yesno') local p = {} --Implements {{For}} from the frame --uses capitalized "For" to avoid collision with Lua reserved word "for" function p.For (frame) mArguments = require('Module:Arguments') return p._For(mArguments.getArgs(frame)) end --Implements {{For}} but takes a manual arguments table function p._For (a...")
- 01:59, 7 November 2024 NeonWabbit talk contribs created page Template:For (Created page with "<includeonly>{{#invoke:For|For}}</includeonly>")
- 04:33, 3 November 2024 NeonWabbit talk contribs created page Lucy's house (Created page with "{{Infobox location | name = | image = Location_Lucy'sHouse_Interior.png | caption = '''Top:''' Lucy's lounge<br>'''Bottom:''' Lucy's guest room | source = | alt_name = | first = Simple Pleasures, [https://bittersweetcandybowl.com/c1/p1 page 1] | located_in = Roseville, USA | locations = Lucy's lounge, Lucy's room, Lucy's guest room | characters = Lucy, Augustus }} '''Lucy's house''' is a house in Roseville where Augustus lives in the basement....")
- 04:19, 3 November 2024 NeonWabbit talk contribs created page File:Location Lucy'sHouse Interior.png
- 04:19, 3 November 2024 NeonWabbit talk contribs uploaded File:Location Lucy'sHouse Interior.png
- 06:39, 2 November 2024 NeonWabbit talk contribs created page Module:If preview/styles.css (Created page with "{{pp|small=yes}}: .preview-warning { font-style: italic; @noflip: padding-left: 1.6em; margin-bottom: 0.5em; color: red; } The templatestyles element inserts a link element before hatnotes. * TODO: Remove link if/when WMF resolves T200206: .preview-warning + link + .preview-warning { margin-top: -0.5em; }")
- 06:39, 2 November 2024 NeonWabbit talk contribs created page Module:If preview/configuration (Created page with "--We perform the actual check for whether this is a preview here since preprocessing is relatively expensive. local frame = mw.getCurrentFrame() local function is_preview() local revision_id = frame:preprocess('{{REVISIONID}}') -- {{REVISIONID}} is usually the empty string when previewed. -- I don't know why we're checking for nil but hey, maybe someday things -- would have broken return revision_id == nil or revision_id == '' end local function templatestyl...")
- 06:38, 2 November 2024 NeonWabbit talk contribs created page Module:If preview (Created page with "local p = {} local getArgs = require("Module:Arguments").getArgs local yn = require("Module:Yesno") local cfg = mw.loadData('Module:If preview/configuration') --main This function returns either the first argument or second argument passed to this module, depending on whether the page is being previewed. function p.main(frame) local args = getArgs(frame) if cfg.preview then return args[1] or '' else return args[2] or '' end end --[[ pmain This function...")
- 14:09, 30 October 2024 NeonWabbit talk contribs created page Module:Separated entries (Created page with "-- This module takes positional parameters as input and concatenates them with -- an optional separator. The final separator (the "conjunction") can be -- specified independently, enabling natural-language lists like -- "foo, bar, baz and qux". The starting parameter can also be specified. local compressSparseArray = require('Module:TableTools').compressSparseArray local p = {} function p._main(args) local separator = args.separator -- Decode (convert to Unicode) HT...")
- 14:09, 30 October 2024 NeonWabbit talk contribs created page Template:Comma separated entries (Created page with "{{<includeonly>safesubst:</includeonly>#invoke:Separated entries|comma}}")
- 14:08, 30 October 2024 NeonWabbit talk contribs created page Template:Blockquote/styles.css (Created page with "{{pp-template}}: .templatequote { overflow: hidden; margin: 1em 0; padding: 0 32px; } .templatequotecite { line-height: 1.5em; @noflip: text-align: left; margin-top: 0; } @media (min-width: 500px) { .templatequotecite { @noflip: padding-left: 1.6em; } }")
- 14:08, 30 October 2024 NeonWabbit talk contribs created page Template:Blockquote (Created page with "<templatestyles src="Template:Blockquote/styles.css" /><!-- --><blockquote class="templatequote {{{class|}}}" {{#if:{{{style|}}}|style="{{{style}}}"}}>{{{text|{{{content|{{{quotetext|{{{quote|{{{1|<includeonly>{{error|Error: No text given for quotation (or equals sign used in the actual argument to an unnamed parameter)}}{{main other|Category:Pages incorrectly using the quote template}}</includeonly><noinclude>{{lorem ipsum}}</noinclude>}}}}}}}}}}}}}}}{{#if:{{{sign|}...")
- 13:35, 30 October 2024 NeonWabbit talk contribs created page Template:Plainlist (Created page with "<templatestyles src="Plainlist/styles.css"/><div class="plainlist {{{class|}}}" {{#if:{{{style|}}}{{{indent|}}}|style="{{#if:{{{indent|}}}|margin-left: {{#expr:{{{indent}}}*1.6}}em;}} {{{style|}}}"}}>{{#if:{{{1|}}}| {{{1}}} </div>}}<noinclude></div> </noinclude>")
- 02:58, 30 October 2024 NeonWabbit talk contribs created page Template:Plainlist/styles.css (Created page with "{{pp-template|small=yes}}: .plainlist ol, .plainlist ul { line-height: inherit; list-style: none; margin: 0; padding: 0; Reset Minerva default: } .plainlist ol li, .plainlist ul li { margin-bottom: 0; }")
- 02:53, 30 October 2024 NeonWabbit talk contribs created page File:Character Sue.png
- 02:53, 30 October 2024 NeonWabbit talk contribs uploaded File:Character Sue.png
- 02:52, 30 October 2024 NeonWabbit talk contribs created page Template:Infobox character/styles.css (Created page with ".ib-character { border-spacing: 2px 5px; } .ib-character .infobox-above, .ib-character .infobox-header { background-color: #DEDEE2; } light background for transparent images: .ib-character .infobox-image img { background-color: #f8f9fa; } @media screen { html.skin-theme-clientpref-night .ib-character .infobox-above, html.skin-theme-clientpref-night .ib-character .infobox-header { background: hsl(240, 6%, 20%); color: inherit; } }")
- 07:40, 26 October 2024 NeonWabbit talk contribs created page Payback (Created page with "{{Infobox Other chapter | chapter_title = {{BASEPAGENAME}} | subheader = Book-exclusive | image = v4p320f1.png | published = {{Start date|2016|08|1}} | pagecount = 6 | majorcharacters = | minorcharacters = | locations = | collected = ''Volume Four'' }} {{BCB chapters}}")
- 07:40, 26 October 2024 NeonWabbit talk contribs created page File:V4p320f1.png
- 07:40, 26 October 2024 NeonWabbit talk contribs uploaded File:V4p320f1.png
- 07:37, 26 October 2024 NeonWabbit talk contribs created page Critical Eye (Created page with "{{Infobox Other chapter | chapter_title = {{BASEPAGENAME}} | subheader = Book-exclusive | image = v4p262f4.png | published = {{Start date|2016|08|1}} | pagecount = 4 | majorcharacters = | minorcharacters = | locations = | collected = ''Volume Four'' }} {{BCB chapters}}")
- 07:36, 26 October 2024 NeonWabbit talk contribs created page File:V4p262f4.png
- 07:36, 26 October 2024 NeonWabbit talk contribs uploaded File:V4p262f4.png
- 07:31, 26 October 2024 NeonWabbit talk contribs created page No Service (Created page with "{{Infobox Other chapter | chapter_title = {{BASEPAGENAME}} | subheader = Book-exclusive | image = v4p233f5.png | published = {{Start date|2016|08|1}} | pagecount = 4 | majorcharacters = | minorcharacters = | locations = | collected = ''Volume Four'' }} {{BCB chapters}}")
- 07:30, 26 October 2024 NeonWabbit talk contribs created page File:V4p233f5.png
- 07:30, 26 October 2024 NeonWabbit talk contribs uploaded File:V4p233f5.png
- 07:26, 26 October 2024 NeonWabbit talk contribs created page Curtain Rising (Created page with "{{Infobox Other chapter | chapter_title = {{BASEPAGENAME}} | subheader = Book-exclusive | image = v4p98f4.png | published = {{Start date|2016|08|1}} | pagecount = 2 | majorcharacters = | minorcharacters = | locations = | collected = ''Volume Four'' }} {{BCB chapters}}")
- 07:26, 26 October 2024 NeonWabbit talk contribs created page File:V4p98f4.png
- 07:26, 26 October 2024 NeonWabbit talk contribs uploaded File:V4p98f4.png
- 07:23, 26 October 2024 NeonWabbit talk contribs created page There’s a Chance (Created page with "{{Infobox Other chapter | chapter_title = {{BASEPAGENAME}} | subheader = Book-exclusive | image = v5p158f7.png | published = {{Start date|2017|08|03}} | pagecount = 4 | majorcharacters = | minorcharacters = | locations = | collected = ''Volume Five'' }} {{BCB chapters}}")
- 07:23, 26 October 2024 NeonWabbit talk contribs created page File:V5p158f7.png
- 07:23, 26 October 2024 NeonWabbit talk contribs uploaded File:V5p158f7.png
- 07:18, 26 October 2024 NeonWabbit talk contribs created page Fashion Disaster (Created page with "{{Infobox Other chapter | chapter_title = {{BASEPAGENAME}} | subheader = Book-exclusive | image = v5p59f2.png | published = {{Start date|2017|08|03}} | pagecount = 3 | majorcharacters = | minorcharacters = | locations = | collected = ''Volume Five'' }} {{BCB chapters}}")
- 07:18, 26 October 2024 NeonWabbit talk contribs created page File:V5p59f2.png
- 07:18, 26 October 2024 NeonWabbit talk contribs uploaded File:V5p59f2.png
- 07:12, 26 October 2024 NeonWabbit talk contribs created page Unpacking Day (Created page with "{{Infobox Other chapter | chapter_title = {{BASEPAGENAME}} | subheader = Book-exclusive | image = v6p307f9.png | published = {{Start date|2018|12|01}} | pagecount = 8 | majorcharacters = | minorcharacters = | locations = | collected = ''Volume Six'' }} {{BCB chapters}}")
- 07:12, 26 October 2024 NeonWabbit talk contribs created page File:V6p307f9.png
- 07:12, 26 October 2024 NeonWabbit talk contribs uploaded File:V6p307f9.png
- 07:07, 26 October 2024 NeonWabbit talk contribs created page Good Egg (Created page with "{{Infobox Other chapter | chapter_title = {{BASEPAGENAME}} | subheader = Book-exclusive | image = v7p272f1.png | published = {{Start date|}} | pagecount = 6 | majorcharacters = | minorcharacters = | locations = | collected = ''Volume Seven'' }} {{BCB chapters}}")
- 07:07, 26 October 2024 NeonWabbit talk contribs created page File:V7p272f1.png
- 07:07, 26 October 2024 NeonWabbit talk contribs uploaded File:V7p272f1.png