<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://star-citizen.wiki/index.php?action=history&amp;feed=atom&amp;title=Modul%3AGuide</id>
	<title>Modul:Guide - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://star-citizen.wiki/index.php?action=history&amp;feed=atom&amp;title=Modul%3AGuide"/>
	<link rel="alternate" type="text/html" href="https://star-citizen.wiki/index.php?title=Modul:Guide&amp;action=history"/>
	<updated>2026-05-20T21:04:46Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Star Citizen Wiki</subtitle>
	<generator>MediaWiki 1.39.10</generator>
	<entry>
		<id>https://star-citizen.wiki/index.php?title=Modul:Guide&amp;diff=3424&amp;oldid=prev</id>
		<title>imported&gt;FoXFTW am 17. Mai 2021 um 14:56 Uhr</title>
		<link rel="alternate" type="text/html" href="https://star-citizen.wiki/index.php?title=Modul:Guide&amp;diff=3424&amp;oldid=prev"/>
		<updated>2021-05-17T14:56:23Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
local args = require( &amp;#039;Module:Arguments&amp;#039; )&lt;br /&gt;
local infobox = require( &amp;#039;Module:Infobox&amp;#039; )&lt;br /&gt;
local common = require( &amp;#039;Module:Common&amp;#039; )&lt;br /&gt;
&lt;br /&gt;
local infoBox&lt;br /&gt;
local categories = {}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
local function addAuthor()&lt;br /&gt;
    if args.author then&lt;br /&gt;
        infoBox:addRow( &amp;#039;Autor&amp;#039;, &amp;#039;[https://robertsspaceindustries.com/citizens/&amp;#039; .. args.author .. &amp;#039; &amp;#039; .. args.author .. &amp;#039;]&amp;#039; )&lt;br /&gt;
    else&lt;br /&gt;
        table.insert( categories, &amp;#039;[[Kategorie:Guide mit fehlendem Autor]]&amp;#039; )&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function addGuideType()&lt;br /&gt;
    if args.guide_type then&lt;br /&gt;
        local string&lt;br /&gt;
&lt;br /&gt;
        if mw.ustring.lower( args.guide_type ) == &amp;#039;star citizen&amp;#039; then&lt;br /&gt;
            string = &amp;#039;Star Citizen&amp;#039;&lt;br /&gt;
            table.insert( categories, &amp;#039;[[Kategorie:Guide (&amp;#039; .. string .. &amp;#039;)]]&amp;#039; )&lt;br /&gt;
        elseif mw.ustring.lower( args.guide_type ) == &amp;#039;squadron 42&amp;#039; then&lt;br /&gt;
            string = &amp;#039;Squadron 42&amp;#039;&lt;br /&gt;
            table.insert( categories, &amp;#039;[[Kategorie:Guide (&amp;#039; .. string .. &amp;#039;)]]&amp;#039; )&lt;br /&gt;
        else&lt;br /&gt;
            string = args.guide_type&lt;br /&gt;
        end&lt;br /&gt;
&lt;br /&gt;
        infoBox:addRow( &amp;#039;Guide für&amp;#039;, string )&lt;br /&gt;
    else&lt;br /&gt;
        table.insert( categories, &amp;#039;[[Kategorie:Guide mit fehlendem Typen]]&amp;#039; )&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function addTopic()&lt;br /&gt;
    if args.topic then&lt;br /&gt;
        infoBox:addRow( &amp;#039;Thematik&amp;#039;, args.topic )&lt;br /&gt;
    else&lt;br /&gt;
        table.insert( categories, &amp;#039;[[Kategorie:Guide mit fehlendem Thema]]&amp;#039; )&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function addWebsite()&lt;br /&gt;
    if args.website then&lt;br /&gt;
        if string.match( args.website, &amp;#039;http&amp;#039; ) == nil then&lt;br /&gt;
            error( &amp;#039;Webseite scheint kein valider Link zu sein&amp;#039;, 0 )&lt;br /&gt;
&lt;br /&gt;
            return nil&lt;br /&gt;
        end&lt;br /&gt;
&lt;br /&gt;
        infoBox:addRow( &amp;#039;Webseite&amp;#039;, args.website )&lt;br /&gt;
&lt;br /&gt;
        mw.smw.set({&lt;br /&gt;
            Webseite = args.website,&lt;br /&gt;
        })&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function addOther()&lt;br /&gt;
    if args.other then&lt;br /&gt;
        infoBox:addRow( &amp;#039;Sonstiges&amp;#039;, args.other )&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.infobox( frame )&lt;br /&gt;
    args = args.getArgs( frame )&lt;br /&gt;
&lt;br /&gt;
    infoBox = infobox.create( {&lt;br /&gt;
        --title = &amp;#039;Übersicht&amp;#039;,&lt;br /&gt;
        bodyClass = &amp;#039;floatright&amp;#039;,&lt;br /&gt;
    } )&lt;br /&gt;
&lt;br /&gt;
	infoBox:addTitle( &amp;#039;Übersicht&amp;#039; )&lt;br /&gt;
    addAuthor()&lt;br /&gt;
    addGuideType()&lt;br /&gt;
    addTopic()&lt;br /&gt;
    addWebsite()&lt;br /&gt;
    addOther()&lt;br /&gt;
    &lt;br /&gt;
    infoBox:addRowsFromArgs( args, &amp;#039;!&amp;#039; )&lt;br /&gt;
    &lt;br /&gt;
    common.setDisplayTitle( frame, &amp;#039;Guide: &amp;#039; .. mw.title.getCurrentTitle().subpageText )&lt;br /&gt;
&lt;br /&gt;
    return tostring( infoBox ) .. table.concat( categories )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>imported&gt;FoXFTW</name></author>
	</entry>
</feed>