├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── contain-intrinsic-size.html ├── explainers ├── auto-expanding-details-explainer.md ├── beforematch-spec-draft.md ├── beforematch.md ├── contain-intrinsic-size.md ├── content-visibility-hidden-matchable.md ├── content-visibility.md ├── hidden-content-explainer.md ├── images │ └── beforematch.gif ├── isvisible.md └── update-rendering.md ├── find-in-page-compat.md ├── index.html ├── privacy-assessments ├── auto-expanding-details-privacy.md ├── beforematch.md ├── contain-intrinsic-size.md └── isvisible.md ├── resources └── find-in-page │ ├── display_types_chrome.png │ ├── display_types_firefox.png │ ├── display_types_safari.png │ ├── occlusion_chrome.png │ ├── occlusion_firefox.png │ ├── occlusion_safari.png │ ├── overflow_auto_chrome.png │ ├── overflow_auto_firefox.png │ ├── overflow_auto_safari.png │ ├── overflow_hidden_chrome.png │ ├── overflow_hidden_firefox.png │ ├── overflow_hidden_safari.png │ ├── search-incremental.html │ ├── visibility_chrome.png │ ├── visibility_firefox.png │ └── visibility_safari.png ├── sample-code ├── collapsed-sections.html ├── contain-intrinsic-size-examples.html ├── css-collapsed-sections.html └── tabbed-ui.html └── w3c.json /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | All documentation, code and communication under this repository are covered by the [W3C Code of Ethics and Professional Conduct](https://www.w3.org/Consortium/cepc/). 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Web Platform Incubator Community Group 2 | 3 | This repository is being used for work in the W3C Web Platform Incubator Community Group, governed by the [W3C Community License 4 | Agreement (CLA)](http://www.w3.org/community/about/agreements/cla/). To make substantive contributions, 5 | you must join the CG. 6 | 7 | If you are not the sole contributor to a contribution (pull request), please identify all 8 | contributors in the pull request comment. 9 | 10 | To add a contributor (other than yourself, that's automatic), mark them one per line as follows: 11 | 12 | ``` 13 | +@github_username 14 | ``` 15 | 16 | If you added a contributor by mistake, you can remove them in a comment with: 17 | 18 | ``` 19 | -@github_username 20 | ``` 21 | 22 | If you are making a pull request on behalf of someone else but you had no part in designing the 23 | feature, you can remove yourself with the above syntax. 24 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | All Reports in this Repository are licensed by Contributors 2 | under the 3 | [W3C Software and Document License](http://www.w3.org/Consortium/Legal/2015/copyright-software-and-document). 4 | 5 | Contributions to Specifications are made under the 6 | [W3C CLA](https://www.w3.org/community/about/agreements/cla/). 7 | 8 | Contributions to Test Suites are made under the 9 | [W3C 3-clause BSD License](https://www.w3.org/Consortium/Legal/2008/03-bsd-license.html) 10 | 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Important Note 2 | 3 | The work here has all been adopted in CSSWG or WHATWG as needed. This repo is 4 | archived for the historical record. 5 | 6 | ## Display locking 7 | 8 |
The following two words are in separate blocks:
29 |The second word is in a block sibling of the first:
32 |The following two words are in separate inline-blocks:
35 |The second word is in a inline-block sibling of the first:
38 |The following two words are in separate inlines:
41 |The second word is in a inline sibling of the first:
44 |visibility: hidden element below
94 |display: none element below
99 |opacity: 0 element below
104 |opacity: 0.01 element below
109 |below is an overflow: hidden element with a 1000px tall spacer and a div with text
156 | 157 |first spacer after container ends here
164 | 165 |second spacer after container ends here
166 | ``` 167 | 168 | Searching for "target" without quotes. 169 | 170 | #### Chrome results 171 | 172 |below is an overflow: auto element with a 1000px tall spacer and a div with text
210 | 211 |first spacer after container ends here
218 | 219 |second spacer after container ends here
220 | ``` 221 | 222 | Searching for "target" without quotes. 223 | 224 | #### Chrome results 225 | 226 |The "target" text below is occluded by a relpos element
277 | 278 |
The text below is occluded by a abspos element
284 | 285 |59 | In this examples, there is content that is considered above the fold, such as this text. 60 | It is visible on load and appears near the top of the page. It cannot be collapsed, as indicated 61 | by the asterisk next to the section title. Additional information is provided 62 | in sections located below. These sections are collapsed by default. They do not incur rendering 63 | cost since they are display-locked. However, they are still searchable via user interactions. For 64 | example, they are expandable by clicking the button next to the section title. They are also 65 | expandable via find-in-page. 66 |
67 |68 | You can try this out by using find in page to find "github", for example. 69 |
70 |
71 | Note that render-subtree
does not seem to be supported by your browser. This means
72 | that you will not be able to use find-in-page to navigate into collapsed sections.
73 |
78 | Here you can find some details which are below the fold. They appear in a 79 | collapsed section, meaning that they are not immediately visible on page load. 80 |
81 |
82 | The collapsed sections have a render-subtree
CSS attribute applied with an invisible
83 | token. This means that it induces size containment. Since there is
84 | no competing sizing information, the section collapses "automatically".
85 |
90 | Here you can find additional information. Since you are reading this anyway, here you can
91 | find information on render-subtree
property:
92 | github page.
93 |
In this example, the divs are not sized by anything so they naturally 70 | occupy all available width, and enough width to fit their content. 71 |
When 'contain: size' is added, the left-hand-side div does not consider its 72 | children for sizing. This means it still takes up all available width, but 73 | 0 height. The right-hand-side element, however, starts using 74 | contain-intrinsic-size as its intrinsic size, so it still takes up all of 75 | the width but sizes the height to its contain-intrinsic-size height. 76 |
In this example, the elements's width is sized to max-content. This means 96 | that it will use the intrinsic size information when determining the size. 97 | However, when size containment is applied, the child information cannot be 98 | used. 99 |
With size containment, the left hand size element becomes 0 width and 0 100 | height (and its content is laid out with overflow). The right hand side 101 | element uses the contain-intrinsic-size and sizes both the width and the 102 | height to the specified size. 103 |
In this example, the elements are explicitly sized. They have 250px width 124 | and 150px height. Size containment has no effect, since the specified size takes 125 | priority. 126 |
This example demonstrates why this feature is useful. Note that there are 159 | enough elements to be scrollable here. It is important to 160 | note that in this example, when we add size containment we only do 161 | it for off-screen elements (as determined by an intersection observer). To 162 | put it differently, when "add 'contain: size'" is pressed, the size containment 163 | will start being added and removed automatically based on screen visibility. 164 | 165 |
Note that on the left hand size, the experience of scrolling is not great, 166 | because offscreen elements are 0 sized (with border). However, although the 167 | height for contain-intrinsic-size is a rough estimate, the scrolling 168 | experience is much better. 169 | 170 |
Here, the effect is achieved by intersection observer. However, it can 171 | also be achieved automatically by simply specifying content-visibility: auto. 172 | This example demonstrates how important contain-intrinsic-size is when used 173 | with content-visibility: auto. 174 | 175 |
Note that the experience can be made better with improved estimates of the 176 | sizes without the worry of specifying a value that is too large. A 177 | large value with height or min-height would have noticeable (and visibly broken to the user) consequences on 178 | visible content (assuming the property is added unconditionally). The 179 | contain-intrinsic-size property, however, is ignored when size containment is 180 | not present. 181 |
190 | Wikipedia (/ˌwɪkɪˈpiːdiə/ (listen) wik-ih-PEE-dee-ə or /ˌwɪkiˈpiːdiə/ 191 | (listen) wik-ee-PEE-dee-ə) is a multilingual online encyclopedia created and 192 | maintained as an open collaboration project[3] by a community of volunteer 193 | editors using a wiki-based editing system.[4] It is the largest and most 194 | popular general reference work on the World Wide Web,[5][6][7] and is one of 195 | the most popular websites ranked by Alexa as of October 2019.[8] It features 196 | exclusively free content and no commercial ads, and is owned and supported 197 | by the Wikimedia Foundation, a non-profit organization funded primarily 198 | through donations.[9][10][11][12] 199 |
200 |
204 |
205 | Type of site
206 |
207 | |
208 | 209 | Online encyclopedia 210 | | 211 |
---|---|
214 |
215 | Available in
216 |
217 | |
218 | 219 | 307 languages 220 | | 221 |
224 |
225 | Owner
226 |
227 | |
228 | 229 | Wikimedia Foundation 230 | | 231 |
234 |
235 | Created by
236 |
237 | |
238 |
239 | Jimmy Wales 240 | Larry Sanger[1] 241 | |
242 |
245 |
246 | Website
247 |
248 | |
249 | 250 | www.wikipedia.org 251 | | 252 |
255 |
256 | Alexa rank
257 |
258 | |
259 | 260 | 9 (Global, November 2019) 261 | | 262 |
265 |
266 | Commercial
267 |
268 | |
269 | 270 | No 271 | | 272 |
275 |
276 | Registration
277 |
278 | |
279 | 280 | Optional[note 1] 281 | | 282 |
285 |
286 | Users
287 |
288 | |
289 | 290 | >313,871 active users[note 2] and >85,534,289 291 | registered users 1,145 administrators (English) 292 | | 293 |
296 |
297 | Launched
298 |
299 | |
300 | 301 | January 15, 2001; 18 years ago 302 | | 303 |
306 |
307 | Current status
308 |
309 | |
310 | 311 | Active 312 | | 313 |
316 |
317 | Content license
318 |
319 | |
320 |
321 | CC Attribution / Share-Alike 3.0 322 | Most text is also dual-licensed under GFDL; media licensing varies. 323 | |
324 |
327 |
328 | Written in
329 |
330 | |
331 | 332 | LAMP platform[2] 333 | | 334 |
337 |
338 | OCLC number
339 |
340 | |
341 | 342 | 52075003 343 | | 344 |
347 | Wikipedia was launched on January 15, 2001, by Jimmy Wales and Larry 348 | Sanger.[13] Sanger coined its name,[14][15] as a portmanteau of "wiki" 349 | (the Hawaiian word for "quick"[16]) and "encyclopedia". While it was 350 | Initially an English-language encyclopedia, versions in other languages 351 | were quickly developed. With at least 5,972,764 articles,[note 3] the 352 | English Wikipedia is the largest of the more than 290 Wikipedia 353 | encyclopedias. Overall, Wikipedia comprises more than 40 million 354 | articles in 301 different languages[17] and by February 2014 it had 355 | reached 18 billion page views and nearly 500 million unique visitors 356 | per month.[18] 357 |
358 |359 | In 2005, Nature published a peer review comparing 42 hard science 360 | articles from Encyclopædia Britannica and Wikipedia and found that 361 | Wikipedia's level of accuracy approached that of Britannica,[19] 362 | although critics suggested that it might not have fared so well in a similar 363 | study of a random sampling of all articles or one focused on social science 364 | or contentious social issues.[20][21] The following year, 365 | Time magazine stated that the open-door policy of allowing anyone 366 | to edit had made Wikipedia the biggest and possibly the best encyclopedia 367 | in the world, and was a testament to the vision of Jimmy Wales.[22] 368 |
369 |370 | Wikipedia has been criticized for exhibiting systemic bias, for presenting 371 | a mixture of "truth, half truth, and some falsehoods",[23] and 372 | for being subject to manipulation and spin in controversial topics.[24] 373 | In addition, Wikipedia has gender bias, particularly on its English-language 374 | site, where the dominant majority of editors are male. However, Edit-a-thons 375 | have been held to encourage female editors and increase the coverage of 376 | women's topics.[25][26] Facebook announced that by 2017 it would 377 | help readers detect fake news by suggesting links to related Wikipedia 378 | articles. YouTube announced a similar plan in 2018.[27] 379 |
380 | 381 |397 | Other collaborative online encyclopedias were attempted before Wikipedia, 398 | but none were as successful.[28] Wikipedia began as a 399 | complementary project for Nupedia, a free online English-language encyclopedia 400 | project whose articles were written by experts and reviewed under a formal 401 | process.[29] It was founded on March 9, 2000, under the ownership 402 | of Bomis, a web portal company. Its main figures were Bomis CEO Jimmy Wales 403 | and Larry Sanger, editor-in-chief for Nupedia and later Wikipedia.[30][31] 404 | Nupedia was initially licensed under its own Nupedia Open Content License, 405 | but even before Wikipedia was founded, Nupedia switched to the GNU Free 406 | Documentation License at the urging of Richard Stallman.[32] Wales 407 | is credited with defining the goal of making a publicly editable encyclopedia, 408 | [33][34] while Sanger is credited with the strategy of using a wiki 409 | to reach that goal.[35] On January 10, 2001, Sanger proposed on the 410 | Nupedia mailing list to create a wiki as a "feeder" project for Nupedia.[36] 411 |
412 |414 | The domains wikipedia.com and wikipedia.org were registered on January 415 | 12, 2001[37] and January 13, 2001[38] 416 | respectively, and Wikipedia was launched on January 15, 417 | 2001,[29] as a single English-language edition at 418 | www.wikipedia.com,[39] and announced by Sanger on the 419 | Nupedia mailing list.[33] Wikipedia's policy of "neutral 420 | point-of-view"[40] was codified in its first few months. 421 | Otherwise, there were relatively few rules initially and Wikipedia 422 | operated independently of Nupedia.[33] Originally, Bomis 423 | intended to make Wikipedia a business for profit.[41] 424 |
425 |426 | Wikipedia gained early contributors from Nupedia, Slashdot postings, 427 | and web search engine indexing. Language editions were also created, 428 | with a total of 161 by the end of 2004.[42] Nupedia and 429 | Wikipedia coexisted until the former's servers were taken down 430 | permanently in 2003, and its text was incorporated into Wikipedia. The 431 | English Wikipedia passed the mark of two million articles on September 432 | 9, 2007, making it the largest encyclopedia ever assembled, surpassing 433 | the 1408 Yongle Encyclopedia, which had held the record for almost 434 | 600 years.[43] 435 |
436 |437 | Citing fears of commercial advertising and lack of control in 438 | Wikipedia, users of the Spanish Wikipedia forked from Wikipedia to 439 | create the Enciclopedia Libre in February 2002.[44] These 440 | moves encouraged Wales to announce that Wikipedia would not display 441 | advertisements, and to change Wikipedia's domain from wikipedia.com to 442 | wikipedia.org.[45] 443 |
444 |445 | Though the English Wikipedia reached three million articles in August 446 | 2009, the growth of the edition, in terms of the numbers of new 447 | articles and of contributors, appears to have peaked around early 448 | 2007.[46] Around 1,800 articles were added daily to the 449 | encyclopedia in 2006; by 2013 that average was roughly 450 | 800.[47] A team at the Palo Alto Research Center attributed 451 | this slowing of growth to the project's increasing exclusivity and 452 | resistance to change.[48] Others suggest that the growth is 453 | flattening naturally because articles that could be called 454 | "low-hanging fruit"—topics that clearly merit an article—have already 455 | been created and built up extensively.[49][50][51] 456 |
457 |458 | In November 2009, a researcher at the Rey Juan Carlos University in 459 | Madrid found that the English Wikipedia had lost 49,000 editors during 460 | the first three months of 2009; in comparison, the project lost only 461 | 4,900 editors during the same period in 2008.[52][53] The 462 | Wall Street Journal cited the array of rules applied to editing and 463 | disputes related to such content among the reasons for this 464 | trend.[54] Wales disputed these claims in 2009, denying the 465 | decline and questioning the methodology of the study.[55] 466 | Two years later, in 2011, Wales acknowledged the presence of a slight 467 | decline, noting a decrease from "a little more than 36,000 writers" in 468 | June 2010 to 35,800 in June 2011. In the same interview, Wales also 469 | claimed the number of editors was "stable and 470 | sustainable".[56] A 2013 article titled "The Decline of 471 | Wikipedia" in MIT's Technology Review questioned this claim. The 472 | article revealed that since 2007, Wikipedia had lost a third of its 473 | volunteer editors, and those still there have focused increasingly on 474 | minutiae.[57] In July 2012, The Atlantic reported that the 475 | number of administrators is also in decline.[58] In the 476 | November 25, 2013, issue of New York magazine, Katherine Ward stated 477 | "Wikipedia, the sixth-most-used website, is facing an internal 478 | crisis".[59] 479 |
480 |482 | In January 2007, Wikipedia entered for the first time the top-ten list 483 | of the most popular websites in the US, according to comScore 484 | Networks. With 42.9 million unique visitors, Wikipedia was ranked 485 | number 9, surpassing The New York Times (#10) and Apple (#11). This 486 | marked a significant increase over January 2006, when the rank was 487 | number 33, with Wikipedia receiving around 18.3 million unique 488 | visitors.[60] As of September 2019, Wikipedia has rank 489 | 9[8] among websites in terms of popularity according to 490 | Alexa Internet. In 2014, it received 8 billion pageviews every 491 | month.[61] On February 9, 2014, The New York Times reported 492 | that Wikipedia has 18 billion page views and nearly 500 million unique 493 | visitors a month, "according to the ratings firm 494 | comScore."[18] 495 |
496 |497 | On January 18, 2012, the English Wikipedia participated in a series of 498 | coordinated protests against two proposed laws in the United States 499 | Congress—the Stop Online Piracy Act (SOPA) and the PROTECT IP Act 500 | (PIPA)—by blacking out its pages for 24 hours.[62] More 501 | than 162 million people viewed the blackout explanation page that 502 | temporarily replaced Wikipedia content.[63][64] 503 |
504 |505 | Loveland and Reagle argue that, in process, Wikipedia follows a long 506 | tradition of historical encyclopedias that accumulated improvements 507 | piecemeal through "stigmergic accumulation".[65][66] 508 |
509 |510 | On January 20, 2014, Subodh Varma reporting for The Economic Times 511 | indicated that not only had Wikipedia's growth stalled, but that it 512 | "had lost nearly 10 per cent of its page views last year. There was a 513 | decline of about 2 billion between December 2012 and December 2013. 514 | Its most popular versions are leading the slide: page-views of the 515 | English Wikipedia declined by 12 per cent, those of German version 516 | slid by 17 per cent and the Japanese version lost 9 per 517 | cent."[67] Varma added that, "While Wikipedia's managers 518 | think that this could be due to errors in counting, other experts feel 519 | that Google's Knowledge Graphs project launched last year may be 520 | gobbling up Wikipedia users."[67] When contacted on this 521 | matter, Clay Shirky, associate professor at New York University and 522 | fellow at Harvard's Berkman Center for Internet and Security indicated 523 | that he suspected much of the page view decline was due to Knowledge 524 | Graphs, stating, "If you can get your question answered from the 525 | search page, you don't need to click [any further]."[67] 526 |
527 |528 | By the end of December 2016, Wikipedia was ranked fifth in the most 529 | popular websites globally.[68] 530 |
531 |532 | In January 2013, 274301 Wikipedia, an asteroid, was named after 533 | Wikipedia; in October 2014, Wikipedia was honored with the Wikipedia 534 | Monument; and, in July 2015, Wikipedia became available as 7,473 books 535 | for $500,000. In 2019, a species of flowering plant was named Viola 536 | wikipedia.[69] 537 |
538 |539 | In April 2019, an etched copy of Wikipedia is now on the Moon after 540 | surviving a crash landing of Beresheet, a failed Israeli lunar lander, 541 | according to experts.[70][71] 542 |
543 |544 | In June 2019, scientists reported that all 16 GB of Wikipedia have 545 | been encoded into synthetic DNA.[72] 546 |
547 |548 | On November 17, 2019, Christina Koch made the first confirmed edit to 549 | Wikipedia from space while aboard the International Space 550 | Station.[73] 551 |
552 |563 | Unlike traditional encyclopedias, Wikipedia follows the 564 | procrastination principle[note 4][75] regarding the 565 | security of its content.[75] It started almost entirely 566 | open—anyone could create articles, and any Wikipedia article could be 567 | edited by any reader, even those who did not have a Wikipedia account. 568 | Modifications to all articles would be published immediately. As a 569 | result, any article could contain inaccuracies such as errors, 570 | ideological biases, and nonsensical or irrelevant text. 571 |
572 |574 | Due to the increasing popularity of Wikipedia, some editions, 575 | including the English version, have introduced editing restrictions in 576 | some cases. For instance, on the English Wikipedia and some other 577 | language editions, only registered users may create a new 578 | article.[76] On the English Wikipedia, among others, some 579 | particularly controversial, sensitive and/or vandalism-prone pages 580 | have been protected to some degree.[77][78] A frequently 581 | vandalized article can be semi-protected or extended confirmed 582 | protected, meaning that only autoconfirmed or extended confirmed 583 | editors are able to modify it.[79] A particularly 584 | contentious article may be locked so that only administrators are able 585 | to make changes.[80] 586 |
587 |588 | In certain cases, all editors are allowed to submit modifications, but 589 | review is required for some editors, depending on certain conditions. 590 | For example, the German Wikipedia maintains "stable versions" of 591 | articles,[81] which have passed certain reviews. Following 592 | protracted trials and community discussion, the English Wikipedia 593 | introduced the "pending changes" system in December 594 | 2012.[82] Under this system, new and unregistered users' 595 | edits to certain controversial or vandalism-prone articles are 596 | reviewed by established users before they are 597 | published.[83] 598 |
599 |601 | Although changes are not systematically reviewed, the software that 602 | powers Wikipedia provides certain tools allowing anyone to review 603 | changes made by others. The "History" page of each article links to 604 | each revision.[note 5][84] On most articles, anyone can 605 | undo others' changes by clicking a link on the article's history page. 606 | Anyone can view the latest changes to articles, and anyone may 607 | maintain a "watchlist" of articles that interest them so they can be 608 | notified of any changes. "New pages patrol" is a process whereby newly 609 | created articles are checked for obvious problems.[85] 610 |
611 |612 | In 2003, economics PhD student Andrea Ciffolilli argued that the low 613 | transaction costs of participating in a wiki create a catalyst for 614 | collaborative development, and that features such as allowing easy 615 | access to past versions of a page favor "creative construction" over 616 | "creative destruction".[86] 617 |
618 |620 | Any change or edit that manipulates content in a way that purposefully 621 | compromises the integrity of Wikipedia is considered vandalism. The 622 | most common and obvious types of vandalism include additions of 623 | obscenities and crude humor. Vandalism can also include advertising 624 | and other types of spam.[87] Sometimes editors commit 625 | vandalism by removing content or entirely blanking a given page. Less 626 | common types of vandalism, such as the deliberate addition of 627 | plausible but false information to an article can be more difficult to 628 | detect. Vandals can introduce irrelevant formatting, modify page 629 | semantics such as the page's title or categorization, manipulate the 630 | underlying code of an article, or use images 631 | disruptively.[88] 632 |
633 |634 | Obvious vandalism is generally easy to remove from Wikipedia articles; 635 | the median time to detect and fix vandalism is a few 636 | minutes.[89][90] However, some vandalism takes much longer 637 | to repair.[91] 638 |
639 |640 | In the Seigenthaler biography incident, an anonymous editor introduced 641 | false information into the biography of American political figure John 642 | Seigenthaler in May 2005. Seigenthaler was falsely presented as a 643 | suspect in the assassination of John F. Kennedy.[91] The 644 | article remained uncorrected for four months.[91] 645 | Seigenthaler, the founding editorial director of USA Today and founder 646 | of the Freedom Forum First Amendment Center at Vanderbilt University, 647 | called Wikipedia co-founder Jimmy Wales and asked whether he had any 648 | way of knowing who contributed the misinformation. Wales replied that 649 | he did not, although the perpetrator was eventually 650 | traced.[92][93] After the incident, Seigenthaler described 651 | Wikipedia as "a flawed and irresponsible research 652 | tool".[91] This incident led to policy changes at 653 | Wikipedia, specifically targeted at tightening up the verifiability of 654 | biographical articles of living people.[94] 655 |
656 |658 | Wikipedians often have disputes regarding content, which may result in 659 | repeatedly making opposite changes to an article, known as "edit 660 | warring".[95][96] The process is a resource-consuming 661 | scenario where no useful knowledge is added.[97] This 662 | practice is also criticized as creating a competitive,[98] 663 | conflict based[99] editing culture associated with 664 | traditional masculine gender roles,[100] which contributes 665 | to the gender bias on Wikipedia. 666 |
667 |668 | Special interest groups have engaged in edit wars to advance their own 669 | political interests. Defending Israeli settlements in the West Bank, 670 | numerous pro-occupation groups have launched "Zionist editing" 671 | campaigns.[101] In 2010, the then director general of the 672 | Yesha Council and former Israeli Cabinet Minister Naftali Bennett 673 | described their goal "as not to make Wikipedia rightist but for it to 674 | include our point of view".[102] 675 |
676 |687 | Content in Wikipedia is subject to the laws (in particular, copyright 688 | laws) of the United States and of the US state of Virginia, where the 689 | majority of Wikipedia's servers are located. Beyond legal matters, the 690 | editorial principles of Wikipedia are embodied in the "five pillars" 691 | and in numerous policies and guidelines intended to appropriately 692 | shape content. Even these rules are stored in wiki form, and Wikipedia 693 | editors write and revise the website's policies and 694 | guidelines.[103] Editors can enforce these rules by 695 | deleting or modifying non-compliant material. Originally, rules on the 696 | non-English editions of Wikipedia were based on a translation of the 697 | rules for the English Wikipedia. They have since diverged to some 698 | extent.[81] 699 |
700 |702 | According to the rules on the English Wikipedia, each entry in 703 | Wikipedia must be about a topic that is encyclopedic and is not a 704 | dictionary entry or dictionary-like.[104] A topic should 705 | also meet Wikipedia's standards of "notability",[105] which 706 | generally means that the topic must have been covered in mainstream 707 | media or major academic journal sources that are independent of the 708 | article's subject. Further, Wikipedia intends to convey only knowledge 709 | that is already established and recognized.[106] It must 710 | not present original research. A claim that is likely to be challenged 711 | requires a reference to a reliable source. Among Wikipedia editors, 712 | this is often phrased as "verifiability, not truth" to express the 713 | idea that the readers, not the encyclopedia, are ultimately 714 | responsible for checking the truthfulness of the articles and making 715 | their own interpretations.[107] This can at times lead to 716 | the removal of information that, though valid, is not properly 717 | sourced.[108] Finally, Wikipedia must not take 718 | sides.[109] All opinions and viewpoints, if attributable to 719 | external sources, must enjoy an appropriate share of coverage within 720 | an article. This is known as neutral point of view (NPOV). 721 |
722 |Unfortunatelly, your browser does not 85 | support render-subtree
86 |