Module:SST/shards/B
| This module is rated as alpha. It is ready for limited use and third-party feedback. It may be used on a small number of pages, but should be monitored closely. Suggestions for new features or adjustments to input and output are welcome. |
| Editing of this module by new or unregistered users is currently disabled. See the protection policy and protection log for more details. If you cannot edit this module and you wish to make a change, you can submit an edit request, discuss changes on the talk page, request unprotection, log in, or create an account. |
- Note: This is part of the WP:SSTS system see that page for complete documentation
This page contains the data configurations for Module:SST ("Single-source templates") for all book keys starting with the letter "B".
Create a new shard entry
All book metadata is stored in "shards" which are Lua Modules that contain simple tables.
There are two types of shards:
- Single - A single book. They share shard files. For example, all single books that start with "A" are in Module:SST/shards/A
- Sets - Works that have multiple volumes or editions e.g. an Encyclopedia or a 3-edition book. Each one has their own private shard file stored in
Module:SST/shards/setsfor example Module:SST/shards/sets/THE_CAMBRIDGE_HISTORY_OF_IRAN.
To add a new book, navigate to the correct shard and add a new table. The template documentation page will show where the shard is located.
Naming the book key
When creating a new table, use a unique, recognizable book key in ALL CAPS, with spaces converted to underscores. For single shards it must start with the letter of the shard it is placed in. Generally a good idea to start with the author's last name then a short version of the title.
- Example:
library['IMBER_THE_OTTOMAN_EMPIRE'] = { ... }
When creating a multi-edition or volume set of books, name each book followed by a number for volumes e.g. _1 and _2 .. or by a year of publication e.g. _1990 and _2002 for editions.
- BOWEN_THE_LIFE_AND_TIMES_OF_AL_IBN_ISA
- IMBER_THE_OTTOMAN_EMPIRE_2002
- IMBER_THE_OTTOMAN_EMPIRE_2009
- BYZANTINE_SEALS_1
- BYZANTINE_SEALS_2
Host
The |host= sets which digital library the citation will link to.
Example: Host
|
|---|
library['IMBER_THE_OTTOMAN_EMPIRE'] = {
['host'] = "ia",
['cite_params'] = {
.....
}
|
Valid values for |host= are "ia", "guten", "hathi", "wikisrc", "gbook", "web" and "physical" (not online). These map to a corresponding |id= in the |hosts= entry (see below). Improper values or lack of a host will default to "physical" (no external links).
If a |host= is changed (e.g. from "hathi" to "ia") this will impact the Leaf page designations for every template on Wikipedia. For example Hathi uses 42@s54 while IA uses 42@n34. A change of |host= is disruptive, causing URLs to land on the wrong page. Tools will be in development to make |host= changes easier by automating the update of templates. Until then, it is better to consider the host "locked".
Citation Parameters
- A table of CS1 parameters displayed by default. (Users can override these within the invoking templates.)
|_template=: Optional. Defaults tocite book, can also be set tocite encyclopedia(more template support in future).|last=,|first=,|quote=,|ref=, etc. = Standard CS1 parameters.
Example: Citation Parameters
|
|---|
['host'] = "ia",
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Birtchnell",
['first'] = "Percy Charles",
['author-link'] = "Percy Birtchnell",
['title'] = "A Short History of Berkhamsted",
['year'] = "1972",
['edition'] = "Revised",
['publisher'] = "Privately printed",
['place'] = "Berkhamsted",
['oclc'] = "737328"
},
|
Hosts
- A nested table defining where the book can be found online and how the routing engines should handle it. Supported host keys are
|ia=(Internet Archive),|hathi=(HathiTrust),|guten=(Project Gutenberg),|wikisrc=(Wikisource),|gbook=(Google Books),|web=(Other website), and|physical=(No digital host). You can add multiple hosts for each book, which one is used is defined by|host=(see above).
- A nested table defining where the book can be found online and how the routing engines should handle it. Supported host keys are
|id== The host-specific identifier.- IA: The ID from the URL. Multiple IDs for the same edition can be defined see Example setup.
- Hathi: The handle ID
- GBook: The 12-character ID
- Wikisource: The full Page namespace name, including extension
- Web: For a web host, omit id. See Example setup.
- Physical: A physical copy only - for books without a digital host. See Example setup.
Example: Host Configurations
|
|---|
['hosts'] = {
['ia'] = {
['id'] = "encyclopaediabrit01chisrich",
}
}
['hosts'] = {
['ia'] = {
['id'] = {
"nebraskaplacenam00fitz",
"nebraskaplacenam0000fitz"
}
}
}
['hosts'] = {
['hathi'] = {
['id'] = "iau.31858015245842",
}
}
['hosts'] = {
['gbook'] = {
['id'] = "-CNkywAACAAJ",
}
}
['hosts'] = {
['wikisrc'] = {
['id'] = "Page:The Fun of It.pdf",
}
}
['hosts'] = {
['web'] = {
['url'] = "http://www.uscoldwar.com/overview.htm",
}
}
['hosts'] = {
['physical'] = {}
}
|
- Internet Archive Options:
- query = (Internet Archive only). Optional. Use instead of `id` for multi-volume works. Links the main title to an IA search page. Page linking will output as unlinked plain text. (ex. `query = 'title:"Encyclopaedia Britannica" AND date:1911'`)
- iadisplay = "full screen" (Internet Archive only). Optional. Opens the book in full-screen mode instead of the default 2-up view.
- iasearch = "none" or "pagenum" (Internet Archive only). Optional. Set to "none" to disable the dummy search for PD books.
Example: Internet Archive Options
|
|---|
['hosts'] = {
['ia'] = {
['query'] = "title:Britannica AND year:1911",
}
}
['hosts'] = {
['ia'] = {
['id'] = "encyclopaediabrit01chisrich",
['iasearch'] = "none",
['iadisplay'] = "full screen"
}
}
|
Multiple IDs
Some hosts have multiple copies of the same book+edition. This can be useful to mitigate viewing limits. Many hosts only allow X number of views per day per book. By including multiple IDs, you can spread the load across multiple IDs. Because the template randomly chooses real-time, it is important each book be identical ie. published in the same year, same publisher, each open to the same page 42 etc.. How to add multiple identical books:
['hosts'] = {
['ia'] = {
['id'] = {
"nebraskaplacenam00fitz",
"nebraskaplacenam0000fitz"
}
}
}
Load sharing is not available across hosts (inter-host), only within hosts (intra-host).
local library = {}
-- The British Steam Railway Locomotive 1825-1925 by Locomotive Publishing Co.
-- Template:Book-Ahrons-British Steam Railway Locomotive
library['BOOK_AHRONS_BRITISH_STEAM_RAILWAY_LOCOMOTIVE'] = {
host = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['title'] = "The British Steam Railway Locomotive 1825-1925",
['last'] = "Ahrons",
['first'] = "E.L.",
['author-link'] = "E.L. Ahrons",
['year'] = "1927",
['publisher'] = "[[Locomotive Publishing Co.]]",
['location'] = "Amen Corner, London"
},
['hosts'] = {
['ia'] = {
['id'] = "britishsteamrail00ahro",
['iadisplay'] = "full screen",
['iasearch'] = "none"
},
['hathi'] = {
['id'] = ""
}
}
}
-- Byzantium Confronts the West, 1180–1204 by Harvard University Press
-- Template:Byzantium Confronts the West
library['BYZANTIUM_CONFRONTS_THE_WEST'] = {
host = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['title'] = "Byzantium Confronts the West, 1180–1204",
['first'] = "Charles M.",
['last'] = "Brand",
['location'] = "Cambridge, Massachusetts",
['publisher'] = "Harvard University Press",
['year'] = "1968",
['lccn'] = "67-20872"
},
['hosts'] = {
['ia'] = {
['id'] = "byzantiumconfron0000unse"
}
}
}
-- Buildings of Michigan by Oxford University Press
-- Template:Eckert-Buildings of Michigan
library['BUILDINGS_OF_MICHIGAN'] = {
host = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Eckert",
['first'] = "Kathryn Bishop",
['year'] = "1993",
['title'] = "Buildings of Michigan",
['location'] = "New York",
['publisher'] = "[[Oxford University Press]]",
['isbn'] = "978-0-19-509379-7"
},
['hosts'] = {
['ia'] = {
['id'] = "buildingsofmichi0000ecke"
}
}
}
-- The Breaking of a Thousand Swords: A History of the Turkish Military of Samarra (A.H. 200–275/815–889 C.E.) by State University of New York Press
-- Template:Gordon-The Breaking of a Thousand Swords
library['BREAKING_OF_A_THOUSAND_SWORDS'] = {
host = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['title'] = "The Breaking of a Thousand Swords: A History of the Turkish Military of Samarra (A.H. 200–275/815–889 C.E.)",
['last'] = "Gordon",
['first'] = "Matthew S.",
['year'] = "2001",
['publisher'] = "State University of New York Press",
['location'] = "Albany, New York",
['isbn'] = "0-7914-4795-2"
},
['hosts'] = {
['ia'] = {
['id'] = "breakingofthousa0000gord"
}
}
}
-- The End of the Jihâd State: The Reign of Hishām ibn ʻAbd al-Malik and the Collapse of the Umayyads by State University of New York Press
-- Template:The End of the Jihâd State
library['BLANKINSHIP_THE_END_OF_THE_JIHÂD_STATE'] = {
host = 'gbook', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['first'] = "Khalid Yahya",
['last'] = "Blankinship",
['author-link'] = "Khalid Yahya Blankinship",
['title'] = "The End of the Jihâd State: The Reign of Hishām ibn ʻAbd al-Malik and the Collapse of the Umayyads",
['publisher'] = "State University of New York Press",
['location'] = "Albany, New York",
['year'] = "1994",
['isbn'] = "978-0-7914-1827-7",
},
['hosts'] = {
['gbook'] = {
['id'] = "Jz0Yy053WS4C",
}
}
}
-- Die Provinzen des Osmanischen Reiches by [[:de:Andreas Birken|Andreas Birken]]
-- Template:Die Provinzen des Osmanischen Reiches
library['BIRKEN_DIE_PROVINZEN_DES_OSMANISCHEN_REICHES'] = {
host = 'gbook', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['title'] = "Die Provinzen des Osmanischen Reiches",
['trans-title'] = "The Provinces of the Ottoman Empire",
['series'] = "Beihefte zum Tübinger Atlas des Vorderen Orients, 13",
['last'] = "Birken",
['first'] = "Andreas",
['author-link'] = ":de:Andreas Birken",
['language'] = "de",
['publisher'] = "Reichert",
['year'] = "1976",
['isbn'] = "3-920153-56-1",
},
['hosts'] = {
['gbook'] = {
['id'] = "oi5pAAAAMAAJ",
}
}
}
-- The Life and Times of ʿAlí Ibn ʿÍsà, ‘The Good Vizier’ by Harold Bowen
-- Template:The Life and Times of Ali ibn Isa
library['BOWEN_THE_LIFE_AND_TIMES_OF_AL_IBN_ISA'] = {
host = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['first'] = "Harold",
['last'] = "Bowen",
['title'] = "The Life and Times of ʿAlí Ibn ʿÍsà, ‘The Good Vizier’",
['year'] = "1928",
['location'] = "Cambridge",
['publisher'] = "Cambridge University Press",
},
['hosts'] = {
['ia'] = {
['id'] = "in.ernet.dli.2015.76926",
['iasearch'] = "none",
}
}
}
-- The Imperial Administrative System of the Ninth Century – With a Revised Text of the Kletorologion of Philotheos by [[J. B. Bury]]
-- Template:The Imperial Administrative System of the Ninth Century
library['BURY_THE_IMPERIAL_ADMINISTRATIVE_SYSTEM'] = {
['host'] = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last1'] = "Bury",
['first1'] = "J. B.",
['author-link'] = "J. B. Bury",
['author2'] = "Philotheus",
['author-link2'] = "Kletorologion",
['title'] = "The Imperial Administrative System of the Ninth Century (With a Revised Text of the Kletorologion of Philotheos)",
['year'] = "1911",
['location'] = "London",
['publisher'] = "Oxford University Press",
},
['hosts'] = {
['ia'] = {
['id'] = "imperialadminist00buryrich",
['iasearch'] = "none",
['iadisplay'] = "full screen",
}
}
}
-- La Morée franque. Recherches historiques, topographiques et archéologiques sur la principauté d'Achaïe by Antoine Bon
-- Template:La Morée franque
library['BON_LA_MORE_FRANQUE'] = {
['host'] = 'web', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Bon",
['first'] = "Antoine",
['title'] = "La Morée franque. Recherches historiques, topographiques et archéologiques sur la principauté d'Achaïe",
['trans-title'] = "The Frankish Morea. Historical, Topographic and Archaeological Studies on the Principality of Achaea",
['year'] = "1969",
['language'] = "fr",
['publisher'] = "De Boccard",
['location'] = "Paris",
},
['hosts'] = {
['web'] = {
['url'] = "http://cefael.efa.gr/detail.php?site_id=1&actionID=page&serie_id=BefarA&volume_number=213&issue_number=1",
}
}
}
-- Pemberton Wine Region Western Australia by Alex Bond
-- Template:Bond-Pemberton
library['BOND_PEMBERTON_WINE_REGION_WESTERN_AUSTRALIA'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Bond",
['first'] = "Alex",
['year'] = "2008",
['title'] = "Pemberton Wine Region Western Australia",
['location'] = "Applecross, WA",
['publisher'] = "Stormlight Publishing",
['isbn'] = "9780646488332",
},
['hosts'] = {
['physical'] = {}
}
}
-- Das neue grosse Mercedes SL-Buch by Helmut Baaden ''et al.''
-- Template:Baaden: Das neue grosse Mercedes SL
library['BAADEN_DAS_NEUE_GROSSE_MERCEDES_SL_BUCH'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last1'] = "Baaden",
['first1'] = "Helmut",
['last2'] = "Röcke",
['first2'] = "Matthias",
['year'] = "2002",
['title'] = "Das neue grosse Mercedes SL-Buch",
['trans-title'] = "The New Big Mercedes SL Book",
['location'] = "Königswinter, Germany",
['publisher'] = "Heel Verlag",
['isbn'] = "3-89880-084-9",
['language'] = "de",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes Benz Personenwagen 1886–1980 by Roberto Bruno
-- Template:Bruno: Mercedes Benz Personenwagen 1886–1980
library['BRUNO_MERCEDES_BENZ_PERSONENWAGEN_18861980'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Bruno",
['first'] = "Roberto",
['year'] = "2014",
['title'] = "Mercedes Benz Personenwagen 1886–1980",
['trans-title'] = "Mercedes-Benz Passenger Cars 1886–1980",
['series'] = "Typenkompass series",
['location'] = "Stuttgart",
['publisher'] = "Motorbuch Verlag",
['isbn'] = "9783613036819",
['language'] = "de",
},
['hosts'] = {
['physical'] = {}
}
}
-- Porsche Data Book: The definitive reference to specifications and statistics by Marc Bongers
-- Template:Bongers: Porsche Data Book
library['BONGERS_PORSCHE_DATA_BOOK'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Bongers",
['first'] = "Marc",
['year'] = "2006",
['title'] = "Porsche Data Book: The definitive reference to specifications and statistics",
['location'] = "Sparkford, Somerset, UK",
['publisher'] = "Haynes Publishing",
['isbn'] = "1844253163",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes-Benz 280-560SL & SLC: W107 series Roadsters & Coupés, 1971 to 1989 by Chris Bass
-- Template:Bass: Mercedes-Benz 280-560SL & SLC: W107 series
library['BASS_MERCEDES_BENZ_280_560SL_SLC'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Bass",
['first'] = "Chris",
['year'] = "2017",
['title'] = "Mercedes-Benz 280-560SL & SLC: W107 series Roadsters & Coupés, 1971 to 1989",
['series'] = "The Essential Buyer's Guide series",
['location'] = "Dorchester, Dorset, UK",
['publisher'] = "Veloce Publishing",
['isbn'] = "978-1-78711-182-0",
},
['hosts'] = {
['physical'] = {}
}
}
-- NSU Fotoalbum 1906–1977: Auto by Volker Bruse ''et al.''
-- Template:Bruse: NSU Fotoalbum 1906–1977
library['BRUSE_NSU_FOTOALBUM_1906_1977'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last1'] = "Bruse",
['first1'] = "Volker",
['last2'] = "Storz",
['first2'] = "Alexander Franco",
['year'] = "2010",
['title'] = "NSU Fotoalbum 1906–1977: Auto",
['trans-title'] = "NSU Photo Album 1906–1977: Car",
['series'] = "Motorrad - Auto series, no. 11",
['location'] = "Lemgo, Germany",
['publisher'] = "Johann Kleine Vennekate Verlag",
['isbn'] = "9783935517539",
['language'] = "de",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes-Benz Personenwagen: Eine Chronik by Udo Bols
-- Template:Bols: Mercedes-Benz Personenwagen
library['BOLS_MERCEDES_BENZ_PERSONENWAGEN'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Bols",
['first'] = "Udo",
['year'] = "2007",
['title'] = "Mercedes-Benz Personenwagen: Eine Chronik",
['trans-title'] = "Mercedes-Benz Passenger Cars: A Chronicle",
['location'] = "Brilon, Germany",
['publisher'] = "Podszun Verlag",
['isbn'] = "9783861334125",
['language'] = "de",
},
['hosts'] = {
['physical'] = {}
}
}
-- Mercedes-Benz 'Pagoda' 230, 250 & 280 SL: W113 series Roadsters & Coupés, 1963-1971 by Chris Bass
-- Template:Bass: Mercedes-Benz Pagoda 230, 250 & 280 SL
library['BASS_MERCEDES_BENZ_PAGODA_230_250_280_SL'] = {
['host'] = 'physical', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Bass",
['first'] = "Chris",
['year'] = "2007",
['title'] = "Mercedes-Benz 'Pagoda' 230, 250 & 280 SL: W113 series Roadsters & Coupés, 1963-1971",
['series'] = "The Essential Buyer's Guide series",
['location'] = "Dorchester, Dorset, UK",
['publisher'] = "Veloce Publishing",
['isbn'] = "978-1-84584-113-3",
},
['hosts'] = {
['physical'] = {}
}
}
-- High and Mighty: SUVs – The World's Most Dangerous Vehicles and How They Got That Way by Keith Bradsher
-- Template:Bradsher: High and Mighty
library['BRADSHER_HIGH_AND_MIGHTY'] = {
['host'] = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Bradsher",
['first'] = "Keith",
['year'] = "2002",
['title'] = "High and Mighty: SUVs – The World's Most Dangerous Vehicles and How They Got That Way",
['location'] = "New York",
['publisher'] = "[[PublicAffairs]]",
['isbn'] = "1-58648-123-1",
},
['hosts'] = {
['ia'] = {
['id'] = "highmightydan00brad",
}
}
}
-- Disraeli by [[Robert Blake, Baron Blake|Robert Blake]]
-- Template:Blake: Disraeli
library['BLAKE_DISRAELI'] = {
['host'] = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Blake",
['first'] = "Robert",
['author-link'] = "Robert Blake, Baron Blake",
['year'] = "1966",
['title'] = "Disraeli",
['location'] = "New York",
['publisher'] = "[[St. Martin's Press]]",
['isbn'] = "0-19-832903-2",
},
['hosts'] = {
['ia'] = {
['id'] = {
"disraeli0000blak_d1x0",
"disraeli0000blak",
"disraeli00blak",
"disraeli0000blak_y9n2",
},
}
}
}
-- At This Theatre: 100 Years of Broadway Shows, Stories and Stars by Louis Botto ''et al.''
-- Template:Botto: At This Theatre
library['BOTTO_AT_THIS_THEATRE'] = {
['host'] = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Botto",
['first'] = "Louis",
['title'] = "At This Theatre: 100 Years of Broadway Shows, Stories and Stars",
['last2'] = "Mitchell",
['first2'] = "Brian Stokes",
['publisher'] = "Applause Theatre & Cinema Books/Playbill",
['year'] = "2002",
['isbn'] = "978-1-55783-566-6",
['publication-place'] = "New York; Milwaukee, WI",
},
['hosts'] = {
['ia'] = {
['id'] = "atthistheatre10000bott",
}
}
}
-- Japanese Film Directors by [[Audie Bock]]
-- Template:Bock: Japanese Film Directors
library['BOCK_JAPANESE_FILM_DIRECTORS'] = {
['host'] = 'ia', -- WARNING: Changing host breaks page numbers in Wikipedia articles. See WP:SSTS#changehost
['cite_params'] = {
['_template'] = 'cite book',
['last'] = "Bock",
['first'] = "Audie",
['author-link'] = "Audie Bock",
['title'] = "Japanese Film Directors",
['year'] = "1978",
['publisher'] = "Kodansha",
['isbn'] = "0-87011-304-6",
},
['hosts'] = {
['ia'] = {
['id'] = "japanesefilmdire0000bock_d7k1",
}
}
}
return library
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.