Difference between revisions of "Test Page"

From MakerFX Wiki!
Jump to: navigation, search
(Outlining focus points on wiki functions, and ideas for organization.)
(TemplateToolList test)
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
quick tests and anything else
+
==quick tests and anything else==
  
  
Line 5: Line 5:
 
* [https://www.mediawiki.org/wiki/Help:Redirects Help:Redirects (mediawiki page)]
 
* [https://www.mediawiki.org/wiki/Help:Redirects Help:Redirects (mediawiki page)]
 
* [https://www.mediawiki.org/wiki/Help:Categories Help:Categories (mediawiki page)]
 
* [https://www.mediawiki.org/wiki/Help:Categories Help:Categories (mediawiki page)]
 +
* [https://www.mediawiki.org/wiki/Help:Templates Help:Templates (mediawiki page)]
 +
* [https://www.mediawiki.org/wiki/Help:Formatting Help:Formatting (mediawiki page)]
 +
  
  
Line 11: Line 14:
 
** if zones are categories, then a tool can be in a zone, and looking up the zone page would list all the tools in that area.
 
** if zones are categories, then a tool can be in a zone, and looking up the zone page would list all the tools in that area.
 
*ideas for tool categories
 
*ideas for tool categories
** grouped by amount the amount of oversight / training a tool needs I.e. certification, dangerous but self guided, open use. (Sort of a cnc router - table saw - hand saw grouping)
+
** purpose / use case:
** grouped by material interface method, mills, saws, lathes, planes, boaring(drills) fixtures (nails, screws) casting, additive manufacturing, welding, abraso…. This can get out of hand pretty fast unless a range/scope can be agreed upon
+
***Tools (change materials)
** tools by target material: fabric, wood, plastic, metal… (plenty of tools could belong to more than one of these)
+
***measuring/marking (used but don't alter)
** tools by human interface: computer controlled, material fed or guided, hand held, positioned and activated (like a press)
+
***materials (consumed by process) maybe link to MSDS and have notices about places they should not be used
 +
** level of training required for tool:  
 +
***certification (laser, cnc mill)
 +
***familiarity (table saw, ?3d printer, sewing machine) ?should we have wiki tutorials for these?
 +
***safety aware (hammer, drill, Dremel tool?)
  
  
 +
* Learn about templates - [https://wiki.pumpingstationone.org/wiki/Formlabs_Form_3_SLA_Printer PS1 example]
 +
** please limit the use of inline html and css to templates
 +
** pay special attention to '''noinclude''', '''includeonly''', and '''onlyinclude'''.  This is how you show what parts of the page should be transcluded vs ignored when the template is called.
 +
 +
==== to do / goals ====
 +
* create a “edit primer” focused on essential markup.  Link to another page for more complex topics
  
* Learn about templates - PS1 example [https://wiki.pumpingstationone.org/wiki/Formlabs_Form_3_SLA_Printer]
 
** please limit the use of inline html and css to templates
 
** pay special attention to noinclude, includeonly, and onlyinclude.  This is how you show what parts of the page should be transcluded vs ignored when the template is called.
 
  
 +
==== testing ====
  
 
testing redirect
 
testing redirect
 
[[Fiber Laser]]
 
[[Fiber Laser]]
 
[[Rabbit]]
 
[[Rabbit]]
 +
 +
 +
===infobox testing===
 +
 +
[[TrialInfobox]]
 +
 +
it looks like complex infoboxes are built with Scribunto extension using LUA scripting language.
 +
 +
there may be a way to use a css class and the skin, mediawiki's native programming hooks (like OutputPageBeforeHTML), or a plugin to properly position the info box.
 +
 +
currently using inline CSS doesn't allow for reflowing of text around the box, so on smaller devices it may cause problems.
 +
 +
===TemplateToolList test===
 +
{{ToolList
 +
  |Name=Grizzly Mill
 +
  |Link=Grizzly_G0755_Mill
 +
  |Image =Grizzly_G0755.jpg}}
 +
{{ToolList
 +
  |Name=TIG Welder
 +
  |Link=Alpha-TIG_200X
 +
  |Image =Alpha-TIG_200X.jpg}}
 +
{{ToolList
 +
  |Name=14 Inch Cutoff Saw Welder
 +
  |Link=Chicago_Electric_Power_Tools_91938_14_Inch_Cut_Off_Saw
 +
  |Image =Chicago_Electric_Power_Tools_91938_14_Inch_Cut_Off_Saw_Photo.jpg}}
 +
{{ToolList
 +
  |Name=Sheldon Metal Lathe Welder
 +
  |Link=Sheldon_Metal_Lathe
 +
  |Image =Sheldon-Metal-Lathe-TS44E.jpg}}
 +
{{ToolList
 +
  |Name=CNC_Mill
 +
  |Link=CNC_Mill
 +
  |Image =MR1_CNC_Mill.jpg}}
 +
 +
[[Template:ToolList]]
 +
 +
[[RollbackTest]]
 +
 +
 +
testing to make sure text reflows correctly after the template is used.
 +
 +
testing to make sure text reflows correctly after the template is used.
 +
 +
testing to make sure text reflows correctly after the template is used.
 +
 +
testing to make sure text reflows correctly after the template is used.

Latest revision as of 08:42, 9 June 2026

quick tests and anything else

Quick reference for tonight's work


  • Learn about categories
    • think about the example of the wood lathe and all the hand tools - this should be in woodworking, and the hand tools should be a sub category
    • if zones are categories, then a tool can be in a zone, and looking up the zone page would list all the tools in that area.
  • ideas for tool categories
    • purpose / use case:
      • Tools (change materials)
      • measuring/marking (used but don't alter)
      • materials (consumed by process) maybe link to MSDS and have notices about places they should not be used
    • level of training required for tool:
      • certification (laser, cnc mill)
      • familiarity (table saw, ?3d printer, sewing machine) ?should we have wiki tutorials for these?
      • safety aware (hammer, drill, Dremel tool?)


  • Learn about templates - PS1 example
    • please limit the use of inline html and css to templates
    • pay special attention to noinclude, includeonly, and onlyinclude. This is how you show what parts of the page should be transcluded vs ignored when the template is called.

to do / goals

  • create a “edit primer” focused on essential markup. Link to another page for more complex topics


testing

testing redirect Fiber Laser Rabbit


infobox testing

TrialInfobox

it looks like complex infoboxes are built with Scribunto extension using LUA scripting language.

there may be a way to use a css class and the skin, mediawiki's native programming hooks (like OutputPageBeforeHTML), or a plugin to properly position the info box.

currently using inline CSS doesn't allow for reflowing of text around the box, so on smaller devices it may cause problems.

TemplateToolList test

Grizzly Mill
Grizzly G0755.jpg
TIG Welder
Alpha-TIG 200X.jpg
14 Inch Cutoff Saw Welder
Chicago Electric Power Tools 91938 14 Inch Cut Off Saw Photo.jpg
Sheldon Metal Lathe Welder
Sheldon-Metal-Lathe-TS44E.jpg
CNC_Mill
MR1 CNC Mill.jpg

Template:ToolList

RollbackTest


testing to make sure text reflows correctly after the template is used.

testing to make sure text reflows correctly after the template is used.

testing to make sure text reflows correctly after the template is used.

testing to make sure text reflows correctly after the template is used.