MediaWiki talk:Common.css/to do

This is some TemplateStyles todo.

Description of work

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Description_of_work","replies":[]}}-->

The below to do page is the list of styles in MediaWiki:Common.css and friends which are to be converted to TemplateStyles. These are being converted to TemplateStyles for multiple reasons:

  1. To allow ordinary users and administrators to change "sitewide" styles. Editing Common.css is restricted to interface administrators (i.e. not many people) since late 2018, whereas the majority of the styles in the CSS sheet are fairly benign. Accordingly, moving styles to TemplateStyles and out of Common.css allows a much larger set of people to be able to make changes to widely-used styles (all administrators, and even the vast majority of templates are template protected rather than full-protected).
  2. To decrease the page load on all pages. Every style rule in Common.css, whether used or unused on a specific page, is loaded on all pages. For example, if you have made a stub and it has no navboxes, it still gets the styles for navboxes, infoboxes, horizontal lists, and so on (until the list of sets of styles is empty). This means that pages load slightly slower for everyone on all pages.
    1. This hurts most on mobile, which is approximately 2/3 of all pageviews these days.
  3. To return power to style mobile to local editors. Right now, many of our styles in Common.css were not carried over into mobile for a couple reasons.
    1. The primary reason is that MediaWiki:Mobile.css loads after, rather than before, the rest of a specific page. Accordingly, adding styles to it can cause FOUCs ("jumpy pages while loading"), which are generally bad for both user experience, and these days, search engine optimization (you don't really need to care about the second one if you don't want to). We no longer use Mobile.css (instead we use Minerva.css), so this isn't relevant. And will soon be using only Common.css unless skin-specific styles are necessary.
    2. The second reason is that the WMF has more or less picked up the slack that has created in how our pages look on mobile.
    Now, whether you like the mobile styles or not, it is probably the case that the editors onwiki should decide how the wiki should appear on mobile.

Migrating requires three broad steps (which do not necessarily happen in this order or sequentially):

  1. Migrating the templates and modules (most-)associated with each of the classes in Common.css to use, or allow the use, of TemplateStyles.
    1. (Or for some templates/modules, removing the class entirely from sitewide CSS and using inline styles instead of TemplateStyles. This is most common with substed templates, which TemplateStyles are not great with.)
  2. Migrating the large number of non-templates and non-modules which use the classes in Common.css to use the template or module instead of the class. (Sometimes this necessitates removing the use entirely rather than migration.) This migration is because in #3, we:
  3. Remove the styles from Common.css.

Edits of the type as in #1 mostly happen in the background as editors of templates are basically the only ones who need to be interested in those.

However, edits of the type in #2 happen outside the template and module spaces. A consequence of #3 is that pages with the manual classes invoked will lose their styling if an appropriate template is not in place to provide that styling.

Editors performing this kind of edit are doing their best to replace uses of a class with the appropriate template. They won't always get it right, so if you see them get it wrong or in a way you don't like, either endeavor to correct the edit if you know how, or ask the editor about making a better change, in preference to reverting if at all possible.

Infobox

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Infobox","replies":["h-Mainspace-Infobox","h-Modules-Infobox","h-Templates-Infobox","h-Other_subject_spaces-Infobox","h-talk_spaces-Infobox"]}}-->

Mainspace

Some specific categories

What to do?

Modules

50 (20ish true positives)

False positives, but need a module API for Module:Infobox anyway...

Have a module API, just wish it were cleaner (.infobox seems to work?)

Templates

infobox not-table-element

border: 1px solid #a2a9b1; background-color: #f8f9fa; margin: 0.5em 0 0.5em 1em; padding: 0.2em; float: right; clear: right; font-size: 88%; line-height: 1.5em; width: 22em;

infobox table

border: 1px solid #a2a9b1; border-spacing: 3px; background-color: #f8f9fa; margin: 0.5em 0 0.5em 1em; padding: 0.2em; float: right; clear: right; font-size: 88%; line-height: 1.5em; width: 22em;

infobox th

vertical-align: top; text-align: left;

infobox td

vertical-align: top; text-align: left;

infobox caption

font-size: 125%; font-weight: bold; text-align: center; padding: 0.2em;

Infoboxes

Medals

Years sidebars

Uncategorized

Other subject spaces

talk spaces

Plainrowheaders

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Plainrowheaders","replies":[]}}-->

