Lines of Code
Lines of Code (kurz LOC; {{#invoke:Vorlage:lang|full|CODE=en|SCRIPTING=Latn|SERVICE=englisch}} für Code-Zeilen i. S. v. Anzahl der Programmzeilen; engl. {{#invoke:Vorlage:lang|flat}}, SLOC) ist ein Begriff aus der Softwaretechnik. Es handelt sich dabei um eine Softwaremetrik, d. h. eine Maßzahl, um die Größe einer Codebasis eines Computerprogramms oder seines Wachstums zu beschreiben. Die Lines of Code sind im einfachsten Fall die Anzahl der Zeilen des Quelltextes, aus denen das Programm besteht.
Diese Metrik erlaubt keine direkten Aussagen über die Effizienz der Programmierer, denn die Anzahl der Zeilen hängt von unterschiedlichsten Faktoren ab: gewählte Architektur, Erfahrung des Programmierers, gewählte Lösung, Formatierung des Quellcodes, verwendete Programmiersprache usw. Zudem besagt die 80/20-Regel, dass 80 % der Zeilen in 20 % der Zeit geschrieben werden. So kann das gründliche Testen eines Programms sehr viel Zeit in Anspruch nehmen, während die Anzahl geänderter oder ergänzter Programmzeilen nur gering ist.
Üblicherweise rechnet man mit einer Produktivität – inklusive aller Projekttätigkeiten – von 10 bis 50 Codezeilen je Mitarbeiter und Tag. Ein Softwareentwicklungsprojekt mit einem gesamten Aufwand von 1.000 Personentagen (ca. 5 Personenjahre) sollte also zwischen 10.000 und 50.000 Lines of Code produziert haben.<ref name="Code Complete">{{#invoke:Vorlage:Literatur|f}}</ref>
Berechnungsarten
Bei Lines of Code gibt es einige gängige Ausprägungen, die anhand des folgenden Beispiels in der Programmiersprache Java erläutert werden:
<syntaxhighlight line lang="java"> /* Wie viele Zeilen sind das? */ public void ausgabeEinsBisHundert() {
for (int i = 1; i <= 100; i++) {
System.out.print(" " + i); //hier die Ausgabe der Zahlen aus der Schleife
}
} </syntaxhighlight>
- Lines of Code (LOC)
- Auch physische Lines of Code genannt. Anzahl Zeilen inklusive Leerzeilen und Kommentare. In obigem Beispiel 7. Wird oft stellvertretend für eine der anderen Berechnungsarten genannt.
- Source Lines of Code (SLOC)
- Anzahl der Codezeilen ohne Leerzeilen und Kommentare. In obigem Beispiel 5.
- Comment Lines of Code (CLOC)
- Anzahl Kommentarzeilen, wobei nicht definiert ist, ob auch gemischte Zeilen mit Code und Kommentaren eingerechnet werden. In obigem Beispiel somit 1 oder 2.
- Non-Comment Lines of Code (NCLOC)
- Auch Non-Comment Source Lines (NCSL) oder Effective Lines of Code (ELOC) genannt. Anzahl der Codezeilen ohne Leerzeilen und Kommentare ohne Header und Footer. Header und Footer sind insbesondere die äußeren öffnenden und schließenden Klammern sowie (auf Klassenebene) Import/Include-Statements und (auf Methodenebene) Methodendeklarationen. Obiges Beispiel hat auf Methodenebene 3, auf Klassenebene 5 NCLOC.
- Logical Lines of Code (LLOC)
- Auch Number of Statements (NOS) genannt. Zählt die Anzahl der Anweisungen. Wird bspw. bei COCOMO verwendet. Obiges Beispiel enthält 2 LLOC. In der Programmiersprache C gelten allerdings die Instruktionen in for-Schleifen als eigenständige Anweisung, damit hätte obiges Beispiel 4 LLOC.
Verwendung
Die meisten Vergleiche von Programmen über die LOC betrachten nur die Größenordnungen der Anzahl Zeilen verschiedener Projekte. Computerprogramme können aus nur wenigen Dutzend bis zu hunderten von Millionen Programmzeilen bestehen. Der Umfang eines Programmes in Codezeilen muss nicht zwangsläufig Rückschlüsse auf die Komplexität oder Funktionalität des Programms erlauben, da die Verwendung externer Frameworks und Programmbibliotheken, die verwendete Programmiersprache und auch die Formatierung des Quelltextes großen Einfluss auf die Codezeilen haben. Insbesondere sind Rückschlüsse auf die investierte Arbeitszeit meistens sinnfrei.
Auch bei Verwendung von Logical Lines of Code (LLOC) hängt das Verständnis, was unter einer Anweisung zu verstehen ist und wie die Komplexität derselben zu beurteilen ist, von der verwendeten Programmiersprache ab. So kann etwa in einem mehrere Bildschirmseiten umfassenden Assembler-Quelltext letztlich das gleiche Programm formuliert sein, wie in einigen wenigen Zeilen einer höheren Programmiersprache.
Abhängig vom Programmierer und den verwendeten Formatierungsrichtlinien kann das obige Beispiel in folgenden, programmtechnisch gesehen vollkommen gleichwertigen Quelltext umformuliert werden:
<syntaxhighlight line lang="java"> /* Wie viele Zeilen sind das? */ public void ausgabeEinsBisHundert() {
for (int i = 1; i <= 100; i++) System.out.print(" " + i); // hier die Ausgabe der Zahlen aus der Schleife
} </syntaxhighlight>
Nun besteht der Quelltext aus vier physischen Codezeilen (LOC), drei SLOC, je nach Berechnung ein bis zwei Comment Lines of Code (CLOC), einem Non-Comment Line of Code (auf Methodenebene) und weiterhin zwei logischen Programmzeilen (LLOC).
Da die hier getätigte Reduktion der Codezeilen die Lesbarkeit reduziert hat, ist die Komplexität des Programmes erhöht worden, was wiederum auf die Produktivität einen negativen Einfluss hat. Weniger Zeilen Code kann somit durchaus höhere Aufwände verursachen.
Die Größe Lines of Code wird u. a. auch zur Berechnung der Fehlerdichte eines Programms verwendet: Je nach Einsatzzweck sollte ein bestimmtes Maß an Programmfehlern nicht überschritten werden, z. B. max. 0,5 Fehler je KLOC (= Kilo = 1000 LOC) in militärischen oder Krankenhaussystemen.
Beispiele
Hier sind einige Beispiele für die Anzahl der Zeilen von Programmcode in verschiedenen Betriebssystemen und Anwendungsprogrammen.
| Jahr | System | SLOC in Mio. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Betriebssystem-Kernel | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1983 | Multics-Kernel | <ref>{{#if:|{{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}| |}}}}{{#if:Tom Van Vleck, John Gintell, Joachim Pense, Monte Davidoff, Andi Kleen, Doug Quebbeman, Jerry Saltzer|Tom Van Vleck, John Gintell, Joachim Pense, Monte Davidoff, Andi Kleen, Doug Quebbeman, Jerry Saltzer: }}{{#if:|{{#if:Multics Myths|[{{#invoke:Vorlage:Internetquelle|archivURL|1={{#invoke:URLutil|getNormalized|1={{{archiv-url}}}}}}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=Multics Myths}}]{{#if:Wiki| (Wiki)}}{{#if:| {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}|{{#if:https://multicians.org/myths.html#slow%7C{{#if:{{#invoke:TemplUtl%7Cfaculty%7C}}%7C{{#invoke:Vorlage:Internetquelle%7CTitelFormat%7Ctitel={{#invoke:WLink%7CgetEscapedTitle%7C1=Multics Myths}}}}|[{{#invoke:URLutil|getNormalized|1=https://multicians.org/myths.html#slow}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{#invoke:WLink|getEscapedTitle|1=Multics Myths}}}}]}}{{#if:Wiki| (Wiki{{#if:Multicians{{#if: 2020-05-21 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ) | de | 1}}}}| ; | {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}}}{{#if:https://multicians.org/myths.html#slow%7C{{#if:{{#invoke:URLutil%7CisResourceURL%7C1=https://multicians.org/myths.html#slow}} | }}}}{{#if:Multics Myths|{{#if:{{#invoke:WLink|isValidLinktext|1=Multics Myths|lines=0}} | }}}}{{#if: Multicians| In: {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=Multicians}}}}{{#if: | {{{hrsg}}}{{#if: |,|{{#if: 2020-05-21 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | {{#if:{{#invoke:DateTime|format|{{{datum}}}|noerror=1}} | format|{{{datum}}}|T._Monat JJJJ}} | failure|1=Fehler bei Vorlage:Internetquelle, datum={{{datum}}}|class=Zitationswartung}} }}{{#if: |,|{{#if: 2020-05-21 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | S. {{{seiten}}}{{#if: |,|{{#if: 2020-05-21 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: {{#invoke:TemplUtl|faculty|}}| {{#if:|{{#if:|archiviert|ehemals}}|{{#if:|Archiviert|Ehemals}}}} {{#if:|vom|im}} Vorlage:Referrer{{#if:{{#invoke:TemplUtl|faculty|}}| (nicht mehr online verfügbar)}}{{#if: | am {{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}|{{{archiv-datum}}}{{#if:619080 |
;}}}}{{#if: 2020-05-21| {{#if:{{#invoke:TemplUtl|faculty|}}|abgerufen|Abgerufen}} {{#switch: {{#invoke:Str|len| {{#invoke:DateTime|format| 2020-05-21 |ISO|noerror=1}} }} | 4=im Jahr | 7=im | 10=am | failure|1=Fehler bei Vorlage:Internetquelle, abruf=2020-05-21|class=Zitationswartung}} }} {{#invoke:DateTime|format|2020-05-21|T._Monat JJJJ}}
|
failure|1=Vorlage:Internetquelle | abruf=2026-MM-TT ist Pflichtparameter}} }}{{#if:{{#ifeq:en|de |
1}}}}|{{#if:Multicians{{#if: 2020-05-21 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ( | {{#if:Wiki | | (}}
}}{{#ifeq:{{#if:en|en|de}}|de||
{{#invoke:Multilingual|format|en|slang=!|split=[%s,]+|shift=m|separator=, }}}}{{#if: |{{#ifeq:{{#if:en|en|de}}|de||, }}{{{kommentar}}}}})}}{{#if: {{#if: 2020-05-21 | {{#if:{{#invoke:TemplUtl|faculty|}}||1}} }}en|{{#if: |: {{
#if:
|
„{{
#ifeq: {{#if:{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de
|
Vorlage:Str trim | flat}}
}}“
|
faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de | „Vorlage:Str trim“ | quote | 1={{#if: | flat}} | flat}} }} | faculty|}}|de-CH|de}} | 3=1}} }}
}}{{#if: |
: }}{{#if: | , deutsch: „“ }}) | {{#if: | , deutsch: „“ }}) | (deutsch: „“) }}
}} }}{{#if: {{{zitat}}} |
{{#if: | {{#if: {{{zitat}}} | Vorlage:": Text= und 1= gleichzeitig, bzw. Pipe zu viel }} }}
|
Vorlage:": Text= fehlt }}{{#if: | {{#if: {{#invoke:Text|unstrip|{{{ref}}}}}
|
Vorlage:": Ungültiger Wert: ref=
|
{{{ref}}} }}
}}|.{{#if:{{#invoke:TemplUtl|faculty|}}|{{#if:||{{#ifeq: | JaKeinHinweis |{{#switch: |
=Vorlage:Toter Link/Core{{#if: https://multicians.org/myths.html#slow | [1] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://multicians.org/myths.html#slow
|
isWebURL|https://multicians.org/myths.html#slow}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=https://multicians.org/myths.html#slow Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://multicians.org/myths.html#slow
|
isWebURL|https://multicians.org/myths.html#slow}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}[https://multicians.org/myths.html#slow }}|{{#switch: |
=Vorlage:Toter Link/Core{{#if: https://multicians.org/myths.html#slow | [2] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://multicians.org/myths.html#slow
|
isWebURL|https://multicians.org/myths.html#slow}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=https://multicians.org/myths.html#slow Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://multicians.org/myths.html#slow
|
isWebURL|https://multicians.org/myths.html#slow}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}[https://multicians.org/myths.html#slow }} }}}}}}}}}}{{#if:| {{#invoke:Vorlage:Internetquelle|archivBot|stamp={{{archiv-bot}}}|text={{#if:|Vorlage:Webarchiv/archiv-bot}} }}}}{{#invoke:TemplatePar|check |
all= url= titel= | opt= autor= hrsg= format= sprache= titelerg= werk= seiten= datum= abruf= zugriff= abruf-verborgen= archiv-url= archiv-datum= archiv-bot= kommentar= zitat= AT= CH= offline= | 0 | Wikipedia:Vorlagenfehler/Vorlage:Internetquelle}} | template= Vorlage:Internetquelle | format=0 | preview=1
}}</ref>0,25 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1994 | Linux-Kernel 1.0 (nur i386) | < 0,2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1996 | Linux-Kernel 2.0 (IA-32, Alpha, MIPS, SPARC) | 0,72 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1999 | Linux-Kernel 2.2 | 1,7 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2001 | Linux-Kernel 2.4 | 3,2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2003 | Linux-Kernel 2.6.0 | 8,1 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2005 | XNU 792.x (Darwin 8.x bzw. Mac OS X 10.4) | <ref name="macosxinternals">{{#invoke:Vorlage:Literatur|f}}</ref>2 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2011 | Linux-Kernel 2.6.39 und 3.0 | 14,5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2012 | Linux-Kernel 3.2 LTS | <ref>{{#if:2019-09-12|{{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}| |}}}}{{#if:Greg Kroah-Hartman, Jonathan Corbet, Amanda McPherson|Greg Kroah-Hartman, Jonathan Corbet, Amanda McPherson: }}{{#if:https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf%7C{{#if:Linux Kernel Development: How Fast it is Going, Who is Doing It, What They are Doing, and Who is Sponsoring It|[{{#invoke:Vorlage:Internetquelle|archivURL|1={{#invoke:URLutil|getNormalized|1=https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf}}}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=Linux Kernel Development: How Fast it is Going, Who is Doing It, What They are Doing, and Who is Sponsoring It}}]{{#if:PDF; 0,6 MB| (PDF; 0,6 MB)}}{{#if:| {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}|{{#if:http://go.linuxfoundation.org/who-writes-linux-2012%7C{{#if:{{#invoke:TemplUtl%7Cfaculty%7C1}}%7C{{#invoke:Vorlage:Internetquelle%7CTitelFormat%7Ctitel={{#invoke:WLink%7CgetEscapedTitle%7C1=Linux Kernel Development: How Fast it is Going, Who is Doing It, What They are Doing, and Who is Sponsoring It}}}}|[{{#invoke:URLutil|getNormalized|1=http://go.linuxfoundation.org/who-writes-linux-2012}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{#invoke:WLink|getEscapedTitle|1=Linux Kernel Development: How Fast it is Going, Who is Doing It, What They are Doing, and Who is Sponsoring It}}}}]}}{{#if:PDF; 0,6 MB| (PDF; 0,6 MB{{#if:1Linux Foundation2012-03https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf{{#if: 2013-01-08 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ) | de | 1}}}}| ; | {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}}}{{#if:http://go.linuxfoundation.org/who-writes-linux-2012%7C{{#if:{{#invoke:URLutil%7CisResourceURL%7C1=http://go.linuxfoundation.org/who-writes-linux-2012}} | }}}}{{#if:Linux Kernel Development: How Fast it is Going, Who is Doing It, What They are Doing, and Who is Sponsoring It|{{#if:{{#invoke:WLink|isValidLinktext|1=Linux Kernel Development: How Fast it is Going, Who is Doing It, What They are Doing, and Who is Sponsoring It|lines=0}} | }}}}{{#if: | In: {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{{werk}}}}}}}{{#if: Linux Foundation| Linux Foundation{{#if: 2012-03https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf%7C,%7C{{#if: 2013-01-08 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: 2012-03| {{#if:{{#invoke:DateTime|format|2012-03|noerror=1}} | format|2012-03|T._Monat JJJJ}} | failure|1=Fehler bei Vorlage:Internetquelle, datum=2012-03|class=Zitationswartung}} }}{{#if: https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf%7C,%7C{{#if: 2013-01-08 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | S. {{{seiten}}}{{#if: https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf%7C,%7C{{#if: 2013-01-08 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf{{#invoke:TemplUtl%7Cfaculty%7C1}}%7C+{{#if:2012-03Linux Foundation|{{#if:https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf%7Carchiviert%7Cehemals}}%7C{{#if:https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf%7CArchiviert%7CEhemals}}}}+{{#if:https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf%7Cvom%7Cim}}+Vorlage:Referrer{{#if:{{#invoke:TemplUtl|faculty|1}}| (nicht mehr online verfügbar)}}{{#if: 2019-09-12| am {{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}|2019-09-12{{#if:619080 |
;}}}}{{#if: 2013-01-08| {{#if:2012-03Linux Foundationhttps://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf{{#invoke:TemplUtl%7Cfaculty%7C1}}%7Cabgerufen%7CAbgerufen}} {{#switch: {{#invoke:Str|len| {{#invoke:DateTime|format| 2013-01-08 |ISO|noerror=1}} }} | 4=im Jahr | 7=im | 10=am | failure|1=Fehler bei Vorlage:Internetquelle, abruf=2013-01-08|class=Zitationswartung}} }} {{#invoke:DateTime|format|2013-01-08|T._Monat JJJJ}}
|
failure|1=Vorlage:Internetquelle | abruf=2026-MM-TT ist Pflichtparameter}} }}{{#if:{{#ifeq:en|de |
1}}}}|{{#if:1Linux Foundation2012-03https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf{{#if: 2013-01-08 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ( | | (}}
}}{{#ifeq:{{#if:en|en|de}}|de||
{{#invoke:Multilingual|format|en|slang=!|split=[%s,]+|shift=m|separator=, }}}}{{#if: |{{#ifeq:{{#if:en|en|de}}|de||, }}{{{kommentar}}}}})}}{{#if: 2012-03https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf{{#if: 2013-01-08 | {{#if:{{#invoke:TemplUtl|faculty|}}||1}} }}en|{{#if: |: {{
#if:
|
„{{
#ifeq: {{#if:{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de
|
Vorlage:Str trim | flat}}
}}“
|
faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de | „Vorlage:Str trim“ | quote | 1={{#if: | flat}} | flat}} }} | faculty|}}|de-CH|de}} | 3=1}} }}
}}{{#if: |
: }}{{#if: | , deutsch: „“ }}) | {{#if: | , deutsch: „“ }}) | (deutsch: „“) }}
}} }}{{#if: {{{zitat}}} |
{{#if: | {{#if: {{{zitat}}} | Vorlage:": Text= und 1= gleichzeitig, bzw. Pipe zu viel }} }}
|
Vorlage:": Text= fehlt }}{{#if: | {{#if: {{#invoke:Text|unstrip|{{{ref}}}}}
|
Vorlage:": Ungültiger Wert: ref=
|
{{{ref}}} }}
}}|.{{#if:{{#invoke:TemplUtl|faculty|1}}|{{#if:https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf%7C%7C{{#ifeq: 1 | JaKeinHinweis |{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://go.linuxfoundation.org/who-writes-linux-2012 | [3] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://go.linuxfoundation.org/who-writes-linux-2012
|
isWebURL|http://go.linuxfoundation.org/who-writes-linux-2012}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://go.linuxfoundation.org/who-writes-linux-2012 Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://go.linuxfoundation.org/who-writes-linux-2012
|
isWebURL|http://go.linuxfoundation.org/who-writes-linux-2012}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}[http://go.linuxfoundation.org/who-writes-linux-2012 }}|{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://go.linuxfoundation.org/who-writes-linux-2012 | [4] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: 2022-03-15 14:01:27 InternetArchiveBot | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://go.linuxfoundation.org/who-writes-linux-2012
|
isWebURL|http://go.linuxfoundation.org/who-writes-linux-2012}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://go.linuxfoundation.org/who-writes-linux-2012 Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: 2022-03-15 14:01:27 InternetArchiveBot |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://go.linuxfoundation.org/who-writes-linux-2012
|
isWebURL|http://go.linuxfoundation.org/who-writes-linux-2012}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}[http://go.linuxfoundation.org/who-writes-linux-2012 }} }}}}}}}}}}{{#if:2022-03-15 14:01:27 InternetArchiveBot| {{#invoke:Vorlage:Internetquelle|archivBot|stamp=2022-03-15 14:01:27 InternetArchiveBot|text={{#if:https://web.archive.org/web/20190912023947/https://storage.pardot.com/6342/48856/lf_kernel_development_2012.pdf%7CVorlage:Webarchiv/archiv-bot}} }}}}{{#invoke:TemplatePar|check |
all= url= titel= | opt= autor= hrsg= format= sprache= titelerg= werk= seiten= datum= abruf= zugriff= abruf-verborgen= archiv-url= archiv-datum= archiv-bot= kommentar= zitat= AT= CH= offline= | 0 | Wikipedia:Vorlagenfehler/Vorlage:Internetquelle}} | template= Vorlage:Internetquelle | format=0 | preview=1
}}</ref>15 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2012 | Linux-Kernel 3.6 | <ref name="heiseonline_1714142">Vorlage:Heise online</ref>15,9 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2015 | Linux-Kernel 4.2 | <ref name="heiseonline_730780">Vorlage:Heise online</ref>> 20 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2018 | Linux-Kernel 4.15 | <ref name="heiseonline_3900646">Vorlage:Heise online</ref>25,3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Komplette Betriebssysteme | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| FreeBSD | 8,8 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| OpenSolaris | 9,7 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1993 | Windows NT 3.1 | <ref name="LOC_WinNT_Knowing.NET_2005">{{#if:2014-05-18|{{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}| |}}}}{{#if:|{{{autor}}}: }}{{#if:https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7C{{#if:How Many Lines of Code in Windows?|[{{#invoke:Vorlage:Internetquelle|archivURL|1={{#invoke:URLutil|getNormalized|1=https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/}}}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=How Many Lines of Code in Windows?}}]{{#if:| ({{{format}}})}}{{#if:| {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}|{{#if:http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7C{{#if:{{#invoke:TemplUtl%7Cfaculty%7C1}}%7C{{#invoke:Vorlage:Internetquelle%7CTitelFormat%7Ctitel={{#invoke:WLink%7CgetEscapedTitle%7C1=How Many Lines of Code in Windows?}}}}|[{{#invoke:URLutil|getNormalized|1=http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{#invoke:WLink|getEscapedTitle|1=How Many Lines of Code in Windows?}}}}]}}{{#if:| ({{{format}}}{{#if:1Knowing.NET2005-12-06https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/{{#if: 2014-05-14 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ) | de | 1}}}}| ; | {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}}}{{#if:http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7C{{#if:{{#invoke:URLutil%7CisResourceURL%7C1=http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/}} | }}}}{{#if:How Many Lines of Code in Windows?|{{#if:{{#invoke:WLink|isValidLinktext|1=How Many Lines of Code in Windows?|lines=0}} | }}}}{{#if: | In: {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{{werk}}}}}}}{{#if: Knowing.NET| Knowing.NET{{#if: 2005-12-06https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7C,%7C{{#if: 2014-05-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: 2005-12-06| {{#if:{{#invoke:DateTime|format|2005-12-06|noerror=1}} | format|2005-12-06|T._Monat JJJJ}} | failure|1=Fehler bei Vorlage:Internetquelle, datum=2005-12-06|class=Zitationswartung}} }}{{#if: https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7C,%7C{{#if: 2014-05-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | S. {{{seiten}}}{{#if: https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7C,%7C{{#if: 2014-05-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/{{#invoke:TemplUtl%7Cfaculty%7C1}}%7C+{{#if:2005-12-06Knowing.NET%7C{{#if:https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7Carchiviert%7Cehemals}}%7C{{#if:https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7CArchiviert%7CEhemals}}}}+{{#if:https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7Cvom%7Cim}}+Vorlage:Referrer{{#if:{{#invoke:TemplUtl|faculty|1}}| (nicht mehr online verfügbar)}}{{#if: 2014-05-18| am {{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}|2014-05-18{{#if:619080 |
;}}}}{{#if: 2014-05-14| {{#if:2005-12-06Knowing.NEThttps://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/{{#invoke:TemplUtl%7Cfaculty%7C1}}%7Cabgerufen%7CAbgerufen}} {{#switch: {{#invoke:Str|len| {{#invoke:DateTime|format| 2014-05-14 |ISO|noerror=1}} }} | 4=im Jahr | 7=im | 10=am | failure|1=Fehler bei Vorlage:Internetquelle, abruf=2014-05-14|class=Zitationswartung}} }} {{#invoke:DateTime|format|2014-05-14|T._Monat JJJJ}}
|
failure|1=Vorlage:Internetquelle | abruf=2026-MM-TT ist Pflichtparameter}} }}{{#if:{{#ifeq:en|de |
1}}}}|{{#if:1Knowing.NET2005-12-06https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/{{#if: 2014-05-14 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ( | | (}}
}}{{#ifeq:{{#if:en|en|de}}|de||
{{#invoke:Multilingual|format|en|slang=!|split=[%s,]+|shift=m|separator=, }}}}{{#if: |{{#ifeq:{{#if:en|en|de}}|de||, }}{{{kommentar}}}}})}}{{#if: 2005-12-06https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/{{#if: 2014-05-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||1}} }}en|{{#if: |: {{
#if:
|
„{{
#ifeq: {{#if:{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de
|
Vorlage:Str trim | flat}}
}}“
|
faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de | „Vorlage:Str trim“ | quote | 1={{#if: | flat}} | flat}} }} | faculty|}}|de-CH|de}} | 3=1}} }}
}}{{#if: |
: }}{{#if: | , deutsch: „“ }}) | {{#if: | , deutsch: „“ }}) | (deutsch: „“) }}
}} }}{{#if: {{{zitat}}} |
{{#if: | {{#if: {{{zitat}}} | Vorlage:": Text= und 1= gleichzeitig, bzw. Pipe zu viel }} }}
|
Vorlage:": Text= fehlt }}{{#if: | {{#if: {{#invoke:Text|unstrip|{{{ref}}}}}
|
Vorlage:": Ungültiger Wert: ref=
|
{{{ref}}} }}
}}|.{{#if:{{#invoke:TemplUtl|faculty|1}}|{{#if:https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7C%7C{{#ifeq: 1 | JaKeinHinweis |{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/ | [5] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/
|
isWebURL|http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/ Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/
|
isWebURL|http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}[http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/ }}|{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/ | [6] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: 2022-03-15 14:01:27 InternetArchiveBot | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/
|
isWebURL|http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/ Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: 2022-03-15 14:01:27 InternetArchiveBot |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/
|
isWebURL|http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}[http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/ }} }}}}}}}}}}{{#if:2022-03-15 14:01:27 InternetArchiveBot| {{#invoke:Vorlage:Internetquelle|archivBot|stamp=2022-03-15 14:01:27 InternetArchiveBot|text={{#if:https://web.archive.org/web/20140518092255/http://www.knowing.net/index.php/2005/12/06/how-many-lines-of-code-in-windows/%7CVorlage:Webarchiv/archiv-bot}} }}}}{{#invoke:TemplatePar|check |
all= url= titel= | opt= autor= hrsg= format= sprache= titelerg= werk= seiten= datum= abruf= zugriff= abruf-verborgen= archiv-url= archiv-datum= archiv-bot= kommentar= zitat= AT= CH= offline= | 0 | Wikipedia:Vorlagenfehler/Vorlage:Internetquelle}} | template= Vorlage:Internetquelle | format=0 | preview=1
}}</ref>4–5 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1994 | Windows NT 3.5 | <ref name="LOC_WinNT_Knowing.NET_2005" />7–8 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1996 | Windows NT 4.0 | <ref name="LOC_WinNT_Knowing.NET_2005" />11–12 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2000 | Debian GNU/Linux 2.2 | <ref name="counting-potatoes">{{#if:2008-07-04|{{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}| |}}}}{{#if:Jesús M. González-Barahona, Miguel A. Ortuño Pérez, Pedro de las Heras Quirós, José Centeno González, Vicente Matellán Olivera|Jesús M. González-Barahona, Miguel A. Ortuño Pérez, Pedro de las Heras Quirós, José Centeno González, Vicente Matellán Olivera: }}{{#if:https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7C{{#if:Counting potatoes: the size of Debian 2.2|[{{#invoke:Vorlage:Internetquelle|archivURL|1={{#invoke:URLutil|getNormalized|1=https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/}}}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=Counting potatoes: the size of Debian 2.2}}]{{#if:| ({{{format}}})}}{{#if:| {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}|{{#if:http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7C{{#if:{{#invoke:TemplUtl%7Cfaculty%7C1}}%7C{{#invoke:Vorlage:Internetquelle%7CTitelFormat%7Ctitel={{#invoke:WLink%7CgetEscapedTitle%7C1=Counting potatoes: the size of Debian 2.2}}}}|[{{#invoke:URLutil|getNormalized|1=http://people.debian.org/~jgb/debian-counting/counting-potatoes/}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{#invoke:WLink|getEscapedTitle|1=Counting potatoes: the size of Debian 2.2}}}}]}}{{#if:| ({{{format}}}{{#if:12002-01-03https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}} | 1}}}} | ) | de | 1}}}}| ; | {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}}}{{#if:http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7C{{#if:{{#invoke:URLutil%7CisResourceURL%7C1=http://people.debian.org/~jgb/debian-counting/counting-potatoes/}} | }}}}{{#if:Counting potatoes: the size of Debian 2.2|{{#if:{{#invoke:WLink|isValidLinktext|1=Counting potatoes: the size of Debian 2.2|lines=0}} | }}}}{{#if: | In: {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{{werk}}}}}}}{{#if: | {{{hrsg}}}{{#if: 2002-01-03https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7C,%7C{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}}||,}}}}}}}}{{#if: 2002-01-03| {{#if:{{#invoke:DateTime|format|2002-01-03|noerror=1}} | format|2002-01-03|T._Monat JJJJ}} | failure|1=Fehler bei Vorlage:Internetquelle, datum=2002-01-03|class=Zitationswartung}} }}{{#if: https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7C,%7C{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}}||,}}}}}}}}{{#if: | S. {{{seiten}}}{{#if: https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7C,%7C{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}}||,}}}}}}}}{{#if: https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/{{#invoke:TemplUtl%7Cfaculty%7C1}}%7C+{{#if:2002-01-03%7C{{#if:https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7Carchiviert%7Cehemals}}%7C{{#if:https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7CArchiviert%7CEhemals}}}}+{{#if:https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7Cvom%7Cim}}+Vorlage:Referrer{{#if:{{#invoke:TemplUtl|faculty|1}}| (nicht mehr online verfügbar)}}{{#if: 2008-07-04| am {{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}|2008-07-04{{#if:619080 |
;}}}}{{#if: 2013-05-02| {{#if:2002-01-03https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/{{#invoke:TemplUtl%7Cfaculty%7C1}}%7Cabgerufen%7CAbgerufen}} {{#switch: {{#invoke:Str|len| {{#invoke:DateTime|format| 2013-05-02 |ISO|noerror=1}} }} | 4=im Jahr | 7=im | 10=am | failure|1=Fehler bei Vorlage:Internetquelle, abruf=2013-05-02|class=Zitationswartung}} }} {{#invoke:DateTime|format|2013-05-02|T._Monat JJJJ}}
|
failure|1=Vorlage:Internetquelle | abruf=2026-MM-TT ist Pflichtparameter}} }}{{#if:{{#ifeq:en|de |
1}}}}|{{#if:12002-01-03https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}} | 1}}}} | ( | | (}}
}}{{#ifeq:{{#if:en|en|de}}|de||
{{#invoke:Multilingual|format|en|slang=!|split=[%s,]+|shift=m|separator=, }}}}{{#if: |{{#ifeq:{{#if:en|en|de}}|de||, }}{{{kommentar}}}}})}}{{#if: 2002-01-03https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}}||1}} }}en|{{#if: |: {{
#if:
|
„{{
#ifeq: {{#if:{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de
|
Vorlage:Str trim | flat}}
}}“
|
faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de | „Vorlage:Str trim“ | quote | 1={{#if: | flat}} | flat}} }} | faculty|}}|de-CH|de}} | 3=1}} }}
}}{{#if: |
: }}{{#if: | , deutsch: „“ }}) | {{#if: | , deutsch: „“ }}) | (deutsch: „“) }}
}} }}{{#if: {{{zitat}}} |
{{#if: | {{#if: {{{zitat}}} | Vorlage:": Text= und 1= gleichzeitig, bzw. Pipe zu viel }} }}
|
Vorlage:": Text= fehlt }}{{#if: | {{#if: {{#invoke:Text|unstrip|{{{ref}}}}}
|
Vorlage:": Ungültiger Wert: ref=
|
{{{ref}}} }}
}}|.{{#if:{{#invoke:TemplUtl|faculty|1}}|{{#if:https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7C%7C{{#ifeq: 1 | JaKeinHinweis |{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://people.debian.org/~jgb/debian-counting/counting-potatoes/ | [7] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://people.debian.org/~jgb/debian-counting/counting-potatoes/
|
isWebURL|http://people.debian.org/~jgb/debian-counting/counting-potatoes/}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://people.debian.org/~jgb/debian-counting/counting-potatoes/ Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://people.debian.org/~jgb/debian-counting/counting-potatoes/
|
isWebURL|http://people.debian.org/~jgb/debian-counting/counting-potatoes/}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}[http://people.debian.org/~jgb/debian-counting/counting-potatoes/ }}|{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://people.debian.org/~jgb/debian-counting/counting-potatoes/ | [8] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://people.debian.org/~jgb/debian-counting/counting-potatoes/
|
isWebURL|http://people.debian.org/~jgb/debian-counting/counting-potatoes/}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://people.debian.org/~jgb/debian-counting/counting-potatoes/ Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://people.debian.org/~jgb/debian-counting/counting-potatoes/
|
isWebURL|http://people.debian.org/~jgb/debian-counting/counting-potatoes/}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}[http://people.debian.org/~jgb/debian-counting/counting-potatoes/ }} }}}}}}}}}}{{#if:| {{#invoke:Vorlage:Internetquelle|archivBot|stamp={{{archiv-bot}}}|text={{#if:https://web.archive.org/web/20080704205502/http://people.debian.org/~jgb/debian-counting/counting-potatoes/%7CVorlage:Webarchiv/archiv-bot}} }}}}{{#invoke:TemplatePar|check |
all= url= titel= | opt= autor= hrsg= format= sprache= titelerg= werk= seiten= datum= abruf= zugriff= abruf-verborgen= archiv-url= archiv-datum= archiv-bot= kommentar= zitat= AT= CH= offline= | 0 | Wikipedia:Vorlagenfehler/Vorlage:Internetquelle}} | template= Vorlage:Internetquelle | format=0 | preview=1
}}</ref><ref name="debian-sloc">{{#if:2013-03-14|{{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}| |}}}}{{#if:Gregorio Robles|Gregorio Robles: }}{{#if:https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/%7C{{#if:Debian Counting|[{{#invoke:Vorlage:Internetquelle|archivURL|1={{#invoke:URLutil|getNormalized|1=https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/}}}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=Debian Counting}}]{{#if:| ({{{format}}})}}{{#if:| {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}|{{#if:http://debian-counting.libresoft.es/%7C{{#if:{{#invoke:TemplUtl%7Cfaculty%7C1}}%7C{{#invoke:Vorlage:Internetquelle%7CTitelFormat%7Ctitel={{#invoke:WLink%7CgetEscapedTitle%7C1=Debian Counting}}}}|[{{#invoke:URLutil|getNormalized|1=http://debian-counting.libresoft.es/}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{#invoke:WLink|getEscapedTitle|1=Debian Counting}}}}]}}{{#if:| ({{{format}}}{{#if:1https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}}||1}}}} |
) | de | 1}}}}| ; | {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}}}{{#if:http://debian-counting.libresoft.es/%7C{{#if:{{#invoke:URLutil%7CisResourceURL%7C1=http://debian-counting.libresoft.es/}} | }}}}{{#if:Debian Counting|{{#if:{{#invoke:WLink|isValidLinktext|1=Debian Counting|lines=0}} | }}}}{{#if: | In: {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{{werk}}}}}}}{{#if: | {{{hrsg}}}{{#if: https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/%7C,%7C{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}}||,}}}}}}}}{{#if: | {{#if:{{#invoke:DateTime|format|{{{datum}}}|noerror=1}} | format|{{{datum}}}|T._Monat JJJJ}} | failure|1=Fehler bei Vorlage:Internetquelle, datum={{{datum}}}|class=Zitationswartung}} }}{{#if: https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/%7C,%7C{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}}||,}}}}}}}}{{#if: | S. {{{seiten}}}{{#if: https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/%7C,%7C{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}}||,}}}}}}}}{{#if: https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/{{#invoke:TemplUtl%7Cfaculty%7C1}}%7C+{{#if:%7C{{#if:https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/%7Carchiviert%7Cehemals}}%7C{{#if:https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/%7CArchiviert%7CEhemals}}}}+{{#if:https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/%7Cvom%7Cim}}+Vorlage:Referrer{{#if:{{#invoke:TemplUtl|faculty|1}}| (nicht mehr online verfügbar)}}{{#if: 2013-03-14| am {{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}|2013-03-14{{#if:619080 |
;}}}}{{#if: 2013-05-02| {{#if:https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/{{#invoke:TemplUtl%7Cfaculty%7C1}}%7Cabgerufen%7CAbgerufen}} {{#switch: {{#invoke:Str|len| {{#invoke:DateTime|format| 2013-05-02 |ISO|noerror=1}} }} | 4=im Jahr | 7=im | 10=am | failure|1=Fehler bei Vorlage:Internetquelle, abruf=2013-05-02|class=Zitationswartung}} }} {{#invoke:DateTime|format|2013-05-02|T._Monat JJJJ}}
|
failure|1=Vorlage:Internetquelle | abruf=2026-MM-TT ist Pflichtparameter}} }}{{#if:{{#ifeq:en|de |
1}}}}|{{#if:1https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}} | 1}}}} | ( | | (}}
}}{{#ifeq:{{#if:en|en|de}}|de||
{{#invoke:Multilingual|format|en|slang=!|split=[%s,]+|shift=m|separator=, }}}}{{#if: |{{#ifeq:{{#if:en|en|de}}|de||, }}{{{kommentar}}}}})}}{{#if: https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/{{#if: 2013-05-02 | {{#if:{{#invoke:TemplUtl|faculty|1}}||1}} }}en|{{#if: |: {{
#if:
|
„{{
#ifeq: {{#if:{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de
|
Vorlage:Str trim | flat}}
}}“
|
faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de | „Vorlage:Str trim“ | quote | 1={{#if: | flat}} | flat}} }} | faculty|}}|de-CH|de}} | 3=1}} }}
}}{{#if: |
: }}{{#if: | , deutsch: „“ }}) | {{#if: | , deutsch: „“ }}) | (deutsch: „“) }}
}} }}{{#if: {{{zitat}}} |
{{#if: | {{#if: {{{zitat}}} | Vorlage:": Text= und 1= gleichzeitig, bzw. Pipe zu viel }} }}
|
Vorlage:": Text= fehlt }}{{#if: | {{#if: {{#invoke:Text|unstrip|{{{ref}}}}}
|
Vorlage:": Ungültiger Wert: ref=
|
{{{ref}}} }}
}}|.{{#if:{{#invoke:TemplUtl|faculty|1}}|{{#if:https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/%7C%7C{{#ifeq: 1 | JaKeinHinweis |{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://debian-counting.libresoft.es/ | [9] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://debian-counting.libresoft.es/
|
isWebURL|http://debian-counting.libresoft.es/}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://debian-counting.libresoft.es/ Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://debian-counting.libresoft.es/
|
isWebURL|http://debian-counting.libresoft.es/}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}[http://debian-counting.libresoft.es/ }}|{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://debian-counting.libresoft.es/ | [10] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://debian-counting.libresoft.es/
|
isWebURL|http://debian-counting.libresoft.es/}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://debian-counting.libresoft.es/ Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://debian-counting.libresoft.es/
|
isWebURL|http://debian-counting.libresoft.es/}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}[http://debian-counting.libresoft.es/ }} }}}}}}}}}}{{#if:| {{#invoke:Vorlage:Internetquelle|archivBot|stamp={{{archiv-bot}}}|text={{#if:https://web.archive.org/web/20130314230249/http://debian-counting.libresoft.es/%7CVorlage:Webarchiv/archiv-bot}} }}}}{{#invoke:TemplatePar|check |
all= url= titel= | opt= autor= hrsg= format= sprache= titelerg= werk= seiten= datum= abruf= zugriff= abruf-verborgen= archiv-url= archiv-datum= archiv-bot= kommentar= zitat= AT= CH= offline= | 0 | Wikipedia:Vorlagenfehler/Vorlage:Internetquelle}} | template= Vorlage:Internetquelle | format=0 | preview=1
}}</ref>55–59 |
| 2000 | Windows 2000 | <ref name="LOC_WinNT_Knowing.NET_2005" />> 29 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2001 | Windows XP | <ref name="LOC_WinNT_Knowing.NET_2005" />40 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2002 | Debian GNU/Linux 3.0 | <ref name="debian-sloc" />104 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2003 | Windows Server 2003 | <ref name="LOC_WinNT_Knowing.NET_2005" />50 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2005 | Debian GNU/Linux 3.1 | <ref name="debian-sloc" />215 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2005 | Mac OS X Tiger (10.4) | <ref>{{#if:|{{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}| |}}}}{{#if:Steve Jobs|Steve Jobs: }}{{#if:|{{#if:Live from WWDC 2006: Steve Jobs Keynote|[{{#invoke:Vorlage:Internetquelle|archivURL|1={{#invoke:URLutil|getNormalized|1={{{archiv-url}}}}}}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=Live from WWDC 2006: Steve Jobs Keynote}}]{{#if:| ({{{format}}})}}{{#if:| {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}|{{#if:http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/%7C{{#if:{{#invoke:TemplUtl%7Cfaculty%7C}}%7C{{#invoke:Vorlage:Internetquelle%7CTitelFormat%7Ctitel={{#invoke:WLink%7CgetEscapedTitle%7C1=Live from WWDC 2006: Steve Jobs Keynote}}}}|[{{#invoke:URLutil|getNormalized|1=http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{#invoke:WLink|getEscapedTitle|1=Live from WWDC 2006: Steve Jobs Keynote}}}}]}}{{#if:| ({{{format}}}{{#if:2006-08-07{{#if: 2007-02-16 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ) | de | 1}}}}Enthält vermutlich auch ein paar Anwendungsprogramme.| ; | {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}}}{{#if:http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/%7C{{#if:{{#invoke:URLutil%7CisResourceURL%7C1=http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/}} | }}}}{{#if:Live from WWDC 2006: Steve Jobs Keynote|{{#if:{{#invoke:WLink|isValidLinktext|1=Live from WWDC 2006: Steve Jobs Keynote|lines=0}} | }}}}{{#if: | In: {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{{werk}}}}}}}{{#if: | {{{hrsg}}}{{#if: 2006-08-07|,|{{#if: 2007-02-16 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: 2006-08-07| {{#if:{{#invoke:DateTime|format|2006-08-07|noerror=1}} | format|2006-08-07|T._Monat JJJJ}} | failure|1=Fehler bei Vorlage:Internetquelle, datum=2006-08-07|class=Zitationswartung}} }}{{#if: |,|{{#if: 2007-02-16 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | S. {{{seiten}}}{{#if: |,|{{#if: 2007-02-16 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: {{#invoke:TemplUtl|faculty|}}| {{#if:2006-08-07|{{#if:|archiviert|ehemals}}|{{#if:|Archiviert|Ehemals}}}} {{#if:|vom|im}} Vorlage:Referrer{{#if:{{#invoke:TemplUtl|faculty|}}| (nicht mehr online verfügbar)}}{{#if: | am {{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}|{{{archiv-datum}}}{{#if:619080 |
;}}}}{{#if: 2007-02-16| {{#if:2006-08-07{{#invoke:TemplUtl|faculty|}}|abgerufen|Abgerufen}} {{#switch: {{#invoke:Str|len| {{#invoke:DateTime|format| 2007-02-16 |ISO|noerror=1}} }} | 4=im Jahr | 7=im | 10=am | failure|1=Fehler bei Vorlage:Internetquelle, abruf=2007-02-16|class=Zitationswartung}} }} {{#invoke:DateTime|format|2007-02-16|T._Monat JJJJ}}
|
failure|1=Vorlage:Internetquelle | abruf=2026-MM-TT ist Pflichtparameter}} }}{{#if:{{#ifeq:en|de |
1}}}}Enthält vermutlich auch ein paar Anwendungsprogramme.|{{#if:2006-08-07{{#if: 2007-02-16 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ( | | (}}
}}{{#ifeq:{{#if:en|en|de}}|de||
{{#invoke:Multilingual|format|en|slang=!|split=[%s,]+|shift=m|separator=, }}}}{{#if: Enthält vermutlich auch ein paar Anwendungsprogramme.|{{#ifeq:{{#if:en|en|de}}|de||, }}Enthält vermutlich auch ein paar Anwendungsprogramme.}})}}{{#if: 2006-08-07{{#if: 2007-02-16 | {{#if:{{#invoke:TemplUtl|faculty|}}||1}} }}enEnthält vermutlich auch ein paar Anwendungsprogramme.86 million lines of source code that was ported to run on an entirely new architecture with zero hiccups|{{#if: 86 million lines of source code that was ported to run on an entirely new architecture with zero hiccups|: {{
#if:
|
„{{
#ifeq: {{#if:{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de
|
Vorlage:Str trim | flat}}
}}“
|
faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de | „Vorlage:Str trim“ | quote | 1={{#if: | flat}} | flat}} }} | faculty|}}|de-CH|de}} | 3=1}} }}
}}{{#if: |
: }}{{#if: | , deutsch: „“ }}) | {{#if: | , deutsch: „“ }}) | (deutsch: „“) }}
}} }}{{#if: 86 million lines of source code that was ported to run on an entirely new architecture with zero hiccups |
{{#if: | {{#if: 86 million lines of source code that was ported to run on an entirely new architecture with zero hiccups | Vorlage:": Text= und 1= gleichzeitig, bzw. Pipe zu viel }} }}
|
Vorlage:": Text= fehlt }}{{#if: | {{#if: {{#invoke:Text|unstrip|{{{ref}}}}}
|
Vorlage:": Ungültiger Wert: ref=
|
{{{ref}}} }}
}}|.{{#if:{{#invoke:TemplUtl|faculty|}}|{{#if:||{{#ifeq: | JaKeinHinweis |{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/ | [11] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/
|
isWebURL|http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/ Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/
|
isWebURL|http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}[http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/ }}|{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/ | [12] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/
|
isWebURL|http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/ Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/
|
isWebURL|http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}[http://www.engadget.com/2006/08/07/live-from-wwdc-2006-steve-jobs-keynote/ }} }}}}}}}}}}{{#if:| {{#invoke:Vorlage:Internetquelle|archivBot|stamp={{{archiv-bot}}}|text={{#if:|Vorlage:Webarchiv/archiv-bot}} }}}}{{#invoke:TemplatePar|check |
all= url= titel= | opt= autor= hrsg= format= sprache= titelerg= werk= seiten= datum= abruf= zugriff= abruf-verborgen= archiv-url= archiv-datum= archiv-bot= kommentar= zitat= AT= CH= offline= | 0 | Wikipedia:Vorlagenfehler/Vorlage:Internetquelle}} | template= Vorlage:Internetquelle | format=0 | preview=1
}}</ref>86 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2007 | Debian GNU/Linux 4.0 | <ref name="debian-sloc" />283 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2007 | Windows Vista | <ref name="fc_infographic-how-many-lines-of-code-is-your-favorite-app">{{#if:|{{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}| |}}}}{{#if:Mark Wilson|Mark Wilson: }}{{#if:|{{#if:Infographic: How Many Lines Of Code Is Your Favorite App?|[{{#invoke:Vorlage:Internetquelle|archivURL|1={{#invoke:URLutil|getNormalized|1={{{archiv-url}}}}}}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=Infographic: How Many Lines Of Code Is Your Favorite App?}}]{{#if:| ({{{format}}})}}{{#if:| {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}|{{#if:https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app%7C{{#if:{{#invoke:TemplUtl%7Cfaculty%7C}}%7C{{#invoke:Vorlage:Internetquelle%7CTitelFormat%7Ctitel={{#invoke:WLink%7CgetEscapedTitle%7C1=Infographic: How Many Lines Of Code Is Your Favorite App?}}}}|[{{#invoke:URLutil|getNormalized|1=https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{#invoke:WLink|getEscapedTitle|1=Infographic: How Many Lines Of Code Is Your Favorite App?}}}}]}}{{#if:| ({{{format}}}{{#if:Fast Company magazine online2013-11-07{{#if: 2020-05-29 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ) | de | 1}}}}| ; | {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}}}{{#if:https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app%7C{{#if:{{#invoke:URLutil%7CisResourceURL%7C1=https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app}} | }}}}{{#if:Infographic: How Many Lines Of Code Is Your Favorite App?|{{#if:{{#invoke:WLink|isValidLinktext|1=Infographic: How Many Lines Of Code Is Your Favorite App?|lines=0}} | }}}}{{#if: Fast Company magazine online| In: {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=Fast Company magazine online}}}}{{#if: | {{{hrsg}}}{{#if: 2013-11-07|,|{{#if: 2020-05-29 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: 2013-11-07| {{#if:{{#invoke:DateTime|format|2013-11-07|noerror=1}} | format|2013-11-07|T._Monat JJJJ}} | failure|1=Fehler bei Vorlage:Internetquelle, datum=2013-11-07|class=Zitationswartung}} }}{{#if: |,|{{#if: 2020-05-29 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | S. {{{seiten}}}{{#if: |,|{{#if: 2020-05-29 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: {{#invoke:TemplUtl|faculty|}}| {{#if:2013-11-07|{{#if:|archiviert|ehemals}}|{{#if:|Archiviert|Ehemals}}}} {{#if:|vom|im}} Vorlage:Referrer{{#if:{{#invoke:TemplUtl|faculty|}}| (nicht mehr online verfügbar)}}{{#if: | am {{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}|{{{archiv-datum}}}{{#if:619080 |
;}}}}{{#if: 2020-05-29| {{#if:2013-11-07{{#invoke:TemplUtl|faculty|}}|abgerufen|Abgerufen}} {{#switch: {{#invoke:Str|len| {{#invoke:DateTime|format| 2020-05-29 |ISO|noerror=1}} }} | 4=im Jahr | 7=im | 10=am | failure|1=Fehler bei Vorlage:Internetquelle, abruf=2020-05-29|class=Zitationswartung}} }} {{#invoke:DateTime|format|2020-05-29|T._Monat JJJJ}}
|
failure|1=Vorlage:Internetquelle | abruf=2026-MM-TT ist Pflichtparameter}} }}{{#if:{{#ifeq:en|de |
1}}}}|{{#if:Fast Company magazine online2013-11-07{{#if: 2020-05-29 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ( | | (}}
}}{{#ifeq:{{#if:en|en|de}}|de||
{{#invoke:Multilingual|format|en|slang=!|split=[%s,]+|shift=m|separator=, }}}}{{#if: |{{#ifeq:{{#if:en|en|de}}|de||, }}{{{kommentar}}}}})}}{{#if: 2013-11-07{{#if: 2020-05-29 | {{#if:{{#invoke:TemplUtl|faculty|}}||1}} }}enWindows Vista (2007), for instance, had 50 million lines of code, while Windows 7 shaved that figure down to 40 million.|{{#if: Windows Vista (2007), for instance, had 50 million lines of code, while Windows 7 shaved that figure down to 40 million.|: {{
#if:
|
„{{
#ifeq: {{#if:{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de
|
Vorlage:Str trim | flat}}
}}“
|
faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de | „Vorlage:Str trim“ | quote | 1={{#if: | flat}} | flat}} }} | faculty|}}|de-CH|de}} | 3=1}} }}
}}{{#if: |
: }}{{#if: | , deutsch: „“ }}) | {{#if: | , deutsch: „“ }}) | (deutsch: „“) }}
}} }}{{#if: Windows Vista (2007), for instance, had 50 million lines of code, while Windows 7 shaved that figure down to 40 million. |
{{#if: | {{#if: Windows Vista (2007), for instance, had 50 million lines of code, while Windows 7 shaved that figure down to 40 million. | Vorlage:": Text= und 1= gleichzeitig, bzw. Pipe zu viel }} }}
|
Vorlage:": Text= fehlt }}{{#if: | {{#if: {{#invoke:Text|unstrip|{{{ref}}}}}
|
Vorlage:": Ungültiger Wert: ref=
|
{{{ref}}} }}
}}|.{{#if:{{#invoke:TemplUtl|faculty|}}|{{#if:||{{#ifeq: | JaKeinHinweis |{{#switch: |
=Vorlage:Toter Link/Core{{#if: https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app | [13] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app
|
isWebURL|https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app
|
isWebURL|https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}[https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app }}|{{#switch: |
=Vorlage:Toter Link/Core{{#if: https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app | [14] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app
|
isWebURL|https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app
|
isWebURL|https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}[https://www.fastcompany.com/3021256/infographic-how-many-lines-of-code-is-your-favorite-app }} }}}}}}}}}}{{#if:| {{#invoke:Vorlage:Internetquelle|archivBot|stamp={{{archiv-bot}}}|text={{#if:|Vorlage:Webarchiv/archiv-bot}} }}}}{{#invoke:TemplatePar|check |
all= url= titel= | opt= autor= hrsg= format= sprache= titelerg= werk= seiten= datum= abruf= zugriff= abruf-verborgen= archiv-url= archiv-datum= archiv-bot= kommentar= zitat= AT= CH= offline= | 0 | Wikipedia:Vorlagenfehler/Vorlage:Internetquelle}} | template= Vorlage:Internetquelle | format=0 | preview=1
}}</ref>50 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2009 | Debian GNU/Linux 5.0 | <ref name="debian-sloc" />324 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2009 | Windows 7 | <ref name="fc_infographic-how-many-lines-of-code-is-your-favorite-app" />40 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Andere Software | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1983 | Lotus 1-2-3 1.0 | <ref name="heiseonline_1792736">Vorlage:Heise online</ref>0,02 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 1989 | Lotus 1-2-3 3.0 | <ref name="heiseonline_1792736" />0,4 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2007 | SAP NetWeaver 2007 | <ref>{{#if:|{{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}| |}}}}{{#if:|{{{autor}}}: }}{{#if:|{{#if:What SAP says about ABAP’s future|[{{#invoke:Vorlage:Internetquelle|archivURL|1={{#invoke:URLutil|getNormalized|1={{{archiv-url}}}}}}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=What SAP says about ABAP’s future}}]{{#if:| ({{{format}}})}}{{#if:| {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}|{{#if:http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html%7C{{#if:{{#invoke:TemplUtl%7Cfaculty%7C}}%7C{{#invoke:Vorlage:Internetquelle%7CTitelFormat%7Ctitel={{#invoke:WLink%7CgetEscapedTitle%7C1=What SAP says about ABAP’s future}}}}|[{{#invoke:URLutil|getNormalized|1=http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{#invoke:WLink|getEscapedTitle|1=What SAP says about ABAP’s future}}}}]}}{{#if:| ({{{format}}}{{#if:{{#if: 2011-11-20 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ) | de | 1}}}}| ; | {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}}}{{#if:http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html%7C{{#if:{{#invoke:URLutil%7CisResourceURL%7C1=http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html}} | }}}}{{#if:What SAP says about ABAP’s future|{{#if:{{#invoke:WLink|isValidLinktext|1=What SAP says about ABAP’s future|lines=0}} | }}}}{{#if: | In: {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{{werk}}}}}}}{{#if: | {{{hrsg}}}{{#if: |,|{{#if: 2011-11-20 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | {{#if:{{#invoke:DateTime|format|{{{datum}}}|noerror=1}} | format|{{{datum}}}|T._Monat JJJJ}} | failure|1=Fehler bei Vorlage:Internetquelle, datum={{{datum}}}|class=Zitationswartung}} }}{{#if: |,|{{#if: 2011-11-20 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | S. {{{seiten}}}{{#if: |,|{{#if: 2011-11-20 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: {{#invoke:TemplUtl|faculty|}}| {{#if:|{{#if:|archiviert|ehemals}}|{{#if:|Archiviert|Ehemals}}}} {{#if:|vom|im}} Vorlage:Referrer{{#if:{{#invoke:TemplUtl|faculty|}}| (nicht mehr online verfügbar)}}{{#if: | am {{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}|{{{archiv-datum}}}{{#if:619080 |
;}}}}{{#if: 2011-11-20| {{#if:{{#invoke:TemplUtl|faculty|}}|abgerufen|Abgerufen}} {{#switch: {{#invoke:Str|len| {{#invoke:DateTime|format| 2011-11-20 |ISO|noerror=1}} }} | 4=im Jahr | 7=im | 10=am | failure|1=Fehler bei Vorlage:Internetquelle, abruf=2011-11-20|class=Zitationswartung}} }} {{#invoke:DateTime|format|2011-11-20|T._Monat JJJJ}}
|
failure|1=Vorlage:Internetquelle | abruf=2026-MM-TT ist Pflichtparameter}} }}{{#if:{{#ifeq:en|de |
1}}}}|{{#if:{{#if: 2011-11-20 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ( | | (}}
}}{{#ifeq:{{#if:en|en|de}}|de||
{{#invoke:Multilingual|format|en|slang=!|split=[%s,]+|shift=m|separator=, }}}}{{#if: |{{#ifeq:{{#if:en|en|de}}|de||, }}{{{kommentar}}}}})}}{{#if: {{#if: 2011-11-20 | {{#if:{{#invoke:TemplUtl|faculty|}}||1}} }}en|{{#if: |: {{
#if:
|
„{{
#ifeq: {{#if:{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de
|
Vorlage:Str trim | flat}}
}}“
|
faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de | „Vorlage:Str trim“ | quote | 1={{#if: | flat}} | flat}} }} | faculty|}}|de-CH|de}} | 3=1}} }}
}}{{#if: |
: }}{{#if: | , deutsch: „“ }}) | {{#if: | , deutsch: „“ }}) | (deutsch: „“) }}
}} }}{{#if: {{{zitat}}} |
{{#if: | {{#if: {{{zitat}}} | Vorlage:": Text= und 1= gleichzeitig, bzw. Pipe zu viel }} }}
|
Vorlage:": Text= fehlt }}{{#if: | {{#if: {{#invoke:Text|unstrip|{{{ref}}}}}
|
Vorlage:": Ungültiger Wert: ref=
|
{{{ref}}} }}
}}|.{{#if:{{#invoke:TemplUtl|faculty|}}|{{#if:||{{#ifeq: | JaKeinHinweis |{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html | [15] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html
|
isWebURL|http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html
|
isWebURL|http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}[http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html }}|{{#switch: |
=Vorlage:Toter Link/Core{{#if: http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html | [16] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html
|
isWebURL|http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html
|
isWebURL|http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}[http://searchsap.techtarget.com/news/column/0,294698,sid21_gci1282035,00.html }} }}}}}}}}}}{{#if:| {{#invoke:Vorlage:Internetquelle|archivBot|stamp={{{archiv-bot}}}|text={{#if:|Vorlage:Webarchiv/archiv-bot}} }}}}{{#invoke:TemplatePar|check |
all= url= titel= | opt= autor= hrsg= format= sprache= titelerg= werk= seiten= datum= abruf= zugriff= abruf-verborgen= archiv-url= archiv-datum= archiv-bot= kommentar= zitat= AT= CH= offline= | 0 | Wikipedia:Vorlagenfehler/Vorlage:Internetquelle}} | template= Vorlage:Internetquelle | format=0 | preview=1
}}</ref>238 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2020 | Mozilla Firefox | <ref name=":0">{{#if:|{{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}| |}}}}{{#if:|{{{autor}}}: }}{{#if:|{{#if:The Mozilla Firefox Open Source Project on Open Hub|[{{#invoke:Vorlage:Internetquelle|archivURL|1={{#invoke:URLutil|getNormalized|1={{{archiv-url}}}}}}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=The Mozilla Firefox Open Source Project on Open Hub}}]{{#if:| ({{{format}}})}}{{#if:| {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}|{{#if:https://www.openhub.net/p/firefox%7C{{#if:{{#invoke:TemplUtl%7Cfaculty%7C}}%7C{{#invoke:Vorlage:Internetquelle%7CTitelFormat%7Ctitel={{#invoke:WLink%7CgetEscapedTitle%7C1=The Mozilla Firefox Open Source Project on Open Hub}}}}|[{{#invoke:URLutil|getNormalized|1=https://www.openhub.net/p/firefox}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{#invoke:WLink|getEscapedTitle|1=The Mozilla Firefox Open Source Project on Open Hub}}}}]}}{{#if:| ({{{format}}}{{#if:{{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ) | de | 1}}}}| ; | {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}}}{{#if:https://www.openhub.net/p/firefox%7C{{#if:{{#invoke:URLutil%7CisResourceURL%7C1=https://www.openhub.net/p/firefox}} | }}}}{{#if:The Mozilla Firefox Open Source Project on Open Hub|{{#if:{{#invoke:WLink|isValidLinktext|1=The Mozilla Firefox Open Source Project on Open Hub|lines=0}} | }}}}{{#if: | In: {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{{werk}}}}}}}{{#if: | {{{hrsg}}}{{#if: |,|{{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | {{#if:{{#invoke:DateTime|format|{{{datum}}}|noerror=1}} | format|{{{datum}}}|T._Monat JJJJ}} | failure|1=Fehler bei Vorlage:Internetquelle, datum={{{datum}}}|class=Zitationswartung}} }}{{#if: |,|{{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | S. {{{seiten}}}{{#if: |,|{{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: {{#invoke:TemplUtl|faculty|}}| {{#if:|{{#if:|archiviert|ehemals}}|{{#if:|Archiviert|Ehemals}}}} {{#if:|vom|im}} Vorlage:Referrer{{#if:{{#invoke:TemplUtl|faculty|}}| (nicht mehr online verfügbar)}}{{#if: | am {{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}|{{{archiv-datum}}}{{#if:619080 |
;}}}}{{#if: 2020-11-14| {{#if:{{#invoke:TemplUtl|faculty|}}|abgerufen|Abgerufen}} {{#switch: {{#invoke:Str|len| {{#invoke:DateTime|format| 2020-11-14 |ISO|noerror=1}} }} | 4=im Jahr | 7=im | 10=am | failure|1=Fehler bei Vorlage:Internetquelle, abruf=2020-11-14|class=Zitationswartung}} }} {{#invoke:DateTime|format|2020-11-14|T._Monat JJJJ}}
|
failure|1=Vorlage:Internetquelle | abruf=2026-MM-TT ist Pflichtparameter}} }}{{#if:{{#ifeq:de|de |
1}}}}|{{#if:{{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ( | | (}}
}}{{#ifeq:{{#if:de|de|de}}|de||
{{#invoke:Multilingual|format|{{{sprache}}}|slang=!|split=[%s,]+|shift=m|separator=, }}}}{{#if: |{{#ifeq:{{#if:de|de|de}}|de||, }}{{{kommentar}}}}})}}{{#if: {{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||1}} }}|{{#if: |: {{
#if:
|
„{{
#ifeq: {{#if:{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de
|
Vorlage:Str trim | flat}}
}}“
|
faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de | „Vorlage:Str trim“ | quote | 1={{#if: | flat}} | flat}} }} | faculty|}}|de-CH|de}} | 3=1}} }}
}}{{#if: |
: }}{{#if: | , deutsch: „“ }}) | {{#if: | , deutsch: „“ }}) | (deutsch: „“) }}
}} }}{{#if: {{{zitat}}} |
{{#if: | {{#if: {{{zitat}}} | Vorlage:": Text= und 1= gleichzeitig, bzw. Pipe zu viel }} }}
|
Vorlage:": Text= fehlt }}{{#if: | {{#if: {{#invoke:Text|unstrip|{{{ref}}}}}
|
Vorlage:": Ungültiger Wert: ref=
|
{{{ref}}} }}
}}|.{{#if:{{#invoke:TemplUtl|faculty|}}|{{#if:||{{#ifeq: | JaKeinHinweis |{{#switch: |
=Vorlage:Toter Link/Core{{#if: https://www.openhub.net/p/firefox | [17] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.openhub.net/p/firefox
|
isWebURL|https://www.openhub.net/p/firefox}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=https://www.openhub.net/p/firefox Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.openhub.net/p/firefox
|
isWebURL|https://www.openhub.net/p/firefox}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}[https://www.openhub.net/p/firefox }}|{{#switch: |
=Vorlage:Toter Link/Core{{#if: https://www.openhub.net/p/firefox | [18] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.openhub.net/p/firefox
|
isWebURL|https://www.openhub.net/p/firefox}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=https://www.openhub.net/p/firefox Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.openhub.net/p/firefox
|
isWebURL|https://www.openhub.net/p/firefox}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}[https://www.openhub.net/p/firefox }} }}}}}}}}}}{{#if:| {{#invoke:Vorlage:Internetquelle|archivBot|stamp={{{archiv-bot}}}|text={{#if:|Vorlage:Webarchiv/archiv-bot}} }}}}{{#invoke:TemplatePar|check |
all= url= titel= | opt= autor= hrsg= format= sprache= titelerg= werk= seiten= datum= abruf= zugriff= abruf-verborgen= archiv-url= archiv-datum= archiv-bot= kommentar= zitat= AT= CH= offline= | 0 | Wikipedia:Vorlagenfehler/Vorlage:Internetquelle}} | template= Vorlage:Internetquelle | format=0 | preview=1
}}</ref>22,3 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 2020 | Chromium (Basis für Google Chrome) | <ref>{{#if:|{{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}| |}}}}{{#if:|{{{autor}}}: }}{{#if:|{{#if:The Chromium (Google Chrome) Open Source Project on Open Hub: Languages Page|[{{#invoke:Vorlage:Internetquelle|archivURL|1={{#invoke:URLutil|getNormalized|1={{{archiv-url}}}}}}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel=The Chromium (Google Chrome) Open Source Project on Open Hub: Languages Page}}]{{#if:| ({{{format}}})}}{{#if:| {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}|{{#if:https://www.openhub.net/p/chrome/analyses/latest/languages_summary%7C{{#if:{{#invoke:TemplUtl%7Cfaculty%7C}}%7C{{#invoke:Vorlage:Internetquelle%7CTitelFormat%7Ctitel={{#invoke:WLink%7CgetEscapedTitle%7C1=The Chromium (Google Chrome) Open Source Project on Open Hub: Languages Page}}}}|[{{#invoke:URLutil|getNormalized|1=https://www.openhub.net/p/chrome/analyses/latest/languages_summary}} {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{#invoke:WLink|getEscapedTitle|1=The Chromium (Google Chrome) Open Source Project on Open Hub: Languages Page}}}}]}}{{#if:| ({{{format}}}{{#if:{{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ) | de | 1}}}}| ; | {{{titelerg}}}{{#invoke:Vorlage:Internetquelle|Endpunkt|titel={{{titelerg}}}}}}}}}}}{{#if:https://www.openhub.net/p/chrome/analyses/latest/languages_summary%7C{{#if:{{#invoke:URLutil%7CisResourceURL%7C1=https://www.openhub.net/p/chrome/analyses/latest/languages_summary}} | }}}}{{#if:The Chromium (Google Chrome) Open Source Project on Open Hub: Languages Page|{{#if:{{#invoke:WLink|isValidLinktext|1=The Chromium (Google Chrome) Open Source Project on Open Hub: Languages Page|lines=0}} | }}}}{{#if: | In: {{#invoke:Vorlage:Internetquelle|TitelFormat|titel={{{werk}}}}}}}{{#if: | {{{hrsg}}}{{#if: |,|{{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | {{#if:{{#invoke:DateTime|format|{{{datum}}}|noerror=1}} | format|{{{datum}}}|T._Monat JJJJ}} | failure|1=Fehler bei Vorlage:Internetquelle, datum={{{datum}}}|class=Zitationswartung}} }}{{#if: |,|{{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: | S. {{{seiten}}}{{#if: |,|{{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||,}}}}}}}}{{#if: {{#invoke:TemplUtl|faculty|}}| {{#if:|{{#if:|archiviert|ehemals}}|{{#if:|Archiviert|Ehemals}}}} {{#if:|vom|im}} Vorlage:Referrer{{#if:{{#invoke:TemplUtl|faculty|}}| (nicht mehr online verfügbar)}}{{#if: | am {{#iferror: {{#iferror:{{#invoke:Vorlage:FormatDate|Execute}}|}}|{{{archiv-datum}}}{{#if:619080 |
;}}}}{{#if: 2020-11-14| {{#if:{{#invoke:TemplUtl|faculty|}}|abgerufen|Abgerufen}} {{#switch: {{#invoke:Str|len| {{#invoke:DateTime|format| 2020-11-14 |ISO|noerror=1}} }} | 4=im Jahr | 7=im | 10=am | failure|1=Fehler bei Vorlage:Internetquelle, abruf=2020-11-14|class=Zitationswartung}} }} {{#invoke:DateTime|format|2020-11-14|T._Monat JJJJ}}
|
failure|1=Vorlage:Internetquelle | abruf=2026-MM-TT ist Pflichtparameter}} }}{{#if:{{#ifeq:de|de |
1}}}}|{{#if:{{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}} | 1}}}} | ( | | (}}
}}{{#ifeq:{{#if:de|de|de}}|de||
{{#invoke:Multilingual|format|{{{sprache}}}|slang=!|split=[%s,]+|shift=m|separator=, }}}}{{#if: |{{#ifeq:{{#if:de|de|de}}|de||, }}{{{kommentar}}}}})}}{{#if: {{#if: 2020-11-14 | {{#if:{{#invoke:TemplUtl|faculty|}}||1}} }}|{{#if: |: {{
#if:
|
„{{
#ifeq: {{#if:{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de
|
Vorlage:Str trim | flat}}
}}“
|
faculty|}}|de-ch|de}}|{{#if: {{#invoke:templutl|faculty|}}|de-ch|de}}|de}} | de | „Vorlage:Str trim“ | quote | 1={{#if: | flat}} | flat}} }} | faculty|}}|de-CH|de}} | 3=1}} }}
}}{{#if: |
: }}{{#if: | , deutsch: „“ }}) | {{#if: | , deutsch: „“ }}) | (deutsch: „“) }}
}} }}{{#if: {{{zitat}}} |
{{#if: | {{#if: {{{zitat}}} | Vorlage:": Text= und 1= gleichzeitig, bzw. Pipe zu viel }} }}
|
Vorlage:": Text= fehlt }}{{#if: | {{#if: {{#invoke:Text|unstrip|{{{ref}}}}}
|
Vorlage:": Ungültiger Wert: ref=
|
{{{ref}}} }}
}}|.{{#if:{{#invoke:TemplUtl|faculty|}}|{{#if:||{{#ifeq: | JaKeinHinweis |{{#switch: |
=Vorlage:Toter Link/Core{{#if: https://www.openhub.net/p/chrome/analyses/latest/languages_summary | [19] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.openhub.net/p/chrome/analyses/latest/languages_summary
|
isWebURL|https://www.openhub.net/p/chrome/analyses/latest/languages_summary}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=https://www.openhub.net/p/chrome/analyses/latest/languages_summary Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.openhub.net/p/chrome/analyses/latest/languages_summary
|
isWebURL|https://www.openhub.net/p/chrome/analyses/latest/languages_summary}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch: deadurl
|
deadurl|= | #default= {{#if: | }}
}}[https://www.openhub.net/p/chrome/analyses/latest/languages_summary }}|{{#switch: |
=Vorlage:Toter Link/Core{{#if: https://www.openhub.net/p/chrome/analyses/latest/languages_summary | [20] }} (Seite {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}. Suche im Internet Archive ){{#if: | | Vorlage:Toter Link/archivebot }}
}} |
(Seite {{#switch:|no|0|=|#default=dauerhaft }}nicht mehr abrufbar{{#if: | , festgestellt im {{#invoke:DateTime|format | F Y}} }}.)
}}{{#switch:
|
0|= | #default={{#if: | }}
}}{{#invoke:TemplatePar|check
|
opt = inline= url= text= datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.openhub.net/p/chrome/analyses/latest/languages_summary
|
isWebURL|https://www.openhub.net/p/chrome/analyses/latest/languages_summary}} | {{#if: | }}
}} |
{{#if: | {{#if: | }} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}|#default= https://wiki-de.moshellshocker.dns64.de/index.php?title=Wikipedia:Defekte_Weblinks&dwl=https://www.openhub.net/p/chrome/analyses/latest/languages_summary Die nachstehende Seite ist {{#switch:|no|0|=|dauerhaft }}nicht mehr abrufbar]{{#if: | , festgestellt im {{#invoke:DateTime|format||F Y}} }}. (Suche im Internet Archive. ) {{#if: |
| Vorlage:Toter Link/archivebot }}
}}Vorlage:Toter Link/Core{{#switch: |
0|= | #default= {{#if: | }}
}}{{#invoke:TemplatePar|check
|
all = inline= url= | opt = datum= date= archivebot= bot= botlauf= fix-attempted= checked= | cat = Wikipedia:Vorlagenfehler/Vorlage:Toter Link | errNS = 0 | template = Vorlage:Toter Link | format = | preview = 1
}}{{#if: https://www.openhub.net/p/chrome/analyses/latest/languages_summary
|
isWebURL|https://www.openhub.net/p/chrome/analyses/latest/languages_summary}} | {{#if: | }}
}}
}}{{#if:
|
format | noerror=1}} | {{#if: | }}
}}
}}{{#switch:
|
deadurl|= | #default= {{#if: | }}
}}[https://www.openhub.net/p/chrome/analyses/latest/languages_summary }} }}}}}}}}}}{{#if:| {{#invoke:Vorlage:Internetquelle|archivBot|stamp={{{archiv-bot}}}|text={{#if:|Vorlage:Webarchiv/archiv-bot}} }}}}{{#invoke:TemplatePar|check |
all= url= titel= | opt= autor= hrsg= format= sprache= titelerg= werk= seiten= datum= abruf= zugriff= abruf-verborgen= archiv-url= archiv-datum= archiv-bot= kommentar= zitat= AT= CH= offline= | 0 | Wikipedia:Vorlagenfehler/Vorlage:Internetquelle}} | template= Vorlage:Internetquelle | format=0 | preview=1
}}</ref>34,9 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Literatur
- Stephen H. Kan: Metrics and Models in Software Quality Engineering. 2. Auflage. Addison-Wesley, Boston MA 2002, ISBN 0-201-72915-6.
- {{#invoke:Vorlage:Literatur|f}}
Einzelnachweise
<references />
- Wikipedia:Vorlagenfehler/Parameter:URL
- Wikipedia:Vorlagenfehler/Parameter:Linktext
- Wikipedia:Vorlagenfehler/Parameter:Datum
- Wikipedia:Vorlagenfehler/Vorlage:"
- Wikipedia:Weblink offline fix-attempted
- Wikipedia:Vorlagenfehler/Vorlage:Toter Link
- Wikipedia:Vorlagenfehler/Vorlage:Toter Link/URL fehlt
- Programmierung
- Software-Metrik