Benutzer Diskussion:Crux/Linksschreibung

aus Wikipedia, der freien Enzyklopädie
Zur Navigation springen Zur Suche springen

Die Abfragen[Quelltext bearbeiten]

-- Liefert die 100 aeltesten Bilder, die die Vorlage Bild-Lizenz-unbekannt
-- enthalten, zusammen mit dem Datum der letzten Bearbeitung der
-- Bildbeschreibungsseite.

select concat('*[[:Bild:',cur_title,']] - ',
substring(cur_timestamp,7,2),'.',
substring(cur_timestamp,5,2),'.',
substring(cur_timestamp,1,4)
)
from cur
where cur_namespace = 6 and
cur_text like '%{{Bild-Lizenz-unbekannt}}%'
order by cur_timestamp asc
limit 0,100;

-- Liefert die 100 aeltesten Bilder, die die Vorlage Bild-Lizenz-unbekannt
-- enthalten, zusammen mit dem Datum der letzten Bearbeitung der
-- Bildbeschreibungsseite.

select concat('*[[:Bild:',cur_title,']] - ',
substring(cur_timestamp,7,2),'.',
substring(cur_timestamp,5,2),'.',
substring(cur_timestamp,1,4)
)
from cur
where cur_namespace = 6 and
cur_text like '%{{LöschantragBild}}%'
order by cur_timestamp asc
limit 100;

select concat('*[[:Bild:',cur_title,']] - ',
substring(cur_timestamp,7,2),'.',
substring(cur_timestamp,5,2),'.',
substring(cur_timestamp,1,4)
)
from cur
where
cur_namespace = 6
and cur_text not like '%{{Bild-GFDL}}%'
and cur_text not like '%{{Bild-GFDL-OpenGeoDB}}%'
and cur_text not like '%{{Bild-Innweb-Lizenz}}%'
and cur_text not like '%{{Bild-PD}}%'
and cur_text not like '%{{Bild-PD-US}}%'
and cur_text not like '%{{Bild-PD-Sodipodi}}%'
and cur_text not like '%{{Bild-PD-F__r__er}}%'
and cur_text not like '%{{Bild-PD-alt}}%'
and cur_text not like '%{{Bild-PD-Kunst}}%'
and cur_text not like '%{{Bild-PD-Meyers}}%'
and cur_text not like '%{{Bild-PD-Britannica1911}}%'
and cur_text not like '%{{Bild-PD-Grays}}%'
and cur_text not like '%{{Bild-PD-Sowjetunion}}%'
and cur_text not like '%{{Bild-PD-Polen}}%'
and cur_text not like '%{{Bild-PD-PL}}%'
and cur_text not like '%{{Bild-PD-Markenrecht}}%'
and cur_text not like '%{{Wappenrecht}}%'

and cur_text not like '%{{Bild-Lizenz-unbekannt}}%'
and cur_text not like '%{{Bild-nichtkommerziell}}%'
and cur_text not like '%{{Bild-wahrscheinlich-GFDL}}%'
and cur_text not like '%{{Bild-CC-by-sa/2.0/de}}%'
and cur_text not like '%{{Bild-CC-by-sa/2.0}}%'
and cur_text not like '%{{Bild-CC-by/2.0}}%'
and cur_text not like '%{{Bild-CC-sa/2.0}}%'
and cur_text not like '%{{Bild-WikimediaCopyright}}%'
and cur_text not like '%{{NowCommons%'

and not (
cur_text like '%GNU Free Documentation License%' or
cur_text like '%GNU Free Documentation Licence%' or
cur_text like '%GNU Freie Dokumentationslizenz%' or
cur_text like '%GNU FDL%' or
cur_text like '%GFDL%' or
cur_text like '%GNU-FDL%' or
cur_text like '%GNU Lizenz%' or
cur_text regexp '[^A-Za-z]FDL[^A-Za-z]' or
cur_text like '%gemeinfrei%' or
cur_text like '%Gemeinfrei%' or
--cur_text like '%gemeinfreiheit%' or
--cur_text like '%Gemeinfreiheit%' or
cur_text like '%public domain%' or
cur_text like '%Public Domain%' or
cur_text like '%public-domain%' or
cur_text like '%Public-Domain%' or
cur_text regexp '[^A-Za-z]pd[^A-Za-z]'
)

order by cur_timestamp asc
limit 100;

--SirJective 21:48, 3. Feb 2005 (CET)

a) dein Bild auf dieser Seite ist weg b) was sind das für Codezeilen?