There's probably not a lot of automation we could do, so at best something like:

  1. Define {{Plain row headers}} with content <templatestyles src="Plain row headers/styles.css"/>
  2. Define Template:Plain row headers/styles.css with content:
    .wikitable.plainrowheaders th[scope=row] {
    	font-weight: normal;
    	/* @noflip */
    	text-align: left;
    }
    
  3. Warn external community at phab:T176272 that we're about to do something that might break later
  4. Rename the class in the TemplateStyles version so that it is trivial to see what still needs to be fixed?
    1. Class names also want the dashes in general I think
  5. Request a bot to mass-remove where there is no scope="row" or equivalent on the page in the same bot run.
  6. Request a bot for mass addition, ns0 to start.
    1. Do a mass addition of {{plain row headers}} where the class is present, above each table using the class.
    2. Would do it multiple times per page. This is fine, styles are de-duplicated.
    3. Could be done in the removal step
    4. Could also potentially do the update from collapsible to mw-collapsible with this work, very small intersection overall
    5. Have a discussion at TemplateStyles or VPT
    6. Get BRFA approved
    7. Bot remove Stuff
  7. Work out any remaining uses in ns0 that don't fit some pattern
  8. Remove from Common.css

Nounderlines

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Nounderlines","replies":["h-IPA-Nounderlines"]}}-->

nounderlines, 2k

IPA

class=IPA. 8k (mostly in talk namespace)

Nowrap

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Nowrap","replies":["h-Nowraplinks-Nowrap"]}}-->

Another 'ew how do we find these'

  • 1500 uses. Much more manageable chunk to bite.
  • Looks like we need a nowraplinks block of some sort.

Math fonts

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Math_fonts","replies":[]}}-->

texthtml basic filter for no-talk-space 2.4k

user signatures:

SQL for user signatures
USE enwiki_p;
SELECT user_name, up_value
FROM user_properties
JOIN `user` ON user_id = up_user
WHERE
	up_property = "nickname" AND
	up_value LIKE "%texhtml%" AND
	up_user IN (SELECT up_user
				FROM user_properties
				WHERE up_property = "fancysig" AND up_value = 1) 
ORDER BY up_user ASC

'digits' Wide 5k

toccolours

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-toccolours","replies":[]}}-->

Honorary addition due to its removal from Vector 2022 styles, see phab:T314254.

In general, the uses should be transitioned to another reasonable class, such as wikitable in mainspace or changed to a template to at least isolate the class name for now. 23.8k all

toc

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-toc","replies":[]}}-->

Another honorary addition due to its removal from Vector 2022 styles, see phab:T314254

2.2k total

mw-ui

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-mw-ui","replies":[]}}-->

Do what we can to ease transition to as-yet unknown replacement for wiki content using mw-ui. See phab:T346468.

Probably the use of {{clickable button 2}} needs to stop taking "class" and start taking some sort of "kind" or "type" i.e. kind=progressive or kind=destructive, and then deprecate the use of a direct class.

Uses, less user space and talk space: [1]

Flagicon

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Flagicon","replies":[]}}-->

Modules:

Templates

Turn mobile.css/js totally off

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Turn_mobile.css\/js_totally_off","replies":[]}}-->

Via User talk:Jon (WMF)#MW:Common.css on mobile we can have no more mobile.css/js!

'wgMFCustomSiteModules' => [
	'default' => true,
	'enwiki' => false,
],

Dark mode: metadata

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Dark_mode:_metadata","replies":[]}}-->
  • 190 uses need to be adjusted to be dark mode friendly
    • Ok, this class doing some useful work in substed content and IDK what to do about that fact. Just add color and remove the class?
    • Also, I don't get this class's existence, I'm pretty sure it was originally intended for article "metadata" but it crept in to other uses.

Dark mode: side box

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Dark_mode:_side_box","replies":[]}}-->
  • Should be easy, but has to be done after metadata I think since I think our side boxes are output with the metadata class

Dark mode: navbox

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Dark_mode:_navbox","replies":[]}}-->
  • Shrug emoji face thing. Probably about as difficult as dark mode infoboxes

Dark mode: quote box

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Dark_mode:_quote_box","replies":[]}}-->
  • Should be easy

