Main public logs
From bikelopedia
Combined display of all available logs of bikelopedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 19:13, 31 March 2025 Stuben talk contribs created page Module:String (Created page with "--[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true' or 1, any error c...")
- 19:11, 31 March 2025 Stuben talk contribs created page Template:Category handler (Created page with "{{#invoke:Category handler|main}}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage, and interwikis to Wikidata. --> </noinclude>")
- 19:10, 31 March 2025 Stuben talk contribs created page Template:Fix (Created page with "{{#switch:{{{subst|¬}}} |¬={{category handler |template=Category:Templates needing substitution checking |nocat={{{nocat|<noinclude>true</noinclude>}}} }} |SUBST=Category:Pages with incorrectly substituted templates }}{{Category handler |main={{Fix/category |cat-date={{{cat-date|}}} |cat={{{cat|}}} |cat-date2={{{cat-date2|}}} |cat2={{{cat2|}}} |cat-date3={{{cat-date3|}}} |cat3={{{cat3|}}} |date={{{date|}}} }} |template={{#if:{{{nam...")
- 19:09, 31 March 2025 Stuben talk contribs created page Module:Namespace detect/config (Created page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --...")
- 19:08, 31 March 2025 Stuben talk contribs created page Module:Namespace detect/data (Created page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local function...")
- 19:07, 31 March 2025 Stuben talk contribs created page Module:Category handler/blacklist (Created page with "-- This module contains the blacklist used by Module:Category handler. -- Pages that match Lua patterns in this list will not be categorised unless -- categorisation is explicitly requested. return { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^Wikipedia:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- The userbo...")
- 19:06, 31 March 2025 Stuben talk contribs created page Module:Category handler/shared (Created page with "-- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return...")
- 19:05, 31 March 2025 Stuben talk contribs created page Module:Category handler/config (Created page with "-------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. ----------------------------...")
- 19:04, 31 March 2025 Stuben talk contribs created page Module:Category handler/data (Created page with "-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(...")
- 19:02, 31 March 2025 Stuben talk contribs created page Module:Yesno (Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =...")
- 19:02, 31 March 2025 Stuben talk contribs created page Module:Category handler (Created page with "-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace alia...")
- 18:59, 31 March 2025 Stuben talk contribs created page Template:Documentation (Created page with "{{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}}<noinclude> <!-- Add categories to the /doc subpage --> </noinclude>")
- 18:58, 31 March 2025 Stuben talk contribs created page Module:Documentation/config (Created page with "---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ---------------------------------------------------------------------------------...")
- 18:57, 31 March 2025 Stuben talk contribs created page Module:Arguments (Created page with "-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string'...")
- 18:55, 31 March 2025 Stuben talk contribs created page Module:Documentation (Created page with "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub local format = mw.ustring.format ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in...")
- 18:52, 31 March 2025 Stuben talk contribs created page Module:Check for unknown parameters (Created page with "-- This module may be used to compare the arguments passed to the parent -- with a list of arguments, returning a specified result if an argument is -- not on the list require ('strict'); local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end local function clean(text) -- Return text cleaned for display and truncated if too long. -- Strip markers are replaced with dummy text representing...")
- 18:50, 31 March 2025 Stuben talk contribs created page Module:Unsubst (Created page with "local checkType = require('libraryUtil').checkType local p = {} local BODY_PARAM = '$B' local specialParams = { ['$params'] = 'parameter list', ['$aliases'] = 'parameter aliases', ['$flags'] = 'flags', ['$B'] = 'template content', ['$template-name'] = 'template invocation name override', } function p.main(frame, body) -- If we are substing, this function returns a template invocation, and if -- not, it returns the template body. The template body can be specif...")
- 20:03, 28 March 2025 Stuben talk contribs created page Rim Tape Removal (maint) (Created page with "==Overview== Goo Gone")
- 22:42, 27 March 2025 Stuben talk contribs created page Tyre Casing (Redirected page to Tire Casing) Tag: New redirect
- 22:41, 27 March 2025 Stuben talk contribs created page Tire Casing (Created page with "==Overview==")
- 18:53, 6 December 2024 Stuben talk contribs created page 2020 Bath Oil Volume Chart (Fox) (Created page with "==Overview== The Fox oil bath volume chart for 2022. ==Chart<ref>https://tech.ridefox.com/bike/service-procedures/1056/2020-bath-oil-volume-chart</ref>== ==External Links== [https://tech.ridefox.com/bike/service-procedures/1056/2020-bath-oil-volume-chart Fox Website: 2020 Bath Oil Volume Chart] ==References== <references />")
- 20:46, 5 December 2024 Stuben talk contribs created page Pivot (Created page with " Bike Brand: Pivot ==History== ==Bike Type== ===Road=== ===MTB=== ====XC==== <ul> <li> Mach 4 SL</li> <li> LES SL</li> </ul> ====Trail==== <ul> <li> Shadowcat</li> <li> Trail 429</li> <li> Switchblade</li> </ul> ====Enduro==== <ul> <li> Mach 6</li> <li> Firebird</li> <li> Switchblade</li> </u...")
- 20:04, 5 December 2024 Stuben talk contribs created page List of Maint Topics (Created page with "__NOTOC__ ;A list of bicycle maintenance topics: <div class="toc toctitle" style="position:static;word-spacing: 7px; width: auto; margin: 0 auto; display: inline-block; padding: 10px 15px; font-weight: 500;">'''Contents:''' A B C D E F G H I J K L M N O P R S T U V W X Y Z</div> ==B== ==D== ==F==...") Tag: Visual edit: Switched
- 17:59, 16 October 2024 Stuben talk contribs created page Premium Rush (Film) (Created page with "==Overview== "Can't stop; don't want to." ==Plot Synopsis==")
- 20:04, 9 October 2024 Stuben talk contribs created page Maintenance Pages (Created page with "Category:Maintenance") Tag: Visual edit: Switched
- 17:30, 3 October 2024 Stuben talk contribs created page Fox 38 Fork Rebuild 2021-2025 (maint) (Created page with "==Overview== ==Lowers== ==Spring Side== 2021-2025 38mm FLOAT NA2 Air Spring Rebuild ==Damper Side== 2021-2024 GRIP2 VVC Rebuild category:maintenance") Tag: Visual edit: Switched
- 21:25, 26 September 2024 Stuben talk contribs created page Jump Building (added external link to Trailism's jump building guide) Tag: Visual edit
- 19:43, 25 September 2024 Stuben talk contribs created page Red Bull Rampage (Created page with "==Overview== An event.")
- 19:34, 25 September 2024 Stuben talk contribs created page Category:Maintenance (Created page with "==Overview== The maintenance pages contain notes and instructions on servicing or maintaining bicycles and components. ==Style Guide==")
- 23:36, 24 September 2024 Stuben talk contribs created page Category:FOX (Redirected page to Fox Factory) Tag: New redirect
- 23:34, 24 September 2024 Stuben talk contribs created page Fox Factory (Created page with "==Overview== Is it Fox or FOX?")
- 23:22, 24 September 2024 Stuben talk contribs created page Fox Grip Damper (Created page with "==Overview== ==History== ==Features== ==Years and Models==")
- 22:24, 24 September 2024 Stuben talk contribs created page Fox Float NA2 Air Spring (Created page with "==Overview== ==Features== ==Years and Models==")
- 22:23, 24 September 2024 Stuben talk contribs created page Fox Grip2 Damper (Created page with "==Overview== ==Features== ==Years and Models==")
- 20:57, 12 September 2024 Stuben talk contribs created page File:ImgHardTail.png
- 20:57, 12 September 2024 Stuben talk contribs uploaded File:ImgHardTail.png
- 20:10, 12 September 2024 Stuben talk contribs created page File:ImgVirtualPivot.png
- 20:10, 12 September 2024 Stuben talk contribs uploaded File:ImgVirtualPivot.png
- 20:08, 12 September 2024 Stuben talk contribs created page File:ImgFourbarSwing.png
- 20:08, 12 September 2024 Stuben talk contribs uploaded File:ImgFourbarSwing.png
- 20:06, 12 September 2024 Stuben talk contribs created page File:ImgSinglePivot.png
- 20:06, 12 September 2024 Stuben talk contribs uploaded File:ImgSinglePivot.png
- 17:02, 11 September 2024 NBD talk contribs deleted page File:AIMoneyBikeII.webp (content was: "AI Money Bike II", and the only contributor was "NBD" (talk))
- 16:40, 11 September 2024 Stuben talk contribs created page Template:Infobox Company (Created page with "==Template Data== <div class="infobox"> <div class="infobox-title">{{{title|{{PAGENAME}}}}}</div>{{#if:{{{image|}}}| <div class="infobox-image">[[File:{{PAGENAME:{{{image}}}}}|300px]]</div>}} <table class="infobox-table">{{#if:{{{italic title|}}}|<tr> <th>Title </th> <td>''{{{italic title}}}''</td> </tr>}}{{#if:{{{author|}}}|<tr> <th>Author </th> <td>{{{author}}}</td> </tr>}}{{#if:{{{pages|}}}|<tr> <th>Pages </th> <td>{{{pages}}}</td> </tr>}}</tab...")
- 04:14, 11 September 2024 Stuben talk contribs created page Fox GRIP2 Damper (Created page with "==Overview== ==External Links== [https://foxacademy.ridefox.com/2020/06/fox-academy-video-series-grip2-damper-explained/ FOX GRIP2 Damper Explained]") Tag: Visual edit
- 19:48, 10 September 2024 Stuben talk contribs created page User:Stuben (Created page with "Primary editor. Email me at [email protected]!!")
- 19:45, 10 September 2024 Stuben talk contribs moved page List of Sram Components to List of SRAM Components
- 19:44, 10 September 2024 Stuben talk contribs moved page Sram to SRAM (Misspelled title: SRAM not Sram)
- 19:33, 10 September 2024 Stuben talk contribs created page Suspension Theory (Created page with "==Nav to== *Shim ReStackor")
- 19:24, 10 September 2024 Stuben talk contribs created page Shim ReStackor (Created page with "==Overview== Shim Restackor is a website and "Software to tune a Shim Stack."<ref>https://www.shimrestackor.com/index.htm </ref>") Tag: Visual edit