Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

All public logs

More actions

Combined display of all available logs of FishWiki. 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)
  • 23:33, 2 May 2024 Aquasoil talk contribs created page Module:Array (Created page with "-- <nowiki> awawa local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti local arr = {} setmetatable(arr, { __call = function (_, array) return arr.new(array) end }) function arr.__index(t, k) if type(k) == 'table' then local res = arr.new() for i = 1, #t do res[i] = t[k[i]] end...")
  • 23:32, 2 May 2024 Aquasoil talk contribs created page Module:Arguments/doc (Created page with "{{Documentation}} {{Wikipedia template}} '''Module:Arguments''' provides easy processing of arguments passed from #invoke. It is a meta-module, meant for use by other modules, and should not be called from #invoke directly. Its features include: * Easy trimming of arguments and removal of blank arguments. * Arguments can be passed by both the current frame and by the parent frame at the same time. (More details below.) * Arguments can be passed in directly from another...")
  • 23:32, 2 May 2024 Aquasoil 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) == 's...")
  • 23:31, 2 May 2024 Aquasoil talk contribs created page Mediawiki/common.css (Created page with ".infobox.biota { border: 1px solid #ddd; background-color: #f9f9f9; font-size: 90%; width: 280px; margin: 1em 0 1em 1em; float: right; clear: right; padding: 0.5em; } .infobox.biota td { padding: 0.2em 0.5em; text-align: left; vertical-align: top; } .infobox.biota td:first-child { font-weight: bold; text-align: right; padding-right: 0.5em; } .infobox.biota th { background-color: #efefef; font-weight: bold; text-ali...")
  • 23:29, 2 May 2024 Aquasoil talk contribs created page Module:Hatnote (Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules....")
  • 23:28, 2 May 2024 Aquasoil 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...")
  • 23:26, 2 May 2024 Aquasoil talk contribs created page Module:Paramtest (Created page with "--[[ {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only contain whitespace, the function returns arg1, otherwise returns arg2 |fname4 = defaults{ {arg1,arg2},...}...")
  • 23:26, 2 May 2024 Aquasoil 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...")
  • 23:25, 2 May 2024 Aquasoil talk contribs created page Module:Time ago (Created page with "-- Implement Template:Time ago local numberSpell, yesno -- lazy load function numberSpell(arg) numberSpell = require('Module:NumberSpell')._main return numberSpell(arg) end function yesno(arg) yesno = require('Module:Yesno') return yesno(arg) end local p = {} -- Table to convert entered text values to numeric values. local timeText = { ['seconds'] = 1, ['minutes'] = 60, ['hours'] = 3600, ['days'] =...")
  • 23:24, 2 May 2024 Aquasoil talk contribs created page Module:Transcluder (Created page with "local p = {} -- Helper function to test for truthy and falsy values local function truthy(value) if not value or value == '' or value == 0 or value == '0' or value == 'false' or value == 'no' then return false end return true end -- Helper function to match from a list regular expressions -- Like so: match pre..list[1]..post or pre..list[2]..post or ... local function matchAny(text, pre, list, post, init) local match = {}...")
  • 23:21, 2 May 2024 Aquasoil 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 v...")
  • 23:20, 2 May 2024 Aquasoil talk contribs created page Module:User error (Created page with "-------------------------------------------------------------------------------- -- A less intimidating version of the built-in "error()" function, to help -- editors fix their mistakes when transcluding a template. -- -- @see wikia:w:c:Dev:Module:User error for a similar module. -------------------------------------------------------------------------------- local checkType = require("libraryUtil").checkType; return function (message, ...) checkType("Modul...")
  • 06:02, 25 April 2024 Aquasoil talk contribs created page Freshwater (Created page with "'''Freshwater fish''' are a diverse group of fish living in freshwater environments, including rivers, streams, ponds, and lakes. They inhabit a range of environments across all continents and climates, from the icy rivers of Canada to warm, stagnant ponds near the equator. Freshwater environments are home to a vast range of fish species, with new species regularly discovered by scientists. =='''Anatomy and Physiology'''== The anatomy and physiology of freshwater fish ar...")
  • 06:00, 25 April 2024 Aquasoil talk contribs created page Camallanus Worms (Created page with "==Camallanus Worms== Camallanus is a genus of parasitic roundworms that can affect any fresh water fish, some amphibians, and even aquatic reptiles such as turtles. They typically are transmitted via a crustacean intermediate host, but ''Camallanus cotti'' does not require an intermediate host to infect other hosts. An infection of camallanus worms can be fatal if left untreated. These nematodes will burrow into the gut of other animals and feed off of their blood. In le...")
  • 05:46, 25 April 2024 Aquasoil talk contribs created page Brackish (Created page with "'''Brackish fish''' are a unique group of aquatic species adapted to environments with a mix of fresh and salt water, such as estuaries, mangroves, and salt marshes. === '''Brackish Habitats''' === Brackish habitats are known for their fluctuating salinity levels that change due to tidal patterns or variations in freshwater input. These dynamic environments often harbor a diverse range of species, each uniquely adapted to life in these challenging conditions. === '''A...")
  • 03:20, 28 March 2024 User account Aquasoil talk contribs was created
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)