Dark mode: infoboxes

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Dark_mode:_infoboxes","replies":[]}}-->
  • May or may not make this part of the overall inclusion of infoboxes

Hacks.less: infoboxes

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Hacks.less:_infoboxes","replies":[]}}-->
  • Need to sort out the mobile styles for infoboxes

Hacks.less: hatnote

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Hacks.less:_hatnote","replies":[]}}-->

Hacks.less: ambox

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Hacks.less:_ambox","replies":[]}}-->

Remnants of things

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Remnants_of_things","replies":[]}}-->

Mbox

Merge MediaWiki:Filepage.css upstream, to our own templates, or delete

Keep in Minerva.css:

/* Prevent unnecessary margin at the bottom of centralnotices */
.cnotice {
	margin-bottom: 0 !important;
}

Done

__DTELLIPSISBUTTON__{"threadItem":{"headingLevel":2,"name":"h-","type":"heading","level":0,"id":"h-Done","replies":["h-User_block-Done","h-Coordinates-Done","h-Listenlist-Done","h-Columns-Done","h-Reflist-Done","h-Hide_checkboxes-Done","h-Visualhide-Done","h-Hatnote-Done","h-NavFrame-Done","h-Bordered_images_galleries-Done","h-Misc_subcomponents_completed-Done","h-Navbox-Done","h-Citation-Done","h-messagebox-Done","h-WikiProject_banners-Done","h-Plainlist-Done","h-Hlist-Done","h-multicol-Done"]}}-->

User block

On its way out per discussion.

Coordinates

Need to fix up remaining .css pages

Listenlist

Basically only Template:Multi-listen start.

Columns

  • class=columns for general uses
    • Not sure if I want to split this to a generic templatestyles page or reimplement this in two places. The major implementers seem to be {{div col}} and {{reflist}} and that's it (and some copies of those). Not so many general uses that we need to combine CSS, I don't think.
    • Split
    • Just have to implement in {{reflist}} now, which coincidentally may be ripe for clearing out also.
    • And now also have to beat people over the head convince people that this is the preferable implementation in Module:Goalscorers. And in fact that they shouldn't be using absolute columns. (We really need that template deleted.)

Have to survey module/template space also, specifically. Not sure of the best way to do that.

  • Surveyed by searching. insource:class insource:columns insource:/[\'\" ]columns[\'\" ]/ -intitle:testcases -intitle:sandbox -intitle:doc -intitle:"did you know" [2]

Reflist

  • Remove columns, reflist from Common.css.


Monitoring:

Another related monitor

Hide checkboxes

/* Make it possible to hide checkboxes in <inputbox> */
.inputbox-hidecheckboxes form .inputbox-element,
.inputbox-hidecheckboxes .mw-ui-checkbox {
	display: none !important;
}

Moved to Template:Hide checkboxes.

Visualhide

On its way out per discussion.

Hatnote


WP:NavFrame

NavFrame

mw-collapsible
mw-collapsible mw-collapsed
padding: 4px; border: 1px solid #a2a9b1; text-align: center; font-size: 95%;
padding: 4px; border: 1px solid #a2a9b1; font-size: 95%;
font-size: 95%;

NavHead

line-height: 1.6em; font-weight: bold; background-color: #ccf;
line-height: 1.6em; font-weight: bold; text-align: center; background-color: #ccf;

Wrapper for centered text

<div style="margin: 0 4em">
</div>

NavContent

mw-collapsible-content
font-size: 100%;

Bordered images galleries

bordered-images

Misc subcomponents completed

Bordered

Not main not talk 153 insource:"infobox bordered", Not main not talk insource:bordered insource:class insource:infobox -insource:"infobox bordered" 30 Ignoring insource:class...

Geography

And now, we wait.

Found some more: search on bodyclass instead of class

And mainspace (100)

Sisterproject

wikitable/toc hlist

/* ...unless they also use the hlist class */
.toc.hlist ul,
#toc.hlist ul,
.wikitable.hlist td ul,
.wikitable.hlist td ol,
.wikitable.hlist td dl {
	text-align: inherit;
}

Just need the list at WT:HWY#Cleaning up some 'manual' routes/junctions fixed up and then can remove the wikitable.hlist variants.

Stuff that is concerning because both cargo-cult and because an issue for here.

Stuff that is concerning because cargo-cult, but not an issue for here.

Citation

messagebox

Most of the uses outside userspace of messagebox and/or standard-talk are probably due to substed XFD results and a handful of other templates random substed onto talk pages (e.g. {{talk header}}). A typical example. We should probably try to unsubst these as best we can.

.messagebox

style="border: 1px solid #a2a9b1; background-color: #f8f9fa; width: 80%; margin: 0 auto 1em; padding: 0.2em;"

standard-talk

46.9k uses

.messagebox.standard-talk:

style="border: 1px solid #c0c090; background-color: #f8eaba; width: 80%; margin: 4px auto; padding: .2em;"

cleanup

  • 49 non-user/talk
  • 3.6k user/talk not caring about
style="border: 1px solid #9f9fff; background-color: #efefff; width: 80%; margin: 0 auto 1em auto; padding: .2em; text-align: center;"

compact-ambox

Read:

Modify

mbox (initial)

Have to figure out how to deal with the ambox+ambox rule, but other than that, just have to find the insanity and clean it.

250

these need chasing after

700 no user talk

80

140

tmbox/ombox talk other split with small-talk adjustment:

{{talk other|border: 1px solid #c0c090; background-color: #f8eaba;|border: 1px solid #a2a9b1; background-color: #f8f9fa;}} margin: 4px 0 4px 1em; border-collapse: collapse; box-sizing: border-box; clear: right; float: right; width: 238px; font-size: 88%; line-height: 1.25em;

Final cut

WikiProject banners

Plainlist

Wherein Izno ponders how best to deal with infoboxes. Expanding the styles direct:

The done ones.

Hlist

Hlist templates/modules

Primaries

Secondaries

Others:

hlist-separated

Assess hlist-separated (definition), pretty sure it harms more than helps

Upstream definitions of hlist are:

Based on review of the above, we can remove hlist-separated once hlist/styles.css is deployed in the above templates, and never look back. TemplateStyles should provide the correct view always, due to higher specificity (the addition of .mw-parser-output), by proximity (will be found 'later' in the page), or predominantly, both.

Namespaces

Fake infobox-sidebars removed

multicol

  • Correct these uses either to use an appropriate column template or remove because it's not valid to use this class (this class is specifically multicol and not any of the other names floating around that look like it): [8]

Read other articles:

ساوثوورك   الإحداثيات 51°29′56″N 0°05′24″W / 51.4988°N 0.0901°W / 51.4988; -0.0901  تقسيم إداري  البلد المملكة المتحدة[1]  معلومات أخرى SE1  رمز جيونيمز 2637299  تعديل مصدري - تعديل   ساوثوورك (بالإنجليزية: Southwark)‏ هو أحد أحياء وسط لندن، انكلترا، وجزء من لندن بورو من س

 

كاترو كاستيلا    شعار   الإحداثيات 44°38′00″N 10°28′00″E / 44.633333333333°N 10.466666666667°E / 44.633333333333; 10.466666666667  [1] تقسيم إداري  البلد إيطاليا[2]  التقسيم الأعلى مقاطعة ريدجو إميليا  خصائص جغرافية  المساحة 46.31 كيلومتر مربع (9 أكتوبر 2011)[3]  ارتفاع 1...

 

هذه المقالة يتيمة إذ تصل إليها مقالات أخرى قليلة جدًا. فضلًا، ساعد بإضافة وصلة إليها في مقالات متعلقة بها. (أبريل 2019) برانكو لورا معلومات شخصية الميلاد 21 أكتوبر 1982 (العمر 41 سنة)كرواتيا  الجنسية كرواتيا  معلومات النادي النادي الحالي FC Split Tommy [الإنجليزية]‏ المنتخب الو

دانيال ليفيتين (بالإنجليزية: Daniel Joseph Levitin)‏    معلومات شخصية الميلاد 27 ديسمبر 1957 (66 سنة)  سان فرانسيسكو  مواطنة الولايات المتحدة  عضو في الجمعية الملكية الكندية  الحياة العملية المدرسة الأم جامعة ستانفورد (1973–2000)[1]جامعة أوريغون (التخصص:علم النفس) (الشهادة:د

 

Artikel ini sebatang kara, artinya tidak ada artikel lain yang memiliki pranala balik ke halaman ini.Bantulah menambah pranala ke artikel ini dari artikel yang berhubungan atau coba peralatan pencari pranala.Tag ini diberikan pada November 2022. Enzo Réale Informasi pribadiNama lengkap Enzo RéaleTanggal lahir 7 Oktober 1991 (umur 32)Tempat lahir Vénissieux, PrancisTinggi Templat:HightPosisi bermain GelandangInformasi klubKlub saat ini FC LorientNomor 27Karier junior1997–1999 Véniss...

 

Peta menunjukan lokasi Jaro Untuk kecamatan di Kabupaten Tabalong, Kalimantan Selatan, lihat Jaro, Tabalong. Jaro adalah munisipalitas yang terletak di provinsi Leyte, Filipina. Pada tahun 2010, munisipalitas ini memiliki populasi sebesar 38.797 jiwa atau 7.390 rumah tangga. Pembagian wilayah Secara politis Jaro terbagi atas 46 barangay. Alahag Anibongon Badiang Batug Buenavista Bukid Burabod Buri Kaglawaan Canhandugan (sebelumnya bernama San Javier) Crossing Rubas Daro Hiagsam Hibunawon Hibu...

For the river in northern Germany, see Gehlsbach (river). Municipality in Mecklenburg-Vorpommern, GermanyGehlsbach MunicipalityLocation of Gehlsbach within Ludwigslust-Parchim district Gehlsbach Show map of GermanyGehlsbach Show map of Mecklenburg-VorpommernCoordinates: 53°23′N 12°07′E / 53.383°N 12.117°E / 53.383; 12.117CountryGermanyStateMecklenburg-VorpommernDistrictLudwigslust-Parchim Municipal assoc.Eldenburg Lübz Subdivisions8Area • Total33.1...

 

Lebanese Greek Orthodox Christiansالمسيحية الأرثوذكسية الشرقية في لبنانDistribution of Greek Orthodox Christians in LebanonLanguagesVernacular:Lebanese ArabicLiturgical:Koine Greek and vernacularReligionChristianity (Greek Orthodox Church of Antioch) Part of a series of articles onLebanese peopleEmblem of Lebanon(Lebanese cedar) Lebanese people Lebanese people by religion: Lebanese Muslims Shia Sunni Druze Lebanese Christians Maronite Greek Orthodox Melkite Pr...

 

This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: List of Pilatus PC-12 operators – news · newspapers · books · scholar · JSTOR (January 2022) (Learn how and when to remove this template message) As of October 2019[update], 1,700 Pilatus PC-12s have been delivered.[1] Most are used in the ...

17th episode of the 3rd season of The Flash DuetThe Flash episodePromotional posterEpisode no.Season 3Episode 17Directed byDermott Daniel DownsStory by Greg Berlanti Andrew Kreisberg Teleplay by Aaron Helbing Todd Helbing Featured musicBlake NeelyProduction codeT27.13117Original air dateMarch 21, 2017 (2017-03-21)Guest appearances Melissa Benoist as Kara Danvers / Supergirl (special guest star) Victor Garber as Digsy Foss's husband (special guest star) John Barrowman as Cu...

 

Multiple alphabets of Kurdish language The Kurdistan newspaper established in 1898, was written in the Kurmanji dialect using Arabic script, prior to latinizationThe Kurdish languages are written in either of two alphabets: a Latin alphabet introduced by Celadet Alî Bedirxan in 1932 called the Bedirxan alphabet or Hawar alphabet (after Hawar magazine) and an Arabic script called the Sorani or Central Kurdish alphabet. The Kurdistan Region has agreed upon a standard for Central Kurdish, imple...

 

Kuwait padaOlimpiade Musim Panas 2020Kode IOCKUWKONKomite Olimpiade KuwaitSitus webwww.kuwaitolympic.net (dalam bahasa Arab)Penampilan pada Olimpiade Musim Panas 2020 di TokyoPeserta10 dalam 5 cabang olahragaPembawa bendera (pembukaan)Lara DashtiTalal Al-RashidiPembawa bendera (penutupan)N/AMedaliPeringkat ke-86 0 0 1 Total 1 Penampilan pada Olimpiade Musim Panas (ringkasan)19681972197619801984198819921996200020042008201220162020Penampilan terkait lainnya Atlet O...

Uwe Albrecht, 2016 Uwe Albrecht (* 30. August 1954 in Kiel) ist ein deutscher Kunsthistoriker. Inhaltsverzeichnis 1 Leben 2 Schriften 3 Literatur 4 Weblinks 5 Einzelnachweise Leben Uwe Albrecht studierte Kunstgeschichte, Klassische Archäologie und Ur- und Frühgeschichte an der Universität Kiel, der Universität Poitiers und der Universität Frankfurt, wo er 1982 mit einer Dissertation über französische spätmittelalterliche Schlossbaukunst zum Dr. phil. promoviert wurde. Er war zunächst...

 

Australian cycling team Bennelong SwissWellness Cycling Team p/b CerveloTeam informationUCI codeIWSRegisteredAustraliaFounded2000 (2000)Disbanded2018Merged with Mobius BridgeLane to form Team BridgeLane.Discipline(s)RoadStatusUCI ContinentalBicyclesCerveloKey personnelTeam manager(s)Andrew Christie-JohnsonSteve PriceTeam name history2000–20092010–201220132014–2015201620172018PratiesGenesys Wealth AdvisersHuon Salmon-Genesys Wealth AdvisersAvanti Racing TeamAvanti IsoWhey SportsIsoW...

 

Australian rules footballer For the curler, see Jack Geddes (curler). Australian rules footballer Jack Geddes Geddes in 1899Personal informationFull name John GeddesDate of birth (1868-02-04)4 February 1868Place of birth Camberwell, VictoriaDate of death 3 August 1949(1949-08-03) (aged 81)Place of death North Perth, Western AustraliaOriginal team(s) Carlton (VFA) / RoversHeight 174 cm (5 ft 9 in)Weight 76 kg (168 lb)Playing career1Years Club Games (Goals)189...

1965 Indian Kannada film Naga PoojaDirected byD. S. RajagopalScreenplay byGeethapriyaProduced byA. S. BhakthavathsalamN. GeethadeviStarringRajkumarLeelavathiRajasreeRaghavendra RaoRajendra KrishnaHanumantha RaoCinematographyK. JanakiramEdited byP. BhakthavathsalamMusic byT. G. LingappaProductioncompanyMaruthi FilmsDistributed byMaruthi FilmsRelease date 1965 (1965) CountryIndiaLanguageKannada Naga Pooja is a 1965 Indian Kannada-language film, directed by D. S. Rajagopal and produced by A...

 

Production of Macbeth adapted and directed by Orson Welles MacbethPoster by Anthony VelonisWritten by William Shakespeare (play) Orson Welles (adaptation) Date premieredApril 14, 1936Place premieredLafayette Theatre, Harlem, New YorkOriginal languageEnglishGenreTragedy The closing four minutes of the production are preserved in the 1937 film, We Work Again. The Voodoo Macbeth is a common nickname for the Federal Theatre Project's 1936 New York production of William Shakespeare's Macbeth. Orso...

 

لحوامد الغربيين تقسيم إداري البلد المغرب  الجهة الرباط سلا القنيطرة الإقليم الصخيرات تمارة الدائرة عين العودة الجماعة القروية سيدي يحيى زعير المشيخة أولاد الطيب السكان التعداد السكاني 1679 نسمة (إحصاء 2004)   • عدد الأسر 258 معلومات أخرى التوقيت ت ع م±00:00 (توقيت قياسي)[1&#...

American politician Chauncey B. LittleMember of the U.S. House of Representativesfrom Kansas's 2nd districtIn officeMarch 4, 1925 – March 3, 1927Preceded byUlysses Samuel GuyerSucceeded byUlysses Samuel Guyer Personal detailsBorn(1877-02-10)February 10, 1877Olathe, KansasDiedSeptember 29, 1952(1952-09-29) (aged 75)Olathe, KansasPolitical partyDemocratic Chauncey Bundy Little (February 10, 1877 – September 29, 1952) was a U.S. Representative from Kansas. Born in O...

 

  لمعانٍ أخرى، طالع المسجد العمري الكبير (توضيح). يفتقر محتوى هذه المقالة إلى الاستشهاد بمصادر. فضلاً، ساهم في تطوير هذه المقالة من خلال إضافة مصادر موثوق بها. أي معلومات غير موثقة يمكن التشكيك بها وإزالتها. (ديسمبر 2018)   هذه المقالة عن المسجد العمري الكبير في بيروت...

 

Strategi Solo vs Squad di Free Fire: Cara Menang Mudah!