206 Commits

Author SHA1 Message Date
c49fa5af3c Merge branch 'mako_changes-20260806' into content-sizes 2026-08-13 08:52:15 -07:00
dfd2dbe20f resolve yamlconf from PyPI
yamlconf 0.2.7 removes the pyyaml == 5.4.1 pin that made 0.2.6
unbuildable on Python 3.11+, so the interim reference to the fork
carrying that fix is no longer needed. yamlconf is not a direct
dependency of wikiq—it returns to being resolved transitively via
deltas. The upstream repository has also moved to the
mediawiki-utilities organization.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-13 08:40:06 -07:00
851f070c8f Merge branch 'mako_changes-20260806' into content-sizes 2026-08-08 14:55:06 -07:00
fde1452666 document the requirements of the two skipped diff matcher tests
test_diff_consistency and test_benchmark_diff both read an uncompressed
test/dumps/ikwiki.xml that is not in the repository, so enabling them
requires decompressing the .bz2 first; test_diff_consistency also
writes debug files to the current directory. Say so where the skip
markers are.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-08 14:52:59 -07:00
c6117a7182 Merge remote-tracking branch 'gitea/jsonl-output' into mako_changes-20260806 2026-08-08 14:42:49 -07:00
0b1557efc5 note that installs are copies and point CDSC users to the wiki
pip install . copies the source, so a branch switch leaves the installed
console script running the old code. Say so, since that is easy to miss.

Setup on klone differs enough that duplicating it here would go stale;
link to the collective's wiki rather than restating it.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-08 12:06:16 -07:00
aedd4b3086 Merge branch 'mako_changes-20260806' into content-sizes 2026-08-08 12:01:20 -07:00
2bee25488b correct the test suite runtime in the README
The suite completes in about ninety seconds, not fifteen minutes. The
old figure discouraged running it as part of an ordinary change.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-08 11:45:04 -07:00
702101bfe2 ignore the .venv directory
On klone the venv is created inside the repo with create_cdsc_venv, so
it otherwise shows up as untracked in every git status.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-08 11:39:14 -07:00
Nathan TeBlunthuis
41fda639d8 add infobox test fixtures 2026-08-07 22:27:10 -05:00
1700561b07 Merge branch 'mako_changes-20260806' into content-sizes
Brings in revision-level redirect detection and its regenerated
baselines. Conflicts were the expected adjacent insertions where both
branches extended the same seams (build_table and WikiqParser
signatures, the argparse block, the build_table call sites, and the
test file); resolved by keeping both branches' additions.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 23:52:31 -07:00
40132f04dd make redirect detection revision-level
The redirect_target column added in 59fea19 was page-level: the page's
state at dump time, stamped onto every revision row of the page. That
invited the wrong inference that a given revision was a redirect, and
the column was empty for dumps whose export never wrote <redirect>
elements, such as the 2023 wikitravel.org scrapes; a Swedish Wikitravel
scrape with 732 in-text redirect revisions produced no redirect signal
at all.

Remove that column and detect redirects from each revision's own text
instead. revision_is_redirect records whether the text begins with a
redirect directive and revision_redirect_target records the directive's
link target with any fragment and label stripped. #REDIRECT is
recognized on every wiki; localized keywords (e.g. OMDIRIGERING on
Swedish wikis) can be added with --redirect-aliases. Revisions with
deleted or unavailable text get nulls in both columns. The redirect-map
use case behind 59fea19 survives: the last revision's
revision_redirect_target per page reconstructs the page-level map, now
also on dumps without <redirect> elements.

Document that title and namespace are page-level identity values as of
the time of export, not historical facts about each revision.

Regenerate the test baselines for the column change. Every regenerated
file was verified to differ from its predecessor only by removing
redirect_target and adding the two new columns, with identical values
in all shared columns.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 23:41:57 -07:00
3d6bf34c8e add --content-sizes: decompose revision content into prose and structured characters
A single mwparserfromhell tree walk per revision emits two nullable
int64 columns. prose_chars counts rendered content outside any template
or tag: text nodes, wikilink labels (or targets when unlabeled),
external link labels, and heading titles. structured_chars counts the
same kinds of content inside template parameter values or tag contents,
with each character assigned by its nearest enclosing container. Markup
syntax, template and tag names, parameter names, attributes, bare URLs,
and HTML comments count in neither, so syntax overhead is derivable as
the total size minus the two columns.

Deleted revisions and parse timeouts yield nulls through the same
machinery as the other parser-based columns and do not change which
revisions are processed. Note that mwparserfromhell parses bold and
italic markup as tags, so emphasized text counts as structured.

Includes hand-computed fixture tests for the counting rules and an
end-to-end test on a dump with deleted revisions verifying nulls and
the invariant prose_chars + structured_chars <= revision size.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 18:09:29 -07:00
c1ee926211 add --version and bump to 0.2.0
Resolve the package version from installed metadata, report it via a
--version flag, and print it at the start of each run so output logs
record which wikiq produced them. Bump the version to 0.2.0 for the
changes on this branch: regex match counting, the removal of parquet
output, the Python 3.11 floor, and the dependency cleanup.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 16:33:55 -07:00
d6d0aab604 update README for the current tool
Describe what wikiq is and rewrite the installation, usage, and test
instructions to match the current code: pip or uv installation from the
gitea repository, the Python 3.11 requirement, output format selection
by extension, and the current option set including persistence methods,
wikitext extraction, regex matching and counting, and JSONL resume. Add
an authors section crediting the Community Data Science Collective
contributors and the earlier Python and C++ versions of the tool.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 16:30:21 -07:00
90a14cf999 license under the GNU GPL, version 3 or later
Add the full license text as COPYING (the same text Debian ships in
common-licenses), declare the license and license file in
pyproject.toml, add copyright and permission notices to the source
files, and describe the license in the README. Also replace the
placeholder package description in pyproject.toml.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 16:29:48 -07:00
5fb7b5596c remove orphaned regextest.tsv baseline
No test reads this file; the regex tests use the basic_regextest and
capturegroup_regextest baselines.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 16:23:52 -07:00
fa8adc30ca convert README to markdown
Replace the auto-converted README.md (which carried pandoc title-ref
spans and a garbled Tests heading from a malformed rst underline) with
a clean conversion of README.rst, and remove the rst version.
pyproject.toml already declares README.md as the package readme.
Content is unchanged; bringing it up to date is left for a separate
change.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 16:23:52 -07:00
45f0680200 stop writing debug files from the diff matcher test helper
assert_equal_enough wrote its inputs to files named "token" and "rev"
in the current directory on every invocation, littering the repository
root whenever the test suite ran.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 16:22:39 -07:00
0ed0f57dbb require Python 3.11
Python 3.9 reached end of life in October 2025, and 3.11 is where the
current ecosystem sits: it unlocks pyarrow 25 (we were held at 21, the
last release supporting 3.9), more-itertools 11, and pandas 3 for the
test suite, along with the large CPython 3.11 interpreter speedups on
exactly the kind of CPU-bound work wikiq does. Nothing in the code
needed changes.

Raising the floor exposed that PyPI's yamlconf 0.2.6 (a transitive
dependency via deltas) pins pyyaml == 5.4.1, which has no wheels for
3.11+ and no longer builds from source under current setuptools. Add a
PEP 508 reference to the fork that loosens the pin; it can be dropped
when https://github.com/halfak/yamlconf/pull/10 is merged and released.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 16:17:14 -07:00
14886106ed resolve dependencies from PyPI instead of pinned github forks
Drop the [tool.uv.sources] pins of deltas, mwxml, and yamlconf to forks
under a personal github account:

- The deltas fork was byte-identical to upstream.
- The mwxml fork carried one patch to mwxml.map(), which wikiq does not
  call, and was missing eleven upstream commits of fixes. Require
  mwxml >= 0.3.8 for those fixes; note that 0.3.7 changed namespace
  handling to trust the dump's embedded <ns> tag rather than overriding
  it based on the title prefix.
- The yamlconf fork loosened an old pyyaml pin in requirements.txt.
  yamlconf is not imported by wikiq and is only needed transitively by
  deltas, so drop the direct dependency; the PyPI release installs fine,
  though its pyyaml pin is old (worth fixing upstream).

With pywikidiff2 already declared as a PEP 508 direct https reference,
no uv-specific configuration remains and the package installs with pip.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 16:05:44 -07:00
ec09641545 only prefix namespace names onto titles that lack them
WikiqPage unconditionally prepended the namespace name to titles of
pages outside the main namespace. mwxml >= 0.3.7 keeps the namespace
prefix on the title when the dump carries <ns> tags (it previously
stripped it), which made wikiq emit double-prefixed titles like
"Category:Category:Alaska". Check for the prefix before adding it.
mwxml still strips the prefix on its fallback path for dumps without
<ns> tags, so those titles are still prefixed as before.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 16:05:44 -07:00
3ab988d6eb declare pywikidiff2 as a PEP 508 direct reference over https
Move pywikidiff2 from a [tool.uv.sources] entry to a direct git URL in
the dependency list, and switch it from ssh to anonymous https. The ssh
URL required an account on the gitea instance just to install the
package. A PEP 508 direct reference is understood by pip and every other
standards-compliant installer, not just uv, so this is a step toward
making uv an optional convenience rather than a requirement for working
with this repository.

Hatchling rejects direct references by default because they are not
allowed in packages published to PyPI (this one is not); set
tool.hatch.metadata.allow-direct-references to permit them.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 16:03:41 -07:00
392211af17 remove pyspark dependency and wikiq_spark packaging references
The spark indexing pass is moving out of this repository, and
src/wikiq_spark was never committed here: pyproject.toml declared a
wikiq-spark console script and wheel package that do not exist in the
tree, and pulled in pyspark for every install of a tool that never
imports it. The --print-schema flag and its Spark-format schema
converters remain, since they are pure Python and produce the schema
the external indexing pass consumes.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 15:50:50 -07:00
0b6e0fbc70 add regex match counting (-RPc / -CPc)
Port the regex counting feature from the mako_changes-20230429 branch
(2ff4d60): the -RPc/--revision-pattern-count and
-CPc/--comment-pattern-count flags cause revision and comment patterns
to output the number of matches instead of the matched text, with 0
(never null) for revisions with no matches or deleted content. The
flags apply to all revision or comment patterns respectively, and count
columns are typed int64 in the output schema.

Counting the matches of common or large patterns previously required
returning the full matched text, which made for very large outputs.

Also take the code review suggestion from that branch (933ca75): use
assignment expressions so matching no longer makes redundant calls to
search() before finditer()/findall() or calls match.group() twice.

Includes unit tests for the count semantics and schema types, and an
end-to-end test that verifies counts against the number of matches
recomputed from each revision's text and comment.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 15:47:38 -07:00
6634de51e6 add test for --resume with --collapse-user
Resume with collapsed revision groups was untested: the resume point is
the (articleid, revid) of the last written row, which for collapsed
output is the last revision of a group, and nothing verified that the
replay reconstructs group boundaries and collapsed_revs counts
identically across the resume point. Run sailormoon with
--collapse-user, truncate the output at the midpoint, resume, and
assert the result is identical to an uninterrupted run.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 15:47:28 -07:00
83b7fc0210 skip test_infobox when its fixture files are absent
test_infobox reads test/test_diff_revisions/test_infobox_from and
test_infobox_to, which were never committed to the repository, so the
test always failed with FileNotFoundError. Skip it when the fixtures
are missing so it runs again if they are ever added.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 15:34:48 -07:00
791be0aa56 regenerate test baselines for the redirect_target column
Commit 59fea19 added a redirect_target column to wikiq output but did
not regenerate the test baselines, leaving 14 baseline-comparison tests
failing. Regenerate the affected baselines from current output. Each
regenerated file was verified to differ from its old baseline only by
the addition of the new column: row counts and all values in shared
columns are identical.

Also add the noargs_sailormoon.jsonl baseline used by test_jsonl_noargs,
which was never committed.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 15:34:38 -07:00
7c27942cb0 fix test helper for build_table's three-value return
build_table returns (table, reverts_column, wikitext_parser) but the
jsonl test helper still unpacked two values, so test_jsonl_noargs and
test_jsonl_tsv_equivalence failed with a ValueError before reading any
output. Also update the docstring, which still described the two-value
return.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 15:33:34 -07:00
72a8851373 remove parquet output support
Nate has given up on getting wikiq to output parquet directly because it
makes too many unpredictable large memory allocations. The workflow now
outputs JSONL in a single pass and then uses spark (wikiq_spark) to index
it as parquet in a second pass.

Remove the parquet output path along with the machinery that existed only
to support it: checkpoint files, resume temp-file merging, namespace
partitioning, and file rotation (--partition-namespaces,
--max-revisions-per-file). Resume support remains for JSONL output, where
the resume point is derived from the last complete line of the output
file. Also remove the parquet tests and baseline files.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 15:31:48 -07:00
dbcae5c64e fix regex matching on revisions with deleted text or comments
RegexPair.matchmake crashed with a TypeError when a capture-group
pattern was applied to a revision whose text or comment was deleted or
suppressed (content is None). Guard both matching paths against None,
and make the no-capture-group path emit a None column for such
revisions instead of omitting the key entirely.

This carries forward the fix Kaylea Champion and Mako Hill made on the
mako_changes-20230429 branch (7e6cd5b), which predated the rewrite.

Adds a unit test for matchmake(None) and an end-to-end test against the
ikwiki dump, which contains revisions with deleted text and comments.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 14:20:02 -07:00
Nathan TeBlunthuis
72410d090b wikiq: skip parse on subsequent same-size revs after timeout
Per-page adaptive parse skip: once mwparserfromhell times out on a
revision of size N bytes, force-timeout future revisions on the same
page whose text is >= N bytes instead of waiting another 60s on each
one. State resets per page, so well-behaved pages are unaffected.

Motivated by zhwiki bot-vandalism log pages (e.g. ns=4
'Wikipedia:当前的破坏/...' at 4.6GB across 6133 revisions) where every
revision triggers the 60s SIGALRM, blocking the worker for hours.
2026-05-07 21:43:05 +00:00
Nathan TeBlunthuis
59fea1919e Add redirect_target column to wikiq output.
Exposes page.redirect as a nullable string column so downstream pipelines
can build redirect maps for link target resolution.
2026-03-01 20:05:12 -08:00
Nathan TeBlunthuis
c7eb374ceb use signalling to timeout mwparserfromhell instead of asyncio. 2026-01-07 12:42:37 -08:00
Nathan TeBlunthuis
4b8288c016 add some debug lines. 2026-01-06 19:58:18 -08:00
Nathan TeBlunthuis
8590e5f920 fix jsonl.d output. 2025-12-30 11:26:24 -08:00
Nathan TeBlunthuis
93f6ed0ff5 fix bug by truncating corrupted jsonl lines. 2025-12-23 19:52:37 -08:00
Nathan TeBlunthuis
5ebdb26d82 make resume with jsonl output fault tolerant. 2025-12-23 09:09:51 -08:00
Nathan TeBlunthuis
9e6b0fb64c make updating the checkpoint files atomic. 2025-12-23 08:41:38 -08:00
Nathan TeBlunthuis
d822085698 support .jsonl.d 2025-12-22 20:13:04 -08:00
Nathan TeBlunthuis
618c343898 allow output dir to be jsonl.d. 2025-12-21 23:50:00 -08:00
Nathan TeBlunthuis
3f1a9ba862 refactor and enable jsonl output. 2025-12-21 23:42:18 -08:00
Nathan TeBlunthuis
6988a281dc output parquet files in chunks to avoid memory issues with parquet. 2025-12-20 21:45:39 -08:00
Nathan TeBlunthuis
6a4bf81e1a add test for two wikiq jobs in the same directory. 2025-12-19 11:50:56 -08:00
Nathan TeBlunthuis
38dabd0547 only merge the correct partitioned files. 2025-12-19 11:47:18 -08:00
Nathan TeBlunthuis
006feb795c fix interruption handling by breaking the diff loop. 2025-12-18 18:00:30 -08:00
Nathan TeBlunthuis
d7f5abef2d resume starts fresh if the first run didn't happen 2025-12-13 15:41:44 -08:00
Nathan TeBlunthuis
2c54425726 use the wikidiff2 diff timeout instead of async. 2025-12-13 14:29:16 -08:00
Nathan TeBlunthuis
5d1a246898 don't try to remove files that don't exist. 2025-12-13 11:57:47 -08:00
Nathan TeBlunthuis
70a10db228 save work after a time limit. 2025-12-11 08:30:32 -08:00
Nathan TeBlunthuis
1001c780fa start fresh if output and resume are both broken. 2025-12-10 21:20:52 -08:00
Nathan TeBlunthuis
6b4f3939a5 more work on resuming. 2025-12-10 21:07:52 -08:00
Nathan TeBlunthuis
c3d31b4ab5 handle case when we have a valid resume file, but a corrupted original. 2025-12-10 20:33:04 -08:00
Nathan TeBlunthuis
f4a9491ff2 improve print debugging. 2025-12-10 19:50:47 -08:00
Nathan TeBlunthuis
c6e96c2f54 try/catch opening original file in resume. 2025-12-10 19:49:29 -08:00
Nathan TeBlunthuis
f427291fd8 add logic for resuming after a resume. 2025-12-10 19:26:54 -08:00
Nathan TeBlunthuis
d1fc094c96 don't put checkpoint files inside namespace directories. 2025-12-07 06:24:04 -08:00
Nathan TeBlunthuis
783f5fd8bc improve resume logic. 2025-12-07 06:06:26 -08:00
Nathan TeBlunthuis
577ddc87f5 Add per-namespace resume support for partitioned parquet output.
- Implement per-namespace resume points (dict mapping namespace -> (pageid, revid))
  to correctly handle interleaved dump ordering in partitioned output
- Extract resume functionality to dedicated resume.py module
- Add graceful shutdown handling via shutdown_requested flag (CLI-level only)
- Use lazy ParquetWriter creation to avoid empty files on early exit
- Refactor writing logic to _write_batch() helper method
- Simplify control flow by replacing continue statements with should_write flag
2025-12-06 06:56:19 -08:00
Nathan TeBlunthuis
d69d8b0df2 fix baseline output for new columns. 2025-12-02 19:22:08 -08:00
Nathan TeBlunthuis
5ce9808b50 add templates and headings to wikiq. 2025-12-02 17:51:08 -08:00
Nathan TeBlunthuis
d3517ed5ca extract wikilinks. 2025-12-02 14:09:29 -08:00
Nathan TeBlunthuis
329341efb6 improve tests. 2025-12-02 13:52:12 -08:00
Nathan TeBlunthuis
76626a2785 Start working on adding columns from mwparserfromhell. 2025-12-02 12:26:03 -08:00
Nathan TeBlunthuis
b46f98a875 make --resume work with partitioned namespaces. 2025-12-01 07:19:52 -08:00
Nathan TeBlunthuis
3c26185739 enable --resuming from interrupted jobs. 2025-11-30 20:36:31 -08:00
Nathan TeBlunthuis
95b33123e3 revert previous and decrease timeout. 2025-11-28 20:29:51 -08:00
Nathan TeBlunthuis
5c4fc6d5a0 let cache capacity be large. 2025-11-28 19:22:43 -08:00
Nathan TeBlunthuis
77c7d2ba97 Merge branch 'compute-diffs' of gitea:collective/mediawiki_dump_tools into compute-diffs 2025-11-24 11:03:24 -08:00
Nathan TeBlunthuis
c40930d7d2 use ssh for gitea. 2025-11-24 11:01:36 -08:00
Nathan TeBlunthuis
3b4c9c4441 index particular commit in pywikidiff2. 2025-11-18 20:17:52 -08:00
Nathan TeBlunthuis
3a480940e9 fix error loggging. 2025-08-07 09:38:42 -07:00
Nathan TeBlunthuis
a1f94078c4 improve style. 2025-08-07 09:20:49 -07:00
Nathan TeBlunthuis
329d682f4c fix asyncio bug. 2025-08-07 09:10:16 -07:00
Nathan TeBlunthuis
19f67b3679 try fixing coro issue. 2025-08-07 08:58:45 -07:00
Nathan TeBlunthuis
9b3237014d fix a couple possible bugs. 2025-08-05 23:20:04 -07:00
Nathan TeBlunthuis
bd8c30d80f fix raising exception. 2025-08-04 07:57:31 -07:00
Nathan TeBlunthuis
adf02310ef bugfix 2025-08-03 21:54:41 -07:00
Nathan TeBlunthuis
a563eaf6fc Timeout diffs. 2025-08-03 20:04:51 -07:00
Nathan TeBlunthuis
730c678f51 disable cache limits. 2025-08-03 11:50:57 -07:00
Nathan TeBlunthuis
77f367d95e Revert changes related to row-buffering to just "increase cache size."
This reverts commit 1f08c01cf1.
2025-08-03 09:37:35 -07:00
Nathan TeBlunthuis
1f08c01cf1 increase cache size. 2025-08-03 09:24:35 -07:00
Nathan TeBlunthuis
2f853a879d reduce memory a tich more. 2025-08-01 20:10:38 -07:00
Nathan TeBlunthuis
9799919470 reduce memory even more. 2025-08-01 19:59:36 -07:00
Nathan TeBlunthuis
7528dc8b8e try reducing memory more. 2025-08-01 19:52:18 -07:00
Nathan TeBlunthuis
615d630ff0 reduce memory usage. 2025-08-01 19:45:21 -07:00
Nathan TeBlunthuis
32bc05ddfd set cache limits. 2025-08-01 19:30:46 -07:00
Nathan TeBlunthuis
ef78310580 reduce cache more. 2025-08-01 19:25:50 -07:00
Nathan TeBlunthuis
40a92d2db6 reduce wd2 cache size 2025-08-01 19:18:26 -07:00
Nathan TeBlunthuis
6bec0de9b2 configure wikidiff2. 2025-08-01 18:53:07 -07:00
Nathan TeBlunthuis
54e996b910 configure pywikidiff2 cache limits. 2025-08-01 09:24:54 -07:00
Nathan TeBlunthuis
83c92d1a37 decrease moved paragraph detection cutoff to see if that fixes memory issue. 2025-07-22 13:29:01 -07:00
Nathan TeBlunthuis
076df15740 force garbage collection. 2025-07-22 13:13:18 -07:00
Nathan TeBlunthuis
6557e25af7 make a new pywikidiff2 object for each revision to reduce memory. 2025-07-22 09:50:30 -07:00
Nathan TeBlunthuis
d20075b323 add memray for debugging memory usage. 2025-07-17 15:17:23 -07:00
Nathan TeBlunthuis
6d03cac28d decrease batch_size. 2025-07-15 19:37:26 -07:00
Nathan TeBlunthuis
3a44cfd4da increase batch size. 2025-07-15 19:09:36 -07:00
Nathan TeBlunthuis
0fbe788e31 use ichunked instead of chunked. 2025-07-15 18:25:44 -07:00
Nathan TeBlunthuis
37d095199a inc version. 2025-07-15 15:37:55 -07:00
Nathan TeBlunthuis
6b04791de2 reduce batch size. 2025-07-15 15:31:00 -07:00
Nathan TeBlunthuis
507335941d Revert "Merge branch 'compute-diffs' into HEAD"
This reverts commit 907a35323e, reversing
changes made to c40506137b.
2025-07-15 15:23:50 -07:00
Nathan TeBlunthuis
907a35323e Merge branch 'compute-diffs' into HEAD 2025-07-15 15:23:13 -07:00
Nathan TeBlunthuis
c40506137b make wikiq memory efficient again via batch processing. 2025-07-15 15:20:17 -07:00
Nathan TeBlunthuis
e53e7ada5d try fixing the memory problem. 2025-07-14 18:58:27 -07:00
Nathan TeBlunthuis
76d54ae597 support partitioning output parquet by namespace. 2025-07-07 20:58:43 -07:00
Nathan TeBlunthuis
c9fb94ccc0 fix tests. 2025-07-07 20:25:00 -07:00
Nathan TeBlunthuis
ac1dd47b08 Merge branch 'compute-diffs' of gitea:collective/mediawiki_dump_tools into compute-diffs 2025-07-07 20:16:38 -07:00
Nathan TeBlunthuis
c597a6b7f4 refactor into src-layout package. 2025-07-07 20:14:13 -07:00
Nathan TeBlunthuis
a2984bc656 refactor into src-layout package. 2025-07-07 20:13:17 -07:00
Nathan TeBlunthuis
56c90fe1cc add missing files + add sorted_columns metadata. 2025-07-07 19:08:31 -07:00
Nathan TeBlunthuis
d6c4c0a416 add (optional) diff and text columns to output. 2025-07-07 14:39:52 -07:00
Nathan TeBlunthuis
a8e9e7f4fd wikidiff2 integration: pwr complete.
test for pwr based on wikidiff2.
2025-07-07 12:18:22 -07:00
Nathan TeBlunthuis
58c595bf0b add test files. 2025-07-07 11:29:10 -07:00
Nathan TeBlunthuis
cc96bb5f3f remove server. 2025-07-07 11:21:28 -07:00
Nathan TeBlunthuis
14e819e565 compare pywikidiff2 to making requests to wikidiff2. 2025-07-07 10:51:11 -07:00
Nathan TeBlunthuis
4654911533 almost there. working out edge cases. 2025-07-03 21:32:44 -07:00
Nathan TeBlunthuis
cf1fb61a84 WIP: fixing bugs and adding newlines to output. 2025-07-02 13:31:32 -07:00
Nathan TeBlunthuis
c4acc711d2 finish support for paragraph move. 2025-07-01 11:19:00 -07:00
Nathan TeBlunthuis
20de5b93f9 Merge branch 'tmp' into compute-diffs 2025-06-30 20:52:23 -05:00
Nathan TeBlunthuis
37734ed092 add test. 2025-06-30 15:45:56 -07:00
Nathan TeBlunthuis
5a3e4102b5 got wikidiff2 persistence working except for paragraph moves. 2025-06-30 15:37:54 -07:00
Nathan TeBlunthuis
186cb82fb8 some work on wiki_diff_matcher.py 2025-06-27 07:13:41 -07:00
Will Beason
bc7f186112 Start interoperability between wikidiff2 and deltas
The big challenges here (and remaining) are as follows:

1. Deltas requires changes to be given at the token level,
whereas wikidiff2 reports changes at the byte level. Thus,
it is often required to tokenize sequences of text to convert
to the desired token indices. As-is this is done inefficiently,
often requiring re-tokenization of previously-tokenized sequences.
A better implementation would incrementally tokenize, or
automatically find the referenced sequences.

2. Deltas only allows for Equal/Insert/Delete operations,
while wikidiff2 also detects paragraph moves. These paragraph
moves are NOT equivalent to Equal, as the moved paragraphs
are not guaranteed to be equivalent, just very similar.
Wikidiff2 does not report changes to moved paragraphs, so
to preserve token persistence, a difference algorithm
would need to be performed on the before/after sequences.
A stopgap (currently implemented) is to turn these
into strict deletions/insertions.

3. There appears to be a lot of memory consumption, and
sometimes this results in memory overflow. I am unsure
if this is a memory leak or simply that re-tokenizing
causes significant enough memory throughput that
my machine can't handle it.

4. Deltas expects all tokens in the before/after text to
be covered by segment ranges of Equal/Insert/Delete, but
wikidiff2 does not appear to ever emit any Equal ranges,
instead skipping them. These ranges must be computed
and inserted in sequence. As-is the code does not correctly
handle unchanged text at the end of pages.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-26 16:08:50 -05:00
Will Beason
1ec8bfaad4 Add php.ini file
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-24 09:24:35 -05:00
Will Beason
94454ffca3 Add PHP server file
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-23 14:17:53 -05:00
Will Beason
62db384aa4 Pass arrays of diffs instead of incremental
This is 3.5x faster

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-23 14:17:01 -05:00
Will Beason
96915a074b Add call to compute diffs via local PHP server
This is inefficient as it requires an individal request per diff.

Going to try collecting the revision texts to reduce communication
overhead.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-23 13:09:27 -05:00
Will Beason
0d9ab003f0 Fix tests for new field
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-17 12:44:07 -05:00
Will Beason
4bbed4a196 Merge branch 'parquet_support' into test-parquet 2025-06-17 12:20:19 -05:00
Will Beason
11d2587471 Add docs and rename import pc -> pacsv
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-17 11:46:16 -05:00
Will Beason
586ae85c65 Conform to 3.9 union type formatting
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-17 11:41:46 -05:00
Will Beason
390499dd90 Pin to python 3.9
Since our execution environment requires this

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-17 11:37:20 -05:00
Will Beason
84d464ea38 Remove unnecessary re-conversion to list(revs)
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-17 11:23:24 -05:00
Will Beason
3e8ae205e8 Factor out revision mutation logic into its own function
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-17 11:02:45 -05:00
Will Beason
8c707f5ef3 Remove unused code
This should help PR readability.

There is likely still some unused code, but that should be the
bulk of it.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-03 17:20:05 -05:00
Will Beason
b50c51a215 Get regex working
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-03 16:02:18 -05:00
Will Beason
89465b29f4 Re-add special case where revert radius is zero
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-03 15:18:21 -05:00
Will Beason
17c7f208ab Add collapsed_revs back
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-03 15:08:57 -05:00
Will Beason
123b9a18a8 Fix revert column behavior
Now all columns are tested in the parquet test.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-03 15:03:33 -05:00
Will Beason
06a784ef27 Get columnar refactor partially working
Noargs works, now to do persistence.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-03 12:51:31 -05:00
Will Beason
8b0f775610 Begin move to columnar types
This will allow making columns optional, as desired, and make
adding new columns straightforward without impacting existing
behavior.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-03 08:52:57 -05:00
Will Beason
f916af9836 Allow specifying output file basename instead of just directory
This is optional, and doesn't impact existing users as preexisting
behavior when users specify an output directory is unchanged.

This makes tests not need to copy large files as part of their
execution, as they can ask files to be written to explicit
locations.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-06-02 14:13:13 -05:00
Will Beason
9ee5ecfc91 Separate revision iteration and field collation logic
This way we're not adding temporary fields to objects that don't
normally have these fields.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-30 14:09:16 -05:00
Will Beason
f9383440a0 Fix tests
Surprisingly replacing list<str> with str doesn't break anything,
even baselines.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-30 13:56:31 -05:00
Will Beason
032fec3198 Remove unnecessary urlencode tests
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-30 13:20:10 -05:00
Will Beason
0d56267ae0 Get parquet libraries writing files
Tests broken due to url encoding, which can likely now be removed.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-30 13:06:26 -05:00
Nathan TeBlunthuis
260e2b177c fix order of fields. 2025-05-29 18:32:16 -07:00
Nathan TeBlunthuis
a13d7f1deb typo fix. 2025-05-29 18:25:08 -07:00
Nathan TeBlunthuis
ffbd180001 make editorid null not '' in parquet. 2025-05-29 18:24:33 -07:00
Nathan TeBlunthuis
606a399450 handle empty comments which are 'False' somehow. 2025-05-29 18:14:58 -07:00
Nathan TeBlunthuis
a9f76a0f62 change order of fields. 2025-05-29 18:10:59 -07:00
Nathan TeBlunthuis
f39ceefa4a Merge branch 'parquet_support' of gitea:collective/mediawiki_dump_tools into parquet_support 2025-05-29 18:05:28 -07:00
Nathan TeBlunthuis
13ee160708 bugfix. 2025-05-29 18:04:41 -07:00
Nathan TeBlunthuis
bd22d26291 update deps and add edit_summary to wikiq output. 2025-05-29 18:02:14 -07:00
Will Beason
4dde25c508 Refactor revision logic to make more straightforward
Use groupby so we don't have to deal with edge cases and compare
revisions directly.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-29 15:46:45 -05:00
Will Beason
aec6e5fafa Refactor collapse user logic
Use simple loop for when we aren't collapsing users.
Add test which covers case when users are deleted.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-29 15:20:34 -05:00
Will Beason
c0e629a313 Add ability to disable revert detection
Also add test to ensure functionality works.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-29 11:59:10 -05:00
Will Beason
9009bb6fa4 Merge branch 'parquet_support' into test-parquet 2025-05-29 10:21:30 -05:00
Will Beason
ab280dd765 Remove requirements.txt and add uv.lock to ignored files.
We can choose to check in uv.lock later if we want.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-29 10:05:49 -05:00
Nathan TeBlunthuis
22d14dc5f2 Remove dependency on pytest. 2025-05-28 21:54:31 -07:00
Nathan TeBlunthuis
5a10f59dc4 Merge branch 'parquet_support' of gitea:collective/mediawiki_dump_tools into parquet_support 2025-05-28 23:52:59 -05:00
Nathan TeBlunthuis
b8cdc82fc2 add ipython for dev 2025-05-28 23:52:37 -05:00
Nathan TeBlunthuis
2a2b611d79 Fix issue with .7z archives
Before, only fandom wikis dumps were compressed with .7z.
These archives can have several .xml files in the .7z; not just one.
So we need to have a flag for the fandom-2020 dumps.

This fixes the bug so .7z archives work in either case.
2025-05-28 21:49:11 -07:00
Nathan TeBlunthuis
39fec0820d use my version of mwxml since it fixes a bug. 2025-05-28 21:13:18 -07:00
Nathan TeBlunthuis
383ee03250 Merge branch 'parquet_support' of gitea:collective/mediawiki_dump_tools into parquet_support 2025-05-28 21:09:13 -07:00
Nathan TeBlunthuis
15e9234903 adding pyproject.toml 2025-05-28 20:59:55 -07:00
Nathan TeBlunthuis
8c7d46472f Merge branch 'parquet_support' of code:mediawiki_dump_tools into parquet_support 2025-05-28 20:54:52 -07:00
Nathan TeBlunthuis
3c7fb088d6 fix schema bugs. 2025-05-28 20:54:42 -07:00
Will Beason
ee01ce3e61 Get Parquet test working
This requires some data smoothing to get read_table and read_parquet
DataFrames to look close enough, but the test now passes and validates
that the data match.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-28 16:48:58 -05:00
Will Beason
52757a8239 Add noargs test for ikwiki
This way we can ensure that the parquet code outputs equivalent output.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-28 15:04:10 -05:00
Will Beason
d413443740 Add numpy to environment
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-28 13:20:28 -05:00
Will Beason
3f94144b1b Begin adding test for parquet export
Changed logic for handling anonymous edits so that wikiq handles
the type for editor ids consistently. Parquet can mix int64 and
None, but not int64 and strings - previously the code used the empty
string to denote anonymous editors.

Tests failing. Don't merge yet.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-28 13:17:30 -05:00
Will Beason
df0ad1de63 Finish test standardization
Test logic is executed within the WikiqTestCase, while WikiqTester
handles creating and managing the variables tests need.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-28 10:11:58 -05:00
Will Beason
f3e6cc9392 Begin refactor of tests to make new tests easier to write
Handle file naming logic centrally rather than requiring a dedicated
class per input file.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-28 09:11:36 -05:00
Will Beason
c8b14c3303 Refactor test temporary file logic and wikiq call pattern
Test file refreshing and path computation is now handled by a helper.

The wikiq command is now constructed and handled by a single method
rather than in several ad-hoc ways.

The last places relying on the working directory are now removed.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-27 16:24:07 -05:00
Will Beason
4d3900b541 Standardize calling for wikiq in tests
This way failures show the output of stderr/etc.

Also create path constant strings for use in tests to avoid repetition
and make changes easier.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-27 14:27:49 -05:00
Will Beason
ebc57864f2 Make tests runnable from anywhere
Tests no longer implicitly require that the caller be in
a specific working directory.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-27 13:40:57 -05:00
Will Beason
3d0bf89938 Move main logic to main()
This avoids:
1) the main function running when sourcing the file
2) Creating many globally-scoped variables in the main logic

Also begin refactor of test output file logic

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-27 11:10:42 -05:00
Will Beason
6d133575c7 Remove resource leaks from tests
Close subprocesses within tests to fix resource leak warning.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-26 15:08:47 -05:00
Will Beason
09a84e7d11 Reformat Wikiq_Unit_Test.py
Separate out reformatting from editing.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-26 15:07:39 -05:00
Will Beason
9c5bf577e6 Remove unused dependencies and fix spacing
The "mw" and "numpy" dependencies were unneeded.

Spaces and tabs were inconsistently used.
They are now used consistently, changes via auto-formatter.

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-26 14:15:01 -05:00
Will Beason
4804ecc4b3 Add additional test dependencies
These are now noted in requirements.txt

Also make dependency on 7zip and ffmpeg explicit in README

Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-26 12:29:49 -05:00
Will Beason
7a4c41159c Exclude JetBrains config folder in .gitignore
Signed-off-by: Will Beason <willbeason@gmail.com>
2025-05-26 10:48:17 -05:00
1aea601a30 [Bugfix] Call the correct matchmake function. 2021-11-16 16:53:21 -08:00
c437b357db rename matchmake functions 2021-11-11 19:09:41 -08:00
bb83d62b74 Add some descriptive comments. 2021-10-19 16:55:24 -07:00
c285402683 add todos to readme 2021-10-18 14:14:11 -07:00
b1bea09ad6 fix bugs and unit tests 2021-10-18 13:33:05 -07:00
9a0c157ebb bugfix 2021-10-18 10:15:03 -07:00
ae870fed0b parquet path is code-complete 2021-10-17 21:46:31 -07:00
26f6d8f984 remove dependency on pandas. 2021-10-17 20:24:33 -07:00
ae9a241747 use dataclasses and pyarrow for types. 2021-10-17 20:21:22 -07:00
d8d20f670b initial work on parquet support 2021-10-17 13:22:22 -07:00
cdfa77d66d remove commented code 2019-11-11 11:28:48 -08:00
02b3250a36 refactor regex matching in a tidier object oriented style 2019-11-09 13:07:46 -08:00
414cc5ff2d validate tests and add asserts and baselines for regex tests. 2019-11-09 12:19:55 -08:00
sohyeonhwang
4ccde84529 added regex scanner v2's dump unit test file regextest.xml.bz2 2019-11-07 14:06:15 -06:00
sohyeonhwang
f147e1d899 merging pull containing revert-radius with 2nd version of regex scanner w/ unit tests 2019-11-07 13:28:17 -06:00
c84844cfb5 add unit tests for configuring revert_radius 2019-10-07 15:02:30 -07:00
c4416d0f1b make revert radius configurable 2019-10-07 13:57:49 -07:00
7b856bec86 Merge branch 'master' into regex_scanner 2019-10-05 18:17:03 -07:00
324ccc8e26 update baseline outputs 2019-10-05 16:36:07 -07:00
17529cdd48 bugfix, remove old legacy persistence flag 2019-10-05 16:13:11 -07:00
sohyeonhwang
7bf4559ceb changes for regex scanner addition 2019-10-05 15:36:58 -05:00
fb052ffa33 edont compute persistence by default 2019-09-22 15:54:17 -07:00
e871023ff5 elaborate docstring for persistence 2019-09-22 15:11:59 -07:00
69 changed files with 145723 additions and 69744 deletions

13
.gitignore vendored
View File

@@ -3,3 +3,16 @@
*.xml.bz2
*.xml.xz
*.swp
# Lockfiles
uv.lock
# JetBrains
/.idea
# Python build and test output
__pycache__/
/test/test_output/
# Virtualenv (created with create_cdsc_venv on klone)
/.venv/

3
.gitmodules vendored
View File

@@ -0,0 +1,3 @@
[submodule "mediawiki-php-wikidiff2"]
path = mediawiki-php-wikidiff2
url = https://github.com/wikimedia/mediawiki-php-wikidiff2/

1
.python-version Normal file
View File

@@ -0,0 +1 @@
3.11

674
COPYING Normal file
View File

@@ -0,0 +1,674 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.

116
README.md Normal file
View File

@@ -0,0 +1,116 @@
# mediawiki_dump_tools
Tools for converting MediaWiki XML database dumps—the "history" dumps
that include every revision of every page—into tabular datasets for
research. The main tool is `wikiq`, a command line program that produces
one row per revision with metadata such as the page, namespace,
timestamp, editor, text size, and revert status, plus a range of
optional computed columns.
## Installation
wikiq requires Python 3.11 or later. Install it with pip from a clone of
this repository:
git clone https://gitea.communitydata.science/collective/mediawiki_dump_tools.git
cd mediawiki_dump_tools
pip install .
[uv](https://docs.astral.sh/uv/) works too (`uv sync`) and is convenient
for development, but it is not required.
One dependency, `pywikidiff2`, is installed from source and compiles a
C++ extension, so a C++ compiler must be available at install time.
Wikimedia dumps are usually compressed as 7z (most common), gz, or bz2.
wikiq reads these by running your system's decompression tools, so it
depends on `7za`, `zcat`, and `bzcat` for those respective formats. On
Debian or Ubuntu, `apt install 7zip` provides `7za`; the others are
standard.
Note that `pip install .` copies the source into the environment, so
rerun it after switching branches or editing the code.
Members of the Community Data Science Collective installing on the klone
cluster should follow the collective's own instructions instead, since
the Python environment and its dependencies are set up differently
there. See [CommunityData:Hyak software
installation](https://wiki.communitydata.science/CommunityData:Hyak_software_installation).
## Usage
wikiq dump.xml.7z -o output/
Each output row describes one revision. The output format follows the
`-o` argument: a path ending in `.jsonl` produces JSON Lines, anything
else produces tab-separated values. With no dump file argument, wikiq
reads XML on stdin and writes to stdout.
The `title` and `namespace` columns are page-level identity values as
of the time of export: a moved page's entire history carries its final
title, and namespace derives from that title. Redirect status, by
contrast, is determined per revision from each revision's own text: the
`revision_is_redirect` and `revision_redirect_target` columns record
whether a revision's text begins with a redirect directive and where it
points. `#REDIRECT` is recognized on every wiki; wikis that also use a
localized keyword can add it with `--redirect-aliases` (for example,
`--redirect-aliases OMDIRIGERING` for Swedish wikis).
The most commonly useful options (`wikiq --help` describes them all):
- `-n ID` limits output to a namespace, and can be given more than once.
`-rr N` sets how many prior edits are checked when detecting reverts.
- `--collapse-user` collapses each sequence of consecutive edits by the
same user into a single row, which can address problems with text
persistence measures.
- `-p [METHOD]` computes content persistence measures for each revision:
persistent token revisions, tokens added, and tokens removed. The
available methods are `sequence` (the default), `segment` (robust to
content moves but slower), `wikidiff2` (like segment, using the
wikidiff2 diff engine), and `legacy` (the behavior of older research
projects). Persistence is the slowest thing wikiq computes.
- `-d` outputs a structured diff for each revision; `-t` outputs the
full revision text.
- `--external-links`, `--citations`, `--wikilinks`, `--templates`, and
`--headings` parse each revision's wikitext and add a column with the
extracted elements.
- `--content-sizes` counts each revision's rendered content characters
in two columns: `prose_chars` (content outside templates and tags) and
`structured_chars` (template parameter values and tag inner text).
Markup syntax and comments count in neither.
- `-RP REGEX -RPl LABEL` searches revision text for a regular expression
and reports the matches in a column named by the label; repeat the
pair for multiple patterns. `-CP`/`-CPl` do the same for edit
summaries. Adding `-RPc` or `-CPc` reports the number of matches
instead of the matched text.
- `--resume` continues an interrupted run from the last complete line of
an existing JSONL output file. Combined with `--time-limit HOURS`,
this supports processing very large dumps in bounded chunks.
- `--print-schema` prints a Spark-compatible JSON schema for the
configured output and exits.
## Tests
From the repository root:
uv run pytest test/
Run the suite from the root—some tests open fixture files by paths
relative to it. The full suite processes several real dumps from
`test/dumps/` and takes a couple of minutes; expected outputs live in
`test/baseline_output/`.
## Authors
wikiq is written and maintained by members of the [Community Data
Science Collective](https://wiki.communitydata.science/). Contributors
include Benjamin Mako Hill, Nathan TeBlunthuis, Will Beason, Sohyeon
Hwang, and Kaylea Champion. It builds on earlier versions of the tool
written in Python and in C++ by Benjamin Mako Hill.
## License
wikiq is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your
option) any later version. See [COPYING](COPYING) for the full text.

View File

@@ -1,13 +0,0 @@
When you install this from git, you will need to first clone the repository::
git clone git://projects.mako.cc/mediawiki_dump_tools
From within the repository working directory, initiatlize and set up the
submodule like::
git submodule init
git submodule update
Wikimedia dumps are usually in a compressed format such as 7z (most common), gz, or bz2. Wikiq uses your computer's compression software to read these files. Therefore wikiq depends on
`7za`, `gzcat`, and `zcat`.

44
pyproject.toml Normal file
View File

@@ -0,0 +1,44 @@
[project]
name = "mediawiki-dump-tools"
version = "0.2.0"
description = "Convert MediaWiki XML database dumps into tabular datasets for research"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["COPYING"]
requires-python = ">=3.11"
dependencies = [
"deltas>=0.7.0",
"mediawiki-utilities>=0.4.18",
"more-itertools>=10.7.0",
"mwparserfromhell>=0.6.0",
"mwpersistence>=0.2.4",
"mwreverts>=0.1.5",
"mwtypes>=0.4.0",
"mwxml>=0.3.8",
"pyarrow>=20.0.0",
"pywikidiff2 @ git+https://gitea.communitydata.science/groceryheist/pywikidiff2.git",
"sortedcontainers>=2.4.0",
]
[project.scripts]
wikiq = "wikiq:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/wikiq"]
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = [
"ipython>=8.18.1",
"memray>=1.17.2",
"pandas>=2.1.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"pytest-benchmark>=5.1.0",
]

2
runtest.sh Executable file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env bash
uv run pytest test/test_wiki_diff_matcher.py --capture=tee-sys

1556
src/wikiq/__init__.py Executable file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,49 @@
# Copyright (C) 2015-2026 Benjamin Mako Hill, Nathan TeBlunthuis, Will
# Beason, Sohyeon Hwang, Kaylea Champion, and other contributors
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <https://www.gnu.org/licenses/>.
import pyarrow as pa
# Schema for the `highlightRanges` object, an array of which can be nested in a diff object.
highlight_range_struct = pa.struct([
pa.field('start', pa.int64(), nullable=False, metadata={'description': 'Where the highlighted text should start, in bytes.'}),
pa.field('length', pa.int64(), nullable=False, metadata={'description': 'The length of the highlighted section, in bytes.'}),
pa.field('type', pa.int64(), nullable=False, metadata={'description': 'The type of highlight (0: addition, 1: deletion).'})
])
# Schema for the `moveInfo` object, which can be nested in a diff object.
move_info_struct = pa.struct([
pa.field('id', pa.string(), nullable=False, metadata={'description': 'The ID of the paragraph.'}),
pa.field('linkId', pa.string(), nullable=False, metadata={'description': 'The ID of the corresponding paragraph.'}),
pa.field('linkDirection', pa.int64(), nullable=False, metadata={'description': 'Visual indicator of the relationship (0: lower, 1: higher).'})
])
# Schema for the `offset` object, which is required in a diff object.
offset_struct = pa.struct([
pa.field('from', pa.int64(), nullable=True, metadata={'description': 'The first byte of the line in the `from` revision.'}),
pa.field('to', pa.int64(), nullable=True, metadata={'description': 'The first byte of the line in the `to` revision.'})
])
# The final schema for the entire structure.
diff_field = pa.field('diff', pa.list_(
pa.struct([
pa.field('type', pa.int64(), nullable=False, metadata={'description': 'The type of change (0: context, 1: addition, 2: deletion, etc.).'}),
pa.field('lineNumber', pa.int64(), nullable=True, metadata={'description': 'The line number of the change based on the `to` revision.'}),
pa.field('text', pa.string(), nullable=False, metadata={'description': 'The text of the line.'}),
pa.field('highlightRanges', pa.list_(highlight_range_struct), nullable=True, metadata={'description': 'Highlights to visually represent changes.'}),
pa.field('moveInfo', move_info_struct, nullable=True, metadata={'description': 'Visual indicators for paragraph location changes.'}),
pa.field('offset', offset_struct, nullable=False, metadata={'description': 'The location of the line in bytes from the beginning of the page.'})
])
))

97
src/wikiq/resume.py Normal file
View File

@@ -0,0 +1,97 @@
# Copyright (C) 2015-2026 Benjamin Mako Hill, Nathan TeBlunthuis, Will
# Beason, Sohyeon Hwang, Kaylea Champion, and other contributors
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <https://www.gnu.org/licenses/>.
"""
Resume functionality for wikiq JSONL output.
The resume point is derived from the last complete line of the existing
output file, so no separate checkpoint files are needed.
"""
import json
import os
import sys
from collections import deque
def get_jsonl_resume_point(output_file, input_file=None):
"""Get resume point from last complete line of JSONL file.
For .jsonl.d directories, derives the file path from input_file using get_output_filename.
"""
# Handle .jsonl.d directory output
if output_file.endswith('.jsonl.d'):
if input_file is None:
return None
if os.path.isdir(output_file):
# Import here to avoid circular import
from wikiq import get_output_filename
jsonl_filename = os.path.basename(get_output_filename(input_file, 'jsonl'))
output_file = os.path.join(output_file, jsonl_filename)
print(f"Looking for resume point in: {output_file}", file=sys.stderr)
else:
return None
if not os.path.exists(output_file):
return None
try:
# Track positions of last two valid lines for potential truncation
valid_lines = deque(maxlen=2) # (end_position, record)
with open(output_file, 'rb') as f:
while True:
line = f.readline()
if not line:
break
try:
record = json.loads(line.decode('utf-8'))
valid_lines.append((f.tell(), record))
except (json.JSONDecodeError, KeyError, UnicodeDecodeError):
pass
if not valid_lines:
return None
last_valid_pos, last_valid_record = valid_lines[-1]
# Truncate if file extends past last valid line (corrupted trailing data)
file_size = os.path.getsize(output_file)
if last_valid_pos < file_size:
print(f"Truncating corrupted data from {output_file} ({file_size - last_valid_pos} bytes)", file=sys.stderr)
with open(output_file, 'r+b') as f:
f.truncate(last_valid_pos)
return (last_valid_record['articleid'], last_valid_record['revid'])
except IOError as e:
print(f"Warning: Could not read {output_file}: {e}", file=sys.stderr)
return None
def get_resume_point(output_file, input_file=None):
"""
Find the resume point from existing JSONL output.
Args:
output_file: Path to the output file.
input_file: Path to input file (needed for .jsonl.d directory output).
Returns:
A (pageid, revid) tuple, or None.
"""
result = get_jsonl_resume_point(output_file, input_file)
if result:
print(f"Resume point found from JSONL: pageid={result[0]}, revid={result[1]}", file=sys.stderr)
return result

431
src/wikiq/tables.py Normal file
View File

@@ -0,0 +1,431 @@
# Copyright (C) 2015-2026 Benjamin Mako Hill, Nathan TeBlunthuis, Will
# Beason, Sohyeon Hwang, Kaylea Champion, and other contributors
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <https://www.gnu.org/licenses/>.
import re
from abc import abstractmethod, ABC
from datetime import datetime, timezone
from hashlib import sha1
from typing import Generic, TypeVar, Union, TYPE_CHECKING
import mwreverts
import mwtypes
import mwxml
import pyarrow as pa
if TYPE_CHECKING:
from wikiq.wikitext_parser import WikitextParser
T = TypeVar('T')
class RevisionField(ABC, Generic[T]):
"""
Abstract type which represents a field in a table of page revisions.
"""
@property
@abstractmethod
def field(self) -> pa.Field:
pass
@abstractmethod
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> T:
"""
:param page: The page for this set of revisions.
:param revisions: The set of revisions to compute the field from.
Revisions are passed in chronological order, so use revisions[-1] to
access the most recent revision in the set.
Implementations of extract should handle the case where revisions is
either a single revision (collapse-user=FALSE), or a full edit session
of contiguous edits by the same user (collapse-user=TRUE).
"""
pass
class RevisionTable:
columns: list[RevisionField]
def __init__(self, columns: list[RevisionField]):
self.columns = columns
def schema(self) -> pa.Schema:
return pa.schema([c.field for c in self.columns])
def extract_row(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> dict:
"""Extract a single row dict for the given page and revisions."""
return {
column.field.name: column.extract(page, revisions)
for column in self.columns
}
class RevisionId(RevisionField[int]):
field = pa.field("revid", pa.int64())
def extract(self, _: mwtypes.Page, revisions: list[mwxml.Revision]) -> int:
revision = revisions[-1]
return revision.id
class RevisionTimestamp(RevisionField[datetime]):
field = pa.field("date_time", pa.timestamp('s'))
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> datetime:
revision = revisions[-1]
return revision.timestamp
class RevisionArticleId(RevisionField[int]):
field = pa.field("articleid", pa.int64())
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> int:
return page.id
class RevisionEditorId(RevisionField[Union[int, None]]):
field = pa.field("editorid", pa.int64(), nullable=True)
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[int, None]:
revision = revisions[-1]
if revision.deleted.user:
return None
return revision.user.id
class RevisionEditSummary(RevisionField[Union[str, None]]):
field = pa.field("edit_summary", pa.string(), nullable=True)
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[str, None]:
revision = revisions[-1]
return revision.comment
class RevisionIsAnon(RevisionField[Union[bool, None]]):
field = pa.field("anon", pa.bool_(), nullable=True)
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[bool, None]:
revision = revisions[-1]
if revision.deleted.user:
return None
return revision.user.id is None
class RevisionEditorText(RevisionField[Union[str, None]]):
field = pa.field("editor", pa.string(), nullable=True)
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[str, None]:
revision = revisions[-1]
if revision.deleted.user:
return None
return revision.user.text
class RevisionPageTitle(RevisionField[str]):
"""The page's title as of the time of export.
This is a page-level identity value, not a historical fact about the
revision: a moved page's entire history carries its final title.
"""
field = pa.field("title", pa.string())
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> str:
return page.title
class RevisionDeleted(RevisionField[bool]):
field = pa.field("deleted", pa.bool_())
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> bool:
revision = revisions[-1]
return revision.deleted.text
class RevisionNamespace(RevisionField[int]):
"""The page's namespace as of the time of export.
Like the title it derives from, this is a page-level identity value
as of export, not a historical fact about the revision.
"""
field = pa.field("namespace", pa.int32())
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> int:
return page.namespace
class RedirectDetector:
"""Detect a redirect directive at the start of revision text.
#REDIRECT is valid on every MediaWiki regardless of content language.
Localized aliases (e.g. OMDIRIGERING on Swedish wikis) are
additionally valid per wiki and can be supplied by the caller.
"""
def __init__(self, aliases: Union[list[str], None] = None):
keywords = ["REDIRECT"] + list(aliases or [])
alternation = "|".join(re.escape(k) for k in keywords)
# target extraction stops at | (label) and # (fragment)
self.pattern = re.compile(
r"\A\s*#(?:" + alternation + r")\s*:?\s*\[\[([^\[\]|#]+)",
re.IGNORECASE,
)
def detect(self, text: str) -> tuple[bool, Union[str, None]]:
"""Return (is_redirect, target); target is None when not a redirect."""
match = self.pattern.match(text)
if match is None:
return False, None
return True, match.group(1).strip()
class RevisionIsRedirect(RevisionField[Union[bool, None]]):
"""Whether this revision's own text begins with a redirect directive."""
field = pa.field("revision_is_redirect", pa.bool_(), nullable=True)
def __init__(self, detector: RedirectDetector):
super().__init__()
self.detector = detector
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[bool, None]:
revision = revisions[-1]
if revision.deleted.text or revision.text is None:
return None
return self.detector.detect(revision.text)[0]
class RevisionRedirectTarget(RevisionField[Union[str, None]]):
"""The link target of this revision's redirect directive, if any."""
field = pa.field("revision_redirect_target", pa.string(), nullable=True)
def __init__(self, detector: RedirectDetector):
super().__init__()
self.detector = detector
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[str, None]:
revision = revisions[-1]
if revision.deleted.text or revision.text is None:
return None
return self.detector.detect(revision.text)[1]
class RevisionSha1(RevisionField[str]):
field = pa.field("sha1", pa.string())
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> str:
revision = revisions[-1]
return revision.sha1
class RevisionTextChars(RevisionField[Union[int, None]]):
field = pa.field("text_chars", pa.int32(), nullable=True)
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[int, None]:
revision = revisions[-1]
if not revision.deleted.text:
return len(revision.text)
return None
class RevisionIsMinor(RevisionField[bool]):
field = pa.field("minor", pa.bool_())
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> bool:
revision = revisions[-1]
return revision.minor
class RevisionReverts(RevisionField[Union[str, None]]):
def __init__(self):
super().__init__()
self.rev_detector: Union[mwreverts.Detector, None] = None
field = pa.field("reverteds", pa.string(), nullable=True)
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[str, None]:
if self.rev_detector is None:
return None
revision = revisions[-1]
if revision.deleted.text:
return None
revert = self.rev_detector.process(revision.sha1, revision.id)
if revert is None:
return None
return ",".join([str(s) for s in revert.reverteds])
class RevisionCollapsed(RevisionField[int]):
field = pa.field("collapsed_revs", pa.int64())
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> int:
return len(revisions)
class RevisionText(RevisionField[str]):
field = pa.field("text", pa.string(), nullable=False)
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> str:
revision = revisions[-1]
return revision.text
class RevisionExternalLinks(RevisionField[Union[list[str], None]]):
"""Extract all external links from revision text."""
field = pa.field("external_links", pa.list_(pa.string()), nullable=True)
def __init__(self, wikitext_parser: "WikitextParser"):
super().__init__()
self.wikitext_parser = wikitext_parser
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[list[str], None]:
revision = revisions[-1]
if revision.deleted.text:
return None
return self.wikitext_parser.extract_external_links(revision.text)
class RevisionCitations(RevisionField[Union[list[str], None]]):
"""Extract citations from ref tags and cite templates."""
field = pa.field("citations", pa.list_(pa.string()), nullable=True)
def __init__(self, wikitext_parser: "WikitextParser"):
super().__init__()
self.wikitext_parser = wikitext_parser
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[list[str], None]:
revision = revisions[-1]
if revision.deleted.text:
return None
return self.wikitext_parser.extract_citations(revision.text)
class RevisionWikilinks(RevisionField[Union[list[dict], None]]):
"""Extract all internal wikilinks from revision text."""
# Struct type with title and optional display text
field = pa.field("wikilinks", pa.list_(pa.struct([
pa.field("title", pa.string()),
pa.field("text", pa.string(), nullable=True),
])), nullable=True)
def __init__(self, wikitext_parser: "WikitextParser"):
super().__init__()
self.wikitext_parser = wikitext_parser
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[list[dict], None]:
revision = revisions[-1]
if revision.deleted.text:
return None
return self.wikitext_parser.extract_wikilinks(revision.text)
class RevisionTemplates(RevisionField[Union[list[dict], None]]):
"""Extract all templates from revision text."""
# Struct type with name and params map
field = pa.field("templates", pa.list_(pa.struct([
pa.field("name", pa.string()),
pa.field("params", pa.map_(pa.string(), pa.string())),
])), nullable=True)
def __init__(self, wikitext_parser: "WikitextParser"):
super().__init__()
self.wikitext_parser = wikitext_parser
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[list[dict], None]:
revision = revisions[-1]
if revision.deleted.text:
return None
return self.wikitext_parser.extract_templates(revision.text)
class RevisionHeadings(RevisionField[Union[list[dict], None]]):
"""Extract all section headings from revision text."""
# Struct type with level and text
field = pa.field("headings", pa.list_(pa.struct([
pa.field("level", pa.int8()),
pa.field("text", pa.string()),
])), nullable=True)
def __init__(self, wikitext_parser: "WikitextParser"):
super().__init__()
self.wikitext_parser = wikitext_parser
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[list[dict], None]:
revision = revisions[-1]
if revision.deleted.text:
return None
return self.wikitext_parser.extract_headings(revision.text)
class RevisionProseChars(RevisionField[Union[int, None]]):
"""Count characters of rendered content outside templates and tags."""
field = pa.field("prose_chars", pa.int64(), nullable=True)
def __init__(self, wikitext_parser: "WikitextParser"):
super().__init__()
self.wikitext_parser = wikitext_parser
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[int, None]:
revision = revisions[-1]
if revision.deleted.text:
return None
sizes = self.wikitext_parser.content_sizes(revision.text)
return None if sizes is None else sizes[0]
class RevisionStructuredChars(RevisionField[Union[int, None]]):
"""Count characters of rendered content inside templates and tags."""
field = pa.field("structured_chars", pa.int64(), nullable=True)
def __init__(self, wikitext_parser: "WikitextParser"):
super().__init__()
self.wikitext_parser = wikitext_parser
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> Union[int, None]:
revision = revisions[-1]
if revision.deleted.text:
return None
sizes = self.wikitext_parser.content_sizes(revision.text)
return None if sizes is None else sizes[1]
class RevisionParserTimeout(RevisionField[bool]):
"""Track whether the wikitext parser timed out for this revision."""
field = pa.field("parser_timeout", pa.bool_())
def __init__(self, wikitext_parser: "WikitextParser"):
super().__init__()
self.wikitext_parser = wikitext_parser
def extract(self, page: mwtypes.Page, revisions: list[mwxml.Revision]) -> bool:
return self.wikitext_parser.last_parse_timed_out

View File

@@ -0,0 +1,428 @@
# Copyright (C) 2015-2026 Benjamin Mako Hill, Nathan TeBlunthuis, Will
# Beason, Sohyeon Hwang, Kaylea Champion, and other contributors
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <https://www.gnu.org/licenses/>.
import json
import sys
from collections import namedtuple
from itertools import chain
from typing import Dict, Generator, List, Optional, Tuple
from deltas import (Delete, DiffEngine, Equal, Insert, Operation,
RegexTokenizer, Token, tokenizers)
from mwpersistence import Token
from sortedcontainers import SortedDict
TOKENIZER = tokenizers.wikitext_split
import pywikidiff2
class DiffToOperationMap:
def __init__(self, diff, tokenizer):
self.tokenizer = tokenizer
self.from_par_move_dict = {}
self.to_par_move_dict = {}
self.highlights_without_offset = []
self.diff = diff
# we need to keep track of the bytes of line numbers to recover when wikidiff2 loses offsets.
self.to_linenumber_bytes_map: SortedDict[int, int] = SortedDict()
self.from_linenumber_bytes_map: SortedDict[int, int] = SortedDict()
def tokenize(self, bytes):
return self.tokenizer.tokenize(bytes.decode("utf-8"), token_class=Token)
def to_operations(self):
for entry in self.diff["diff"]:
# add back the newline
entry["text"] += "\n"
text = entry["text"]
offset = entry["offset"]
# this is the first byte of the line in the 'from' revision.
from_start_line = entry["offset"]["from"]
# this is the first byte of the line in the 'to' revision.
to_start_line = entry["offset"]["to"]
if entry["type"] == 0:
yield from self.doEqual(entry)
# a line included in the 'to' revision, but not in the 'from' revision
elif entry["type"] == 1:
yield from self.doInsert(entry)
# a line included in the 'from' revision, but not in the 'to' revision
elif entry["type"] == 2:
yield from self.doDelete(entry)
elif entry["type"] == 3:
# sometimes, for some reason we don't have a 'to' index here. we'll save these for later
if entry["offset"]["to"] is None:
self.highlights_without_offset.append(entry)
else:
yield from self.doHighlightRange(entry)
elif entry["type"] == 4:
linkId = entry["moveInfo"]["linkId"]
if linkId in self.to_par_move_dict:
yield from self.doParMove(entry, self.to_par_move_dict.pop(linkId))
else:
self.from_par_move_dict[entry["moveInfo"]["id"]] = entry
elif entry["type"] == 5:
linkId = entry["moveInfo"]["linkId"]
if linkId in self.from_par_move_dict:
yield from self.doParMove(
self.from_par_move_dict.pop(linkId), entry
)
else:
self.to_par_move_dict[entry["moveInfo"]["id"]] = entry
else:
# The 'type' isn't one of the known
raise ValueError(d)
# now we should be able to apply highlights
for entry in self.highlights_without_offset:
yield from self.doHighlightRange(entry)
if len(self.from_par_move_dict) > 0 or len(self.to_par_move_dict) > 0:
print("PROBLEM! Unmatched parmoves!")
print(self.from_par_move_dict)
print(self.to_par_move_dict)
# We can try to match them:
for lkey in self.from_par_move_dict.keys():
for rkey in self.to_par_move_dict.keys():
from_diff = self.from_par_move_dict[lkey]
to_diff = self.to_par_move_dict[rkey]
if self.match_parmoves_exact(from_diff, to_diff):
yield from self.doParMove(from_diff, to_diff)
del self.to_par_move_dict[lkey]
del self.from_par_move_dict[rkey]
break
# we couldn't find matches. treat type 4 as removal and type 5 as highlight.
for from_diff in self.from_par_move_dict.values():
yield from self.doDelete(from_diff)
# only we don't know the from index; we assume its already handled.
for to_diff in self.to_par_move_dict.values():
offset["from"] = 0
offset["to"] = None
diffops = self.doHighlightRange(
{
"text": to_diff["text"],
"highlightRanges": to_diff["highlightRanges"],
"offset": offset,
"lineNumber": to_diff["lineNumber"],
}
)
diffops = [
(type(op)(None, None, op.b1, op.b2), [], bseq)
for op, _, bseq in diffops
if isinstance(op, Insert) or isinstance(op, Equal)
]
yield from diffops
def match_parmoves_exact(self, from_diff, to_diff):
ops, from_tokens, to_tokens = list(zip(*self.doParMove(from_diff, to_diff)))
from_text = "".join(chain.from_iterable(from_tokens))
# we know they match if we apply the highlight ranges and the "from" tokens equal the lhs tokens.
if from_text == from_diff["text"]:
print("MATCH FOUND")
return True
else:
print("NO MATCH")
print(len(from_text))
print(len(from_diff["text"]))
return False
# mwpersistence expects differences to be represented in order from the
# result's perspective ("to"), not the previous text. Thus, if a line
# is moved earlier then its insertion should appear before its deletion.
# As a rule of thumb, the "to" segments should be non-overlapping and
# strictly increasing, while the "from" segments should merely be
# non-overlapping.
def doEqual(self, entry):
equal_segment, offset, lineNumber = (
entry["text"],
entry["offset"],
entry["lineNumber"],
)
if isinstance(equal_segment, str):
equal_bytes = equal_segment.encode()
elif isinstance(equal_segment, bytes):
equal_bytes = equal_segment
else:
raise ValueError(equal_segment)
self.from_linenumber_bytes_map[lineNumber] = offset["from"] + len(equal_bytes)
self.to_linenumber_bytes_map[lineNumber] = offset["to"] + len(equal_bytes)
tokens = self.tokenize(equal_bytes)
n_tokens = len(tokens)
yield (
Equal(
offset["from"],
None,
offset["to"],
None,
),
tokens,
tokens,
)
def doInsert(self, entry):
insert_segment, offset, lineNumber = (
entry["text"],
entry["offset"],
entry["lineNumber"],
)
if isinstance(insert_segment, str):
insert_bytes = insert_segment.encode()
elif isinstance(insert_segment, bytes):
insert_bytes = insert_segment
else:
raise ValueError(insert_segment)
tokens = self.tokenize(insert_bytes)
self.to_linenumber_bytes_map[lineNumber] = offset["to"] + len(insert_bytes)
yield (
Insert(
None,
None,
offset["to"],
None,
),
[],
tokens,
)
def doDelete(self, entry):
delete_segment, offset, lineNumber = (
entry["text"],
entry["offset"],
entry.get("lineNumber", None),
)
if isinstance(delete_segment, str):
delete_bytes = delete_segment.encode()
elif isinstance(delete_segment, bytes):
delete_bytes = delete_segment
else:
raise ValueError(delete_segment)
tokens = self.tokenize(delete_bytes)
if lineNumber is not None:
self.from_linenumber_bytes_map[lineNumber] = offset["from"] + len(
delete_bytes
)
yield (
Delete(offset["from"], None, None, None),
tokens,
[],
)
def doHighlightRange(self, entry):
highlight_text, highlightRanges, offset, lineNumber = (
entry["text"],
entry["highlightRanges"],
entry["offset"],
entry["lineNumber"],
)
# The text field is an overlapping mix of both the from and to,
# so we need to handle it highlight-by-highlight.
# there can be gaps between highlight segments.
# for instance, if a word is deleted from the middle of a line.
# we need to track that.
highlight_bytes = highlight_text.encode()
highlight_end = 0
# it's possible for offset['to'] to be null.
# we can get it from the line number?
# this bit is a little hacky as it deals with ideosyncratic wikidiff2 behavior
if offset["to"] is None:
# if the line already exists, we insert before it.
if lineNumber in self.to_linenumber_bytes_map:
keyidx = self.to_linenumber_bytes_map.bisect_left(lineNumber) - 1
else:
keyidx = self.to_linenumber_bytes_map.bisect_right(lineNumber) - 1
key = None
if keyidx == -1:
offset["to"] = 0
elif len(self.to_linenumber_bytes_map.keys()) > 0:
key = self.to_linenumber_bytes_map.keys()[keyidx]
else:
key = 0
if key is not None:
offset["to"] = self.to_linenumber_bytes_map.get(key, 0)
highlight_offset = offset
# note that diffs are token-level, but the indexes are byte-level
for highlightRange in highlightRanges:
highlight_start = highlightRange["start"]
# equal bytes in between highlights
if highlight_start > highlight_end:
equal_bytes = highlight_bytes[highlight_end:highlight_start]
n_equal_bytes = len(equal_bytes)
yield from self.doEqual(
{
"text": equal_bytes,
"offset": highlight_offset,
"lineNumber": lineNumber,
}
)
highlight_offset["from"] += n_equal_bytes
highlight_offset["to"] += n_equal_bytes
# handle highlighted insert / delete
highlight_end = highlight_start + highlightRange["length"]
range_bytes = highlight_bytes[highlight_start:highlight_end]
n_range_bytes = len(range_bytes)
if highlightRange["type"] == 0:
yield from self.doInsert(
{
"text": range_bytes,
"offset": highlight_offset,
"lineNumber": lineNumber,
}
)
highlight_offset["to"] += n_range_bytes
elif highlightRange["type"] == 1:
yield from self.doDelete(
{
"text": range_bytes,
"offset": highlight_offset,
"lineNumber": lineNumber,
}
)
highlight_offset["from"] += n_range_bytes
else:
raise Exception(entry)
# handle the rest of the line which is equal
if highlight_end < len(highlight_bytes):
range_bytes = highlight_bytes[highlight_end:]
yield from self.doEqual(
{
"text": range_bytes,
"offset": highlight_offset,
"lineNumber": lineNumber,
}
)
def doParMove(self, from_diff, to_diff):
from_byte_start = from_diff["offset"]["from"]
to_byte_start = to_diff["offset"]["to"]
offset = {"from": from_byte_start, "to": to_byte_start}
yield from self.doHighlightRange(
{
"text": to_diff["text"],
"highlightRanges": to_diff["highlightRanges"],
"offset": offset,
"lineNumber": to_diff["lineNumber"],
}
)
class WikiDiffMatcher:
def __init__(
self,
tokenizer: Optional[RegexTokenizer] = None,
):
self.tokenizer = tokenizer or TOKENIZER
class Processor(DiffEngine.Processor):
def __init__(self, tokenizer=None):
self.tokenizer = tokenizer or TOKENIZER
self.last_tokens = []
self.previous_text = ""
self.differ = pywikidiff2.pywikidiff2(
num_context_lines=1000000,
max_word_level_diff_complexity=-1,
moved_paragraph_detection_cutoff=-1,
words_cache_capacity=10000,
diff_cache_capacity=10000,
stats_cache_capacity=10000,
)
self.last_diff = None
def update(self, last_tokens):
self.last_tokens = last_tokens
def process(self, text, token_class=None):
# The diff has already been computed, but we need to incrementally
# retrieve it to recreate the behavior DiffState expects.
diff = json.loads(self.differ.inline_json_diff(self.previous_text, text))
self.last_diff = diff
diffToOperationsMapper = DiffToOperationMap(diff, self.tokenizer)
diffops = list(diffToOperationsMapper.to_operations())
# this happens when revisions are actually equal.
if len(diffops) == 0:
self.last_tokens = self.tokenizer.tokenize(text, token_class=Token)
ops = [Equal(0, len(self.last_tokens), 0, len(self.last_tokens))]
return ops, self.last_tokens, self.last_tokens
# we get back the byte indices; now we transform to token indices
diffops.sort(
key=lambda t: (t[0].a1 if t[0].a1 is not None else 1e32, t[0].b1)
)
aorder_ops = []
token_offset = 0
_, aseq, _ = list(zip(*diffops))
for op, tokens, _ in diffops:
a1 = token_offset
if isinstance(op, Equal) or isinstance(op, Delete):
token_offset += len(tokens)
a2 = token_offset
aorder_ops.append(type(op)(a1, a2, op.b1, op.b1))
else:
aorder_ops.append(Insert(a1, a1, op.b1, op.b1))
_, aseq, bseq = zip(*diffops)
diffops = list(zip(aorder_ops, aseq, bseq))
diffops.sort(
key=lambda t: (t[0].b1 if t[0].b1 is not None else 1e32, t[0].a1)
)
_, _, bseq = list(zip(*diffops))
border_ops = []
token_offset = 0
for op, _, tokens in diffops:
b1 = token_offset
if isinstance(op, Equal) or isinstance(op, Insert):
token_offset += len(tokens)
b2 = token_offset
border_ops.append(type(op)(op.a1, op.a2, b1, b2))
else:
border_ops.append(type(op)(op.a1, op.a2, b1, b1))
self.previous_text = text
self.last_tokens = list(chain.from_iterable(aseq))
tokens = list(chain.from_iterable(bseq))
return border_ops, self.last_tokens, tokens
def processor(self, *args, **kwargs):
return self.Processor(self.tokenizer)
def process(self):
# DiffState checks for this method even though it is not called.
raise Exception("Unnecessary implementation")

View File

@@ -0,0 +1,240 @@
# Copyright (C) 2015-2026 Benjamin Mako Hill, Nathan TeBlunthuis, Will
# Beason, Sohyeon Hwang, Kaylea Champion, and other contributors
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <https://www.gnu.org/licenses/>.
"""Shared wikitext parser with caching to avoid duplicate parsing."""
from __future__ import annotations
import signal
import mwparserfromhell
from mwparserfromhell.nodes import (
Argument,
Comment,
ExternalLink,
Heading,
HTMLEntity,
Tag,
Template,
Text,
Wikilink,
)
PARSER_TIMEOUT = 60 # seconds
class WikitextParser:
"""Caches parsed wikicode to avoid re-parsing the same text."""
CITE_TEMPLATES = {
'cite web', 'cite book', 'cite journal', 'cite news',
'cite magazine', 'cite conference', 'cite encyclopedia',
'cite report', 'cite thesis', 'cite press release',
'citation', 'sfn', 'harvnb', 'harv'
}
def __init__(self):
self._cached_text: str | None = None
self._cached_wikicode = None
self.last_parse_timed_out: bool = False
self._sizes_text: str | None = None
self._cached_sizes: tuple[int, int] | None = None
def _timeout_handler(self, signum, frame):
raise TimeoutError("mwparserfromhell parse exceeded timeout")
def force_timeout(self, text: str | None) -> None:
"""Pre-populate the cache as if a parse timeout occurred.
Used by callers that want to skip parsing for revisions predicted to
hang (e.g. on pages where an earlier same-size revision already timed
out). Subsequent extract_*() calls will see ``last_parse_timed_out``
and return None without invoking mwparserfromhell.
"""
self._cached_text = text
self._cached_wikicode = None
self.last_parse_timed_out = True
def _get_wikicode(self, text: str):
"""Parse text and cache result. Returns cached result if text unchanged."""
if text == self._cached_text:
return self._cached_wikicode
old_handler = signal.signal(signal.SIGALRM, self._timeout_handler)
signal.alarm(PARSER_TIMEOUT)
try:
self._cached_wikicode = mwparserfromhell.parse(text)
self._cached_text = text
self.last_parse_timed_out = False
except TimeoutError:
self._cached_wikicode = None
self._cached_text = text
self.last_parse_timed_out = True
finally:
signal.alarm(0)
signal.signal(signal.SIGALRM, old_handler)
return self._cached_wikicode
def extract_external_links(self, text: str | None) -> list[str] | None:
"""Extract all external link URLs from wikitext."""
if text is None:
return None
try:
wikicode = self._get_wikicode(text)
return [str(link.url) for link in wikicode.filter_external_links()]
except Exception:
return None
def extract_citations(self, text: str | None) -> list[str] | None:
"""Extract citations from ref tags and cite templates."""
if text is None:
return None
try:
wikicode = self._get_wikicode(text)
citations = []
# Extract ref tag contents
for tag in wikicode.filter_tags():
if tag.tag.lower() == 'ref':
content = str(tag.contents).strip()
if content:
citations.append(f"ref:{content}")
# Extract cite templates
for template in wikicode.filter_templates():
template_name = str(template.name).strip().lower()
if any(template_name.startswith(cite) for cite in self.CITE_TEMPLATES):
citations.append(f"template:{str(template)}")
return citations
except Exception:
return None
def extract_wikilinks(self, text: str | None) -> list[dict[str, str | None]] | None:
"""Extract all internal wikilinks with title and display text."""
if text is None:
return None
try:
wikicode = self._get_wikicode(text)
result = []
for link in wikicode.filter_wikilinks():
title = str(link.title).strip()
# text is None if no pipe, otherwise the display text
display_text = str(link.text).strip() if link.text else None
result.append({"title": title, "text": display_text})
return result
except Exception:
return None
def extract_templates(self, text: str | None) -> list[dict] | None:
"""Extract all templates with their names and parameters."""
if text is None:
return None
try:
wikicode = self._get_wikicode(text)
result = []
for template in wikicode.filter_templates():
name = str(template.name).strip()
params = {}
for param in template.params:
param_name = str(param.name).strip()
param_value = str(param.value).strip()
params[param_name] = param_value
result.append({"name": name, "params": params})
return result
except Exception:
return None
def _count_content(self, wikicode, structured: bool, counts: list[int]) -> None:
"""Walk a wikicode tree adding rendered content lengths to counts.
counts is a two-element list of [prose, structured] character
counts. structured is True once any enclosing template parameter
value or tag contents has been entered.
"""
for node in wikicode.nodes:
if isinstance(node, Text):
counts[1 if structured else 0] += len(node.value)
elif isinstance(node, HTMLEntity):
counts[1 if structured else 0] += len(node.normalize())
elif isinstance(node, Comment):
continue
elif isinstance(node, Template):
# parameter values are structured content; names and
# delimiters are not counted
for param in node.params:
self._count_content(param.value, True, counts)
elif isinstance(node, Tag):
# tag inner text is structured content; tag names and
# attributes are not counted
if node.contents is not None:
self._count_content(node.contents, True, counts)
elif isinstance(node, Wikilink):
# only the rendered text counts: the label if present,
# otherwise the target
rendered = node.text if node.text is not None else node.title
self._count_content(rendered, structured, counts)
elif isinstance(node, ExternalLink):
# only the label renders as content; bare URLs count as
# neither
if node.title is not None:
self._count_content(node.title, structured, counts)
elif isinstance(node, Heading):
self._count_content(node.title, structured, counts)
elif isinstance(node, Argument):
if node.default is not None:
self._count_content(node.default, structured, counts)
def content_sizes(self, text: str | None) -> tuple[int, int] | None:
"""Count characters of substantive content outside and inside
structured elements.
Returns (prose_chars, structured_chars). Prose is the rendered text
not enclosed by any template or tag; structured is the same kinds of
content inside template parameter values or tag contents. Markup
syntax, template and tag names, parameter names, attributes, bare
URLs, and comments count in neither.
"""
if text is None:
return None
if text == self._sizes_text:
return self._cached_sizes
try:
wikicode = self._get_wikicode(text)
counts = [0, 0]
self._count_content(wikicode, False, counts)
result = (counts[0], counts[1])
except Exception:
result = None
self._sizes_text = text
self._cached_sizes = result
return result
def extract_headings(self, text: str | None) -> list[dict] | None:
"""Extract all section headings with their levels."""
if text is None:
return None
try:
wikicode = self._get_wikicode(text)
result = []
for heading in wikicode.filter_headings():
level = heading.level
heading_text = str(heading.title).strip()
result.append({"level": level, "text": heading_text})
return result
except Exception:
return None

File diff suppressed because it is too large Load Diff

0
test/__init__.py Normal file
View File

View File

@@ -0,0 +1,27 @@
"revid" "date_time" "articleid" "title" "namespace" "revision_is_redirect" "revision_redirect_target" "deleted" "editorid" "edit_summary" "text_chars" "reverteds" "sha1" "minor" "editor" "anon" "revert" "threedigits"
819091731 2018-01-07 10:40:58 56237363 "User talk:86.139.142.254" 3 false false 3742946 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 1141 "135nz8q6lfam6cojla7azb7k5alx3t3" false "NinjaRobotPirate" false false "126, 126, 126, 126"
819091755 2018-01-07 10:41:10 56237364 "User talk:Kavin kavitha" 3 false false 32792125 "[[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for ""beauty"", ""grace"", ""fairness"" or ""comeliness""Kavin is born on 01 /12/2001 at Sa...'" 663 "0pwezjc6yopz0smc8al6ogc4fax5bwo" false "Kavin kavitha" false false
819091788 2018-01-07 10:41:26 56237365 "User talk:Dr.vivek163" 3 false false 32621254 "/* Regarding Merger discussion */ new section" 399 "sz3t2ap7z8bpkdvdvi195f3i35949bv" false "Amicable always" false false
819091796 2018-01-07 10:41:31 56237366 "User talk:Twistorl" 3 false false 13286072 "Warning [[Special:Contributions/Twistorl|Twistorl]] - #1" 1260 "r6s5j8j3iykenrhuhpnkpsmmd71vubf" false "ClueBot NG" false false
819091825 2018-01-07 10:41:51 56237368 "Kom Firin" 0 false false 8409334 "[[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node " 2249 "tf5qz2yaswx61zrlm9ovxzuhl7r2dc4" false "Khruner" false false "119, 978, 500, 292, 225, 199, 292"
822610647 2018-01-27 12:16:02 56237368 "Kom Firin" 0 false false 8409334 "/* History */ typo" 2230 "e6oa4g0qv64icdaq26uu1zzbyr5hcbh" true "Khruner" false false "119, 978, 500, 292, 225, 199, 292"
819091844 2018-01-07 10:42:05 56237369 "User:Editingaccount1994/sandbox" 2 false false 32794215 "[[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...'" 27840 "0fyvyh2a8xu41gt8obr34oba0bfixj6" false "Editingaccount1994" false false "798, 150, 150, 150, 621, 137, 137, 150, 150, 350, 195, 350, 195, 180, 180, 350, 195, 300, 150, 150, 150, 180, 180, 621"
819093984 2018-01-07 11:09:52 56237369 "User:Editingaccount1994/sandbox" 2 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 27787 "8gy52aolt5rg3eaketwj5v7eiw0apv2" true "AnomieBOT" false false "798, 150, 150, 150, 621, 137, 137, 150, 150, 350, 195, 350, 195, 180, 180, 350, 195, 300, 150, 150, 150, 180, 180, 621"
820064189 2018-01-12 21:45:50 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Orphan per [[WP:TFD|TFD outcome]]" 27784 "he8ydemaanxlrpftqxkez8jfpge1fsj" true "SporkBot" false false "798, 150, 150, 150, 621, 137, 137, 150, 150, 350, 195, 350, 195, 180, 180, 350, 195, 300, 150, 150, 150, 180, 180, 621"
820078679 2018-01-12 23:28:11 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content" 27783 "0to17w9rth3url8n7gvucdtobybdq5h" true "SporkBot" false false "798, 150, 150, 150, 621, 137, 137, 150, 150, 350, 195, 350, 195, 180, 180, 350, 195, 300, 150, 150, 150, 180, 180, 621"
820078733 2018-01-12 23:28:39 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content" 27782 "531dizmmloyxffbkdr5vph7owh921eg" true "SporkBot" false false "798, 150, 150, 150, 621, 137, 137, 150, 150, 350, 195, 350, 195, 180, 180, 350, 195, 300, 150, 150, 150, 180, 180, 621"
820177382 2018-01-13 13:45:33 56237369 "User:Editingaccount1994/sandbox" 2 false false 13791031 "translate TestCaseD if you are from tor you need neutral point of view " 27757 "nik9p2u2fuk4yazjxt8ymbicxv5qid9" false "Frietjes" false false "798, 150, 150, 150, 621, 100, 621"
822038928 2018-01-24 01:35:22 56237369 "User:Editingaccount1994/sandbox" 2 false false 2304267 "Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018." 27667 "gwk6pampl8si1v5pv3kwgteg710sfw3" false "CommonsDelinker" false false "798, 150, 150, 150, 621, 100, 621"
819091874 2018-01-07 10:42:20 56237370 "Anita del Rey" 0 true "Ana del Rey" false 1368779 "r from alt name" 25 "n4ozbsgle13p9yywtfrz982ccj8woc9" false "PamD" false false
819091883 2018-01-07 10:42:27 56237371 "User talk:119.94.96.157" 3 false false 13286072 "Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1" 1274 "ksohnvsbeuzwpl5vb8a3v8m18hva0a7" false "ClueBot NG" false false "119, 157, 119, 157, 119, 157, 119, 157"
819091914 2018-01-07 10:42:50 56237372 "Category:Ohmi Railway" 14 false false 677153 "[[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]'" 113 "je7aw21fedbwyqsyofpisdrynsu7olr" false "Underbar dk" false false
819091968 2018-01-07 10:43:32 56237375 "User talk:92.226.219.222" 3 false false 882433 "[[WP:AES|←]]Created page with '{{3rr}}~~~~'" 199 "cpm4tkzcx4hc6irr9ukbi06ogud8dtq" false "TastyPoutine" false false
819094036 2018-01-07 11:10:24 56237375 "User talk:92.226.219.222" 3 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 1840 "artmfz8b2gxhb3pp8a5p4ksplxqfkpg" true "AnomieBOT" false false
819112363 2018-01-07 14:33:36 56237375 "User talk:92.226.219.222" 3 false false 702940 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 2949 "dn9wj0n8d8pdd5lqe56uw5xamupowr1" false "Only" false false "126, 126, 126, 126"
819092004 2018-01-07 10:44:01 56237376 "User:Dipayanacharya" 2 false false 32794237 "Education" 28 "ofueugwatmmn7u73isw732neuza57gk" false "Dipayanacharya" false false
819092390 2018-01-07 10:49:08 56237376 "User:Dipayanacharya" 2 false false 32794237 "School" 38 "dsz55xv96ec2uv6w9c1z7c52ipfovbw" false "Dipayanacharya" false false
819092066 2018-01-07 10:44:56 56237378 "BSCIC" 0 true "Bangladesh Small and Cottage Industries Corporation" false 21516552 "[[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]]" 65 "9ma38hak0ef1ew4fpiutxpnzd8oz1wd" false "Vinegarymass911" false false
819092102 2018-01-07 10:45:21 56237379 "Category:Women government ministers of Yemen" 14 false false 754619 "[[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...'" 285 "4dvakoat58bzyf5hmtthxukt29hip6n" false "BrownHairedGirl" false false
819092135 2018-01-07 10:45:54 56237381 "Talk:List of Morning Glories Characters" 1 false false 410898 "[[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}'" 103 "2sjrxsc7os9k9pg4su2t4rk2j8nn0h7" false "PRehse" false false
819092138 2018-01-07 10:45:56 56237382 "User talk:106.207.126.114" 3 false false 13286072 "Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1" 1330 "3y9t5wpk6ur5jhone75rhm4wjf01fgi" false "ClueBot NG" false false "106, 207, 126, 114, 106, 207, 126, 114, 106, 207, 126, 114, 106, 207, 126, 114"
819092495 2018-01-07 10:50:22 56237382 "User talk:106.207.126.114" 3 false false 31190506 "Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]])" 2355 "8wvn6vh3isyt0dorpe89lztrburgupe" false "HindWIKI" false false "106, 207, 126, 114, 106, 207, 126, 114, 106, 207, 126, 114, 106, 207, 126, 114"
1 revid date_time articleid title namespace revision_is_redirect revision_redirect_target deleted editorid edit_summary text_chars reverteds sha1 minor editor anon revert threedigits
2 819091731 2018-01-07 10:40:58 56237363 User talk:86.139.142.254 3 false false 3742946 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 1141 135nz8q6lfam6cojla7azb7k5alx3t3 false NinjaRobotPirate false false 126, 126, 126, 126
3 819091755 2018-01-07 10:41:10 56237364 User talk:Kavin kavitha 3 false false 32792125 [[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for "beauty", "grace", "fairness" or "comeliness"Kavin is born on 01 /12/2001 at Sa...' 663 0pwezjc6yopz0smc8al6ogc4fax5bwo false Kavin kavitha false false
4 819091788 2018-01-07 10:41:26 56237365 User talk:Dr.vivek163 3 false false 32621254 /* Regarding Merger discussion */ new section 399 sz3t2ap7z8bpkdvdvi195f3i35949bv false Amicable always false false
5 819091796 2018-01-07 10:41:31 56237366 User talk:Twistorl 3 false false 13286072 Warning [[Special:Contributions/Twistorl|Twistorl]] - #1 1260 r6s5j8j3iykenrhuhpnkpsmmd71vubf false ClueBot NG false false
6 819091825 2018-01-07 10:41:51 56237368 Kom Firin 0 false false 8409334 [[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node 2249 tf5qz2yaswx61zrlm9ovxzuhl7r2dc4 false Khruner false false 119, 978, 500, 292, 225, 199, 292
7 822610647 2018-01-27 12:16:02 56237368 Kom Firin 0 false false 8409334 /* History */ typo 2230 e6oa4g0qv64icdaq26uu1zzbyr5hcbh true Khruner false false 119, 978, 500, 292, 225, 199, 292
8 819091844 2018-01-07 10:42:05 56237369 User:Editingaccount1994/sandbox 2 false false 32794215 [[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...' 27840 0fyvyh2a8xu41gt8obr34oba0bfixj6 false Editingaccount1994 false false 798, 150, 150, 150, 621, 137, 137, 150, 150, 350, 195, 350, 195, 180, 180, 350, 195, 300, 150, 150, 150, 180, 180, 621
9 819093984 2018-01-07 11:09:52 56237369 User:Editingaccount1994/sandbox 2 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 27787 8gy52aolt5rg3eaketwj5v7eiw0apv2 true AnomieBOT false false 798, 150, 150, 150, 621, 137, 137, 150, 150, 350, 195, 350, 195, 180, 180, 350, 195, 300, 150, 150, 150, 180, 180, 621
10 820064189 2018-01-12 21:45:50 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Orphan per [[WP:TFD|TFD outcome]] 27784 he8ydemaanxlrpftqxkez8jfpge1fsj true SporkBot false false 798, 150, 150, 150, 621, 137, 137, 150, 150, 350, 195, 350, 195, 180, 180, 350, 195, 300, 150, 150, 150, 180, 180, 621
11 820078679 2018-01-12 23:28:11 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content 27783 0to17w9rth3url8n7gvucdtobybdq5h true SporkBot false false 798, 150, 150, 150, 621, 137, 137, 150, 150, 350, 195, 350, 195, 180, 180, 350, 195, 300, 150, 150, 150, 180, 180, 621
12 820078733 2018-01-12 23:28:39 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content 27782 531dizmmloyxffbkdr5vph7owh921eg true SporkBot false false 798, 150, 150, 150, 621, 137, 137, 150, 150, 350, 195, 350, 195, 180, 180, 350, 195, 300, 150, 150, 150, 180, 180, 621
13 820177382 2018-01-13 13:45:33 56237369 User:Editingaccount1994/sandbox 2 false false 13791031 translate TestCaseD if you are from tor you need neutral point of view 27757 nik9p2u2fuk4yazjxt8ymbicxv5qid9 false Frietjes false false 798, 150, 150, 150, 621, 100, 621
14 822038928 2018-01-24 01:35:22 56237369 User:Editingaccount1994/sandbox 2 false false 2304267 Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018. 27667 gwk6pampl8si1v5pv3kwgteg710sfw3 false CommonsDelinker false false 798, 150, 150, 150, 621, 100, 621
15 819091874 2018-01-07 10:42:20 56237370 Anita del Rey 0 true Ana del Rey false 1368779 r from alt name 25 n4ozbsgle13p9yywtfrz982ccj8woc9 false PamD false false
16 819091883 2018-01-07 10:42:27 56237371 User talk:119.94.96.157 3 false false 13286072 Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1 1274 ksohnvsbeuzwpl5vb8a3v8m18hva0a7 false ClueBot NG false false 119, 157, 119, 157, 119, 157, 119, 157
17 819091914 2018-01-07 10:42:50 56237372 Category:Ohmi Railway 14 false false 677153 [[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]' 113 je7aw21fedbwyqsyofpisdrynsu7olr false Underbar dk false false
18 819091968 2018-01-07 10:43:32 56237375 User talk:92.226.219.222 3 false false 882433 [[WP:AES|←]]Created page with '{{3rr}}~~~~' 199 cpm4tkzcx4hc6irr9ukbi06ogud8dtq false TastyPoutine false false
19 819094036 2018-01-07 11:10:24 56237375 User talk:92.226.219.222 3 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 1840 artmfz8b2gxhb3pp8a5p4ksplxqfkpg true AnomieBOT false false
20 819112363 2018-01-07 14:33:36 56237375 User talk:92.226.219.222 3 false false 702940 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 2949 dn9wj0n8d8pdd5lqe56uw5xamupowr1 false Only false false 126, 126, 126, 126
21 819092004 2018-01-07 10:44:01 56237376 User:Dipayanacharya 2 false false 32794237 Education 28 ofueugwatmmn7u73isw732neuza57gk false Dipayanacharya false false
22 819092390 2018-01-07 10:49:08 56237376 User:Dipayanacharya 2 false false 32794237 School 38 dsz55xv96ec2uv6w9c1z7c52ipfovbw false Dipayanacharya false false
23 819092066 2018-01-07 10:44:56 56237378 BSCIC 0 true Bangladesh Small and Cottage Industries Corporation false 21516552 [[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]] 65 9ma38hak0ef1ew4fpiutxpnzd8oz1wd false Vinegarymass911 false false
24 819092102 2018-01-07 10:45:21 56237379 Category:Women government ministers of Yemen 14 false false 754619 [[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...' 285 4dvakoat58bzyf5hmtthxukt29hip6n false BrownHairedGirl false false
25 819092135 2018-01-07 10:45:54 56237381 Talk:List of Morning Glories Characters 1 false false 410898 [[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}' 103 2sjrxsc7os9k9pg4su2t4rk2j8nn0h7 false PRehse false false
26 819092138 2018-01-07 10:45:56 56237382 User talk:106.207.126.114 3 false false 13286072 Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1 1330 3y9t5wpk6ur5jhone75rhm4wjf01fgi false ClueBot NG false false 106, 207, 126, 114, 106, 207, 126, 114, 106, 207, 126, 114, 106, 207, 126, 114
27 819092495 2018-01-07 10:50:22 56237382 User talk:106.207.126.114 3 false false 31190506 Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]]) 2355 8wvn6vh3isyt0dorpe89lztrburgupe false HindWIKI false false 106, 207, 126, 114, 106, 207, 126, 114, 106, 207, 126, 114, 106, 207, 126, 114

View File

@@ -0,0 +1,27 @@
"revid" "date_time" "articleid" "title" "namespace" "revision_is_redirect" "revision_redirect_target" "deleted" "editorid" "edit_summary" "text_chars" "reverteds" "sha1" "minor" "editor" "anon" "revert" "testcases" "page_word"
819091731 2018-01-07 10:40:58 56237363 "User talk:86.139.142.254" 3 false false 3742946 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 1141 "135nz8q6lfam6cojla7azb7k5alx3t3" false "NinjaRobotPirate" false false "page, page"
819091755 2018-01-07 10:41:10 56237364 "User talk:Kavin kavitha" 3 false false 32792125 "[[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for ""beauty"", ""grace"", ""fairness"" or ""comeliness""Kavin is born on 01 /12/2001 at Sa...'" 663 "0pwezjc6yopz0smc8al6ogc4fax5bwo" false "Kavin kavitha" false false
819091788 2018-01-07 10:41:26 56237365 "User talk:Dr.vivek163" 3 false false 32621254 "/* Regarding Merger discussion */ new section" 399 "sz3t2ap7z8bpkdvdvi195f3i35949bv" false "Amicable always" false false "TestCase, TestCase"
819091796 2018-01-07 10:41:31 56237366 "User talk:Twistorl" 3 false false 13286072 "Warning [[Special:Contributions/Twistorl|Twistorl]] - #1" 1260 "r6s5j8j3iykenrhuhpnkpsmmd71vubf" false "ClueBot NG" false false "page"
819091825 2018-01-07 10:41:51 56237368 "Kom Firin" 0 false false 8409334 "[[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node " 2249 "tf5qz2yaswx61zrlm9ovxzuhl7r2dc4" false "Khruner" false false "TestCase" "page"
822610647 2018-01-27 12:16:02 56237368 "Kom Firin" 0 false false 8409334 "/* History */ typo" 2230 "e6oa4g0qv64icdaq26uu1zzbyr5hcbh" true "Khruner" false false "page"
819091844 2018-01-07 10:42:05 56237369 "User:Editingaccount1994/sandbox" 2 false false 32794215 "[[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...'" 27840 "0fyvyh2a8xu41gt8obr34oba0bfixj6" false "Editingaccount1994" false false "page, page"
819093984 2018-01-07 11:09:52 56237369 "User:Editingaccount1994/sandbox" 2 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 27787 "8gy52aolt5rg3eaketwj5v7eiw0apv2" true "AnomieBOT" false false "page, page"
820064189 2018-01-12 21:45:50 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Orphan per [[WP:TFD|TFD outcome]]" 27784 "he8ydemaanxlrpftqxkez8jfpge1fsj" true "SporkBot" false false "page, page"
820078679 2018-01-12 23:28:11 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content" 27783 "0to17w9rth3url8n7gvucdtobybdq5h" true "SporkBot" false false "page, page"
820078733 2018-01-12 23:28:39 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content" 27782 "531dizmmloyxffbkdr5vph7owh921eg" true "SporkBot" false false "page, page"
820177382 2018-01-13 13:45:33 56237369 "User:Editingaccount1994/sandbox" 2 false false 13791031 "translate TestCaseD if you are from tor you need neutral point of view " 27757 "nik9p2u2fuk4yazjxt8ymbicxv5qid9" false "Frietjes" false false "page, page"
822038928 2018-01-24 01:35:22 56237369 "User:Editingaccount1994/sandbox" 2 false false 2304267 "Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018." 27667 "gwk6pampl8si1v5pv3kwgteg710sfw3" false "CommonsDelinker" false false "page, page"
819091874 2018-01-07 10:42:20 56237370 "Anita del Rey" 0 true "Ana del Rey" false 1368779 "r from alt name" 25 "n4ozbsgle13p9yywtfrz982ccj8woc9" false "PamD" false false
819091883 2018-01-07 10:42:27 56237371 "User talk:119.94.96.157" 3 false false 13286072 "Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1" 1274 "ksohnvsbeuzwpl5vb8a3v8m18hva0a7" false "ClueBot NG" false false "page"
819091914 2018-01-07 10:42:50 56237372 "Category:Ohmi Railway" 14 false false 677153 "[[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]'" 113 "je7aw21fedbwyqsyofpisdrynsu7olr" false "Underbar dk" false false
819091968 2018-01-07 10:43:32 56237375 "User talk:92.226.219.222" 3 false false 882433 "[[WP:AES|←]]Created page with '{{3rr}}~~~~'" 199 "cpm4tkzcx4hc6irr9ukbi06ogud8dtq" false "TastyPoutine" false false
819094036 2018-01-07 11:10:24 56237375 "User talk:92.226.219.222" 3 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 1840 "artmfz8b2gxhb3pp8a5p4ksplxqfkpg" true "AnomieBOT" false false "page, page, page, page"
819112363 2018-01-07 14:33:36 56237375 "User talk:92.226.219.222" 3 false false 702940 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 2949 "dn9wj0n8d8pdd5lqe56uw5xamupowr1" false "Only" false false "page, page, page, page, page, page"
819092004 2018-01-07 10:44:01 56237376 "User:Dipayanacharya" 2 false false 32794237 "Education" 28 "ofueugwatmmn7u73isw732neuza57gk" false "Dipayanacharya" false false
819092390 2018-01-07 10:49:08 56237376 "User:Dipayanacharya" 2 false false 32794237 "School" 38 "dsz55xv96ec2uv6w9c1z7c52ipfovbw" false "Dipayanacharya" false false
819092066 2018-01-07 10:44:56 56237378 "BSCIC" 0 true "Bangladesh Small and Cottage Industries Corporation" false 21516552 "[[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]]" 65 "9ma38hak0ef1ew4fpiutxpnzd8oz1wd" false "Vinegarymass911" false false
819092102 2018-01-07 10:45:21 56237379 "Category:Women government ministers of Yemen" 14 false false 754619 "[[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...'" 285 "4dvakoat58bzyf5hmtthxukt29hip6n" false "BrownHairedGirl" false false
819092135 2018-01-07 10:45:54 56237381 "Talk:List of Morning Glories Characters" 1 false false 410898 "[[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}'" 103 "2sjrxsc7os9k9pg4su2t4rk2j8nn0h7" false "PRehse" false false
819092138 2018-01-07 10:45:56 56237382 "User talk:106.207.126.114" 3 false false 13286072 "Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1" 1330 "3y9t5wpk6ur5jhone75rhm4wjf01fgi" false "ClueBot NG" false false "page"
819092495 2018-01-07 10:50:22 56237382 "User talk:106.207.126.114" 3 false false 31190506 "Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]])" 2355 "8wvn6vh3isyt0dorpe89lztrburgupe" false "HindWIKI" false false "page"
1 revid date_time articleid title namespace revision_is_redirect revision_redirect_target deleted editorid edit_summary text_chars reverteds sha1 minor editor anon revert testcases page_word
2 819091731 2018-01-07 10:40:58 56237363 User talk:86.139.142.254 3 false false 3742946 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 1141 135nz8q6lfam6cojla7azb7k5alx3t3 false NinjaRobotPirate false false page, page
3 819091755 2018-01-07 10:41:10 56237364 User talk:Kavin kavitha 3 false false 32792125 [[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for "beauty", "grace", "fairness" or "comeliness"Kavin is born on 01 /12/2001 at Sa...' 663 0pwezjc6yopz0smc8al6ogc4fax5bwo false Kavin kavitha false false
4 819091788 2018-01-07 10:41:26 56237365 User talk:Dr.vivek163 3 false false 32621254 /* Regarding Merger discussion */ new section 399 sz3t2ap7z8bpkdvdvi195f3i35949bv false Amicable always false false TestCase, TestCase
5 819091796 2018-01-07 10:41:31 56237366 User talk:Twistorl 3 false false 13286072 Warning [[Special:Contributions/Twistorl|Twistorl]] - #1 1260 r6s5j8j3iykenrhuhpnkpsmmd71vubf false ClueBot NG false false page
6 819091825 2018-01-07 10:41:51 56237368 Kom Firin 0 false false 8409334 [[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node 2249 tf5qz2yaswx61zrlm9ovxzuhl7r2dc4 false Khruner false false TestCase page
7 822610647 2018-01-27 12:16:02 56237368 Kom Firin 0 false false 8409334 /* History */ typo 2230 e6oa4g0qv64icdaq26uu1zzbyr5hcbh true Khruner false false page
8 819091844 2018-01-07 10:42:05 56237369 User:Editingaccount1994/sandbox 2 false false 32794215 [[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...' 27840 0fyvyh2a8xu41gt8obr34oba0bfixj6 false Editingaccount1994 false false page, page
9 819093984 2018-01-07 11:09:52 56237369 User:Editingaccount1994/sandbox 2 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 27787 8gy52aolt5rg3eaketwj5v7eiw0apv2 true AnomieBOT false false page, page
10 820064189 2018-01-12 21:45:50 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Orphan per [[WP:TFD|TFD outcome]] 27784 he8ydemaanxlrpftqxkez8jfpge1fsj true SporkBot false false page, page
11 820078679 2018-01-12 23:28:11 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content 27783 0to17w9rth3url8n7gvucdtobybdq5h true SporkBot false false page, page
12 820078733 2018-01-12 23:28:39 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content 27782 531dizmmloyxffbkdr5vph7owh921eg true SporkBot false false page, page
13 820177382 2018-01-13 13:45:33 56237369 User:Editingaccount1994/sandbox 2 false false 13791031 translate TestCaseD if you are from tor you need neutral point of view 27757 nik9p2u2fuk4yazjxt8ymbicxv5qid9 false Frietjes false false page, page
14 822038928 2018-01-24 01:35:22 56237369 User:Editingaccount1994/sandbox 2 false false 2304267 Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018. 27667 gwk6pampl8si1v5pv3kwgteg710sfw3 false CommonsDelinker false false page, page
15 819091874 2018-01-07 10:42:20 56237370 Anita del Rey 0 true Ana del Rey false 1368779 r from alt name 25 n4ozbsgle13p9yywtfrz982ccj8woc9 false PamD false false
16 819091883 2018-01-07 10:42:27 56237371 User talk:119.94.96.157 3 false false 13286072 Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1 1274 ksohnvsbeuzwpl5vb8a3v8m18hva0a7 false ClueBot NG false false page
17 819091914 2018-01-07 10:42:50 56237372 Category:Ohmi Railway 14 false false 677153 [[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]' 113 je7aw21fedbwyqsyofpisdrynsu7olr false Underbar dk false false
18 819091968 2018-01-07 10:43:32 56237375 User talk:92.226.219.222 3 false false 882433 [[WP:AES|←]]Created page with '{{3rr}}~~~~' 199 cpm4tkzcx4hc6irr9ukbi06ogud8dtq false TastyPoutine false false
19 819094036 2018-01-07 11:10:24 56237375 User talk:92.226.219.222 3 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 1840 artmfz8b2gxhb3pp8a5p4ksplxqfkpg true AnomieBOT false false page, page, page, page
20 819112363 2018-01-07 14:33:36 56237375 User talk:92.226.219.222 3 false false 702940 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 2949 dn9wj0n8d8pdd5lqe56uw5xamupowr1 false Only false false page, page, page, page, page, page
21 819092004 2018-01-07 10:44:01 56237376 User:Dipayanacharya 2 false false 32794237 Education 28 ofueugwatmmn7u73isw732neuza57gk false Dipayanacharya false false
22 819092390 2018-01-07 10:49:08 56237376 User:Dipayanacharya 2 false false 32794237 School 38 dsz55xv96ec2uv6w9c1z7c52ipfovbw false Dipayanacharya false false
23 819092066 2018-01-07 10:44:56 56237378 BSCIC 0 true Bangladesh Small and Cottage Industries Corporation false 21516552 [[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]] 65 9ma38hak0ef1ew4fpiutxpnzd8oz1wd false Vinegarymass911 false false
24 819092102 2018-01-07 10:45:21 56237379 Category:Women government ministers of Yemen 14 false false 754619 [[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...' 285 4dvakoat58bzyf5hmtthxukt29hip6n false BrownHairedGirl false false
25 819092135 2018-01-07 10:45:54 56237381 Talk:List of Morning Glories Characters 1 false false 410898 [[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}' 103 2sjrxsc7os9k9pg4su2t4rk2j8nn0h7 false PRehse false false
26 819092138 2018-01-07 10:45:56 56237382 User talk:106.207.126.114 3 false false 13286072 Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1 1330 3y9t5wpk6ur5jhone75rhm4wjf01fgi false ClueBot NG false false page
27 819092495 2018-01-07 10:50:22 56237382 User talk:106.207.126.114 3 false false 31190506 Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]]) 2355 8wvn6vh3isyt0dorpe89lztrburgupe false HindWIKI false false page

View File

@@ -0,0 +1,27 @@
"revid" "date_time" "articleid" "title" "namespace" "revision_is_redirect" "revision_redirect_target" "deleted" "editorid" "edit_summary" "text_chars" "reverteds" "sha1" "minor" "editor" "anon" "revert" "wiki_welcome" "chev_com" "warning"
819091731 2018-01-07 10:40:58 56237363 "User talk:86.139.142.254" 3 false false 3742946 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 1141 "135nz8q6lfam6cojla7azb7k5alx3t3" false "NinjaRobotPirate" false false
819091755 2018-01-07 10:41:10 56237364 "User talk:Kavin kavitha" 3 false false 32792125 "[[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for ""beauty"", ""grace"", ""fairness"" or ""comeliness""Kavin is born on 01 /12/2001 at Sa...'" 663 "0pwezjc6yopz0smc8al6ogc4fax5bwo" false "Kavin kavitha" false false
819091788 2018-01-07 10:41:26 56237365 "User talk:Dr.vivek163" 3 false false 32621254 "/* Regarding Merger discussion */ new section" 399 "sz3t2ap7z8bpkdvdvi195f3i35949bv" false "Amicable always" false false
819091796 2018-01-07 10:41:31 56237366 "User talk:Twistorl" 3 false false 13286072 "Warning [[Special:Contributions/Twistorl|Twistorl]] - #1" 1260 "r6s5j8j3iykenrhuhpnkpsmmd71vubf" false "ClueBot NG" false false "welcome to Wikipedia" "Warning"
819091825 2018-01-07 10:41:51 56237368 "Kom Firin" 0 false false 8409334 "[[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node " 2249 "tf5qz2yaswx61zrlm9ovxzuhl7r2dc4" false "Khruner" false false
822610647 2018-01-27 12:16:02 56237368 "Kom Firin" 0 false false 8409334 "/* History */ typo" 2230 "e6oa4g0qv64icdaq26uu1zzbyr5hcbh" true "Khruner" false false
819091844 2018-01-07 10:42:05 56237369 "User:Editingaccount1994/sandbox" 2 false false 32794215 "[[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...'" 27840 "0fyvyh2a8xu41gt8obr34oba0bfixj6" false "Editingaccount1994" false false "Chevalier, Chevalier"
819093984 2018-01-07 11:09:52 56237369 "User:Editingaccount1994/sandbox" 2 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 27787 "8gy52aolt5rg3eaketwj5v7eiw0apv2" true "AnomieBOT" false false
820064189 2018-01-12 21:45:50 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Orphan per [[WP:TFD|TFD outcome]]" 27784 "he8ydemaanxlrpftqxkez8jfpge1fsj" true "SporkBot" false false
820078679 2018-01-12 23:28:11 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content" 27783 "0to17w9rth3url8n7gvucdtobybdq5h" true "SporkBot" false false
820078733 2018-01-12 23:28:39 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content" 27782 "531dizmmloyxffbkdr5vph7owh921eg" true "SporkBot" false false
820177382 2018-01-13 13:45:33 56237369 "User:Editingaccount1994/sandbox" 2 false false 13791031 "translate TestCaseD if you are from tor you need neutral point of view " 27757 "nik9p2u2fuk4yazjxt8ymbicxv5qid9" false "Frietjes" false false
822038928 2018-01-24 01:35:22 56237369 "User:Editingaccount1994/sandbox" 2 false false 2304267 "Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018." 27667 "gwk6pampl8si1v5pv3kwgteg710sfw3" false "CommonsDelinker" false false "Chevalier, Chevalier"
819091874 2018-01-07 10:42:20 56237370 "Anita del Rey" 0 true "Ana del Rey" false 1368779 "r from alt name" 25 "n4ozbsgle13p9yywtfrz982ccj8woc9" false "PamD" false false
819091883 2018-01-07 10:42:27 56237371 "User talk:119.94.96.157" 3 false false 13286072 "Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1" 1274 "ksohnvsbeuzwpl5vb8a3v8m18hva0a7" false "ClueBot NG" false false "welcome to Wikipedia" "Warning"
819091914 2018-01-07 10:42:50 56237372 "Category:Ohmi Railway" 14 false false 677153 "[[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]'" 113 "je7aw21fedbwyqsyofpisdrynsu7olr" false "Underbar dk" false false
819091968 2018-01-07 10:43:32 56237375 "User talk:92.226.219.222" 3 false false 882433 "[[WP:AES|←]]Created page with '{{3rr}}~~~~'" 199 "cpm4tkzcx4hc6irr9ukbi06ogud8dtq" false "TastyPoutine" false false
819094036 2018-01-07 11:10:24 56237375 "User talk:92.226.219.222" 3 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 1840 "artmfz8b2gxhb3pp8a5p4ksplxqfkpg" true "AnomieBOT" false false
819112363 2018-01-07 14:33:36 56237375 "User talk:92.226.219.222" 3 false false 702940 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 2949 "dn9wj0n8d8pdd5lqe56uw5xamupowr1" false "Only" false false
819092004 2018-01-07 10:44:01 56237376 "User:Dipayanacharya" 2 false false 32794237 "Education" 28 "ofueugwatmmn7u73isw732neuza57gk" false "Dipayanacharya" false false
819092390 2018-01-07 10:49:08 56237376 "User:Dipayanacharya" 2 false false 32794237 "School" 38 "dsz55xv96ec2uv6w9c1z7c52ipfovbw" false "Dipayanacharya" false false
819092066 2018-01-07 10:44:56 56237378 "BSCIC" 0 true "Bangladesh Small and Cottage Industries Corporation" false 21516552 "[[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]]" 65 "9ma38hak0ef1ew4fpiutxpnzd8oz1wd" false "Vinegarymass911" false false
819092102 2018-01-07 10:45:21 56237379 "Category:Women government ministers of Yemen" 14 false false 754619 "[[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...'" 285 "4dvakoat58bzyf5hmtthxukt29hip6n" false "BrownHairedGirl" false false
819092135 2018-01-07 10:45:54 56237381 "Talk:List of Morning Glories Characters" 1 false false 410898 "[[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}'" 103 "2sjrxsc7os9k9pg4su2t4rk2j8nn0h7" false "PRehse" false false
819092138 2018-01-07 10:45:56 56237382 "User talk:106.207.126.114" 3 false false 13286072 "Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1" 1330 "3y9t5wpk6ur5jhone75rhm4wjf01fgi" false "ClueBot NG" false false "welcome to Wikipedia" "Warning"
819092495 2018-01-07 10:50:22 56237382 "User talk:106.207.126.114" 3 false false 31190506 "Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]])" 2355 "8wvn6vh3isyt0dorpe89lztrburgupe" false "HindWIKI" false false "welcome to Wikipedia"
1 revid date_time articleid title namespace revision_is_redirect revision_redirect_target deleted editorid edit_summary text_chars reverteds sha1 minor editor anon revert wiki_welcome chev_com warning
2 819091731 2018-01-07 10:40:58 56237363 User talk:86.139.142.254 3 false false 3742946 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 1141 135nz8q6lfam6cojla7azb7k5alx3t3 false NinjaRobotPirate false false
3 819091755 2018-01-07 10:41:10 56237364 User talk:Kavin kavitha 3 false false 32792125 [[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for "beauty", "grace", "fairness" or "comeliness"Kavin is born on 01 /12/2001 at Sa...' 663 0pwezjc6yopz0smc8al6ogc4fax5bwo false Kavin kavitha false false
4 819091788 2018-01-07 10:41:26 56237365 User talk:Dr.vivek163 3 false false 32621254 /* Regarding Merger discussion */ new section 399 sz3t2ap7z8bpkdvdvi195f3i35949bv false Amicable always false false
5 819091796 2018-01-07 10:41:31 56237366 User talk:Twistorl 3 false false 13286072 Warning [[Special:Contributions/Twistorl|Twistorl]] - #1 1260 r6s5j8j3iykenrhuhpnkpsmmd71vubf false ClueBot NG false false welcome to Wikipedia Warning
6 819091825 2018-01-07 10:41:51 56237368 Kom Firin 0 false false 8409334 [[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node 2249 tf5qz2yaswx61zrlm9ovxzuhl7r2dc4 false Khruner false false
7 822610647 2018-01-27 12:16:02 56237368 Kom Firin 0 false false 8409334 /* History */ typo 2230 e6oa4g0qv64icdaq26uu1zzbyr5hcbh true Khruner false false
8 819091844 2018-01-07 10:42:05 56237369 User:Editingaccount1994/sandbox 2 false false 32794215 [[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...' 27840 0fyvyh2a8xu41gt8obr34oba0bfixj6 false Editingaccount1994 false false Chevalier, Chevalier
9 819093984 2018-01-07 11:09:52 56237369 User:Editingaccount1994/sandbox 2 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 27787 8gy52aolt5rg3eaketwj5v7eiw0apv2 true AnomieBOT false false
10 820064189 2018-01-12 21:45:50 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Orphan per [[WP:TFD|TFD outcome]] 27784 he8ydemaanxlrpftqxkez8jfpge1fsj true SporkBot false false
11 820078679 2018-01-12 23:28:11 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content 27783 0to17w9rth3url8n7gvucdtobybdq5h true SporkBot false false
12 820078733 2018-01-12 23:28:39 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content 27782 531dizmmloyxffbkdr5vph7owh921eg true SporkBot false false
13 820177382 2018-01-13 13:45:33 56237369 User:Editingaccount1994/sandbox 2 false false 13791031 translate TestCaseD if you are from tor you need neutral point of view 27757 nik9p2u2fuk4yazjxt8ymbicxv5qid9 false Frietjes false false
14 822038928 2018-01-24 01:35:22 56237369 User:Editingaccount1994/sandbox 2 false false 2304267 Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018. 27667 gwk6pampl8si1v5pv3kwgteg710sfw3 false CommonsDelinker false false Chevalier, Chevalier
15 819091874 2018-01-07 10:42:20 56237370 Anita del Rey 0 true Ana del Rey false 1368779 r from alt name 25 n4ozbsgle13p9yywtfrz982ccj8woc9 false PamD false false
16 819091883 2018-01-07 10:42:27 56237371 User talk:119.94.96.157 3 false false 13286072 Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1 1274 ksohnvsbeuzwpl5vb8a3v8m18hva0a7 false ClueBot NG false false welcome to Wikipedia Warning
17 819091914 2018-01-07 10:42:50 56237372 Category:Ohmi Railway 14 false false 677153 [[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]' 113 je7aw21fedbwyqsyofpisdrynsu7olr false Underbar dk false false
18 819091968 2018-01-07 10:43:32 56237375 User talk:92.226.219.222 3 false false 882433 [[WP:AES|←]]Created page with '{{3rr}}~~~~' 199 cpm4tkzcx4hc6irr9ukbi06ogud8dtq false TastyPoutine false false
19 819094036 2018-01-07 11:10:24 56237375 User talk:92.226.219.222 3 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 1840 artmfz8b2gxhb3pp8a5p4ksplxqfkpg true AnomieBOT false false
20 819112363 2018-01-07 14:33:36 56237375 User talk:92.226.219.222 3 false false 702940 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 2949 dn9wj0n8d8pdd5lqe56uw5xamupowr1 false Only false false
21 819092004 2018-01-07 10:44:01 56237376 User:Dipayanacharya 2 false false 32794237 Education 28 ofueugwatmmn7u73isw732neuza57gk false Dipayanacharya false false
22 819092390 2018-01-07 10:49:08 56237376 User:Dipayanacharya 2 false false 32794237 School 38 dsz55xv96ec2uv6w9c1z7c52ipfovbw false Dipayanacharya false false
23 819092066 2018-01-07 10:44:56 56237378 BSCIC 0 true Bangladesh Small and Cottage Industries Corporation false 21516552 [[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]] 65 9ma38hak0ef1ew4fpiutxpnzd8oz1wd false Vinegarymass911 false false
24 819092102 2018-01-07 10:45:21 56237379 Category:Women government ministers of Yemen 14 false false 754619 [[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...' 285 4dvakoat58bzyf5hmtthxukt29hip6n false BrownHairedGirl false false
25 819092135 2018-01-07 10:45:54 56237381 Talk:List of Morning Glories Characters 1 false false 410898 [[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}' 103 2sjrxsc7os9k9pg4su2t4rk2j8nn0h7 false PRehse false false
26 819092138 2018-01-07 10:45:56 56237382 User talk:106.207.126.114 3 false false 13286072 Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1 1330 3y9t5wpk6ur5jhone75rhm4wjf01fgi false ClueBot NG false false welcome to Wikipedia Warning
27 819092495 2018-01-07 10:50:22 56237382 User talk:106.207.126.114 3 false false 31190506 Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]]) 2355 8wvn6vh3isyt0dorpe89lztrburgupe false HindWIKI false false welcome to Wikipedia

View File

@@ -0,0 +1,27 @@
"revid" "date_time" "articleid" "title" "namespace" "revision_is_redirect" "revision_redirect_target" "deleted" "editorid" "edit_summary" "text_chars" "reverteds" "sha1" "minor" "editor" "anon" "revert" "wp_evade"
819091731 2018-01-07 10:40:58 56237363 "User talk:86.139.142.254" 3 false false 3742946 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 1141 "135nz8q6lfam6cojla7azb7k5alx3t3" false "NinjaRobotPirate" false false "WP:EVADE"
819091755 2018-01-07 10:41:10 56237364 "User talk:Kavin kavitha" 3 false false 32792125 "[[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for ""beauty"", ""grace"", ""fairness"" or ""comeliness""Kavin is born on 01 /12/2001 at Sa...'" 663 "0pwezjc6yopz0smc8al6ogc4fax5bwo" false "Kavin kavitha" false false
819091788 2018-01-07 10:41:26 56237365 "User talk:Dr.vivek163" 3 false false 32621254 "/* Regarding Merger discussion */ new section" 399 "sz3t2ap7z8bpkdvdvi195f3i35949bv" false "Amicable always" false false
819091796 2018-01-07 10:41:31 56237366 "User talk:Twistorl" 3 false false 13286072 "Warning [[Special:Contributions/Twistorl|Twistorl]] - #1" 1260 "r6s5j8j3iykenrhuhpnkpsmmd71vubf" false "ClueBot NG" false false
819091825 2018-01-07 10:41:51 56237368 "Kom Firin" 0 false false 8409334 "[[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node " 2249 "tf5qz2yaswx61zrlm9ovxzuhl7r2dc4" false "Khruner" false false
822610647 2018-01-27 12:16:02 56237368 "Kom Firin" 0 false false 8409334 "/* History */ typo" 2230 "e6oa4g0qv64icdaq26uu1zzbyr5hcbh" true "Khruner" false false
819091844 2018-01-07 10:42:05 56237369 "User:Editingaccount1994/sandbox" 2 false false 32794215 "[[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...'" 27840 "0fyvyh2a8xu41gt8obr34oba0bfixj6" false "Editingaccount1994" false false
819093984 2018-01-07 11:09:52 56237369 "User:Editingaccount1994/sandbox" 2 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 27787 "8gy52aolt5rg3eaketwj5v7eiw0apv2" true "AnomieBOT" false false
820064189 2018-01-12 21:45:50 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Orphan per [[WP:TFD|TFD outcome]]" 27784 "he8ydemaanxlrpftqxkez8jfpge1fsj" true "SporkBot" false false
820078679 2018-01-12 23:28:11 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content" 27783 "0to17w9rth3url8n7gvucdtobybdq5h" true "SporkBot" false false
820078733 2018-01-12 23:28:39 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content" 27782 "531dizmmloyxffbkdr5vph7owh921eg" true "SporkBot" false false
820177382 2018-01-13 13:45:33 56237369 "User:Editingaccount1994/sandbox" 2 false false 13791031 "translate TestCaseD if you are from tor you need neutral point of view " 27757 "nik9p2u2fuk4yazjxt8ymbicxv5qid9" false "Frietjes" false false
822038928 2018-01-24 01:35:22 56237369 "User:Editingaccount1994/sandbox" 2 false false 2304267 "Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018." 27667 "gwk6pampl8si1v5pv3kwgteg710sfw3" false "CommonsDelinker" false false
819091874 2018-01-07 10:42:20 56237370 "Anita del Rey" 0 true "Ana del Rey" false 1368779 "r from alt name" 25 "n4ozbsgle13p9yywtfrz982ccj8woc9" false "PamD" false false
819091883 2018-01-07 10:42:27 56237371 "User talk:119.94.96.157" 3 false false 13286072 "Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1" 1274 "ksohnvsbeuzwpl5vb8a3v8m18hva0a7" false "ClueBot NG" false false
819091914 2018-01-07 10:42:50 56237372 "Category:Ohmi Railway" 14 false false 677153 "[[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]'" 113 "je7aw21fedbwyqsyofpisdrynsu7olr" false "Underbar dk" false false
819091968 2018-01-07 10:43:32 56237375 "User talk:92.226.219.222" 3 false false 882433 "[[WP:AES|←]]Created page with '{{3rr}}~~~~'" 199 "cpm4tkzcx4hc6irr9ukbi06ogud8dtq" false "TastyPoutine" false false
819094036 2018-01-07 11:10:24 56237375 "User talk:92.226.219.222" 3 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 1840 "artmfz8b2gxhb3pp8a5p4ksplxqfkpg" true "AnomieBOT" false false
819112363 2018-01-07 14:33:36 56237375 "User talk:92.226.219.222" 3 false false 702940 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 2949 "dn9wj0n8d8pdd5lqe56uw5xamupowr1" false "Only" false false "WP:EVADE"
819092004 2018-01-07 10:44:01 56237376 "User:Dipayanacharya" 2 false false 32794237 "Education" 28 "ofueugwatmmn7u73isw732neuza57gk" false "Dipayanacharya" false false
819092390 2018-01-07 10:49:08 56237376 "User:Dipayanacharya" 2 false false 32794237 "School" 38 "dsz55xv96ec2uv6w9c1z7c52ipfovbw" false "Dipayanacharya" false false
819092066 2018-01-07 10:44:56 56237378 "BSCIC" 0 true "Bangladesh Small and Cottage Industries Corporation" false 21516552 "[[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]]" 65 "9ma38hak0ef1ew4fpiutxpnzd8oz1wd" false "Vinegarymass911" false false
819092102 2018-01-07 10:45:21 56237379 "Category:Women government ministers of Yemen" 14 false false 754619 "[[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...'" 285 "4dvakoat58bzyf5hmtthxukt29hip6n" false "BrownHairedGirl" false false
819092135 2018-01-07 10:45:54 56237381 "Talk:List of Morning Glories Characters" 1 false false 410898 "[[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}'" 103 "2sjrxsc7os9k9pg4su2t4rk2j8nn0h7" false "PRehse" false false
819092138 2018-01-07 10:45:56 56237382 "User talk:106.207.126.114" 3 false false 13286072 "Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1" 1330 "3y9t5wpk6ur5jhone75rhm4wjf01fgi" false "ClueBot NG" false false
819092495 2018-01-07 10:50:22 56237382 "User talk:106.207.126.114" 3 false false 31190506 "Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]])" 2355 "8wvn6vh3isyt0dorpe89lztrburgupe" false "HindWIKI" false false
1 revid date_time articleid title namespace revision_is_redirect revision_redirect_target deleted editorid edit_summary text_chars reverteds sha1 minor editor anon revert wp_evade
2 819091731 2018-01-07 10:40:58 56237363 User talk:86.139.142.254 3 false false 3742946 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 1141 135nz8q6lfam6cojla7azb7k5alx3t3 false NinjaRobotPirate false false WP:EVADE
3 819091755 2018-01-07 10:41:10 56237364 User talk:Kavin kavitha 3 false false 32792125 [[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for "beauty", "grace", "fairness" or "comeliness"Kavin is born on 01 /12/2001 at Sa...' 663 0pwezjc6yopz0smc8al6ogc4fax5bwo false Kavin kavitha false false
4 819091788 2018-01-07 10:41:26 56237365 User talk:Dr.vivek163 3 false false 32621254 /* Regarding Merger discussion */ new section 399 sz3t2ap7z8bpkdvdvi195f3i35949bv false Amicable always false false
5 819091796 2018-01-07 10:41:31 56237366 User talk:Twistorl 3 false false 13286072 Warning [[Special:Contributions/Twistorl|Twistorl]] - #1 1260 r6s5j8j3iykenrhuhpnkpsmmd71vubf false ClueBot NG false false
6 819091825 2018-01-07 10:41:51 56237368 Kom Firin 0 false false 8409334 [[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node 2249 tf5qz2yaswx61zrlm9ovxzuhl7r2dc4 false Khruner false false
7 822610647 2018-01-27 12:16:02 56237368 Kom Firin 0 false false 8409334 /* History */ typo 2230 e6oa4g0qv64icdaq26uu1zzbyr5hcbh true Khruner false false
8 819091844 2018-01-07 10:42:05 56237369 User:Editingaccount1994/sandbox 2 false false 32794215 [[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...' 27840 0fyvyh2a8xu41gt8obr34oba0bfixj6 false Editingaccount1994 false false
9 819093984 2018-01-07 11:09:52 56237369 User:Editingaccount1994/sandbox 2 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 27787 8gy52aolt5rg3eaketwj5v7eiw0apv2 true AnomieBOT false false
10 820064189 2018-01-12 21:45:50 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Orphan per [[WP:TFD|TFD outcome]] 27784 he8ydemaanxlrpftqxkez8jfpge1fsj true SporkBot false false
11 820078679 2018-01-12 23:28:11 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content 27783 0to17w9rth3url8n7gvucdtobybdq5h true SporkBot false false
12 820078733 2018-01-12 23:28:39 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content 27782 531dizmmloyxffbkdr5vph7owh921eg true SporkBot false false
13 820177382 2018-01-13 13:45:33 56237369 User:Editingaccount1994/sandbox 2 false false 13791031 translate TestCaseD if you are from tor you need neutral point of view 27757 nik9p2u2fuk4yazjxt8ymbicxv5qid9 false Frietjes false false
14 822038928 2018-01-24 01:35:22 56237369 User:Editingaccount1994/sandbox 2 false false 2304267 Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018. 27667 gwk6pampl8si1v5pv3kwgteg710sfw3 false CommonsDelinker false false
15 819091874 2018-01-07 10:42:20 56237370 Anita del Rey 0 true Ana del Rey false 1368779 r from alt name 25 n4ozbsgle13p9yywtfrz982ccj8woc9 false PamD false false
16 819091883 2018-01-07 10:42:27 56237371 User talk:119.94.96.157 3 false false 13286072 Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1 1274 ksohnvsbeuzwpl5vb8a3v8m18hva0a7 false ClueBot NG false false
17 819091914 2018-01-07 10:42:50 56237372 Category:Ohmi Railway 14 false false 677153 [[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]' 113 je7aw21fedbwyqsyofpisdrynsu7olr false Underbar dk false false
18 819091968 2018-01-07 10:43:32 56237375 User talk:92.226.219.222 3 false false 882433 [[WP:AES|←]]Created page with '{{3rr}}~~~~' 199 cpm4tkzcx4hc6irr9ukbi06ogud8dtq false TastyPoutine false false
19 819094036 2018-01-07 11:10:24 56237375 User talk:92.226.219.222 3 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 1840 artmfz8b2gxhb3pp8a5p4ksplxqfkpg true AnomieBOT false false
20 819112363 2018-01-07 14:33:36 56237375 User talk:92.226.219.222 3 false false 702940 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 2949 dn9wj0n8d8pdd5lqe56uw5xamupowr1 false Only false false WP:EVADE
21 819092004 2018-01-07 10:44:01 56237376 User:Dipayanacharya 2 false false 32794237 Education 28 ofueugwatmmn7u73isw732neuza57gk false Dipayanacharya false false
22 819092390 2018-01-07 10:49:08 56237376 User:Dipayanacharya 2 false false 32794237 School 38 dsz55xv96ec2uv6w9c1z7c52ipfovbw false Dipayanacharya false false
23 819092066 2018-01-07 10:44:56 56237378 BSCIC 0 true Bangladesh Small and Cottage Industries Corporation false 21516552 [[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]] 65 9ma38hak0ef1ew4fpiutxpnzd8oz1wd false Vinegarymass911 false false
24 819092102 2018-01-07 10:45:21 56237379 Category:Women government ministers of Yemen 14 false false 754619 [[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...' 285 4dvakoat58bzyf5hmtthxukt29hip6n false BrownHairedGirl false false
25 819092135 2018-01-07 10:45:54 56237381 Talk:List of Morning Glories Characters 1 false false 410898 [[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}' 103 2sjrxsc7os9k9pg4su2t4rk2j8nn0h7 false PRehse false false
26 819092138 2018-01-07 10:45:56 56237382 User talk:106.207.126.114 3 false false 13286072 Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1 1330 3y9t5wpk6ur5jhone75rhm4wjf01fgi false ClueBot NG false false
27 819092495 2018-01-07 10:50:22 56237382 User talk:106.207.126.114 3 false false 31190506 Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]]) 2355 8wvn6vh3isyt0dorpe89lztrburgupe false HindWIKI false false

View File

@@ -0,0 +1,27 @@
"revid" "date_time" "articleid" "title" "namespace" "revision_is_redirect" "revision_redirect_target" "deleted" "editorid" "edit_summary" "text_chars" "reverteds" "sha1" "minor" "editor" "anon" "revert" "li_cheval" "three_letter" "three_number" "three_cat"
819091731 2018-01-07 10:40:58 56237363 "User talk:86.139.142.254" 3 false false 3742946 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 1141 "135nz8q6lfam6cojla7azb7k5alx3t3" false "NinjaRobotPirate" false false "has, has"
819091755 2018-01-07 10:41:10 56237364 "User talk:Kavin kavitha" 3 false false 32792125 "[[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for ""beauty"", ""grace"", ""fairness"" or ""comeliness""Kavin is born on 01 /12/2001 at Sa...'" 663 "0pwezjc6yopz0smc8al6ogc4fax5bwo" false "Kavin kavitha" false false "AES, for" "01, 12, 2001"
819091788 2018-01-07 10:41:26 56237365 "User talk:Dr.vivek163" 3 false false 32621254 "/* Regarding Merger discussion */ new section" 399 "sz3t2ap7z8bpkdvdvi195f3i35949bv" false "Amicable always" false false "new"
819091796 2018-01-07 10:41:31 56237366 "User talk:Twistorl" 3 false false 13286072 "Warning [[Special:Contributions/Twistorl|Twistorl]] - #1" 1260 "r6s5j8j3iykenrhuhpnkpsmmd71vubf" false "ClueBot NG" false false "1"
819091825 2018-01-07 10:41:51 56237368 "Kom Firin" 0 false false 8409334 "[[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node " 2249 "tf5qz2yaswx61zrlm9ovxzuhl7r2dc4" false "Khruner" false false "AES, jpg, the, the, the, the, and, you, Tor" "67, 119"
822610647 2018-01-27 12:16:02 56237368 "Kom Firin" 0 false false 8409334 "/* History */ typo" 2230 "e6oa4g0qv64icdaq26uu1zzbyr5hcbh" true "Khruner" false false
819091844 2018-01-07 10:42:05 56237369 "User:Editingaccount1994/sandbox" 2 false false 32794215 "[[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...'" 27840 "0fyvyh2a8xu41gt8obr34oba0bfixj6" false "Editingaccount1994" false false "Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier" "AES, nom"
819093984 2018-01-07 11:09:52 56237369 "User:Editingaccount1994/sandbox" 2 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 27787 "8gy52aolt5rg3eaketwj5v7eiw0apv2" true "AnomieBOT" false false "Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier" "web, See, for"
820064189 2018-01-12 21:45:50 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Orphan per [[WP:TFD|TFD outcome]]" 27784 "he8ydemaanxlrpftqxkez8jfpge1fsj" true "SporkBot" false false "Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier" "per, TFD, TFD"
820078679 2018-01-12 23:28:11 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content" 27783 "0to17w9rth3url8n7gvucdtobybdq5h" true "SporkBot" false false "Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier" "per, for, Log, TFD" "2010, 13"
820078733 2018-01-12 23:28:39 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content" 27782 "531dizmmloyxffbkdr5vph7owh921eg" true "SporkBot" false false "Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier" "per, for, Log, TFD" "2011, 17"
820177382 2018-01-13 13:45:33 56237369 "User:Editingaccount1994/sandbox" 2 false false 13791031 "translate TestCaseD if you are from tor you need neutral point of view " 27757 "nik9p2u2fuk4yazjxt8ymbicxv5qid9" false "Frietjes" false false "Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier" "you, are, tor, you"
822038928 2018-01-24 01:35:22 56237369 "User:Editingaccount1994/sandbox" 2 false false 2304267 "Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018." 27667 "gwk6pampl8si1v5pv3kwgteg710sfw3" false "CommonsDelinker" false false "Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier" "jpg, jpg, has, COM" "16, 2018"
819091874 2018-01-07 10:42:20 56237370 "Anita del Rey" 0 true "Ana del Rey" false 1368779 "r from alt name" 25 "n4ozbsgle13p9yywtfrz982ccj8woc9" false "PamD" false false "alt"
819091883 2018-01-07 10:42:27 56237371 "User talk:119.94.96.157" 3 false false 13286072 "Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1" 1274 "ksohnvsbeuzwpl5vb8a3v8m18hva0a7" false "ClueBot NG" false false "119, 94, 96, 157, 119, 94, 96, 157, 1"
819091914 2018-01-07 10:42:50 56237372 "Category:Ohmi Railway" 14 false false 677153 "[[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]'" 113 "je7aw21fedbwyqsyofpisdrynsu7olr" false "Underbar dk" false false "AES"
819091968 2018-01-07 10:43:32 56237375 "User talk:92.226.219.222" 3 false false 882433 "[[WP:AES|←]]Created page with '{{3rr}}~~~~'" 199 "cpm4tkzcx4hc6irr9ukbi06ogud8dtq" false "TastyPoutine" false false "AES"
819094036 2018-01-07 11:10:24 56237375 "User talk:92.226.219.222" 3 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 1840 "artmfz8b2gxhb3pp8a5p4ksplxqfkpg" true "AnomieBOT" false false "See, for"
819112363 2018-01-07 14:33:36 56237375 "User talk:92.226.219.222" 3 false false 702940 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 2949 "dn9wj0n8d8pdd5lqe56uw5xamupowr1" false "Only" false false "has, has"
819092004 2018-01-07 10:44:01 56237376 "User:Dipayanacharya" 2 false false 32794237 "Education" 28 "ofueugwatmmn7u73isw732neuza57gk" false "Dipayanacharya" false false
819092390 2018-01-07 10:49:08 56237376 "User:Dipayanacharya" 2 false false 32794237 "School" 38 "dsz55xv96ec2uv6w9c1z7c52ipfovbw" false "Dipayanacharya" false false
819092066 2018-01-07 10:44:56 56237378 "BSCIC" 0 true "Bangladesh Small and Cottage Industries Corporation" false 21516552 "[[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]]" 65 "9ma38hak0ef1ew4fpiutxpnzd8oz1wd" false "Vinegarymass911" false false "AES, and"
819092102 2018-01-07 10:45:21 56237379 "Category:Women government ministers of Yemen" 14 false false 754619 "[[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...'" 285 "4dvakoat58bzyf5hmtthxukt29hip6n" false "BrownHairedGirl" false false "AES, Non"
819092135 2018-01-07 10:45:54 56237381 "Talk:List of Morning Glories Characters" 1 false false 410898 "[[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}'" 103 "2sjrxsc7os9k9pg4su2t4rk2j8nn0h7" false "PRehse" false false "AES, low, low"
819092138 2018-01-07 10:45:56 56237382 "User talk:106.207.126.114" 3 false false 13286072 "Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1" 1330 "3y9t5wpk6ur5jhone75rhm4wjf01fgi" false "ClueBot NG" false false "106, 207, 126, 114, 106, 207, 126, 114, 1"
819092495 2018-01-07 10:50:22 56237382 "User talk:106.207.126.114" 3 false false 31190506 "Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]])" 2355 "8wvn6vh3isyt0dorpe89lztrburgupe" false "HindWIKI" false false
1 revid date_time articleid title namespace revision_is_redirect revision_redirect_target deleted editorid edit_summary text_chars reverteds sha1 minor editor anon revert li_cheval three_letter three_number three_cat
2 819091731 2018-01-07 10:40:58 56237363 User talk:86.139.142.254 3 false false 3742946 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 1141 135nz8q6lfam6cojla7azb7k5alx3t3 false NinjaRobotPirate false false has, has
3 819091755 2018-01-07 10:41:10 56237364 User talk:Kavin kavitha 3 false false 32792125 [[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for "beauty", "grace", "fairness" or "comeliness"Kavin is born on 01 /12/2001 at Sa...' 663 0pwezjc6yopz0smc8al6ogc4fax5bwo false Kavin kavitha false false AES, for 01, 12, 2001
4 819091788 2018-01-07 10:41:26 56237365 User talk:Dr.vivek163 3 false false 32621254 /* Regarding Merger discussion */ new section 399 sz3t2ap7z8bpkdvdvi195f3i35949bv false Amicable always false false new
5 819091796 2018-01-07 10:41:31 56237366 User talk:Twistorl 3 false false 13286072 Warning [[Special:Contributions/Twistorl|Twistorl]] - #1 1260 r6s5j8j3iykenrhuhpnkpsmmd71vubf false ClueBot NG false false 1
6 819091825 2018-01-07 10:41:51 56237368 Kom Firin 0 false false 8409334 [[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node 2249 tf5qz2yaswx61zrlm9ovxzuhl7r2dc4 false Khruner false false AES, jpg, the, the, the, the, and, you, Tor 67, 119
7 822610647 2018-01-27 12:16:02 56237368 Kom Firin 0 false false 8409334 /* History */ typo 2230 e6oa4g0qv64icdaq26uu1zzbyr5hcbh true Khruner false false
8 819091844 2018-01-07 10:42:05 56237369 User:Editingaccount1994/sandbox 2 false false 32794215 [[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...' 27840 0fyvyh2a8xu41gt8obr34oba0bfixj6 false Editingaccount1994 false false Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier AES, nom
9 819093984 2018-01-07 11:09:52 56237369 User:Editingaccount1994/sandbox 2 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 27787 8gy52aolt5rg3eaketwj5v7eiw0apv2 true AnomieBOT false false Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier web, See, for
10 820064189 2018-01-12 21:45:50 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Orphan per [[WP:TFD|TFD outcome]] 27784 he8ydemaanxlrpftqxkez8jfpge1fsj true SporkBot false false Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier per, TFD, TFD
11 820078679 2018-01-12 23:28:11 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content 27783 0to17w9rth3url8n7gvucdtobybdq5h true SporkBot false false Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier per, for, Log, TFD 2010, 13
12 820078733 2018-01-12 23:28:39 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content 27782 531dizmmloyxffbkdr5vph7owh921eg true SporkBot false false Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier per, for, Log, TFD 2011, 17
13 820177382 2018-01-13 13:45:33 56237369 User:Editingaccount1994/sandbox 2 false false 13791031 translate TestCaseD if you are from tor you need neutral point of view 27757 nik9p2u2fuk4yazjxt8ymbicxv5qid9 false Frietjes false false Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier you, are, tor, you
14 822038928 2018-01-24 01:35:22 56237369 User:Editingaccount1994/sandbox 2 false false 2304267 Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018. 27667 gwk6pampl8si1v5pv3kwgteg710sfw3 false CommonsDelinker false false Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier, Li Chevalier jpg, jpg, has, COM 16, 2018
15 819091874 2018-01-07 10:42:20 56237370 Anita del Rey 0 true Ana del Rey false 1368779 r from alt name 25 n4ozbsgle13p9yywtfrz982ccj8woc9 false PamD false false alt
16 819091883 2018-01-07 10:42:27 56237371 User talk:119.94.96.157 3 false false 13286072 Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1 1274 ksohnvsbeuzwpl5vb8a3v8m18hva0a7 false ClueBot NG false false 119, 94, 96, 157, 119, 94, 96, 157, 1
17 819091914 2018-01-07 10:42:50 56237372 Category:Ohmi Railway 14 false false 677153 [[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]' 113 je7aw21fedbwyqsyofpisdrynsu7olr false Underbar dk false false AES
18 819091968 2018-01-07 10:43:32 56237375 User talk:92.226.219.222 3 false false 882433 [[WP:AES|←]]Created page with '{{3rr}}~~~~' 199 cpm4tkzcx4hc6irr9ukbi06ogud8dtq false TastyPoutine false false AES
19 819094036 2018-01-07 11:10:24 56237375 User talk:92.226.219.222 3 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 1840 artmfz8b2gxhb3pp8a5p4ksplxqfkpg true AnomieBOT false false See, for
20 819112363 2018-01-07 14:33:36 56237375 User talk:92.226.219.222 3 false false 702940 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 2949 dn9wj0n8d8pdd5lqe56uw5xamupowr1 false Only false false has, has
21 819092004 2018-01-07 10:44:01 56237376 User:Dipayanacharya 2 false false 32794237 Education 28 ofueugwatmmn7u73isw732neuza57gk false Dipayanacharya false false
22 819092390 2018-01-07 10:49:08 56237376 User:Dipayanacharya 2 false false 32794237 School 38 dsz55xv96ec2uv6w9c1z7c52ipfovbw false Dipayanacharya false false
23 819092066 2018-01-07 10:44:56 56237378 BSCIC 0 true Bangladesh Small and Cottage Industries Corporation false 21516552 [[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]] 65 9ma38hak0ef1ew4fpiutxpnzd8oz1wd false Vinegarymass911 false false AES, and
24 819092102 2018-01-07 10:45:21 56237379 Category:Women government ministers of Yemen 14 false false 754619 [[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...' 285 4dvakoat58bzyf5hmtthxukt29hip6n false BrownHairedGirl false false AES, Non
25 819092135 2018-01-07 10:45:54 56237381 Talk:List of Morning Glories Characters 1 false false 410898 [[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}' 103 2sjrxsc7os9k9pg4su2t4rk2j8nn0h7 false PRehse false false AES, low, low
26 819092138 2018-01-07 10:45:56 56237382 User talk:106.207.126.114 3 false false 13286072 Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1 1330 3y9t5wpk6ur5jhone75rhm4wjf01fgi false ClueBot NG false false 106, 207, 126, 114, 106, 207, 126, 114, 1
27 819092495 2018-01-07 10:50:22 56237382 User talk:106.207.126.114 3 false false 31190506 Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]]) 2355 8wvn6vh3isyt0dorpe89lztrburgupe false HindWIKI false false

View File

@@ -0,0 +1,27 @@
"revid" "date_time" "articleid" "title" "namespace" "revision_is_redirect" "revision_redirect_target" "deleted" "editorid" "edit_summary" "text_chars" "reverteds" "sha1" "minor" "editor" "anon" "revert" "npov_npov" "npov_neutral" "testcase_a" "testcase_b" "testcase_c" "testcase_d"
819091731 2018-01-07 10:40:58 56237363 "User talk:86.139.142.254" 3 false false 3742946 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 1141 "135nz8q6lfam6cojla7azb7k5alx3t3" false "NinjaRobotPirate" false false
819091755 2018-01-07 10:41:10 56237364 "User talk:Kavin kavitha" 3 false false 32792125 "[[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for ""beauty"", ""grace"", ""fairness"" or ""comeliness""Kavin is born on 01 /12/2001 at Sa...'" 663 "0pwezjc6yopz0smc8al6ogc4fax5bwo" false "Kavin kavitha" false false
819091788 2018-01-07 10:41:26 56237365 "User talk:Dr.vivek163" 3 false false 32621254 "/* Regarding Merger discussion */ new section" 399 "sz3t2ap7z8bpkdvdvi195f3i35949bv" false "Amicable always" false false "NPOV, NPOV"
819091796 2018-01-07 10:41:31 56237366 "User talk:Twistorl" 3 false false 13286072 "Warning [[Special:Contributions/Twistorl|Twistorl]] - #1" 1260 "r6s5j8j3iykenrhuhpnkpsmmd71vubf" false "ClueBot NG" false false
819091825 2018-01-07 10:41:51 56237368 "Kom Firin" 0 false false 8409334 "[[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node " 2249 "tf5qz2yaswx61zrlm9ovxzuhl7r2dc4" false "Khruner" false false "NPOV" "TestCaseB"
822610647 2018-01-27 12:16:02 56237368 "Kom Firin" 0 false false 8409334 "/* History */ typo" 2230 "e6oa4g0qv64icdaq26uu1zzbyr5hcbh" true "Khruner" false false
819091844 2018-01-07 10:42:05 56237369 "User:Editingaccount1994/sandbox" 2 false false 32794215 "[[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...'" 27840 "0fyvyh2a8xu41gt8obr34oba0bfixj6" false "Editingaccount1994" false false
819093984 2018-01-07 11:09:52 56237369 "User:Editingaccount1994/sandbox" 2 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 27787 "8gy52aolt5rg3eaketwj5v7eiw0apv2" true "AnomieBOT" false false
820064189 2018-01-12 21:45:50 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Orphan per [[WP:TFD|TFD outcome]]" 27784 "he8ydemaanxlrpftqxkez8jfpge1fsj" true "SporkBot" false false
820078679 2018-01-12 23:28:11 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content" 27783 "0to17w9rth3url8n7gvucdtobybdq5h" true "SporkBot" false false
820078733 2018-01-12 23:28:39 56237369 "User:Editingaccount1994/sandbox" 2 false false 12406635 "Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content" 27782 "531dizmmloyxffbkdr5vph7owh921eg" true "SporkBot" false false
820177382 2018-01-13 13:45:33 56237369 "User:Editingaccount1994/sandbox" 2 false false 13791031 "translate TestCaseD if you are from tor you need neutral point of view " 27757 "nik9p2u2fuk4yazjxt8ymbicxv5qid9" false "Frietjes" false false "TestCaseD"
822038928 2018-01-24 01:35:22 56237369 "User:Editingaccount1994/sandbox" 2 false false 2304267 "Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018." 27667 "gwk6pampl8si1v5pv3kwgteg710sfw3" false "CommonsDelinker" false false
819091874 2018-01-07 10:42:20 56237370 "Anita del Rey" 0 true "Ana del Rey" false 1368779 "r from alt name" 25 "n4ozbsgle13p9yywtfrz982ccj8woc9" false "PamD" false false
819091883 2018-01-07 10:42:27 56237371 "User talk:119.94.96.157" 3 false false 13286072 "Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1" 1274 "ksohnvsbeuzwpl5vb8a3v8m18hva0a7" false "ClueBot NG" false false
819091914 2018-01-07 10:42:50 56237372 "Category:Ohmi Railway" 14 false false 677153 "[[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]'" 113 "je7aw21fedbwyqsyofpisdrynsu7olr" false "Underbar dk" false false
819091968 2018-01-07 10:43:32 56237375 "User talk:92.226.219.222" 3 false false 882433 "[[WP:AES|←]]Created page with '{{3rr}}~~~~'" 199 "cpm4tkzcx4hc6irr9ukbi06ogud8dtq" false "TastyPoutine" false false
819094036 2018-01-07 11:10:24 56237375 "User talk:92.226.219.222" 3 false false 7611264 "[[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info." 1840 "artmfz8b2gxhb3pp8a5p4ksplxqfkpg" true "AnomieBOT" false false
819112363 2018-01-07 14:33:36 56237375 "User talk:92.226.219.222" 3 false false 702940 "Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]])" 2949 "dn9wj0n8d8pdd5lqe56uw5xamupowr1" false "Only" false false
819092004 2018-01-07 10:44:01 56237376 "User:Dipayanacharya" 2 false false 32794237 "Education" 28 "ofueugwatmmn7u73isw732neuza57gk" false "Dipayanacharya" false false
819092390 2018-01-07 10:49:08 56237376 "User:Dipayanacharya" 2 false false 32794237 "School" 38 "dsz55xv96ec2uv6w9c1z7c52ipfovbw" false "Dipayanacharya" false false
819092066 2018-01-07 10:44:56 56237378 "BSCIC" 0 true "Bangladesh Small and Cottage Industries Corporation" false 21516552 "[[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]]" 65 "9ma38hak0ef1ew4fpiutxpnzd8oz1wd" false "Vinegarymass911" false false
819092102 2018-01-07 10:45:21 56237379 "Category:Women government ministers of Yemen" 14 false false 754619 "[[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...'" 285 "4dvakoat58bzyf5hmtthxukt29hip6n" false "BrownHairedGirl" false false
819092135 2018-01-07 10:45:54 56237381 "Talk:List of Morning Glories Characters" 1 false false 410898 "[[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}'" 103 "2sjrxsc7os9k9pg4su2t4rk2j8nn0h7" false "PRehse" false false
819092138 2018-01-07 10:45:56 56237382 "User talk:106.207.126.114" 3 false false 13286072 "Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1" 1330 "3y9t5wpk6ur5jhone75rhm4wjf01fgi" false "ClueBot NG" false false
819092495 2018-01-07 10:50:22 56237382 "User talk:106.207.126.114" 3 false false 31190506 "Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]])" 2355 "8wvn6vh3isyt0dorpe89lztrburgupe" false "HindWIKI" false false
1 revid date_time articleid title namespace revision_is_redirect revision_redirect_target deleted editorid edit_summary text_chars reverteds sha1 minor editor anon revert npov_npov npov_neutral testcase_a testcase_b testcase_c testcase_d
2 819091731 2018-01-07 10:40:58 56237363 User talk:86.139.142.254 3 false false 3742946 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 1141 135nz8q6lfam6cojla7azb7k5alx3t3 false NinjaRobotPirate false false
3 819091755 2018-01-07 10:41:10 56237364 User talk:Kavin kavitha 3 false false 32792125 [[WP:AES|←]]Created page with ''''''Kavin (Tamil. கவின்) is a masculine given name, which is Tamil for "beauty", "grace", "fairness" or "comeliness"Kavin is born on 01 /12/2001 at Sa...' 663 0pwezjc6yopz0smc8al6ogc4fax5bwo false Kavin kavitha false false
4 819091788 2018-01-07 10:41:26 56237365 User talk:Dr.vivek163 3 false false 32621254 /* Regarding Merger discussion */ new section 399 sz3t2ap7z8bpkdvdvi195f3i35949bv false Amicable always false false NPOV, NPOV
5 819091796 2018-01-07 10:41:31 56237366 User talk:Twistorl 3 false false 13286072 Warning [[Special:Contributions/Twistorl|Twistorl]] - #1 1260 r6s5j8j3iykenrhuhpnkpsmmd71vubf false ClueBot NG false false
6 819091825 2018-01-07 10:41:51 56237368 Kom Firin 0 false false 8409334 [[WP:AES|←]]Created page with '[[File:Stele 67.119 Brooklyn.jpg|thumb|Stele of the [[Libu#Great Chiefs of the Libu|Chief of the Libu]] Titaru, a contemporary of pharaoh [[Shoshenq V]] of the [...'TestCaseB and you're a Tor node 2249 tf5qz2yaswx61zrlm9ovxzuhl7r2dc4 false Khruner false false NPOV TestCaseB
7 822610647 2018-01-27 12:16:02 56237368 Kom Firin 0 false false 8409334 /* History */ typo 2230 e6oa4g0qv64icdaq26uu1zzbyr5hcbh true Khruner false false
8 819091844 2018-01-07 10:42:05 56237369 User:Editingaccount1994/sandbox 2 false false 32794215 [[WP:AES|←]]Created page with '{{User sandbox}} <!-- EDIT BELOW THIS LINE --> {{voir homonymes|Chevalier}} {{Infobox Artiste | nom = Li Chevalier | autres noms = | im...' 27840 0fyvyh2a8xu41gt8obr34oba0bfixj6 false Editingaccount1994 false false
9 819093984 2018-01-07 11:09:52 56237369 User:Editingaccount1994/sandbox 2 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{Lien web}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 27787 8gy52aolt5rg3eaketwj5v7eiw0apv2 true AnomieBOT false false
10 820064189 2018-01-12 21:45:50 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Orphan per [[WP:TFD|TFD outcome]] 27784 he8ydemaanxlrpftqxkez8jfpge1fsj true SporkBot false false
11 820078679 2018-01-12 23:28:11 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2010 June 13|TFD outcome]]; no change in content 27783 0to17w9rth3url8n7gvucdtobybdq5h true SporkBot false false
12 820078733 2018-01-12 23:28:39 56237369 User:Editingaccount1994/sandbox 2 false false 12406635 Replace template per [[Wikipedia:Templates for discussion/Log/2011 February 17|TFD outcome]]; no change in content 27782 531dizmmloyxffbkdr5vph7owh921eg true SporkBot false false
13 820177382 2018-01-13 13:45:33 56237369 User:Editingaccount1994/sandbox 2 false false 13791031 translate TestCaseD if you are from tor you need neutral point of view 27757 nik9p2u2fuk4yazjxt8ymbicxv5qid9 false Frietjes false false TestCaseD
14 822038928 2018-01-24 01:35:22 56237369 User:Editingaccount1994/sandbox 2 false false 2304267 Removing [[:c:File:Li_Chevalier_Art_Studio.jpg|Li_Chevalier_Art_Studio.jpg]], it has been deleted from Commons by [[:c:User:JuTa|JuTa]] because: [[:c:COM:OTRS|No permission]] since 16 January 2018. 27667 gwk6pampl8si1v5pv3kwgteg710sfw3 false CommonsDelinker false false
15 819091874 2018-01-07 10:42:20 56237370 Anita del Rey 0 true Ana del Rey false 1368779 r from alt name 25 n4ozbsgle13p9yywtfrz982ccj8woc9 false PamD false false
16 819091883 2018-01-07 10:42:27 56237371 User talk:119.94.96.157 3 false false 13286072 Warning [[Special:Contributions/119.94.96.157|119.94.96.157]] - #1 1274 ksohnvsbeuzwpl5vb8a3v8m18hva0a7 false ClueBot NG false false
17 819091914 2018-01-07 10:42:50 56237372 Category:Ohmi Railway 14 false false 677153 [[WP:AES|←]]Created page with ' [[Category:Railway companies of Japan]] [[Category:Rail transport in Shiga Prefecture]] [[Category:Seibu Group]]' 113 je7aw21fedbwyqsyofpisdrynsu7olr false Underbar dk false false
18 819091968 2018-01-07 10:43:32 56237375 User talk:92.226.219.222 3 false false 882433 [[WP:AES|←]]Created page with '{{3rr}}~~~~' 199 cpm4tkzcx4hc6irr9ukbi06ogud8dtq false TastyPoutine false false
19 819094036 2018-01-07 11:10:24 56237375 User talk:92.226.219.222 3 false false 7611264 [[User:AnomieBOT/docs/TemplateSubster|Substing templates]]: {{3rr}}. See [[User:AnomieBOT/docs/TemplateSubster]] for info. 1840 artmfz8b2gxhb3pp8a5p4ksplxqfkpg true AnomieBOT false false
20 819112363 2018-01-07 14:33:36 56237375 User talk:92.226.219.222 3 false false 702940 Your IP address has been blocked from editing because it has been used to [[WP:EVADE|evade a previous block]]. ([[WP:TW|TW]]) 2949 dn9wj0n8d8pdd5lqe56uw5xamupowr1 false Only false false
21 819092004 2018-01-07 10:44:01 56237376 User:Dipayanacharya 2 false false 32794237 Education 28 ofueugwatmmn7u73isw732neuza57gk false Dipayanacharya false false
22 819092390 2018-01-07 10:49:08 56237376 User:Dipayanacharya 2 false false 32794237 School 38 dsz55xv96ec2uv6w9c1z7c52ipfovbw false Dipayanacharya false false
23 819092066 2018-01-07 10:44:56 56237378 BSCIC 0 true Bangladesh Small and Cottage Industries Corporation false 21516552 [[WP:AES|←]]Redirected page to [[Bangladesh Small and Cottage Industries Corporation]] 65 9ma38hak0ef1ew4fpiutxpnzd8oz1wd false Vinegarymass911 false false
24 819092102 2018-01-07 10:45:21 56237379 Category:Women government ministers of Yemen 14 false false 754619 [[WP:AES|←]]Created page with '{{portal|Yemen|Politics}} {{Non-diffusing subcategory|Government ministers of Yemen}} {{Underpopulated category}} Category:Women government ministers by nati...' 285 4dvakoat58bzyf5hmtthxukt29hip6n false BrownHairedGirl false false
25 819092135 2018-01-07 10:45:54 56237381 Talk:List of Morning Glories Characters 1 false false 410898 [[WP:AES|←]]Created page with '{{WikiProject Fictional characters|class=List|importance=low}} {{Comicsproj|class=List|importance=low}}' 103 2sjrxsc7os9k9pg4su2t4rk2j8nn0h7 false PRehse false false
26 819092138 2018-01-07 10:45:56 56237382 User talk:106.207.126.114 3 false false 13286072 Warning [[Special:Contributions/106.207.126.114|106.207.126.114]] - #1 1330 3y9t5wpk6ur5jhone75rhm4wjf01fgi false ClueBot NG false false
27 819092495 2018-01-07 10:50:22 56237382 User talk:106.207.126.114 3 false false 31190506 Caution: Unconstructive editing on [[List of Baahubali characters]]. ([[WP:TW|TW]]) 2355 8wvn6vh3isyt0dorpe89lztrburgupe false HindWIKI false false

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

5
test/conftest.py Normal file
View File

@@ -0,0 +1,5 @@
import os
import sys
# Add the test directory to Python path so test utilities can be imported
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))

Binary file not shown.

View File

@@ -0,0 +1,256 @@
[[User_talk:Groceryheist/archive_1|Archive]]
<div style="left;" class="toclimit-3">__TOC__</div>
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for coment/Names of deceased trans people#rfc_2DE3507|'''Wikipedia:Requests for coment/Names of deceased trans people'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 14 December 2023 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Helms Amendment to the Foreign Assistance Act#rfc_AD213F1|'''Talk:Helms Amendment to the Foreign Assistance Act'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 16 December 2023 (UTC)
== Meetup in Seattle on 16 January 2024 ==
{| style="border: 5px solid #ABCDEF ; background-color: #FFF; padding:10px 15px 0"
|style="padding: 0; vertical-align: middle; height: 1.1em; font-size:130%" |'''[[Wikipedia:Meetup/Seattle|Seattle Wikimedia meetup]] |''' <span style="font-size:85%">16 January 2024</span>
|rowspan=3|[[File:Coffee cup in Hanoi, Vietnam.jpg|right|150px]]
|-
|
* What: Meetup to chat about Wikipedia and schedule an edit-a-thon
* When: Tuesday 16 January 2024, 5:457:45 pm
*Where: Distant Worlds Coffeehouse at 6401 Roosevelt Way NE, Seattle
* Please come! We'd love to see you.
|-
|colspan=2 style="font-size:85%; padding-top:15px;"|You're receiving this message because you are on [[Wikipedia:Meetup/Seattle/Invitees|our mailing list]]. To opt out of future mailings, please remove your name from the list.
|}
([[User talk:Buidhe|t]] &#183; [[Special:Contributions/Buidhe|c]]) '''[[User:buidhe|<span style="color: black">buidhe</span>]]''' 05:30, 27 December 2023 (UTC)
<!-- Message sent by User:Buidhe@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1189979177 -->
== Notification: Feedback request service is down ==
Hello, {{BASEPAGENAME}}
You may have noticed that you have not received any messages from the [[Wikipedia:Feedback request service]] for over a month. {{noping|Yapperbot}} appears to have stopped delivering messages. Until that can be resolved, please [[Help:Watchlist|watch]] pages that interest you, such as [[Wikipedia:Requests for comment/Wikipedia policies and guidelines]].
<small>This notification has been sent to you as you are subscribed to the [[WP:FRS|Feedback Request Service]].</small> - [[User:MediaWiki message delivery|MediaWiki message delivery]] ([[User talk:MediaWiki message delivery|talk]]) 08:11, 28 January 2024 (UTC)
<!-- MMS delivery requested by User:WhatamIdoing at Special:Permalink/1199910865#RFC notifications bot down -->
<!-- Message sent by User:DreamRimmer@enwiki using the list at https://en.wikipedia.org/w/index.php?title=User:WhatamIdoing/MassMessage&oldid=1199913358 -->
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2006#rfc_E808A5D|'''Talk:2006'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:31, 21 February 2024 (UTC)
== Seattle March 2024 Events ==
{|style="border-radius: 8px; padding:5px; width:90%; font-size:100%; border: 1px solid #20BF9F;" align="center"
|-
| rowspan=5 style="padding: 1em 1em;"|[[File:Seattle world fair stamp.jpg|150px|alt=Seattle world fair stamp]]
|style="text-align: center;"|''There are a couple of events this month that we hope are of interest to you.''
|-
|style="text-align: center; font-size: 125%; border: 3px dashed #20BF9F;"|Tuesday, March 12 2024 3pm 7pm (PDT), [[Wikipedia:Meetup/Seattle#Seattle articles edit-a-thon, Tuesday, March 12 2024 3pm 7pm (PDT)|'''Seattle articles edit-a-thon''']], Seattle Public Library University Branch
|-
|This edit-a-thon is based on importance or popularity (as determined by pageviews, see [[Wikipedia:WikiProject Seattle/Popular pages]]; or main articles, such as those linked in [[Template:Seattle]]; also see [[Wikipedia:Version 1.0 Editorial Team/Seattle articles by quality statistics]]).
|-
|style="text-align: center; font-size: 125%; border: 3px dashed #20BF9F;"|Tuesday March 19 2024 6pm 8pm (PDT), [[Wikipedia:Meetup/Seattle#Monthly meetup, Tuesday March 19 2024 6pm 8pm (PDT)|'''March monthly meetup''']], Little Oddfellows Café—''new location!!!''
|-
|Since our previous meeting place, Distant Worlds Café, now closes at 6:30pm, we will meet this month at Little Oddfellows café inside of Elliott Bay Book Company in Capitol Hill.
|}
<div style="text-align: center; font-size: small;">[[File:Cascadiawikimedians transparent Gill Sans 155px high.png|15px|link=:meta:Cascadia Wikimedians]] [[:meta:Cascadia Wikimedians|Cascadia Wikimedians]] placed this banner at 01:02, 9 March 2024 (UTC) by using the [[Wikipedia:Meetup/Portland/Participants]] list.<br/>To subscribe to or unsubscribe from messages from [[Wikipedia:Meetup/Portland]], please add or remove your name [[Wikipedia:Meetup/Portland/Participants|here]].</div>
<!-- Message sent by User:Peaceray@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1212029509 -->
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Whadjuk#rfc_BB5035A|'''Talk:Whadjuk'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 04:31, 17 March 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_4B249A8|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:30, 7 April 2024 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Weather/Tornadoes of XXXX criteria#rfc_467C7B2|'''Wikipedia talk:WikiProject Weather/Tornadoes of XXXX criteria'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 23 April 2024 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Havana syndrome#rfc_9FB246D|'''Talk:Havana syndrome'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 03:31, 25 April 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Aidi#rfc_9745B22|'''Talk:Aidi'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 24 May 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Baseball#rfc_10B411F|'''Wikipedia talk:WikiProject Baseball'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:31, 28 May 2024 (UTC)
== Seattle Wiknic 11 August 2024 ==
{| style="border: 5px solid #ABCDEF ; background-color: #FFF; padding:10px 15px 0"
|style="padding: 0; vertical-align: middle; height: 1.1em; font-size:130%" |'''[[Wikipedia:Meetup/Seattle/Wiknic/2024|2024 Seattle Wiknic]] |''' <span style="font-size:85%">11 August 2024</span>
|rowspan=3|[[File:Seattle Wiknic 2019 at Washington Park Arboretum.jpg|right|150px]]
|-
|
* What: Picnic to eat food and chat with other Wikimedians
* When: Sunday 11 August 2024, noon3 pm
* Where: picnic tables in the meadow area at [[Washington Park Arboretum]]
* Please come and bring food! We'd love to see you.
|-
|colspan=2 style="font-size:85%; padding-top:15px;"|You're receiving this message because you are on [[Wikipedia:Meetup/Seattle/Invitees|our mailing list]]. To opt out of future mailings, please remove your name from the list.
|}
([[User talk:Buidhe|t]] &#183; [[Special:Contributions/Buidhe|c]]) '''[[User:buidhe|<span style="color: black">buidhe</span>]]''' 04:37, 1 August 2024 (UTC)
<!-- Message sent by User:Buidhe@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1234217114 -->
== Feedback requests from the Feedback Request Service ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Sports#rfc_2E0CECA|'''Wikipedia talk:WikiProject Sports''']] and &#32; [[Talk:Morocco#rfc_B5C588A|'''Talk:Morocco''']] on "Society, sports, and culture" request for comments, and &#32;at [[Talk:Toxicology#rfc_646EFFA|'''Talk:Toxicology'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 12:33, 29 August 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2023 Nashville school shooting#rfc_DCA51ED|'''Talk:2023 Nashville school shooting'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 02:32, 4 September 2024 (UTC)
== Saying Hi ==
Hi Groceryheist! Am I doing this whole talk page thing right? Let me know! By the way, I'm enjoying class so far.
[[User:KoiTheFish|KoiTheFish]] ([[User talk:KoiTheFish|talk]]) 23:08, 6 September 2024 (UTC)
:You got it! Thank you! [[User:Groceryheist|Groceryheist]] ([[User talk:Groceryheist#top|talk]]) 01:59, 7 September 2024 (UTC)
== Hello ==
Hi! Just wanted to say hello! Great class so far!
--[[User:Pinkdolphinbird|Pinkdolphinbird]] ([[User talk:Pinkdolphinbird|talk]]) 03:18, 7 September 2024 (UTC)
:Hi {{u|Pinkdolphinbird}}. Thanks for saying Hello! I'm glad you're enjoying the class. [[User:Groceryheist|Groceryheist]] ([[User talk:Groceryheist#top|talk]]) 03:28, 8 September 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2024 Kolkata rape and murder incident#rfc_7F245C4|'''Talk:2024 Kolkata rape and murder incident'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:30, 9 September 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:Notability#rfc_6E14382|'''Wikipedia talk:Notability'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:30, 10 September 2024 (UTC)
== Hello! ==
Hi groceryheist! Just wanted to say hi 👋 [[User:Fluffycatlover|Fluffycatlover]] ([[User talk:Fluffycatlover|talk]]) 20:41, 10 September 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Village pump (policy)#rfc_E1CEF9F|'''Wikipedia:Village pump (policy)'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:30, 18 October 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for comment/Grey Literature#rfc_402ED76|'''Wikipedia:Requests for comment/Grey Literature'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:31, 10 November 2024 (UTC)
== ArbCom 2024 Elections voter message ==
<div class="ivmbox " style="margin-bottom: 1em; border: 1px solid #a2a9b1; background-color: #fdf2d5; padding: 0.5em; display: flex; align-items: center; ">
<div class="ivmbox-image noresize" style="padding-left:1px; padding-right:0.5em;">[[File:Scale of justice 2.svg|40px]]</div>
<div class="ivmbox-text">
Hello! Voting in the '''[[WP:ACE2024|2024 Arbitration Committee elections]]''' is now open until 23:59 (UTC) on {{#time:l, j F Y|{{Arbitration Committee candidate/data|2024|end}}-1 day}}. All '''[[Wikipedia:Arbitration Committee Elections December 2024#Election timeline|eligible users]]''' are allowed to vote. Users with alternate accounts may only vote once.
The [[WP:ARBCOM|Arbitration Committee]] is the panel of editors responsible for conducting the [[Wikipedia:Arbitration|Wikipedia arbitration process]]. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose [[WP:BAN|site bans]], [[WP:TBAN|topic bans]], editing restrictions, and other measures needed to maintain our editing environment. The [[Wikipedia:Arbitration/Policy|arbitration policy]] describes the Committee's roles and responsibilities in greater detail.
If you wish to participate in the 2024 election, please review [[Wikipedia:Arbitration Committee Elections December 2024/Candidates|the candidates]] and submit your choices on the '''[[Special:SecurePoll/vote/{{Arbitration Committee candidate/data|2024|poll}}|voting page]]'''. If you no longer wish to receive these messages, you may add {{tlx|NoACEMM}} to your user talk page. <small>[[User:MediaWiki message delivery|MediaWiki message delivery]] ([[User talk:MediaWiki message delivery|talk]]) 00:13, 19 November 2024 (UTC)</small>
</div>
</div>
<!-- Message sent by User:Cyberpower678@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Arbitration_Committee_Elections_December_2024/Coordination/MM/02&oldid=1258243447 -->
== Seattle Wikipedia Day, January 11, 2025 ==
{|style="border-radius: 8px; padding:5px; width:90%; font-size:100%; border: 1px solid #20BF9F;" align="center"
|-
|rowspan=4|[[File:Wikipedia 20 birthday cake.jpg |left |290px |link=Wikipedia:Wikipedia Day]]
|style="text-align: center;" |{{large|''Seattle Wikipedia Day''}}<br/>
''Saturday afternoon, January 11, from 1:004:30pm PT at the Capitol Hill Meeting Room at [[Capitol Hill Branch Library]] (425 Harvard Ave. E., Seattle, WA 98102)''
[[Wikipedia:Wikipedia Day|Wikipedia Day]] celebrates the anniversary of the founding of Wikipedia. This year we will observe Wikipedia Day with an [[edit-a-thon]] to improve the [[Seattle]] and other articles important to [[WP:WikiProject Seattle|WikiProject Seattle]], such as [[History of Seattle]], [[Puget Sound]], [[Lake Union]], [[Lake Washington]], [[Pioneer Square, Seattle|Pioneer Square]], [[Seattle Center]], [[Tacoma, Washington|Tacoma]], and [[University of Washington]].
'''→''Sign up at [[Wikipedia:Meetup/Seattle/Wikipedia Day 2025]]!''←'''
You can also read and add to the [[Wikipedia talk:Meetup/Seattle/Wikipedia Day 2025|task list]].
Please remember to check our [[Wikipedia:Meetup/Seattle#Scheduled meetups in Seattle|Seattle meetup schedule]] each month for upcoming events.
|rowspan=4|[[File:Space Needle 1 2016-08-15.jpg |left |200px |link=Wikipedia:WikiProject Seattle]]
|}
<div style="text-align: center; font-size: x-small;">06:12, 1 January 2025 (UTC) To unsubscribe from future messages from [[Wikipedia:Meetup/Seattle]], please remove your name from [[Wikipedia:Meetup/Seattle/Invitees|this list]].</div>
<!-- Message sent by User:Peaceray@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1262356696 -->
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_8CACBB0|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 09:30, 18 February 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Aristides de Sousa Mendes#rfc_283E464|'''Talk:Aristides de Sousa Mendes'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 23:30, 10 March 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_3F06890|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:32, 12 March 2025 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Nonmetal#rfc_38273CE|'''Talk:Nonmetal'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 10:30, 6 April 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Tetris#rfc_46F74AF|'''Talk:Tetris'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 15 April 2025 (UTC)

View File

@@ -0,0 +1,260 @@
[[User_talk:Groceryheist/archive_1|Archive]]
<div style="left;" class="toclimit-3">__TOC__</div>
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for coment/Names of deceased trans people#rfc_2DE3507|'''Wikipedia:Requests for coment/Names of deceased trans people'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 14 December 2023 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Helms Amendment to the Foreign Assistance Act#rfc_AD213F1|'''Talk:Helms Amendment to the Foreign Assistance Act'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 16 December 2023 (UTC)
== Meetup in Seattle on 16 January 2024 ==
{| style="border: 5px solid #ABCDEF ; background-color: #FFF; padding:10px 15px 0"
|style="padding: 0; vertical-align: middle; height: 1.1em; font-size:130%" |'''[[Wikipedia:Meetup/Seattle|Seattle Wikimedia meetup]] |''' <span style="font-size:85%">16 January 2024</span>
|rowspan=3|[[File:Coffee cup in Hanoi, Vietnam.jpg|right|150px]]
|-
|
* What: Meetup to chat about Wikipedia and schedule an edit-a-thon
* When: Tuesday 16 January 2024, 5:457:45 pm
*Where: Distant Worlds Coffeehouse at 6401 Roosevelt Way NE, Seattle
* Please come! We'd love to see you.
|-
|colspan=2 style="font-size:85%; padding-top:15px;"|You're receiving this message because you are on [[Wikipedia:Meetup/Seattle/Invitees|our mailing list]]. To opt out of future mailings, please remove your name from the list.
|}
([[User talk:Buidhe|t]] &#183; [[Special:Contributions/Buidhe|c]]) '''[[User:buidhe|<span style="color: black">buidhe</span>]]''' 05:30, 27 December 2023 (UTC)
<!-- Message sent by User:Buidhe@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1189979177 -->
== Notification: Feedback request service is down ==
Hello, {{BASEPAGENAME}}
You may have noticed that you have not received any messages from the [[Wikipedia:Feedback request service]] for over a month. {{noping|Yapperbot}} appears to have stopped delivering messages. Until that can be resolved, please [[Help:Watchlist|watch]] pages that interest you, such as [[Wikipedia:Requests for comment/Wikipedia policies and guidelines]].
<small>This notification has been sent to you as you are subscribed to the [[WP:FRS|Feedback Request Service]].</small> - [[User:MediaWiki message delivery|MediaWiki message delivery]] ([[User talk:MediaWiki message delivery|talk]]) 08:11, 28 January 2024 (UTC)
<!-- MMS delivery requested by User:WhatamIdoing at Special:Permalink/1199910865#RFC notifications bot down -->
<!-- Message sent by User:DreamRimmer@enwiki using the list at https://en.wikipedia.org/w/index.php?title=User:WhatamIdoing/MassMessage&oldid=1199913358 -->
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2006#rfc_E808A5D|'''Talk:2006'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:31, 21 February 2024 (UTC)
== Seattle March 2024 Events ==
{|style="border-radius: 8px; padding:5px; width:90%; font-size:100%; border: 1px solid #20BF9F;" align="center"
|-
| rowspan=5 style="padding: 1em 1em;"|[[File:Seattle world fair stamp.jpg|150px|alt=Seattle world fair stamp]]
|style="text-align: center;"|''There are a couple of events this month that we hope are of interest to you.''
|-
|style="text-align: center; font-size: 125%; border: 3px dashed #20BF9F;"|Tuesday, March 12 2024 3pm 7pm (PDT), [[Wikipedia:Meetup/Seattle#Seattle articles edit-a-thon, Tuesday, March 12 2024 3pm 7pm (PDT)|'''Seattle articles edit-a-thon''']], Seattle Public Library University Branch
|-
|This edit-a-thon is based on importance or popularity (as determined by pageviews, see [[Wikipedia:WikiProject Seattle/Popular pages]]; or main articles, such as those linked in [[Template:Seattle]]; also see [[Wikipedia:Version 1.0 Editorial Team/Seattle articles by quality statistics]]).
|-
|style="text-align: center; font-size: 125%; border: 3px dashed #20BF9F;"|Tuesday March 19 2024 6pm 8pm (PDT), [[Wikipedia:Meetup/Seattle#Monthly meetup, Tuesday March 19 2024 6pm 8pm (PDT)|'''March monthly meetup''']], Little Oddfellows Café—''new location!!!''
|-
|Since our previous meeting place, Distant Worlds Café, now closes at 6:30pm, we will meet this month at Little Oddfellows café inside of Elliott Bay Book Company in Capitol Hill.
|}
<div style="text-align: center; font-size: small;">[[File:Cascadiawikimedians transparent Gill Sans 155px high.png|15px|link=:meta:Cascadia Wikimedians]] [[:meta:Cascadia Wikimedians|Cascadia Wikimedians]] placed this banner at 01:02, 9 March 2024 (UTC) by using the [[Wikipedia:Meetup/Portland/Participants]] list.<br/>To subscribe to or unsubscribe from messages from [[Wikipedia:Meetup/Portland]], please add or remove your name [[Wikipedia:Meetup/Portland/Participants|here]].</div>
<!-- Message sent by User:Peaceray@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1212029509 -->
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Whadjuk#rfc_BB5035A|'''Talk:Whadjuk'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 04:31, 17 March 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_4B249A8|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:30, 7 April 2024 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Weather/Tornadoes of XXXX criteria#rfc_467C7B2|'''Wikipedia talk:WikiProject Weather/Tornadoes of XXXX criteria'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 23 April 2024 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Havana syndrome#rfc_9FB246D|'''Talk:Havana syndrome'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 03:31, 25 April 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Aidi#rfc_9745B22|'''Talk:Aidi'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 24 May 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Baseball#rfc_10B411F|'''Wikipedia talk:WikiProject Baseball'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:31, 28 May 2024 (UTC)
== Seattle Wiknic 11 August 2024 ==
{| style="border: 5px solid #ABCDEF ; background-color: #FFF; padding:10px 15px 0"
|style="padding: 0; vertical-align: middle; height: 1.1em; font-size:130%" |'''[[Wikipedia:Meetup/Seattle/Wiknic/2024|2024 Seattle Wiknic]] |''' <span style="font-size:85%">11 August 2024</span>
|rowspan=3|[[File:Seattle Wiknic 2019 at Washington Park Arboretum.jpg|right|150px]]
|-
|
* What: Picnic to eat food and chat with other Wikimedians
* When: Sunday 11 August 2024, noon3 pm
* Where: picnic tables in the meadow area at [[Washington Park Arboretum]]
* Please come and bring food! We'd love to see you.
|-
|colspan=2 style="font-size:85%; padding-top:15px;"|You're receiving this message because you are on [[Wikipedia:Meetup/Seattle/Invitees|our mailing list]]. To opt out of future mailings, please remove your name from the list.
|}
([[User talk:Buidhe|t]] &#183; [[Special:Contributions/Buidhe|c]]) '''[[User:buidhe|<span style="color: black">buidhe</span>]]''' 04:37, 1 August 2024 (UTC)
<!-- Message sent by User:Buidhe@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1234217114 -->
== Feedback requests from the Feedback Request Service ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Sports#rfc_2E0CECA|'''Wikipedia talk:WikiProject Sports''']] and &#32; [[Talk:Morocco#rfc_B5C588A|'''Talk:Morocco''']] on "Society, sports, and culture" request for comments, and &#32;at [[Talk:Toxicology#rfc_646EFFA|'''Talk:Toxicology'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 12:33, 29 August 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2023 Nashville school shooting#rfc_DCA51ED|'''Talk:2023 Nashville school shooting'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 02:32, 4 September 2024 (UTC)
== Saying Hi ==
Hi Groceryheist! Am I doing this whole talk page thing right? Let me know! By the way, I'm enjoying class so far.
[[User:KoiTheFish|KoiTheFish]] ([[User talk:KoiTheFish|talk]]) 23:08, 6 September 2024 (UTC)
:You got it! Thank you! [[User:Groceryheist|Groceryheist]] ([[User talk:Groceryheist#top|talk]]) 01:59, 7 September 2024 (UTC)
== Hello ==
Hi! Just wanted to say hello! Great class so far!
--[[User:Pinkdolphinbird|Pinkdolphinbird]] ([[User talk:Pinkdolphinbird|talk]]) 03:18, 7 September 2024 (UTC)
:Hi {{u|Pinkdolphinbird}}. Thanks for saying Hello! I'm glad you're enjoying the class. [[User:Groceryheist|Groceryheist]] ([[User talk:Groceryheist#top|talk]]) 03:28, 8 September 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2024 Kolkata rape and murder incident#rfc_7F245C4|'''Talk:2024 Kolkata rape and murder incident'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:30, 9 September 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:Notability#rfc_6E14382|'''Wikipedia talk:Notability'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:30, 10 September 2024 (UTC)
== Hello! ==
Hi groceryheist! Just wanted to say hi 👋 [[User:Fluffycatlover|Fluffycatlover]] ([[User talk:Fluffycatlover|talk]]) 20:41, 10 September 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Village pump (policy)#rfc_E1CEF9F|'''Wikipedia:Village pump (policy)'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:30, 18 October 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for comment/Grey Literature#rfc_402ED76|'''Wikipedia:Requests for comment/Grey Literature'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:31, 10 November 2024 (UTC)
== ArbCom 2024 Elections voter message ==
<div class="ivmbox " style="margin-bottom: 1em; border: 1px solid #a2a9b1; background-color: #fdf2d5; padding: 0.5em; display: flex; align-items: center; ">
<div class="ivmbox-image noresize" style="padding-left:1px; padding-right:0.5em;">[[File:Scale of justice 2.svg|40px]]</div>
<div class="ivmbox-text">
Hello! Voting in the '''[[WP:ACE2024|2024 Arbitration Committee elections]]''' is now open until 23:59 (UTC) on {{#time:l, j F Y|{{Arbitration Committee candidate/data|2024|end}}-1 day}}. All '''[[Wikipedia:Arbitration Committee Elections December 2024#Election timeline|eligible users]]''' are allowed to vote. Users with alternate accounts may only vote once.
The [[WP:ARBCOM|Arbitration Committee]] is the panel of editors responsible for conducting the [[Wikipedia:Arbitration|Wikipedia arbitration process]]. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose [[WP:BAN|site bans]], [[WP:TBAN|topic bans]], editing restrictions, and other measures needed to maintain our editing environment. The [[Wikipedia:Arbitration/Policy|arbitration policy]] describes the Committee's roles and responsibilities in greater detail.
If you wish to participate in the 2024 election, please review [[Wikipedia:Arbitration Committee Elections December 2024/Candidates|the candidates]] and submit your choices on the '''[[Special:SecurePoll/vote/{{Arbitration Committee candidate/data|2024|poll}}|voting page]]'''. If you no longer wish to receive these messages, you may add {{tlx|NoACEMM}} to your user talk page. <small>[[User:MediaWiki message delivery|MediaWiki message delivery]] ([[User talk:MediaWiki message delivery|talk]]) 00:13, 19 November 2024 (UTC)</small>
</div>
</div>
<!-- Message sent by User:Cyberpower678@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Arbitration_Committee_Elections_December_2024/Coordination/MM/02&oldid=1258243447 -->
== Seattle Wikipedia Day, January 11, 2025 ==
{|style="border-radius: 8px; padding:5px; width:90%; font-size:100%; border: 1px solid #20BF9F;" align="center"
|-
|rowspan=4|[[File:Wikipedia 20 birthday cake.jpg |left |290px |link=Wikipedia:Wikipedia Day]]
|style="text-align: center;" |{{large|''Seattle Wikipedia Day''}}<br/>
''Saturday afternoon, January 11, from 1:004:30pm PT at the Capitol Hill Meeting Room at [[Capitol Hill Branch Library]] (425 Harvard Ave. E., Seattle, WA 98102)''
[[Wikipedia:Wikipedia Day|Wikipedia Day]] celebrates the anniversary of the founding of Wikipedia. This year we will observe Wikipedia Day with an [[edit-a-thon]] to improve the [[Seattle]] and other articles important to [[WP:WikiProject Seattle|WikiProject Seattle]], such as [[History of Seattle]], [[Puget Sound]], [[Lake Union]], [[Lake Washington]], [[Pioneer Square, Seattle|Pioneer Square]], [[Seattle Center]], [[Tacoma, Washington|Tacoma]], and [[University of Washington]].
'''→''Sign up at [[Wikipedia:Meetup/Seattle/Wikipedia Day 2025]]!''←'''
You can also read and add to the [[Wikipedia talk:Meetup/Seattle/Wikipedia Day 2025|task list]].
Please remember to check our [[Wikipedia:Meetup/Seattle#Scheduled meetups in Seattle|Seattle meetup schedule]] each month for upcoming events.
|rowspan=4|[[File:Space Needle 1 2016-08-15.jpg |left |200px |link=Wikipedia:WikiProject Seattle]]
|}
<div style="text-align: center; font-size: x-small;">06:12, 1 January 2025 (UTC) To unsubscribe from future messages from [[Wikipedia:Meetup/Seattle]], please remove your name from [[Wikipedia:Meetup/Seattle/Invitees|this list]].</div>
<!-- Message sent by User:Peaceray@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1262356696 -->
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_8CACBB0|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 09:30, 18 February 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Aristides de Sousa Mendes#rfc_283E464|'''Talk:Aristides de Sousa Mendes'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 23:30, 10 March 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_3F06890|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:32, 12 March 2025 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Nonmetal#rfc_38273CE|'''Talk:Nonmetal'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 10:30, 6 April 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Tetris#rfc_46F74AF|'''Talk:Tetris'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 15 April 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Muffin#rfc_A0750CE|'''Talk:Muffin'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 13:46, 12 June 2025 (UTC)

View File

@@ -0,0 +1,256 @@
[[User_talk:Groceryheist/archive_1|Archive]]
<div style="left;" class="toclimit-3">__TOC__</div>
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Helms Amendment to the Foreign Assistance Act#rfc_AD213F1|'''Talk:Helms Amendment to the Foreign Assistance Act'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 16 December 2023 (UTC)
== Meetup in Seattle on 16 January 2024 ==
{| style="border: 5px solid #ABCDEF ; background-color: #FFF; padding:10px 15px 0"
|style="padding: 0; vertical-align: middle; height: 1.1em; font-size:130%" |'''[[Wikipedia:Meetup/Seattle|Seattle Wikimedia meetup]] |''' <span style="font-size:85%">16 January 2024</span>
|rowspan=3|[[File:Coffee cup in Hanoi, Vietnam.jpg|right|150px]]
|-
|
* What: Meetup to chat about Wikipedia and schedule an edit-a-thon
* When: Tuesday 16 January 2024, 5:457:45 pm
*Where: Distant Worlds Coffeehouse at 6401 Roosevelt Way NE, Seattle
* Please come! We'd love to see you.
|-
|colspan=2 style="font-size:85%; padding-top:15px;"|You're receiving this message because you are on [[Wikipedia:Meetup/Seattle/Invitees|our mailing list]]. To opt out of future mailings, please remove your name from the list.
|}
([[User talk:Buidhe|t]] &#183; [[Special:Contributions/Buidhe|c]]) '''[[User:buidhe|<span style="color: black">buidhe</span>]]''' 05:30, 27 December 2023 (UTC)
<!-- Message sent by User:Buidhe@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1189979177 -->
== Notification: Feedback request service is down ==
Hello, {{BASEPAGENAME}}
You may have noticed that you have not received any messages from the [[Wikipedia:Feedback request service]] for over a month. {{noping|Yapperbot}} appears to have stopped delivering messages. Until that can be resolved, please [[Help:Watchlist|watch]] pages that interest you, such as [[Wikipedia:Requests for comment/Wikipedia policies and guidelines]].
<small>This notification has been sent to you as you are subscribed to the [[WP:FRS|Feedback Request Service]].</small> - [[User:MediaWiki message delivery|MediaWiki message delivery]] ([[User talk:MediaWiki message delivery|talk]]) 08:11, 28 January 2024 (UTC)
<!-- MMS delivery requested by User:WhatamIdoing at Special:Permalink/1199910865#RFC notifications bot down -->
<!-- Message sent by User:DreamRimmer@enwiki using the list at https://en.wikipedia.org/w/index.php?title=User:WhatamIdoing/MassMessage&oldid=1199913358 -->
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2006#rfc_E808A5D|'''Talk:2006'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:31, 21 February 2024 (UTC)
== Seattle March 2024 Events ==
{|style="border-radius: 8px; padding:5px; width:90%; font-size:100%; border: 1px solid #20BF9F;" align="center"
|-
| rowspan=5 style="padding: 1em 1em;"|[[File:Seattle world fair stamp.jpg|150px|alt=Seattle world fair stamp]]
|style="text-align: center;"|''There are a couple of events this month that we hope are of interest to you.''
|-
|style="text-align: center; font-size: 125%; border: 3px dashed #20BF9F;"|Tuesday, March 12 2024 3pm 7pm (PDT), [[Wikipedia:Meetup/Seattle#Seattle articles edit-a-thon, Tuesday, March 12 2024 3pm 7pm (PDT)|'''Seattle articles edit-a-thon''']], Seattle Public Library University Branch
|-
|This edit-a-thon is based on importance or popularity (as determined by pageviews, see [[Wikipedia:WikiProject Seattle/Popular pages]]; or main articles, such as those linked in [[Template:Seattle]]; also see [[Wikipedia:Version 1.0 Editorial Team/Seattle articles by quality statistics]]).
|-
|style="text-align: center; font-size: 125%; border: 3px dashed #20BF9F;"|Tuesday March 19 2024 6pm 8pm (PDT), [[Wikipedia:Meetup/Seattle#Monthly meetup, Tuesday March 19 2024 6pm 8pm (PDT)|'''March monthly meetup''']], Little Oddfellows Café—''new location!!!''
|-
|Since our previous meeting place, Distant Worlds Café, now closes at 6:30pm, we will meet this month at Little Oddfellows café inside of Elliott Bay Book Company in Capitol Hill.
|}
<div style="text-align: center; font-size: small;">[[File:Cascadiawikimedians transparent Gill Sans 155px high.png|15px|link=:meta:Cascadia Wikimedians]] [[:meta:Cascadia Wikimedians|Cascadia Wikimedians]] placed this banner at 01:02, 9 March 2024 (UTC) by using the [[Wikipedia:Meetup/Portland/Participants]] list.<br/>To subscribe to or unsubscribe from messages from [[Wikipedia:Meetup/Portland]], please add or remove your name [[Wikipedia:Meetup/Portland/Participants|here]].</div>
<!-- Message sent by User:Peaceray@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1212029509 -->
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Whadjuk#rfc_BB5035A|'''Talk:Whadjuk'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 04:31, 17 March 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_4B249A8|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:30, 7 April 2024 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Weather/Tornadoes of XXXX criteria#rfc_467C7B2|'''Wikipedia talk:WikiProject Weather/Tornadoes of XXXX criteria'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 23 April 2024 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Havana syndrome#rfc_9FB246D|'''Talk:Havana syndrome'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 03:31, 25 April 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Aidi#rfc_9745B22|'''Talk:Aidi'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 24 May 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Baseball#rfc_10B411F|'''Wikipedia talk:WikiProject Baseball'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:31, 28 May 2024 (UTC)
== Seattle Wiknic 11 August 2024 ==
{| style="border: 5px solid #ABCDEF ; background-color: #FFF; padding:10px 15px 0"
|style="padding: 0; vertical-align: middle; height: 1.1em; font-size:130%" |'''[[Wikipedia:Meetup/Seattle/Wiknic/2024|2024 Seattle Wiknic]] |''' <span style="font-size:85%">11 August 2024</span>
|rowspan=3|[[File:Seattle Wiknic 2019 at Washington Park Arboretum.jpg|right|150px]]
|-
|
* What: Picnic to eat food and chat with other Wikimedians
* When: Sunday 11 August 2024, noon3 pm
* Where: picnic tables in the meadow area at [[Washington Park Arboretum]]
* Please come and bring food! We'd love to see you.
|-
|colspan=2 style="font-size:85%; padding-top:15px;"|You're receiving this message because you are on [[Wikipedia:Meetup/Seattle/Invitees|our mailing list]]. To opt out of future mailings, please remove your name from the list.
|}
([[User talk:Buidhe|t]] &#183; [[Special:Contributions/Buidhe|c]]) '''[[User:buidhe|<span style="color: black">buidhe</span>]]''' 04:37, 1 August 2024 (UTC)
<!-- Message sent by User:Buidhe@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1234217114 -->
== Feedback requests from the Feedback Request Service ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Sports#rfc_2E0CECA|'''Wikipedia talk:WikiProject Sports''']] and &#32; [[Talk:Morocco#rfc_B5C588A|'''Talk:Morocco''']] on "Society, sports, and culture" request for comments, and &#32;at [[Talk:Toxicology#rfc_646EFFA|'''Talk:Toxicology'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 12:33, 29 August 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2023 Nashville school shooting#rfc_DCA51ED|'''Talk:2023 Nashville school shooting'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 02:32, 4 September 2024 (UTC)
== Saying Hi ==
Hi Groceryheist! Am I doing this whole talk page thing right? Let me know! By the way, I'm enjoying class so far.
[[User:KoiTheFish|KoiTheFish]] ([[User talk:KoiTheFish|talk]]) 23:08, 6 September 2024 (UTC)
:You got it! Thank you! [[User:Groceryheist|Groceryheist]] ([[User talk:Groceryheist#top|talk]]) 01:59, 7 September 2024 (UTC)
== Hello ==
Hi! Just wanted to say hello! Great class so far!
--[[User:Pinkdolphinbird|Pinkdolphinbird]] ([[User talk:Pinkdolphinbird|talk]]) 03:18, 7 September 2024 (UTC)
:Hi {{u|Pinkdolphinbird}}. Thanks for saying Hello! I'm glad you're enjoying the class. [[User:Groceryheist|Groceryheist]] ([[User talk:Groceryheist#top|talk]]) 03:28, 8 September 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2024 Kolkata rape and murder incident#rfc_7F245C4|'''Talk:2024 Kolkata rape and murder incident'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:30, 9 September 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:Notability#rfc_6E14382|'''Wikipedia talk:Notability'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:30, 10 September 2024 (UTC)
== Hello! ==
Hi groceryheist! Just wanted to say hi 👋 [[User:Fluffycatlover|Fluffycatlover]] ([[User talk:Fluffycatlover|talk]]) 20:41, 10 September 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Village pump (policy)#rfc_E1CEF9F|'''Wikipedia:Village pump (policy)'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:30, 18 October 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for comment/Grey Literature#rfc_402ED76|'''Wikipedia:Requests for comment/Grey Literature'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:31, 10 November 2024 (UTC)
== ArbCom 2024 Elections voter message ==
<div class="ivmbox " style="margin-bottom: 1em; border: 1px solid #a2a9b1; background-color: #fdf2d5; padding: 0.5em; display: flex; align-items: center; ">
<div class="ivmbox-image noresize" style="padding-left:1px; padding-right:0.5em;">[[File:Scale of justice 2.svg|40px]]</div>
<div class="ivmbox-text">
Hello! Voting in the '''[[WP:ACE2024|2024 Arbitration Committee elections]]''' is now open until 23:59 (UTC) on {{#time:l, j F Y|{{Arbitration Committee candidate/data|2024|end}}-1 day}}. All '''[[Wikipedia:Arbitration Committee Elections December 2024#Election timeline|eligible users]]''' are allowed to vote. Users with alternate accounts may only vote once.
The [[WP:ARBCOM|Arbitration Committee]] is the panel of editors responsible for conducting the [[Wikipedia:Arbitration|Wikipedia arbitration process]]. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose [[WP:BAN|site bans]], [[WP:TBAN|topic bans]], editing restrictions, and other measures needed to maintain our editing environment. The [[Wikipedia:Arbitration/Policy|arbitration policy]] describes the Committee's roles and responsibilities in greater detail.
If you wish to participate in the 2024 election, please review [[Wikipedia:Arbitration Committee Elections December 2024/Candidates|the candidates]] and submit your choices on the '''[[Special:SecurePoll/vote/{{Arbitration Committee candidate/data|2024|poll}}|voting page]]'''. If you no longer wish to receive these messages, you may add {{tlx|NoACEMM}} to your user talk page. <small>[[User:MediaWiki message delivery|MediaWiki message delivery]] ([[User talk:MediaWiki message delivery|talk]]) 00:13, 19 November 2024 (UTC)</small>
</div>
</div>
<!-- Message sent by User:Cyberpower678@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Arbitration_Committee_Elections_December_2024/Coordination/MM/02&oldid=1258243447 -->
== Seattle Wikipedia Day, January 11, 2025 ==
{|style="border-radius: 8px; padding:5px; width:90%; font-size:100%; border: 1px solid #20BF9F;" align="center"
|-
|rowspan=4|[[File:Wikipedia 20 birthday cake.jpg |left |290px |link=Wikipedia:Wikipedia Day]]
|style="text-align: center;" |{{large|''Seattle Wikipedia Day''}}<br/>
''Saturday afternoon, January 11, from 1:004:30pm PT at the Capitol Hill Meeting Room at [[Capitol Hill Branch Library]] (425 Harvard Ave. E., Seattle, WA 98102)''
[[Wikipedia:Wikipedia Day|Wikipedia Day]] celebrates the anniversary of the founding of Wikipedia. This year we will observe Wikipedia Day with an [[edit-a-thon]] to improve the [[Seattle]] and other articles important to [[WP:WikiProject Seattle|WikiProject Seattle]], such as [[History of Seattle]], [[Puget Sound]], [[Lake Union]], [[Lake Washington]], [[Pioneer Square, Seattle|Pioneer Square]], [[Seattle Center]], [[Tacoma, Washington|Tacoma]], and [[University of Washington]].
'''→''Sign up at [[Wikipedia:Meetup/Seattle/Wikipedia Day 2025]]!''←'''
You can also read and add to the [[Wikipedia talk:Meetup/Seattle/Wikipedia Day 2025|task list]].
Please remember to check our [[Wikipedia:Meetup/Seattle#Scheduled meetups in Seattle|Seattle meetup schedule]] each month for upcoming events.
|rowspan=4|[[File:Space Needle 1 2016-08-15.jpg |left |200px |link=Wikipedia:WikiProject Seattle]]
|}
<div style="text-align: center; font-size: x-small;">06:12, 1 January 2025 (UTC) To unsubscribe from future messages from [[Wikipedia:Meetup/Seattle]], please remove your name from [[Wikipedia:Meetup/Seattle/Invitees|this list]].</div>
<!-- Message sent by User:Peaceray@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1262356696 -->
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_8CACBB0|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 09:30, 18 February 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Aristides de Sousa Mendes#rfc_283E464|'''Talk:Aristides de Sousa Mendes'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 23:30, 10 March 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_3F06890|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:32, 12 March 2025 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Nonmetal#rfc_38273CE|'''Talk:Nonmetal'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 10:30, 6 April 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Tetris#rfc_46F74AF|'''Talk:Tetris'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 15 April 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Muffin#rfc_A0750CE|'''Talk:Muffin'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 13:46, 12 June 2025 (UTC)

View File

@@ -0,0 +1,261 @@
[[User_talk:Groceryheist/archive_1|Archive]]
<div style="left;" class="toclimit-3">__TOC__</div>
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Tetris#rfc_46F74AF|'''Talk:Tetris'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 15 April 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Helms Amendment to the Foreign Assistance Act#rfc_AD213F1|'''Talk:Helms Amendment to the Foreign Assistance Act'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 16 December 2023 (UTC)
== Meetup in Seattle on 16 January 2024 ==
{| style="border: 5px solid #ABCDEF ; background-color: #FFF; padding:10px 15px 0"
|style="padding: 0; vertical-align: middle; height: 1.1em; font-size:130%" |'''[[Wikipedia:Meetup/Seattle|Seattle Wikimedia meetup]] |''' <span style="font-size:85%">16 January 2024</span>
|rowspan=3|[[File:Coffee cup in Hanoi, Vietnam.jpg|right|150px]]
|-
|
* What: Meetup to chat about Wikipedia and schedule an edit-a-thon
* When: Tuesday 16 January 2024, 5:457:45 pm
*Where: Distant Worlds Coffeehouse at 6401 Roosevelt Way NE, Seattle
* Please come! We'd love to see you.
|-
|colspan=2 style="font-size:85%; padding-top:15px;"|You're receiving this message because you are on [[Wikipedia:Meetup/Seattle/Invitees|our mailing list]]. To opt out of future mailings, please remove your name from the list.
|}
([[User talk:Buidhe|t]] &#183; [[Special:Contributions/Buidhe|c]]) '''[[User:buidhe|<span style="color: black">buidhe</span>]]''' 05:30, 27 December 2023 (UTC)
<!-- Message sent by User:Buidhe@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1189979177 -->
== Notification: Feedback request service is down ==
Hello, {{BASEPAGENAME}}
You may have noticed that you have not received any messages from the [[Wikipedia:Feedback request service]] for over a month. {{noping|Yapperbot}} appears to have stopped delivering messages. Until that can be resolved, please [[Help:Watchlist|watch]] pages that interest you, such as [[Wikipedia:Requests for comment/Wikipedia policies and guidelines]].
<small>This notification has been sent to you as you are subscribed to the [[WP:FRS|Feedback Request Service]].</small> - [[User:MediaWiki message delivery|MediaWiki message delivery]] ([[User talk:MediaWiki message delivery|talk]]) 08:11, 28 January 2024 (UTC)
<!-- MMS delivery requested by User:WhatamIdoing at Special:Permalink/1199910865#RFC notifications bot down -->
<!-- Message sent by User:DreamRimmer@enwiki using the list at https://en.wikipedia.org/w/index.php?title=User:WhatamIdoing/MassMessage&oldid=1199913358 -->
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2006#rfc_E808A5D|'''Talk:2006'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:31, 21 February 2024 (UTC)
== Seattle March 2024 Events ==
{|style="border-radius: 8px; padding:5px; width:90%; font-size:100%; border: 1px solid #20BF9F;" align="center"
|-
| rowspan=5 style="padding: 1em 1em;"|[[File:Seattle world fair stamp.jpg|150px|alt=Seattle world fair stamp]]
|style="text-align: center;"|''There are a couple of events this month that we hope are of interest to you.''
|-
|style="text-align: center; font-size: 125%; border: 3px dashed #20BF9F;"|Tuesday, March 12 2024 3pm 7pm (PDT), [[Wikipedia:Meetup/Seattle#Seattle articles edit-a-thon, Tuesday, March 12 2024 3pm 7pm (PDT)|'''Seattle articles edit-a-thon''']], Seattle Public Library University Branch
|-
|This edit-a-thon is based on importance or popularity (as determined by pageviews, see [[Wikipedia:WikiProject Seattle/Popular pages]]; or main articles, such as those linked in [[Template:Seattle]]; also see [[Wikipedia:Version 1.0 Editorial Team/Seattle articles by quality statistics]]).
|-
|style="text-align: center; font-size: 125%; border: 3px dashed #20BF9F;"|Tuesday March 19 2024 6pm 8pm (PDT), [[Wikipedia:Meetup/Seattle#Monthly meetup, Tuesday March 19 2024 6pm 8pm (PDT)|'''March monthly meetup''']], Little Oddfellows Café—''new location!!!''
|-
|Since our previous meeting place, Distant Worlds Café, now closes at 6:30pm, we will meet this month at Little Oddfellows café inside of Elliott Bay Book Company in Capitol Hill.
|}
<div style="text-align: center; font-size: small;">[[File:Cascadiawikimedians transparent Gill Sans 155px high.png|15px|link=:meta:Cascadia Wikimedians]] [[:meta:Cascadia Wikimedians|Cascadia Wikimedians]] placed this banner at 01:02, 9 March 2024 (UTC) by using the [[Wikipedia:Meetup/Portland/Participants]] list.<br/>To subscribe to or unsubscribe from messages from [[Wikipedia:Meetup/Portland]], please add or remove your name [[Wikipedia:Meetup/Portland/Participants|here]].</div>
<!-- Message sent by User:Peaceray@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1212029509 -->
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Whadjuk#rfc_BB5035A|'''Talk:Whadjuk'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 04:31, 17 March 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_4B249A8|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:30, 7 April 2024 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Weather/Tornadoes of XXXX criteria#rfc_467C7B2|'''Wikipedia talk:WikiProject Weather/Tornadoes of XXXX criteria'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 23 April 2024 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Havana syndrome#rfc_9FB246D|'''Talk:Havana syndrome'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 03:31, 25 April 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Aidi#rfc_9745B22|'''Talk:Aidi'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 24 May 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Baseball#rfc_10B411F|'''Wikipedia talk:WikiProject Baseball'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:31, 28 May 2024 (UTC)
== Seattle Wiknic 11 August 2024 ==
{| style="border: 5px solid #ABCDEF ; background-color: #FFF; padding:10px 15px 0"
|style="padding: 0; vertical-align: middle; height: 1.1em; font-size:130%" |'''[[Wikipedia:Meetup/Seattle/Wiknic/2024|2024 Seattle Wiknic]] |''' <span style="font-size:85%">11 August 2024</span>
|rowspan=3|[[File:Seattle Wiknic 2019 at Washington Park Arboretum.jpg|right|150px]]
|-
|
* What: Picnic to eat food and chat with other Wikimedians
* When: Sunday 11 August 2024, noon3 pm
* Where: picnic tables in the meadow area at [[Washington Park Arboretum]]
* Please come and bring food! We'd love to see you.
|-
|colspan=2 style="font-size:85%; padding-top:15px;"|You're receiving this message because you are on [[Wikipedia:Meetup/Seattle/Invitees|our mailing list]]. To opt out of future mailings, please remove your name from the list.
|}
([[User talk:Buidhe|t]] &#183; [[Special:Contributions/Buidhe|c]]) '''[[User:buidhe|<span style="color: black">buidhe</span>]]''' 04:37, 1 August 2024 (UTC)
<!-- Message sent by User:Buidhe@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1234217114 -->
== Feedback requests from the Feedback Request Service ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Sports#rfc_2E0CECA|'''Wikipedia talk:WikiProject Sports''']] and &#32; [[Talk:Morocco#rfc_B5C588A|'''Talk:Morocco''']] on "Society, sports, and culture" request for comments, and &#32;at [[Talk:Toxicology#rfc_646EFFA|'''Talk:Toxicology'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 12:33, 29 August 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2023 Nashville school shooting#rfc_DCA51ED|'''Talk:2023 Nashville school shooting'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 02:32, 4 September 2024 (UTC)
== Saying Hi ==
Hi Groceryheist! Am I doing this whole talk page thing right? Let me know! By the way, I'm enjoying class so far.
[[User:KoiTheFish|KoiTheFish]] ([[User talk:KoiTheFish|talk]]) 23:08, 6 September 2024 (UTC)
:You got it! Thank you! [[User:Groceryheist|Groceryheist]] ([[User talk:Groceryheist#top|talk]]) 01:59, 7 September 2024 (UTC)
== Hello ==
Hi! Just wanted to say hello! Great class so far!
--[[User:Pinkdolphinbird|Pinkdolphinbird]] ([[User talk:Pinkdolphinbird|talk]]) 03:18, 7 September 2024 (UTC)
:Hi {{u|Pinkdolphinbird}}. Thanks for saying Hello! I'm glad you're enjoying the class. [[User:Groceryheist|Groceryheist]] ([[User talk:Groceryheist#top|talk]]) 03:28, 8 September 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2024 Kolkata rape and murder incident#rfc_7F245C4|'''Talk:2024 Kolkata rape and murder incident'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:30, 9 September 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:Notability#rfc_6E14382|'''Wikipedia talk:Notability'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:30, 10 September 2024 (UTC)
== Hello! ==
Hi groceryheist! Just wanted to say hi 👋 [[User:Fluffycatlover|Fluffycatlover]] ([[User talk:Fluffycatlover|talk]]) 20:41, 10 September 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Village pump (policy)#rfc_E1CEF9F|'''Wikipedia:Village pump (policy)'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:30, 18 October 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for comment/Grey Literature#rfc_402ED76|'''Wikipedia:Requests for comment/Grey Literature'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:31, 10 November 2024 (UTC)
== ArbCom 2024 Elections voter message ==
<div class="ivmbox " style="margin-bottom: 1em; border: 1px solid #a2a9b1; background-color: #fdf2d5; padding: 0.5em; display: flex; align-items: center; ">
<div class="ivmbox-image noresize" style="padding-left:1px; padding-right:0.5em;">[[File:Scale of justice 2.svg|40px]]</div>
<div class="ivmbox-text">
Hello! Voting in the '''[[WP:ACE2024|2024 Arbitration Committee elections]]''' is now open until 23:59 (UTC) on {{#time:l, j F Y|{{Arbitration Committee candidate/data|2024|end}}-1 day}}. All '''[[Wikipedia:Arbitration Committee Elections December 2024#Election timeline|eligible users]]''' are allowed to vote. Users with alternate accounts may only vote once.
The [[WP:ARBCOM|Arbitration Committee]] is the panel of editors responsible for conducting the [[Wikipedia:Arbitration|Wikipedia arbitration process]]. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose [[WP:BAN|site bans]], [[WP:TBAN|topic bans]], editing restrictions, and other measures needed to maintain our editing environment. The [[Wikipedia:Arbitration/Policy|arbitration policy]] describes the Committee's roles and responsibilities in greater detail.
If you wish to participate in the 2024 election, please review [[Wikipedia:Arbitration Committee Elections December 2024/Candidates|the candidates]] and submit your choices on the '''[[Special:SecurePoll/vote/{{Arbitration Committee candidate/data|2024|poll}}|voting page]]'''. If you no longer wish to receive these messages, you may add {{tlx|NoACEMM}} to your user talk page. <small>[[User:MediaWiki message delivery|MediaWiki message delivery]] ([[User talk:MediaWiki message delivery|talk]]) 00:13, 19 November 2024 (UTC)</small>
</div>
</div>
<!-- Message sent by User:Cyberpower678@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Arbitration_Committee_Elections_December_2024/Coordination/MM/02&oldid=1258243447 -->
== Seattle Wikipedia Day, January 11, 2025 ==
{|style="border-radius: 8px; padding:5px; width:90%; font-size:100%; border: 1px solid #20BF9F;" align="center"
|-
|rowspan=4|[[File:Wikipedia 20 birthday cake.jpg |left |290px |link=Wikipedia:Wikipedia Day]]
|style="text-align: center;" |{{large|''Seattle Wikipedia Day''}}<br/>
''Saturday afternoon, January 11, from 1:004:30pm PT at the Capitol Hill Meeting Room at [[Capitol Hill Branch Library]] (425 Harvard Ave. E., Seattle, WA 98102)''
[[Wikipedia:Wikipedia Day|Wikipedia Day]] celebrates the anniversary of the founding of Wikipedia. This year we will observe Wikipedia Day with an [[edit-a-thon]] to improve the [[Seattle]] and other articles important to [[WP:WikiProject Seattle|WikiProject Seattle]], such as [[History of Seattle]], [[Puget Sound]], [[Lake Union]], [[Lake Washington]], [[Pioneer Square, Seattle|Pioneer Square]], [[Seattle Center]], [[Tacoma, Washington|Tacoma]], and [[University of Washington]].
'''→''Sign up at [[Wikipedia:Meetup/Seattle/Wikipedia Day 2025]]!''←'''
You can also read and add to the [[Wikipedia talk:Meetup/Seattle/Wikipedia Day 2025|task list]].
Please remember to check our [[Wikipedia:Meetup/Seattle#Scheduled meetups in Seattle|Seattle meetup schedule]] each month for upcoming events.
|rowspan=4|[[File:Space Needle 1 2016-08-15.jpg |left |200px |link=Wikipedia:WikiProject Seattle]]
|}
<div style="text-align: center; font-size: x-small;">06:12, 1 January 2025 (UTC) To unsubscribe from future messages from [[Wikipedia:Meetup/Seattle]], please remove your name from [[Wikipedia:Meetup/Seattle/Invitees|this list]].</div>
<!-- Message sent by User:Peaceray@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1262356696 -->
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_8CACBB0|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 09:30, 18 February 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Aristides de Sousa Mendes#rfc_283E464|'''Talk:Aristides de Sousa Mendes'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 23:30, 10 March 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_3F06890|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:32, 12 March 2025 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Nonmetal#rfc_38273CE|'''Talk:Nonmetal'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 10:30, 6 April 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for coment/Names of deceased trans people#rfc_2DE3507|'''Wikipedia:Requests for coment/Names of deceased trans people'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 14 December 2023 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Muffin#rfc_A0750CE|'''Talk:Muffin'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 13:46, 12 June 2025 (UTC)

View File

@@ -0,0 +1,260 @@
[[User_talk:Groceryheist/archive_1|Archive]]
<div style="left;" class="toclimit-3">__TOC__</div>
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for coment/Names of deceased trans people#rfc_2DE3507|'''Wikipedia:Requests for coment/Names of deceased trans people'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 14 December 2023 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Helms Amendment to the Foreign Assistance Act#rfc_AD213F1|'''Talk:Helms Amendment to the Foreign Assistance Act'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 16 December 2023 (UTC)
== Meetup in Seattle on 16 January 2024 ==
{| style="border: 5px solid #ABCDEF ; background-color: #FFF; padding:10px 15px 0"
|style="padding: 0; vertical-align: middle; height: 1.1em; font-size:130%" |'''[[Wikipedia:Meetup/Seattle|Seattle Wikimedia meetup]] |''' <span style="font-size:85%">16 January 2024</span>
|rowspan=3|[[File:Coffee cup in Hanoi, Vietnam.jpg|right|150px]]
|-
|
* What: Meetup to chat about Wikipedia and schedule an edit-a-thon
* When: Tuesday 16 January 2024, 5:457:45 pm
*Where: Distant Worlds Coffeehouse at 6401 Roosevelt Way NE, Seattle
* Please come! We'd love to see you.
|-
|colspan=2 style="font-size:85%; padding-top:15px;"|You're receiving this message because you are on [[Wikipedia:Meetup/Seattle/Invitees|our mailing list]]. To opt out of future mailings, please remove your name from the list.
|}
([[User talk:Buidhe|t]] &#183; [[Special:Contributions/Buidhe|c]]) '''[[User:buidhe|<span style="color: black">buidhe</span>]]''' 05:30, 27 December 2023 (UTC)
<!-- Message sent by User:Buidhe@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1189979177 -->
== Notification: Feedback request service is down ==
Hello, {{BASEPAGENAME}}
<small>This notification has been sent to you as you are subscribed to the [[WP:FRS|Feedback Request Service]].</small> - [[User:MediaWiki message delivery|MediaWiki message delivery]] ([[User talk:MediaWiki message delivery|talk]]) 08:11, 28 January 2024 (UTC)
You have probably not noticed that you have not received any messages from the [[Wikipedia:Feedback request service]] for over a month. {{noping|Yapperbot}} appears to have stopped delivering messages,whoops. Please just [[Help:Watchlist|watch]] pages that interest you, such as [[Wikipedia:Requests for comment/Wikipedia policies and guidelines]].
<!-- MMS delivery requested by User:WhatamIdoing at Special:Permalink/1199910865#RFC notifications bot down -->
<!-- Message sent by User:DreamRimmer@enwiki using the list at https://en.wikipedia.org/w/index.php?title=User:WhatamIdoing/MassMessage&oldid=1199913358 -->
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2006#rfc_E808A5D|'''Talk:2006'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:31, 21 February 2024 (UTC)
== Seattle March 2024 Events ==
{|style="border-radius: 8px; padding:5px; width:90%; font-size:100%; border: 1px solid #20BF9F;" align="center"
|-
| rowspan=5 style="padding: 1em 1em;"|[[File:Seattle world fair stamp.jpg|150px|alt=Seattle world fair stamp]]
|style="text-align: center;"|''There are a couple of events this month that we hope are of interest to you.''
|-
|style="text-align: center; font-size: 125%; border: 3px dashed #20BF9F;"|Tuesday, March 12 2024 3pm 7pm (PDT), [[Wikipedia:Meetup/Seattle#Seattle articles edit-a-thon, Tuesday, March 12 2024 3pm 7pm (PDT)|'''Seattle articles edit-a-thon''']], Seattle Public Library University Branch
|-
|This edit-a-thon is based on importance or popularity (as determined by pageviews, see [[Wikipedia:WikiProject Seattle/Popular pages]]; or main articles, such as those linked in [[Template:Seattle]]; also see [[Wikipedia:Version 1.0 Editorial Team/Seattle articles by quality statistics]]).
|-
|style="text-align: center; font-size: 125%; border: 3px dashed #20BF9F;"|Tuesday March 19 2024 6pm 8pm (PDT), [[Wikipedia:Meetup/Seattle#Monthly meetup, Tuesday March 19 2024 6pm 8pm (PDT)|'''March monthly meetup''']], Little Oddfellows Café—''new location!!!''
|-
|Since our previous meeting place, Distant Worlds Café, now closes at 6:30pm, we will meet this month at Little Oddfellows café inside of Elliott Bay Book Company in Capitol Hill.
|}
<div style="text-align: center; font-size: small;">[[File:Cascadiawikimedians transparent Gill Sans 155px high.png|15px|link=:meta:Cascadia Wikimedians]] [[:meta:Cascadia Wikimedians|Cascadia Wikimedians]] placed this banner at 01:02, 9 March 2024 (UTC) by using the [[Wikipedia:Meetup/Portland/Participants]] list.<br/>To subscribe to or unsubscribe from messages from [[Wikipedia:Meetup/Portland]], please add or remove your name [[Wikipedia:Meetup/Portland/Participants|here]].</div>
<!-- Message sent by User:Peaceray@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1212029509 -->
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Whadjuk#rfc_BB5035A|'''Talk:Whadjuk'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 04:31, 17 March 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_4B249A8|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:30, 7 April 2024 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Weather/Tornadoes of XXXX criteria#rfc_467C7B2|'''Wikipedia talk:WikiProject Weather/Tornadoes of XXXX criteria'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 23 April 2024 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Havana syndrome#rfc_9FB246D|'''Talk:Havana syndrome'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 03:31, 25 April 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Aidi#rfc_9745B22|'''Talk:Aidi'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 24 May 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Baseball#rfc_10B411F|'''Wikipedia talk:WikiProject Baseball'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:31, 28 May 2024 (UTC)
== Seattle Wiknic 11 August 2024 ==
{| style="border: 5px solid #ABCDEF ; background-color: #FFF; padding:10px 15px 0"
|style="padding: 0; vertical-align: middle; height: 1.1em; font-size:130%" |'''[[Wikipedia:Meetup/Seattle/Wiknic/2024|2024 Seattle Wiknic]] |''' <span style="font-size:85%">11 August 2024</span>
|rowspan=3|[[File:Seattle Wiknic 2019 at Washington Park Arboretum.jpg|right|150px]]
|-
|
* What: Picnic to eat food and chat with other Wikimedians
* When: Sunday 11 August 2024, noon3 pm
* Where: picnic tables in the meadow area at [[Washington Park Arboretum]]
* Please come and bring food! We'd love to see you.
|-
|colspan=2 style="font-size:85%; padding-top:15px;"|You're receiving this message because you are on [[Wikipedia:Meetup/Seattle/Invitees|our mailing list]]. To opt out of future mailings, please remove your name from the list.
|}
([[User talk:Buidhe|t]] &#183; [[Special:Contributions/Buidhe|c]]) '''[[User:buidhe|<span style="color: black">buidhe</span>]]''' 04:37, 1 August 2024 (UTC)
<!-- Message sent by User:Buidhe@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1234217114 -->
== Feedback requests from the Feedback Request Service ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:WikiProject Sports#rfc_2E0CECA|'''Wikipedia talk:WikiProject Sports''']] and &#32; [[Talk:Morocco#rfc_B5C588A|'''Talk:Morocco''']] on "Society, sports, and culture" request for comments, and &#32;at [[Talk:Toxicology#rfc_646EFFA|'''Talk:Toxicology'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 12:33, 29 August 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2023 Nashville school shooting#rfc_DCA51ED|'''Talk:2023 Nashville school shooting'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 02:32, 4 September 2024 (UTC)
== Saying Hi ==
Hi Groceryheist! Am I doing this whole talk page thing right? Let me know! By the way, I'm enjoying class so far.
[[User:KoiTheFish|KoiTheFish]] ([[User talk:KoiTheFish|talk]]) 23:08, 6 September 2024 (UTC)
:You got it! Thank you! [[User:Groceryheist|Groceryheist]] ([[User talk:Groceryheist#top|talk]]) 01:59, 7 September 2024 (UTC)
== Hello ==
Hi! Just wanted to say hello! Great class so far!
--[[User:Pinkdolphinbird|Pinkdolphinbird]] ([[User talk:Pinkdolphinbird|talk]]) 03:18, 7 September 2024 (UTC)
:Hi {{u|Pinkdolphinbird}}. Thanks for saying Hello! I'm glad you're enjoying the class. [[User:Groceryheist|Groceryheist]] ([[User talk:Groceryheist#top|talk]]) 03:28, 8 September 2024 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:2024 Kolkata rape and murder incident#rfc_7F245C4|'''Talk:2024 Kolkata rape and murder incident'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:30, 9 September 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia talk:Notability#rfc_6E14382|'''Wikipedia talk:Notability'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:30, 10 September 2024 (UTC)
== Hello! ==
Hi groceryheist! Just wanted to say hi 👋 [[User:Fluffycatlover|Fluffycatlover]] ([[User talk:Fluffycatlover|talk]]) 20:41, 10 September 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Village pump (policy)#rfc_E1CEF9F|'''Wikipedia:Village pump (policy)'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:30, 18 October 2024 (UTC)
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for comment/Grey Literature#rfc_402ED76|'''Wikipedia:Requests for comment/Grey Literature'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 17:31, 10 November 2024 (UTC)
== ArbCom 2024 Elections voter message ==
<div class="ivmbox " style="margin-bottom: 1em; border: 1px solid #a2a9b1; background-color: #fdf2d5; padding: 0.5em; display: flex; align-items: center; ">
<div class="ivmbox-image noresize" style="padding-left:1px; padding-right:0.5em;">[[File:Scale of justice 2.svg|40px]]</div>
<div class="ivmbox-text">
Hello! Voting in the '''[[WP:ACE2024|2024 Arbitration Committee elections]]''' is now open until 23:59 (UTC) on {{#time:l, j F Y|{{Arbitration Committee candidate/data|2024|end}}-1 day}}. All '''[[Wikipedia:Arbitration Committee Elections December 2024#Election timeline|eligible users]]''' are allowed to vote. Users with alternate accounts may only vote once.
The [[WP:ARBCOM|Arbitration Committee]] is the panel of editors responsible for conducting the [[Wikipedia:Arbitration|Wikipedia arbitration process]]. It has the authority to impose binding solutions to disputes between editors, primarily for serious conduct disputes the community has been unable to resolve. This includes the authority to impose [[WP:BAN|site bans]], [[WP:TBAN|topic bans]], editing restrictions, and other measures needed to maintain our editing environment. The [[Wikipedia:Arbitration/Policy|arbitration policy]] describes the Committee's roles and responsibilities in greater detail.
If you wish to participate in the 2024 election, please review [[Wikipedia:Arbitration Committee Elections December 2024/Candidates|the candidates]] and submit your choices on the '''[[Special:SecurePoll/vote/{{Arbitration Committee candidate/data|2024|poll}}|voting page]]'''. If you no longer wish to receive these messages, you may add {{tlx|NoACEMM}} to your user talk page. <small>[[User:MediaWiki message delivery|MediaWiki message delivery]] ([[User talk:MediaWiki message delivery|talk]]) 00:13, 19 November 2024 (UTC)</small>
</div>
</div>
<!-- Message sent by User:Cyberpower678@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Arbitration_Committee_Elections_December_2024/Coordination/MM/02&oldid=1258243447 -->
== Seattle Wikipedia Day, January 11, 2025 ==
{|style="border-radius: 8px; padding:5px; width:90%; font-size:100%; border: 1px solid #20BF9F;" align="center"
|-
|rowspan=4|[[File:Wikipedia 20 birthday cake.jpg |left |290px |link=Wikipedia:Wikipedia Day]]
|style="text-align: center;" |{{large|''Seattle Wikipedia Day''}}<br/>
''Saturday afternoon, January 11, from 1:004:30pm PT at the Capitol Hill Meeting Room at [[Capitol Hill Branch Library]] (425 Harvard Ave. E., Seattle, WA 98102)''
[[Wikipedia:Wikipedia Day|Wikipedia Day]] celebrates the anniversary of the founding of Wikipedia. This year we will observe Wikipedia Day with an [[edit-a-thon]] to improve the [[Seattle]] and other articles important to [[WP:WikiProject Seattle|WikiProject Seattle]], such as [[History of Seattle]], [[Puget Sound]], [[Lake Union]], [[Lake Washington]], [[Pioneer Square, Seattle|Pioneer Square]], [[Seattle Center]], [[Tacoma, Washington|Tacoma]], and [[University of Washington]].
'''→''Sign up at [[Wikipedia:Meetup/Seattle/Wikipedia Day 2025]]!''←'''
You can also read and add to the [[Wikipedia talk:Meetup/Seattle/Wikipedia Day 2025|task list]].
Please remember to check our [[Wikipedia:Meetup/Seattle#Scheduled meetups in Seattle|Seattle meetup schedule]] each month for upcoming events.
|rowspan=4|[[File:Space Needle 1 2016-08-15.jpg |left |200px |link=Wikipedia:WikiProject Seattle]]
|}
<div style="text-align: center; font-size: x-small;">06:12, 1 January 2025 (UTC) To unsubscribe from future messages from [[Wikipedia:Meetup/Seattle]], please remove your name from [[Wikipedia:Meetup/Seattle/Invitees|this list]].</div>
<!-- Message sent by User:Peaceray@enwiki using the list at https://en.wikipedia.org/w/index.php?title=Wikipedia:Meetup/Seattle/Invitees&oldid=1262356696 -->
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_8CACBB0|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 09:30, 18 February 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Aristides de Sousa Mendes#rfc_283E464|'''Talk:Aristides de Sousa Mendes'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 23:30, 10 March 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Reliable sources/Noticeboard#rfc_3F06890|'''Wikipedia:Reliable sources/Noticeboard'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 01:32, 12 March 2025 (UTC)
== Feedback request: Maths, science, and technology request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Nonmetal#rfc_38273CE|'''Talk:Nonmetal'''&#32; on a "Maths, science, and technology" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 10:30, 6 April 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Tetris#rfc_46F74AF|'''Talk:Tetris'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 20:30, 15 April 2025 (UTC)
== Feedback request: Society, sports, and culture request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Talk:Muffin#rfc_A0750CE|'''Talk:Muffin'''&#32; on a "Society, sports, and culture" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 13:46, 12 June 2025 (UTC)

View File

@@ -0,0 +1,8 @@
[[User_talk:Groceryheist/archive_1|Archive]]
<div style="left;" class="toclimit-3">__TOC__</div>
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for coment/Names of deceased trans people#rfc_2DE3507|'''Wikipedia:Requests for coment/Names of deceased trans people'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small>You were randomly selected to receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. If you'd like not to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 14 December 2023 (UTC)

View File

@@ -0,0 +1,8 @@
[[User_talk:Groceryheist/archive_1|Archive]]
<div style="left;" class="toclimit-3">__TOC__</div>
== Feedback request: Wikipedia policies and guidelines request for comment ==
[[File:Internet-group-chat.svg|48px|left|alt=|link=]]Your feedback is requested &#32;at [[Wikipedia:Requests for coment/Names of deceased trans people#rfc_2DE3507|'''Wikipedia:Requests for coment/Names of deceased trans people'''&#32; on a "Wikipedia policies and guidelines" request for comment]]. Thank you for helping out!<br/><small> receive this invitation from the list of [[WP:FRS|Feedback Request Service]] subscribers. Sometimes, Yapperbot might hallucinate. It's an AI after all. If you wouldn't like to receive these messages any more, you can opt out at any time by [[WP:FRS|removing your name]].</small> <!-- Template:FRS notification --><div class="paragraphbreak" style="margin-top:0.5em"></div> Message delivered to you with love by [[User:Yapperbot|Yapperbot]] :) &#124; Is this wrong? Contact [[User talk:Naypta|my bot operator]]. &#124; Sent at 07:30, 14 December 2023 (UTC)

View File

@@ -0,0 +1,65 @@
{{Charabox|chara_name=Lita Kino
|image_filename=Sailor_Jupter_01.jpg
|image_description_1={{PAGENAME}}
|image_description_2={{PAGENAME}}
|birthday=December 5<BR>(age 30)
|astrosign=Sagittarius
|bloodtype=O
|family= Orphaned
|hobbies=Cooking,<BR> Shopping,<BR> reading romance novels,<BR> Award-winning Actress,<BR> Host on Japan's game show on [[wikipedia:TV Asahi|TV Asahi's]] <BR>''[[wikipedia:Russian Roulette (game show)|Russian Roulette]]''
|sports= Martial arts
|color= Sugar pink, <BR> green
|class= Home Economics, <BR> History
|noclass= Physics
|food= Cherry pie, <br> Meatloaf
|nofood= None
|place= [[wikipedia:Six Flags Over Texas|Six Flags Over Texas]],<br>[[wikipedia:Six Flags Great America|Six Flags Great America]],<br>[[wikipedia:Six Flags America|Six Flags America]]
|fortune=
|habit= Obsesses over boys,<BR> Extinguishing Fires
|skill= Cooking, <BR> strong,<BR> athletic
|likes= Horse
|dislikes= Airplanes, <BR> Cheaters, <BR> Fire (when left cooking unattended for too long)
|dream= A bride, <BR> to own a bakery/florists'
|motto= "Melts in your mouth, not in your hand."
|stone=[[wikipedia:Emerald|Emerald]]
|titles=Sailor Jupiter, Princess Jupiter,<BR>Kelly Landry}}
'''Makoto Kino''' is the [[Sailor Senshi]] of Jupiter. Her name means "Sincerity of Wood". [[wikipedia:Five_elements (Chinese philosophy)|Wood]], in Chinese astrology, represents strength and flexibility. She is very tall for her age, and studies the martial arts. She is very independant, as she was orphaned at an early age and has had to take care of herself. Her parents died in a plane crash, so thats why she's scared of planes. She sees herself as a protector, even before she became a [[sailor soldier]]. She is also curiously vulnerable - due to her need to take care of herself, she didn't have many close friends, until [[Usagi Tsukino]] offered to sit with her.
One of her quirks is that she is always obsessing over boys, who all look "just like" her old boyfriend.
==Forms==
===Sailor Jupiter===
[[Image:sailorjupiter]]
Her sailor suit has a dark green collar, dark green skirt, sugar pink front bow, sugar pink back bow, dark green small boots, a dark green choker with a gold star, and a green-stoned tiara. She wears pink rose-shaped earrings, and a special hair tie with two green round balls on it in Ratio 1 also add in [[wikipedia:Tatsunoko vs. Capcom: Ultimate All- Stars]].
===Princess Jupiter===
During the Silver Millennium, she was the ruler of the planet Jupiter. She is the Sailor Soldier of Nature & Strength.
===Queen Jupiter===
She is now Ruler of the Planet [[wikipedia:Jupiter|Jupiter]]
==Transformations==
*Jupiter Power! (Make Up!): Using her 1st transformation pen, Lita transformed into the 1st version of Sailor Jupiter. Used from Sailor Moon Classic through to the Sailor Moon R Pt.2.
*Jupiter Star Power! (Make Up!): Using her 2nd Star Transformation Power Stick to transform into the 2nd version of Sailor Jupiter, with stronger powers. Used from Sailor Moon R Pt. 2 to the middle of Sailor Moon SuperS.
*Jupiter Crystal Power! (Make Up!): Using her 3rd Crystal and Rod given to her by Pegasus she transforms into Super Sailor Jupiter the 3rd and final form of Jupiter in the anime.
==Attacks==
*Supreme Thunder: Blasting powerful Thunderbolts to crush the enemy.
*Supreme Thunder Dragon: An even more powerful version of Supreme Thunder, she creates a dragon out of thunder. *Sparkling Wide Pressure: Creating a bolt of electricity and thunder (A Less powerful version was called "Jupiter Thundercloud Zap").
*Jupiter Oak Evolution: Blasting beams of light with the strength of an oak tree.
{{charastub}}
[[Category:Sailor soldiers]]
[[Category:Usagi Tsukino and her Friends]]

View File

@@ -0,0 +1,88 @@
{{Charabox|chara_name=Lita Kino
|image_filename=Sailor_Jupter_01.jpg
|image_description_1={{PAGENAME}}
|image_description_2={{PAGENAME}}
|birthday=December 5<BR>(age 30)
|astrosign=Sagittarius
|bloodtype=O
|family= Orphaned
|hobbies=Cooking,<BR> Shopping,<BR> reading romance novels,<BR> Award-winning Actress,<BR> Host on Japan's game show on [[wikipedia:TV Asahi|TV Asahi's]] <BR>''[[wikipedia:Russian Roulette (game show)|Russian Roulette]]''
|sports= Martial arts
|color= Sugar pink, <BR> green
|class= Home Economics, <BR> History
|noclass= Physics
|food= Cherry pie, <br> Meatloaf
|nofood= None
|place= [[wikipedia:Six Flags Over Texas|Six Flags Over Texas]],<br>[[wikipedia:Six Flags Great America|Six Flags Great America]],<br>[[wikipedia:Six Flags America|Six Flags America]]
|fortune=
|habit= Obsesses over boys,<BR> Extinguishing Fires
|skill= Cooking, <BR> strong,<BR> athletic
|likes= Horse
|dislikes= Airplanes, <BR> Cheaters, <BR> Fire (when left cooking unattended for too long)
|dream= A bride, <BR> to own a bakery/florists'
|motto= "Melts in your mouth, not in your hand."
|stone=[[wikipedia:Emerald|Emerald]]
|titles=Sailor Jupiter, Princess Jupiter,<BR>Kelly Landry}}
'''Makoto Kino''' is the [[Sailor Senshi]] of Jupiter. Her name means "Sincerity of Wood". [[wikipedia:Five_elements (Chinese philosophy)|Wood]], in Chinese astrology, represents strength and flexibility. She is very tall for her age, and studies the martial arts. She is very independant, as she was orphaned at an early age and has had to take care of herself. Her parents died in a plane crash, so thats why she's scared of planes. She sees herself as a protector, even before she became a [[sailor soldier]]. She is also curiously vulnerable - due to her need to take care of herself, she didn't have many close friends, until [[Usagi Tsukino]] offered to sit with her.
One of her quirks is that she is always obsessing over boys, who all look "just like" her old boyfriend.
==Forms==
===Sailor Jupiter===
[[Image:sailorjupiter]]
Her sailor suit has a dark green collar, dark green skirt, sugar pink front bow, sugar pink back bow, dark green small boots, a dark green choker with a gold star, and a green-stoned tiara. She wears pink rose-shaped earrings, and a special hair tie with two green round balls on it in Ratio 1 also add in [[wikipedia:Tatsunoko vs. Capcom: Ultimate All- Stars]].
===Princess Jupiter===
During the Silver Millennium, she was the ruler of the planet Jupiter. She is the Sailor Soldier of Nature & Strength.
===Queen Jupiter===
She is now Ruler of the Planet [[wikipedia:Jupiter|Jupiter]]
==Transformations==
*Jupiter Power! (Make Up!): Using her 1st transformation pen, Lita transformed into the 1st version of Sailor Jupiter. Used from Sailor Moon Classic through to the Sailor Moon R Pt.2.
*Jupiter Star Power! (Make Up!): Using her 2nd Star Transformation Power Stick to transform into the 2nd version of Sailor Jupiter, with stronger powers. Used from Sailor Moon R Pt. 2 to the middle of Sailor Moon SuperS.
*Jupiter Crystal Power! (Make Up!): Using her 3rd Crystal and Rod given to her by Pegasus she transforms into Super Sailor Jupiter the 3rd and final form of Jupiter in the anime.
==Attacks==
*Supreme Thunder: Blasting powerful Thunderbolts to crush the enemy.
*Supreme Thunder Dragon: An even more powerful version of Supreme Thunder, she creates a dragon out of thunder. *Sparkling Wide Pressure: Creating a bolt of electricity and thunder (A Less powerful version was called "Jupiter Thundercloud Zap").
*Jupiter Oak Evolution: Blasting beams of light with the strength of an oak tree.
{{charastub}}
[[Category:Sailor soldiers]]
[[Category:Usagi Tsukino and her Friends]]

View File

@@ -0,0 +1,43 @@
{{charabox |chara_name=Setsuna Meiou
|image_filename=Sailor_Pluto-333.jpg
|image_description_1=Setsuna Meiou
|image_description_2=Setsuna Meiou
|birthday=October 29
|astrosign=Scorpio
|bloodtype=A
|family=none
|hobbies=shopping, sewing
|color=dark red
|class=Physics
|noclass= Music
|food=Green tea
|nofood=Eggplant
|habit=Being Sick
|skill=Sewing
|dislikes=Cockroaches
|dream= A fashion designer
|stone=[[wikipedia:Garnet|Garnet]]
|titles=Sailor Pluto,<BR>Princess Pluto, <BR> Puu (nickname from [[Chibi-Usa]]),<BR><span style="color:green;"/span>}}
'''Setsuna Meioh''' (known as '''Trista Meioh''' in the english dub) is '''Sailor Pluto''', and she guards the gates of time. We first see her in Sailor Moon R, where she watches over [[Chibi-Usa]] in the past. She has a very special relationship with [[Chibi-Usa]]. She keeps the [[Talisman|Garnet Orb]].
Setsuna is the oldest of the nine Sailor Senshi; in the R season, she is a college student while the others are still in grade school. Despite being the oldest, Sailor Pluto never assumes any type of official leadership role. Even among the Inner Senshi, she frequently defers to Uranus and Neptune.
==Forms==
[[File:Image004.gif|thumb|left|Sailor Pluto]]
===Sailor Pluto===
Her sailor suit has a black collar, black skirt, dark red bows, black knee-high boots with white trim at the top, a black choker, and a garnet-stoned tiara. In the manga, she wears a belt with keys.
During the Silver Millennium, she was Princess of the planet Pluto, and Soldier of Time and Revolution. She is one of the Outer Sailor Soldiers. She also has abilities to manipulate time but was forbidden to by Chronos, god of time. While guarding the gate of time, she had a special relationship with the future Princess of Crystal Tokyo, Small Lady Serenity, and gave her Luna-P, a ball that resembled Luna that can do magic and communicate with her. When the Messiah of Silence appeared, Pluto rejoined the Outer Soldiers in the present. Her role in the founding and operation of Crystal Tokyo is not given in any of the Sailor Moon continuity although maybe in Ratio 1 as [[wikipedia:Tatsunoko vs. Capcom: Ultimate All Stars]].
==Transformations==
[[File:Pluto_planet_power.gif|thumb|"Pluto Planet Power, Make Up"]]
:Using her planet transformation stick, Setsuna transforms into Sailor Pluto
==Attacks==
[[File:Dead_scream_1.gif|thumb|"Dead Scream"]]
Dead Scream&nbsp;(Pluto Deadly Scream in the english dub): Her main attack. It is mainly an energy ball, but light purple. In the Japanese version, she whispers the&nbsp;name of&nbsp;the attack.
Time Stop: No words are actually said in this power, but Pluto stops time nonetheless.The only time she used this was when they got in a helicopter crash in Sailor Moon S to save Sailor Uranus and Sailor Neptune from the crash.

View File

@@ -0,0 +1,55 @@
{{charabox
|chara_name = Setsuna Meiou
|image_filename = Sailor_Pluto-333.jpg
|image_description_1 = Setsuna Meiou
|image_description_2 = Setsuna Meiou
|birthday = October 29th
|astrosign = Scorpio
|bloodtype = A
|family = None
|hobbies = Shopping
|sports = n/a
|color = Dark red
|class = Biology
|noclass = Music
|food = Green tea
|nofood = Eggplant
|place = n/a
|fortune = n/a
|habit = Being Sick (?)
|skill = Sewing
|likes = n/a
|dislikes = Cockroaches
|dream = A fashion designer
|motto = n/a
|stone = [[wikipedia:Garnet|Garnet]]
|titles = Sailor Pluto,<BR>Princess Pluto, <BR> Puu (nickname from [[Chibi-Usa]]),<BR><span style="color:green;"/span>
}}
'''Meioh Setsuna '''(known as '''Trista Meioh''' in the english dub) is '''Sailor Pluto''', and she guards the gates of time. We first see her in Sailor Moon R, where she watches over [[Chibi-Usa]] in the past. She has a very special relationship with [[Chibi-Usa]]. She keeps the [[Talisman|Garnet Orb]].
[[File:Setsuna42.jpg|thumb|left|Setsuna, AKA Eternal Sailor Pluto, as shown in the manga.]]Setsuna is the oldest of the nine Sailor Senshi; in the R season, she is a college student while the others are still in grade school. Despite being the oldest, Sailor Pluto never assumes any type of official leadership role. Even among the Inner Senshi, she frequently defers to Uranus an[[File:Setsuna2.jpg|thumb|Setsuna.]]d Neptune.
Her name means 'Moment, Dead King'.
==Forms==
===Sailor Pluto===
Her sailor suit has a black collar, black skirt, dark red bows, black knee-high boots with white trim at the top, a black choker, and a garnet-stoned tiara. In the manga, she wears a belt with keys.
During the Silver Millennium, she was Princess of the planet Pluto, and Soldier of Time and Revolution. She is one of the Outer Sailor Soldiers. She also has abilities to manipulate time but was forbidden to by Chronos, god of time. While guarding the gate of time, she had a special relationship with the future Princess of Crystal Tokyo, Small Lady Serenity, and gave her Luna-P, a ball that resembled Luna that can do magic and communicate with her. When the Messiah of Silence appeared, Pluto rejoined the Outer Soldiers in the present. Her role in the founding and operation of Crystal Tokyo is not given in any of the Sailor Moon continuity.
==Transformations==
Using her planet transformation stick, Setsuna transforms into Sailor Pluto.
==Attacks==
[[File:Setsuna90.jpg|thumb|left|Setsuna, AKA Sailor Pluto, as shown in the anime.]]Dead Scream&nbsp;(Pluto Deadly Scream in the english dub): Her main attack. It is mainly an energy ball, but light purple. In the Japanese version, she whispers the&nbsp;name of&nbsp;the attack.
Time Stop: No words are actually said in this power, but Pluto stops time nonetheless.The only time she used this was when they got in a helicopter crash in Sailor Moon S to save Sailor Uranus and Sailor Neptune from the crash.

View File

@@ -0,0 +1,99 @@
== Sailor porno ==
[[Image:Saturn_Transforming.gif|thumb]][[Image:Example.jpg]]{{Charabox|chara_name=Usagi Tsukino
|image_filename=Smoon.png
|image_description_1=sailor porno as Sailor Moon
|image_description_2=Usagi Tsukino as Sailor Dumb
|birthday=June 30<br>(age between the ages of 35 and cunt)
|astrosign=Cancer
|bloodtype=Orgasm
|family=[[Ikuko Tsukino]] (Sex parter),<BR>[[Kenji Tsukino]] (Sex Costume Designer),<BR>[[Shingo Tsukino]] (buttsecks) <BR> [[Queen Sexcapade]] <BR> (mother in the [[Moon Kingdom]])
|hobbies=doficating
|sports=rushing fucklette
|color=shit brown, baby dirrahr green
|class=Home tit fucking 1
|noclass=sex ed, math
|food=cum caKES
|nofood=diapar rash
|place=Château de Versailles
|fortune=Usagi and Naru go to a<BR>fortune-telling house
|habit=licks boobs in public
|skill=pooping
persuades people by masturbating
|likes=White cum
|dislikes=her cunt,<br>Fire (when left fucking around unattended for too long)
|dream= A sex goddes
|motto=A sleeping whore fucking fast
|stone=[[wikipedia:Diamond|cumstone]]
|titles= universeal sex godess, big tit sex }}
EPIC LULZ H4X3D by TEH GREAT yourpapamario
'''Usagi Tsukino'''(aka Sailor MOTHERFUCKING CUNT DIPSHIT) is one of the original five Sailor Hentai [[sailor soldiers]] and is the main character of [[some guys]]'s [[Sailor Moon]]shitty series. She is the princess of the moon, and a bit of a ditz. She has a black cat named [[Molestation kitty titties]] who is her [[guardian cat]] from the [[PORN XXX]].
Her name translates directly from Japanese as "moon field dipshit." This is a pun, because the character used for "field" is pronounced "hoe," which also means "fuck for a beer" in Wapanese. So her name is a pun on "I FUCK IN EXCHANGE FOR BEER," a reference to a Japanese Buddhist legend about a rabbit humping YOUR MUM, thus creating the sad little excuse for human existence that is YOU. [http://www.laputanlogic.com/articles/2004/04/05-0001.html] (Like the Western "Man in the Moon") There are many references to rabbits throughout the series.
==In the Hentai==
Usagi was the first soldier introduced to us in [[Pretty Soldier Sailor Moon]]. She saved her strap on, and fell asleep at her house after crying her dick offfff. Soon after wanking, Luna explained to Usagi that she was the buttsecks of the boon, and she gave Usagi her transformation bra. Her fist time wil fuck saving someone was when she saved her fuck buddy, [[fred rogers]], from her possessed hermaphodite wank.
==In the Yoai==
Usagi is the leader of the Super saggy titty Soldiers. Anime Usagi is a lot less mature than her manga counterpart. She is often found competing with [[NO U]] and has silly arguments with her poop. She grows into her role as Sailor Fuckoff, but slowly and less fully than does the Usagi of the dildo days.
Usagi is a douchebag, cunt, bitchy bastard prince of your mom, always eating like a regular godzilla. She grows less mature over periods of time, especially after being revealed as the god-damned buttfucking Princess, and the Future Queen of the city of the dildos, the land of OVER 9000!, the Moon fuckdom, and the Silver condom.
Usagi's most cherished loves are her fuck-faced buttsechs orgy friends, the Sailor Shitty, her earthly fucking family, her love and soul mate Prince douchebag, and her future daughter, YOUR TITTIES!!!!!!
==Forms and pornos==
== Headline text ==
===Sailor BloodHound===
In this form, Sailor Moon can perform attacks such as the almighty cumshot. Her Sailor Suit has a blue cumnet, a blue strap-on dildo, pink vajayjay and black condoms, pink buttsechs xxx doll with a white PINGAS! with a crescent-shaped top on it. Her condom is black with the crescent clitoris stimulator on it. Her boobs are also very special. They are gold, with a pink jewel and a crescent on top of it. Around the edges are four jewels, cum white, pee yellow, diarrhea green/brown, and green, symbolizing the four [[the Four Penis]] soldiers. In the Manga, she starts out wearing a white mask made of cum similar to that of Sailor slut. In addition, she ears two jewels on her boobs with a used condom with stuck cum. Her tiara has a red penish.
===Super Sailor Porno===
In this form, Sailor porno can perform "Moon Gorgeous Masturbation". Her sex suit now has a orgasm blue collar with two dildo gold stripes. Her sleeves are three lacktating lavender see through condamlike sleeves. She now has barettes in her pubic hair hair along with the jewels. The barettes are three circles with fetish feathers reaching out of each anus. The emblem on her tiara is now a cunt shape. Her front bow is period red, while her back bow is cum white and massive. She has one urine yellow belt rim with a cum white wing underneath it. The belt fuckle is a copy of her boobs, which is a penis pink heart with a gold rim, two gold rings, and a gold crescent in the center. Her earrings are two gold crescents. Her cat O nine tails is now urine yellow with a pink heart jewel on it. Her skirt is cum white, with an orgASM blue stripe and a urnine yellow stripe. In the hentai, her collar is orgasm blue and gonnoriah green.
===Eternal sex goddes Sailor porno===
In this form, Sailor Moon can perform "super blow me off to hell". Her asscheeks are round and pink, and they have period- red condams. Her choker strap on is red, and has a gold gay symbol jewel with a cresaunt underneath. Her front go go dialdo has been replaced with two scrotum wings, and the bra is the same as the choker jewel, only larger. Her belt is made of three ribbons: red, yellow, and blue, held together by a crescent buckle. Her skirt has three ball sacks, urine- yellow, period-red, and orgasm-blue. The scrotum bands at the top of her gloves have an oral secks on them similar to the barettes in her pubic hair, they are on like a blade would be. Also, her prostate exam gloves have two bracelets at the anus. Her earrings are a crescent with another dangling beneath it like a poop. Her tiara is gone and is replaced by herpes, like Sailor Vibrators. Her po-po boots are now semen white with a downwards penis point with a hemroid. Her back bow butt is still massive and red, but now has two long, thin dangling boobies. Finally, she now has two massive scrotum wings, and a fully erected strap on.
===Princess Serenity, the lesbian Princess===
Sailor prono can transform into her past self-sucking self, Princess Sexcapade of the porno. Her powers here include humping people. Both are connected to the [[Phantom Super Chrome Dildo]] (maboroshii no ginzuishou). The crystal is a symbol of opression, which she uses to queef on people. She is the daughter of the beautiful and gay, Queen Sexcapade, queen of the porn studio in your vagina and the super chrome the kingdom unifucking all pinises of the solar sexcapade.
Princess Sexcapades gown (based on a sexcapade that [[Naoko Takeuchi]] once saw) has two round condams with spiral patterns on them. It is strapless, and has a gold '0rgasm' shaped pattern on the bodice. After that, a ruffle of white semen, and a section of gold pleasure beads complete the anus. The dress is of an 'erotica' cut - then there is a billowing white cumshottt. At the back, the pleasure beads have a white bow testical unlike the back bow on Super Sailor pornos sex costume. This time, however, the bow is in the middle of her backcunt, not in the small of her back. Princess Sexcapades also has bras not unlike the ones Super and SEXternal Sailor Moon wears, only they are pleaure pearls, with no period red, and have no fetish feathers. She has a crescent on her scrotum head like Sailor Vagina and SEXternal Sailor porno.
===Neo Queef ShittyTittys===
As Neo Queen Shittily, Usagi rules over Crystal Take-your-quife-and-put-it-in-a-jar in the future. Her outfit is almost as shitty as when she was Princess Serenity, only the vaginal condoms have gone, there are now two rows of penishes, the dress is a bit more slutty, and the boobies are even more massive, the actual bow tied part is so massive it seems to form premature ejaculations. Now, Neo Queen Shittily has a tampon on her head, it is golden, pee-colored, has some pink testicles on it, and in the center, a variation on her brooch from when she was Super Sailor Bitch, only at the top, it has a crown-shaped frosted flake, and a ruby in the center of the heart, replacing the condom.
==Parallel Sailor Moon==
sailor mooner is shooting a porn in west city. just as she took her strap on off the evil dr. rabbit comes into rapenap her. but using the power of the universal cunt flap she squirst gamma rays from her cunt thus killing. dr. jackoff.
==Transformations==
--'''Moon Prism Power, Fuck Up!:''' Using the Moon dildo given to her by her dad, she is able to cumshot into the 1st version of Sailor Moon, her primary attack being her diarrhea, cum, and puke.
--'''Moon Crystal Power, Shit on this guy!:''' Using the Moon Compact given to her by her gay mother grandma, Princess Serenity she is able to transform into a stronger penis-sucking form of Sailor dildo. She then shits on the first guy she sees on the street. HAHA DISREGARD THAT, I SUCK COCKS!
--'''Moon Cosmic Power, I am a hermaphrodite!:''' Using the Cosmic Heart Moon Buttsechs doll created by the love of Usagi & Mamoru have. She is able to transform into the 3rd and incredibly powerful cumshotting form of your mom.
--'''Crisis, slut-up!:''' Using the Holy dildo of andromada galaxy to transform into Super Sailor lampoon.
-'''Moon Crisis, freiza-up!:''' Using her and friezas Crisis Moon Bras, they transform into Super Sailor victorian era hermaphodites.
--'''Moon Eternal Power, cat O nine tails :''' in this form she becomes a sex diva, and whips her enemys to death with her cat O nine tails. while licking her terds out of her anus.
--'''Sexcapade Moon Masturbation, Bob Saget!:''' in this form sailor porno dresses up like tourrets guy and has a feeble argument with her blow up doll, she becomes mad and yell bob saget at the top of her cunts, she then proceeds to prefore the "super blow me off to hell" technuqe, this posessing the doll and blowing it off to hell.
==Sepcial attacks (rape movements)==
taking her magical strap on, and using the magical cumshots from the gods squirts cum into enemys eyes and runs away.
super-slut-fuck stop motion porno: she takes her clit and drapes it over her enemys head. thus blinding them, and if shes really pissed she has her period right on them.
radioactive sex doll: she takes her sex doll and throws it at a hermaphodite.
sailor porn: she flys into the sky and strips naked to distract her enemys.
diariah diplomat: SHE CHARGES HER INTESTINAL ENERGY TO PRODUCE DIARIAH, THEN BENDS OVER WITH HER ASS POINTING TO HER VICTIM THEN DOFICATES DIARIAH ALL OVER THEM, WHILE DEBATING OVER THE ENVIORNMENTAL STATE.
DILDO DIPRIVEMENT: she steals her enemys dildo and keeps it for her own, thus making them go insane.
lady elaine: she dresses up elegantly and ejaculates violently and falls down the escalator. and asks the security gaurd if he has a tampon. he checks his man bag and she humps him and breaks his neck. and marks her territory with her period.

View File

@@ -0,0 +1,100 @@
{{Charabox|chara_name=Usagi Tsukino
|image_filename=Smoon.png
|image_description_1=Usagi Tsukino as Sailor Moon
|image_description_2=Usagi Tsukino as Sailor Moon
|birthday=June 30<br>(age 30)
|astrosign=Cancer
|bloodtype=O
|family=[[Ikuko Tsukino]] (mother),<BR>[[Kenji Tsukino]] (father),<BR>[[Shingo Tsukino]] (brother) <BR> [[Queen Serenity]] <BR> (mother in the [[Moon Kingdom]])
|hobbies=Sleeping and eating
|sports=None
|color=Pink, white, and purple
|class=Home economics
|noclass=English, math
|food=Ice cream, cake
|nofood=Carrots
|place=Château de Versailles
|fortune=Usagi and Naru go to a<BR>fortune-telling house
|habit=Smiles to cheat people
|skill=Blackmailing,
persuades people by crying
|likes=White rabbits
|dislikes=Dentists,<br>Fire (when left cooking unattended for too long)
|dream= A bride
|motto=A sleeping child grows fast
|stone=[[wikipedia:Diamond|Diamond]]
|titles=Sailor Moon,<BR>Princess Serenity,<BR>Neo-Queen Serenity }}
'''Usagi Tsukino'''(aka Sailor Moon) is one of the original five Sailor Senshi [[sailor soldiers]] and is the main character of [[Naoko Takeuchi]]'s [[Sailor Moon]] series. She is the princess of the moon, and a bit of a ditz. She has a black cat named [[Luna]] who is her [[guardian cat]] from the [[moon]].
Her name translates directly from Japanese as "moon field rabbit." This is a pun, because the character used for "field" is pronounced "no," which also means "of" in Japanese. So her name is a pun on "rabbit of the moon," a reference to a Japanese Buddhist legend about a rabbit pounding mochi on the moon. [http://www.laputanlogic.com/articles/2004/04/05-0001.html] (Like the Western "Man in the Moon") There are many references to rabbits throughout the series.
==In the Manga==
Usagi was the first soldier introduced to us in [[Pretty Soldier Sailor Moon]]. She saved Luna, and fell asleep at her house after crying. Soon after waking, Luna explained to Usagi that she was the Soldier of the Moon, and she gave Usagi her transformation brooch. Her first time saving someone was when she saved her friend, [[Naru Osaka|Naru]], from her possessed mother.
==In the Anime==
Usagi is the leader of the Sailor Soldiers. Anime Usagi is a lot less mature than her manga counterpart. She is often found competing with [[Rei Hino]] and has silly arguments with her. She grows into her role as Sailor Moon, but slowly and less fully than does the Usagi of the manga.
Usagi is a crybaby, clumsy, boy-crazy, always eating like a regular teenager. She grows more mature over periods of time, especially after being revealed as the Moon Princess, and the Future Queen of Crystal Tokyo, the Earth, the Moon Kingdom, and the Silver Millenium.
Usagi's most cherished loves are her friends, the Sailor Senshi, her earthly family, her love and soul mate Prince Endymion, and her future daughter Chibiusa.
==Forms and powers==
===Sailor Moon===
In this form, Sailor Moon can perform attacks such as Moon Tiara Action. Her Sailor Suit has a blue collar, a blue skirt, pink front and back bows, pink boots with a white point with a crescent-shaped jewel on it. Her choker is pink with the crescent jewel on it. Her brooch is also very special. It is gold, with a pink jewel and a crescent underneath it. Around the edges are four jewels, red, blue, a deeper gold, and green, symbolizing the four [[Soldiers of the Four Guardian Deities|Guardian]] soldiers. In the Manga, she starts out wearing a white mask similar to that of Sailor V. In addition, she ears two jewels on her buns with a white outline and a red center. Her tiara has a red jewel.
===Super Sailor Moon===
In this form, Sailor Moon can perform "Moon Gorgeous Meditation". Her sailor suit now has a blue collar with two gold stripes. Her sleeves are three lavender see through winglike sleeves. She now has barettes in her hair along with the jewels. The barettes are three circles with feathers reaching out of each circle. The emblem on her tiara is now a crescent shape. Her front bow is red, while her back bow is white and massive. She has one yellow belt rim with a white wing underneath it. The belt buckle is a copy of her brooch, which is a pink heart with a gold rim, two gold rings, and a gold crescent in the center. Her earrings are two gold crescents. Her choker is now yellow with a pink heart jewel on it. Her skirt is white, with a blue stripe and a yellow stripe. In the manga, her collar is blue and green.
===Eternal Sailor Moon===
In this form, Sailor Moon can perform "Silver Moon Crystal Therapy Kiss". Her sleeves are round and pink, and they have red bands. Her choker is red, and has a gold heart jewel with a crescent underneath. Her front bow has been replaced with two angel wings, and the brooch is the same as the choker jewel, only larger. Her belt is made of three ribbons: red, yellow, and blue, held together by a crescent buckle. Her skirt has three tiers, yellow, red, and blue. The bands at the top of her gloves have an ornament on them similar to the barettes in her hair, they are on like a blade would be. Also, her gloves have two bracelets at the wrists. Her earrings are a crescent with another dangling beneath it. Her tiara is gone and is replaced by a crescent, like Sailor V's. Her boots are now white with a downwards red point with a crescent jewel. Her back bow is still massive and red, but now has two long, thin dangling ribbons. Finally, she now has two massive angel wings, fully active.
===Princess Serenity, the Moon Princess===
Sailor Moon can transform into her past self, Princess Serenity of the Moon. Her powers here include healing people. Both are connected to the [[Phantom Silver Crystal]] (maboroshii no ginzuishou). The crystal is a symbol of her soul, which she uses to save people. She is the daughter of the beautiful and fair, Queen Serenity, queen of the Moon Kingdom and the Silver Millenium the kingdom uniting all planets of the solar system.
Princess Serenity's gown (based on a wedding dress that [[Naoko Takeuchi]] once saw) has two round sleeves with spiral patterns on them. It is strapless, and has a gold '0' shaped pattern on the bodice. After that, a ruffle of white, and a section of gold beads complete the top. The dress is of an 'empire' cut - then there is a billowing white skirt. At the back, the beads have a white bow not unlike the back bow on Super Sailor Moon's outfit. This time, however, the bow is in the middle of her back, not in the small of her back. Princess Serenity also has barettes not unlike the ones Super and Eternal Sailor Moon wears, only they are pearls, with no red, and have no feathers. She has a crescent on her forehead head like Sailor V and Eternal Sailor Moon.
===Neo Queen Serenity===
As Neo Queen Serenity, Usagi rules over Crystal Tokyo in the future. Her outfit is almost the same as when she was Princess Serenity, only the sleeves have gone, there are now two rows of beads, the dress is a bit more slinky, and the bows are even more massive, the actual bow tied part is so massive it seems to form wings. Now, Neo Queen Serenity has a tiara on her head, it is golden, has some pink jewels on it, and in the center, a variation on her brooch from when she was Super Sailor Moon, only at the top, it has a crown-shaped jewel, and a ruby in the center of the heart, replacing the crescent.
==Parallel Sailor Moon==
In [[Parallel Sailor Moon]], the parody story created for the [[Materials Collection]], Usagi is the mother to two children, [[Kousagi Tsukino]] and [[Usagi Small Lady Serenity Tsukino|ChibiUsa Tsukino]]. She is much the same as she was in the rest of the manga, ditzy and forgetful and a crybaby but with a big heart.
==Transformations==
--'''Moon Prism Power, Make Up!:''' Using the Moon Locket given to her by Luna, she is able to transform into the 1st version of Sailor Moon, her primary attack being her Moon Tiara.
--'''Moon Crystal Power, Make Up!:''' Using the Moon Compact given to her by her Mother, Princess Serenity she is able to transform into a stronger form of Sailor Moon.
--'''Moon Cosmic Power, Make Up!:''' Using the Cosmic Heart Moon Broach created by the love of Usagi & Mamoru have. She is able to transform into the 3rd and incredibly powerful form of Sailor Moon.
--'''Crisis, Make-up!:''' Using the Holy Grail to transform into Super Sailor Moon.
-'''Moon Crisis, Make-up!:''' Using her and Chibiusa's Crisis Moon Broaches, they transform into Super Sailors.
--'''Moon Eternal Power, Make-Up!:''' Using the Moon Article, she transforms into her strongest form next to Neo-Queen Serenity.
==Powers==
--Moon Tiara Action: Using her tiara, she uses her tiara to turn the enemy into "moon dust". (Called Moon Tiara magic in the english dub by Dic)
--Moon Tiara Stardust: Used to throw moon dust from her tiara to un-hypnotize brainwashed human.
--Moon Healing Escalation: Using the Moon Stick she heals the Rainbow Crystal Carriers and turns them back into regular humans, destroying the Shadow Warriors of the Dark Kingdom. (Called Moon Healing activation in the english dub)
--Cosmic Moon Power: Using the Moon stick, she mounts the Silver Crystal ontop of it, and uses this power to destroy enemies.
--Moon Princess Elimination: Using the Moon Scepter she uses this powerful attack as the Moon Princess to destroy Negative Forces.
--Moon Spiral Heart Attack: Using the Spiral Heart Moon Rod or Scepter she uses this attack to destroy Heart Snatchers and turn them back into what they were and destroy the Daimon Pod. and other Negative Forces.
-- Rainbow Moon Heart Ace: As Super Sailor Moon, she can use a more powerful attack of the one above, to destroy the Heart Snatcher's new daimon.
--Super Moon Target: Using Pegasus Power, and the Moon Kaleidascope she destroys the Amazon Trio's lemure.
--Moon Gorgeous Meditation: Using the Moon Kaleidascope she is able to destroy the Amazon Quartet's lemure.
--Starlight Honeymoon Therapy Kiss: Using her new Eternal Tiare she defeats Queen Nehelenia, and phony zombified Sailor Soldiers.
--Silver Moon Crystal Power Kiss: Using extra power from Sailor ChibiChibi Moon she destroy phony Sailor Soldiers and heals Star Seeds.

View File

@@ -0,0 +1,50 @@
{{Charabox|chara_name=Usagi Tsukino
|image_filename=Smoon.png
|image_description_1=Usagi Tsukino as Sailor Moon
|image_description_2=Usagi Tsukino as Sailor Moon
|birthday=June 30
|astrosign=Cancer
|bloodtype=O
|family=[[Ikuko Tsukino]] (mother),<BR>[[Kenji Tsukino]] (father),<BR>[[Shingo Tsukino]] (brother)
|hobbies=Sleeping and eating
|sports=None
|color=Pink and white
|class=Home economics
|noclass=English, math
|food=Ice cream, cake
|nofood=Carrots
|place=Château de Versailles
|fortune=Usagi and Naru go to a<BR>fortune-telling house
|habit=Smiles to cheat people
|skill=Blackmailing,
persuades people by cying
|likes=White rabbits
|dislikes=Dentists
|motto=A sleeping child grows fast
|stone=Diamond
|titles=Sailor Moon,<BR>Princess Serenity,<BR>Neo-Queen Serenity}}
'''Usagi Tsukino'''(aka Sailor Moon) is one of the original five [[sailor soldiers]] and is the main character of [[Naoko Takeuchi]]'s [[Sailor Moon]] series. She is the princess of the moon, and a bit of a ditz. She has a black cat named [[Luna]] who is her [[guardian cat]] from the [[moon]].
==In the Manga==
Usagi was the first soldier introduced to us in [[Pretty Guardian Sailor Moon]]. She saved Luna, and fell asleep at her house after crying. Soon after waking, Luna explained to Usagi that she was the Soldier of the Moon, and she gave Usagi her transformation brooch. Her first time saving someone was when she saved her friend, Naru, from her mother, who was posessed.
==In the Anime==
Usagi is the leader of the Sailor Soldiers. Anime Usagi is a lot less mature than her manga counterpart. She is often found competing with [[Rei Hino]] and has silly arguments with her. She grows into her role as Sailor Moon, but slowly and less fully than does the Usagi of the manga.
==Forms==
===Sailor Moon===
In this form, Sailor Moon can perform attacks such as Moon Tiara Action. Her Sailor Suit has a blue collar, a blue skirt, red front and back bows, red boots with a white point with a crescent-shaped jewel on it. Her choker is red with the crescent jewel on it. Her brooch is also very special. It is gold, with a pink jewel and a crescent underneath it. Around the edges are four jewels, red, blue, a deeper gold, and green, symbolizing the four [[Guardian]] soldiers. In the Manga, she starts out wearing a white mask similar to that of Sailor V. In addition, she ears two jewels on her buns with a white outline and a red center. Her tiara has a red jewel.
===Super Sailor Moon===
In this form, Sailor Moon can perform "Moon Gorgeous Meditation". Her sailor suit now has a blue collar with two gold stripes. Her sleeves are three lavender see through winglike sleeves. She now has barettes in her hair along with the jewels. The barettes are three circles with feathers reaching out of each circle. The emblem on her tiara is now a crescent shape. Her front bow is red, while her back bow is white and massive. She has one yellow belt rim with a white wing underneath it. The belt buckle is a copy of her brooch, which is a pink heart with a gold rim, two gold rings, and a gold crescent in the center. Her earrings are two gold crescents. Her choker is now yellow with a pink heart jewel on it. Her skirt is white, with a blue stripe and a yellow stripe. In the manga, her collar is blue and green.
===Eternal Sailor Moon===
In this form, Sailor Moon can perform "Silver Moon Crystal Power Kiss". Her sleeves are round and pink, and they have red bands. Her choker is red, and has a gold heart jewel with a crescent underneath. Her front bow has been replaced with two angel wings, and the brooch is the same as the choker jewel, only larger. Her belt is made of three ribbons: red, yellow, and blue, held together by a crescent buckle. Her skirt has three tiers, yellow, red, and blue. The bands at the top of her gloves have an ornament on them similar to the barettes in her hair, they are on like a blade would be. Also, her gloves have two bracelets at the wrists. Her earrings are a crescent with another dangling beneath it. Her tiara is gone and is replaced by a crescent, like Sailor V's. Her boots are now white with a downwards red point with a crescent jewel. Her back bow is still massive and red, but now has two long, thin dangling ribbons. Finally, she now has two massive angel wings, fully active.
===Princess Serenity, the Moon Princess===
Sailor Moon can transform into her past self, Princess Serenity of the Moon. Her powers here include healing people and giving up her life to save people. Both are connected to the Silver Crystal, or as it is called in Japan, the "ginzuishou". The crystal is a symbol of her soul, which she uses to save people.
Princess Serenity's gown has two round sleeves with spiral patterns on them. It is strapless and has a gold '0' shaped pattern on the bodice. After that, a little bit of white, and a section of gold beads complete the top. Then there is a billowing white dress. At the back, the beads have a white bow not unlike the back bow on Super Sailor Moon's outfit. This time, however, the bow is in the middle of her back, not on the small of her back. Princess Serenity also has barettes not unlike the ones Super and Eternal Sailor Moon wears, only they are pearls and have no feathers. She has a crescent on her head like Sailor V and Eternal Sailor Moon.
===Neo Queen Serenity===
As Neo Queen Serenity, Usagi guards over Crystal Tokyo in the future. Her outfit is almost the same as when she was Princess Serenity, only the sleeves have gone, there are now two rows of beads, the dress is a bit more slinky, and the bows are even more massive, the actual bow tied part is so massive it seems to form wings. Now, Neo Queen Serenity has a tiara on her head, it is golden, has some pink jewels on it, and in the center, a variation on her brooch from when she was Super Sailor Moon, only at the top, it has a crown-shaped jewel, and a ruby in the center of the heart, replacing the crescent.

View File

@@ -0,0 +1,57 @@
{{Charabox|chara_name=Usagi Tsukino
|image_filename=Smoon.png
|image_description_1=Usagi Tsukino as Sailor Moon
|image_description_2=Usagi Tsukino as Sailor Moon
|birthday=June 30
|astrosign=Cancer
|bloodtype=O
|family=[[Ikuko Tsukino]] (mother),<BR>[[Kenji Tsukino]] (father),<BR>[[Shingo Tsukino]] (brother)
|hobbies=Sleeping and eating
|sports=None
|color=Pink and white
|class=Home economics
|noclass=English, math
|food=Ice cream, cake
|nofood=Carrots
|place=Château de Versailles
|fortune=Usagi and Naru go to a<BR>fortune-telling house
|habit=Smiles to cheat people
|skill=Blackmailing,
persuades people by cying
|likes=White rabbits
|dislikes=Dentists
|motto=A sleeping child grows fast
|stone=Diamond
|titles=Sailor Moon,<BR>Princess Serenity,<BR>Neo-Queen Serenity}}
'''Usagi Tsukino'''(aka Sailor Moon) is one of the original five [[sailor soldiers]] and is the main character of [[Naoko Takeuchi]]'s [[Sailor Moon]] series. She is the princess of the moon, and a bit of a ditz. She has a black cat named [[Luna]] who is her [[guardian cat]] from the [[moon]].
Her name translates directly from Japanese as "moon field rabbit." This is a pun, because the character used for "field" is pronounced "no," which also means "of" in Japanese. So her name is a pun on "rabbit of the moon," a reference to a Japanese legend about a rabbit pounding mochi on the moon. There are many references to rabbits throughout the series.
==In the Manga==
Usagi was the first soldier introduced to us in [[Pretty Guardian Sailor Moon]]. She saved Luna, and fell asleep at her house after crying. Soon after waking, Luna explained to Usagi that she was the Soldier of the Moon, and she gave Usagi her transformation brooch. Her first time saving someone was when she saved her friend, Naru, from her mother, who was posessed.
==In the Anime==
Usagi is the leader of the Sailor Soldiers. Anime Usagi is a lot less mature than her manga counterpart. She is often found competing with [[Rei Hino]] and has silly arguments with her. She grows into her role as Sailor Moon, but slowly and less fully than does the Usagi of the manga.
==Forms==
===Sailor Moon===
In this form, Sailor Moon can perform attacks such as Moon Tiara Action. Her Sailor Suit has a blue collar, a blue skirt, red front and back bows, red boots with a white point with a crescent-shaped jewel on it. Her choker is red with the crescent jewel on it. Her brooch is also very special. It is gold, with a pink jewel and a crescent underneath it. Around the edges are four jewels, red, blue, a deeper gold, and green, symbolizing the four [[Guardian]] soldiers. In the Manga, she starts out wearing a white mask similar to that of Sailor V. In addition, she ears two jewels on her buns with a white outline and a red center. Her tiara has a red jewel.
===Super Sailor Moon===
In this form, Sailor Moon can perform "Moon Gorgeous Meditation". Her sailor suit now has a blue collar with two gold stripes. Her sleeves are three lavender see through winglike sleeves. She now has barettes in her hair along with the jewels. The barettes are three circles with feathers reaching out of each circle. The emblem on her tiara is now a crescent shape. Her front bow is red, while her back bow is white and massive. She has one yellow belt rim with a white wing underneath it. The belt buckle is a copy of her brooch, which is a pink heart with a gold rim, two gold rings, and a gold crescent in the center. Her earrings are two gold crescents. Her choker is now yellow with a pink heart jewel on it. Her skirt is white, with a blue stripe and a yellow stripe. In the manga, her collar is blue and green.
===Eternal Sailor Moon===
In this form, Sailor Moon can perform "Silver Moon Crystal Power Kiss". Her sleeves are round and pink, and they have red bands. Her choker is red, and has a gold heart jewel with a crescent underneath. Her front bow has been replaced with two angel wings, and the brooch is the same as the choker jewel, only larger. Her belt is made of three ribbons: red, yellow, and blue, held together by a crescent buckle. Her skirt has three tiers, yellow, red, and blue. The bands at the top of her gloves have an ornament on them similar to the barettes in her hair, they are on like a blade would be. Also, her gloves have two bracelets at the wrists. Her earrings are a crescent with another dangling beneath it. Her tiara is gone and is replaced by a crescent, like Sailor V's. Her boots are now white with a downwards red point with a crescent jewel. Her back bow is still massive and red, but now has two long, thin dangling ribbons. Finally, she now has two massive angel wings, fully active.
===Princess Serenity, the Moon Princess===
Sailor Moon can transform into her past self, Princess Serenity of the Moon. Her powers here include healing people. Both are connected to the Phantom Silver Crystal (maboroshii no ginzuishou). The crystal is a symbol of her soul, which she uses to save people.
Princess Serenity's gown has two round sleeves with spiral patterns on them. It is strapless and has a gold '0' shaped pattern on the bodice. After that, a ruffle of white, and a section of gold beads complete the top. Then there is a billowing white dress. At the back, the beads have a white bow not unlike the back bow on Super Sailor Moon's outfit. This time, however, the bow is in the middle of her back, not on the small of her back. Princess Serenity also has barettes not unlike the ones Super and Eternal Sailor Moon wears, only they are pearls and have no feathers. She has a crescent on her forehead head like Sailor V and Eternal Sailor Moon.
===Neo Queen Serenity===
As Neo Queen Serenity, Usagi guards over Crystal Tokyo in the future. Her outfit is almost the same as when she was Princess Serenity, only the sleeves have gone, there are now two rows of beads, the dress is a bit more slinky, and the bows are even more massive, the actual bow tied part is so massive it seems to form wings. Now, Neo Queen Serenity has a tiara on her head, it is golden, has some pink jewels on it, and in the center, a variation on her brooch from when she was Super Sailor Moon, only at the top, it has a crown-shaped jewel, and a ruby in the center of the heart, replacing the crescent.
==Parallel Sailor Moon==
In [[Parallel Sailor Moon]], the parody story created for the [[Materials Collection]], Usagi is the mother to two children, [[Kousagi Tsukino]] and [[Usagi Small Lady Serenity Tsukino|ChibiUsa Tsukino]]. She is much the same as she was in the rest of the manga, ditzy and forgetful and a crybaby but with a big heart.

View File

@@ -0,0 +1,18 @@
The following is a list of all templates. If you create a template, please list it here.
==Stubs==
{{charastub}}
==Spoiler==
{{spoiler}}
==Other==
{{seealso}}
{{charabox}}
{{shortcut}}
{{sandbox}}
[[Category: About Sailor Moon Wiki|L]]

View File

@@ -0,0 +1,18 @@
The following is a list of all templates. If you create a template, please list it here.
==Stubs==
<nowiki>{{charastub}}</nowiki>
==Spoiler==
<nowiki>{{spoiler}}</nowiki>
==Other==
<nowiki>{{shortcut}}
{{seealso}}
{{charabox}}
{{sandbox}}</nowiki>
[[Category: About Sailor Moon Wiki|L]]

View File

@@ -0,0 +1,74 @@
{{charabox |chara_name=Minako Aino
|image_filename=Venus7.jpg
|image_description_1=Minako Aino as Sailor Venus
|image_description_2=Minako Aino as Sailor Venus
|birthday=22nd October
|astrosign=Libra
|bloodtype=B
|family=mother, father
|hobbies=reading comics
|sports=volleyball
|color=yellow, red
|class=physical education, English
|noclass=everything else
|food=curry rice
|nofood=Shiitake mushrooms
|habit=forgets things, easily angered
|skill=fawning
|dislikes=mum and [[wikipedia:Law enforcement in Japan|police officers]]
|dream=To be an idol
|motto=If you fall down, lift yourself up!
|stone=tiger's eye
|titles=Sailor V, Sailor Venus, Princess Venus
}}
'''Minako Aino''' (愛野 美奈子, ''Aino Minako'') (known as just mina in the english dub) is one of the original five [[sailor soldiers]] & the leader of the Inner Sailor Soldiers and was in fact the first sailor soldier created by [[Naoko Takeuchi]]. She is extremely cheerful and more or less [[Usagi Tsukino|Usagi]]'s best friend. She has a white cat named [[Artemis]] who is her [[guardian cat]] from the [[Silver Millennium|moon]].
==In the manga==
Minako starred in her own manga series before [[Pretty Soldier Sailor Moon]]. This manga series was called [[Codename: Sailor V]] and detailed her adventures as Sailor V.
When Sailor V appeared to the soldiers, she announced herself as their [[Princess Serenity|princess]]. It is revealed later that she is, in fact, not the moon princess but the leader of her [[Soldiers of the Four Guardian Deities|guardians]]. She said she was the moon princess to act as a decoy and protect Usagi.
==In the anime==
Originally, Sailor Venus was Sailor V in England. She fought crime there with Artemis. She had two friends, Alan and Katarina. Minako fell in love with Alan, but Alan and Katarina fell in love and she left England for Japan again. She soon found the [[sailor soldiers]], and saved them from [[Zoisite]]. She soon after assumed the title of Sailor Venus.
Minako is almost as ditzy as Usagi but knows when to stop. She comes to term as the Leader of the Sailors. Her dream is to be an idol.
==Forms==
[[File:Vartmswink.jpg|thumb|Sailor V in the manga]]
===Sailor V===
In this form, Sailor V can perform "Crescent Beam." She wears an outfit similar to the [[sailor suit]], with a blue collar, red cap sleeves with blue cuffs, sholder guards, gloves with orange elbow pads, a red bow, chest armor, an exposed midriff, a blue skirt with a red line along the bottom and blue high heels. She also wears a red and white mask which looks like a flamboyant pair of red glasses. She has a crescent moon on her forehead (similar to [[Princess Serenity]]'s) and a white choker with a crescent moon.
===Sailor Venus===
In this form, Sailor Venus can perform many attacks including "Venus Love-Me Chain", among others. Her sailor suit has a orange collar, orange skirt, blue front bow, yellow back bow, orange high heels,an orange choker, and an orange-stoned tiara. In the manga, there is a chain around her waist which she uses to perform her attacks.
===Super Sailor Venus===
In this form, Sailor Venus can use the attack "Venus Love and Beauty Shock". There are no very apparent changes to her uniform, but her yellow back bow grows longer, and her brooch turns into a heart-shape. Her choker gains a star jewel on it another variant were added on [[wikipedia:Tatsunoko vs. Capcom: Ultimate All Stars]].
===Sailor Star Venus (manga-only)===
In this form, Sailor Venus gains round yellow sleeves with two orange bands holding them together. Her belt becomes two strips of ribbon, one yellow, one orange, held together by a star jewel, like the one on her choker.Her skirt now has two tiers, the top orange, the bottom yellow. The back ribbons become huge at the bow with two skinny ribbons hanging down. Her boots are tall and white, in the style of Sailor Moon's and Mercury's, only the point is down and orange. The point is held by a star jewel. Her brooch also changes from a heart-shaped jewel to a star-shaped jewel. She loses her tiara, and on her forehead is the symbol for Venus.
===Princess Venus===
In the past during the Silver Millennium, she was Princess Venus, ruler of the planet Venus. As Sailor Venus, she is the leader of the Sailor Soldiers, guardians of Princess Serenity, and soldier of Love and Beauty.
===Queen Venus===
There is no canon information that supports any of the Planetary Princesses are Queens in the 30th century beyond Neo Queen Serenity.
==Transformations==
*Crescent Power: Using the Crescent Moon Broach, she transforms into heroine, Sailor V.
*Venus Power, Make Up!: Using her transformation pen, Minako transformed into the 1st form of Sailor Venus. Used from Sailor Moon Classic through to the Sailor Moon R Pt.2.
*Venus Star Power, Make Up!: Using her 2nd Star Transformation Power Stick to transform into the 2nd form of Sailor Venus, with stronger powers. Used from Sailor Moon R Pt. 2 to the middle of Sailor Moon SuperS.
*Venus Crystal Power, Make Up!: Using her 3rd Crystal and Rod given to her by Pegasus she transforms into Super Sailor Venus the 3rd and final form of Venus in the anime.
==Powers==
*Crescent Beam: Creating a powerful light beam.
*Crescent Beam Shower: A more powerful form of her crescent beam, she blasts multipile beams.
*Venus Love-Me Chain&nbsp;: Creating a heart shaped chain that can harness, attack, and be used as a whip. ( called Love-Chain Encircle in English Anime)
*Venus Love & Beauty Shock: Creating a multiple heart shaped lights that combine into one powerful attack.

View File

@@ -0,0 +1,75 @@
{{charabox
|chara_name = Minako Aino
|image_filename = Venus7.jpg
|image_description_1 = Minako Aino as Sailor Venus
|image_description_2 = Minako Aino as Sailor Venus
|birthday = 22nd October
|astrosign = Libra
|bloodtype = B
|family = mother, father
|hobbies = reading comics
|sports = volleyball
|color = yellow, red
|class = physical education, English
|noclass = everything else
|food = curry rice
|nofood = Shiitake mushrooms
|habit = forgets things, easily angered
|skill = fawning
|dislikes = mum and [[wikipedia:Law enforcement in Japan|police officers]]
|dream = To be an idol
|motto = If you fall down, lift yourself up!
|stone = topaz
|titles = Sailor V, Sailor Venus, Princess Venus
}}
'''Minako Aino''' (愛野 美奈子, ''Aino Minako'') (known as just mina in the english dub) is one of the original five [[sailor soldiers]] & the leader of the Inner Sailor Soldiers and was in fact the first sailor soldier created by [[Naoko Takeuchi]]. She is extremely cheerful and more or less [[Usagi Tsukino|Usagi]]'s best friend. She has a white cat named [[Artemis]] who is her [[guardian cat]] from the [[Silver Millennium|moon]].
==In the manga==
Minako starred in her own manga series before [[Pretty Soldier Sailor Moon]]. This manga series was called [[Codename: Sailor V]] and detailed her adventures as Sailor V.
When Sailor V appeared to the soldiers, she announced herself as their [[Princess Serenity|princess]]. It is revealed later that she is, in fact, not the moon princess but the leader of her [[Soldiers of the Four Guardian Deities|guardians]]. She said she was the moon princess to act as a decoy and protect Usagi.
==In the anime==
Originally, Sailor Venus was Sailor V in England. She fought crime there with Artemis. She had two friends, Alan and Katarina. Minako fell in love with Alan, but Alan and Katarina fell in love and she left England for Japan again. She soon found the [[sailor soldiers]], and saved them from [[Zoisite]]. She soon after assumed the title of Sailor Venus.
Minako is almost as ditzy as Usagi but knows when to stop. She comes to term as the Leader of the Sailors. Her dream is to be an idol.
==Forms==
[[File:Vartmswink.jpg|thumb|Sailor V in the manga]]
===Sailor V===
In this form, Sailor V can perform "Crescent Beam." She wears an outfit similar to the [[sailor suit]], with a blue collar, red cap sleeves with blue cuffs, sholder guards, gloves with orange elbow pads, a red bow, chest armor, an exposed midriff, a blue skirt with a red line along the bottom and blue high heels. She also wears a red and white mask which looks like a flamboyant pair of red glasses. She has a crescent moon on her forehead (similar to [[Princess Serenity]]'s) and a white choker with a crescent moon.
===Sailor Venus===
In this form, Sailor Venus can perform many attacks including "Venus Love-Me Chain", among others. Her sailor suit has a orange collar, orange skirt, blue front bow, yellow back bow, orange high heels,an orange choker, and an orange-stoned tiara. In the manga, there is a chain around her waist which she uses to perform her attacks.
===Super Sailor Venus===
In this form, Sailor Venus can use the attack "Venus Love and Beauty Shock". There are no very apparent changes to her uniform, but her yellow back bow grows longer, and her brooch turns into a heart-shape. Her choker gains a star jewel on it another variant were added on [[wikipedia:Tatsunoko vs. Capcom: Ultimate All Stars]].
===Sailor Star Venus (manga-only)===
In this form, Sailor Venus gains round yellow sleeves with two orange bands holding them together. Her belt becomes two strips of ribbon, one yellow, one orange, held together by a star jewel, like the one on her choker.Her skirt now has two tiers, the top orange, the bottom yellow. The back ribbons become huge at the bow with two skinny ribbons hanging down. Her boots are tall and white, in the style of Sailor Moon's and Mercury's, only the point is down and orange. The point is held by a star jewel. Her brooch also changes from a heart-shaped jewel to a star-shaped jewel. She loses her tiara, and on her forehead is the symbol for Venus.
===Princess Venus===
In the past during the Silver Millennium, she was Princess Venus, ruler of the planet Venus. As Sailor Venus, she is the leader of the Sailor Soldiers, guardians of Princess Serenity, and soldier of Love and Beauty.
===Queen Venus===
There is no canon information that supports any of the Planetary Princesses are Queens in the 30th century beyond Neo Queen Serenity.
==Transformations==
*Crescent Power: Using the Crescent Moon Broach, she transforms into heroine, Sailor V.
*Venus Power, Make Up!: Using her transformation pen, Minako transformed into the 1st form of Sailor Venus. Used from Sailor Moon Classic through to the Sailor Moon R Pt.2.
*Venus Star Power, Make Up!: Using her 2nd Star Transformation Power Stick to transform into the 2nd form of Sailor Venus, with stronger powers. Used from Sailor Moon R Pt. 2 to the middle of Sailor Moon SuperS.
*Venus Crystal Power, Make Up!: Using her 3rd Crystal and Rod given to her by Pegasus she transforms into Super Sailor Venus the 3rd and final form of Venus in the anime.
==Powers==
*Crescent Beam: Creating a powerful light beam.
*Crescent Beam Shower: A more powerful form of her crescent beam, she blasts multipile beams.
*Venus Love-Me Chain&nbsp;: Creating a heart shaped chain that can harness, attack, and be used as a whip. ( called Love-Chain Encircle in English Anime)
*Venus Love & Beauty Shock: Creating a multiple heart shaped lights that combine into one powerful attack.

View File

@@ -0,0 +1,69 @@
{{Charabox|chara_name=Lita Kino
|image_filename=Sailorjupiter.jpg
|image_description_1={{PAGENAME}}
|image_description_2={{PAGENAME}}
|birthday=December 5<BR>(age 30)
|astrosign=Sagittarius
|bloodtype=O
|family= Orphaned
|hobbies=Cooking,<BR> Shopping,<BR> reading romance novels,<BR> Award-winning Actress,<BR> Host on Japan's game show on [[wikipedia:TV Asahi|TV Asahi's]] <BR>''[[wikipedia:Russian Roulette (game show)|Russian Roulette]]''
|sports= Martial arts
|color= Sugar pink, <BR> green
|class= Home Economics, <BR> History
|noclass= Physics
|food= Cherry pie, <br> Meatloaf
|nofood= None
|place= [[wikipedia:New York City|New York City]],<br>[[wikipedia:Hollywood, Los Angeles, California|Hollywood]],<br>[[wikipedia:Las Vegas, Nevada|Las Vegas]]
|fortune=
|habit= Obsesses over boys,<BR> Extinguishing Fires
|skill= Cooking, <BR> strong,<BR> athletic
|likes= Horse
|dislikes= Airplanes, <BR> Cheaters, <BR> Fire (when left cooking unattended for too long)
|dream= A bride, <BR> to own a bakery/florists'
|motto= "Melts in your mouth, not in your hand."
|stone=[[wikipedia:Emerald|Emerald]]
|titles=Sailor Jupiter, Princess Jupiter,<BR>Kelly Landry}}
'''Makoto Kino''' is the [[Sailor Senshi]] of Jupiter. Her name means "Sincerity of Wood". [[wikipedia:Five_elements (Chinese philosophy)|Wood]], in Chinese astrology, represents strength and flexibility. She is very tall for her age, and studies the martial arts. She is very independant, as she was orphaned at an early age and has had to take care of herself.Her parents died in a plane crash,so thats why she's scared of planes.She sees herself as a protector, even before she became a [[sailor soldier]]. She is also curiously vulnerable - due to her need to take care of herself, she didn't have many close friends, until [[Usagi Tsukino]] offered to sit with her.
One of her quirks is that she is always obsessing over boys, who all look "just like" her old boyfriend.
==Forms==
===Sailor Jupiter===
[[Image:sailorjupiter]]
Her sailor suit has a dark green collar, dark green skirt, sugar pink front bow, sugar pink back bow, dark green small boots, a dark green choker with a gold star, and a green-stoned tiara. She wears pink rose-shaped earrings, and a special hairtie with two green round balls on it.
===Princess Jupiter===
During the Silver Millenium, she was the ruler of the planet Jupiter. She is the Sailor Soldier of Nature & Strength.
===Queen Jupiter===
She is now Ruler of the Planet Jupiter [[wikipedia:Jupiter|Jupiter]].
==Transformations==
Jupiter Power! (Make Up!): Using her 1st transformation pen, Lita transformed into the 1st version of Sailor Jupiter. Used from Sailor Moon Classic through to the Sailor Moon R Pt.2.
Jupiter Star Power! (Make Up!): Using her 2nd Star Transformation Power Stick to transform into the 2nd version of Sailor Jupiter, with stronger powers. Used from Sailor Moon R Pt. 2 to the middle of Sailor Moon SuperS.
Jupiter Crystal Power! (Make Up!): Using her 3rd Crystal and Rod given to her by Pegasus she transforms into Super Sailor Jupiter the 3rd and final form of Jupiter in the anime.
==Attacks==
*Supreme Thunder: Blasting powerful Thunderbolts to crush the enemy.
*Supreme Thunder Dragon: An even more powerful version of Supreme Thunder, she creates a dragon out of thunder.
*Sparkling Wide Pressure: Creating a bolt of electricity and thunder. (A Less powerful version was called "Jupiter Thundercloud Zap")
*Jupiter Oak Evolution: Blasting beams of light with the strength of an oak tree.
{{charastub}}
[[Category:Sailor soldiers]]

View File

@@ -0,0 +1,98 @@
{{Charabox|chara_name=Lita Kino
|image_filename=Sailorjupiter.jpg
|image_description_1={{PAGENAME}}
|image_description_2={{PAGENAME}}
|birthday=December 5<BR>(age 30)
|astrosign=Sagittarius
|bloodtype=O
|family= Orphaned
|hobbies=Cooking,<BR> Shopping,<BR> reading romance novels,<BR> Award-winning Actress,<BR> Host on Japan's game show on [[wikipedia:TV Asahi|TV Asahi's]] <BR>''[[wikipedia:Russian Roulette (game show)|Russian Roulette]]''
|sports= Martial arts
|color= Sugar pink, <BR> green
|class= Home Economics, <BR> History
|noclass= Physics
|food= Cherry pie, <br> Meatloaf
|nofood= None
|place= [[wikipedia:New York City|New York City]],<br>[[wikipedia:Hollywood, Los Angeles, California|Hollywood]],<br>[[wikipedia:Las Vegas, Nevada|Las Vegas]]
|fortune=
|habit= Obsesses over boys,<BR> Extinguishing Fires
|skill= Cooking, <BR> strong,<BR> athletic
|likes= Horse
|dislikes= Airplanes, <BR> Cheaters, <BR> Fire (when left cooking unattended for too long)
|dream= A bride, <BR> to own a bakery/florists'
|motto= "Melts in your mouth, not in your hand."
|stone=[[wikipedia:Emerald|Emerald]]
|titles=Sailor Jupiter, Princess Jupiter,<BR>Kelly Landry}}
'''Makoto Kino''' is the [[Sailor Senshi]] of Jupiter. Her name means "Sincerity of Wood". [[wikipedia:Five_elements (Chinese philosophy)|Wood]], in Chinese astrology, represents strength and flexibility. She is very tall for her age, and studies the martial arts. She is very independant, as she was orphaned at an early age and has had to take care of herself. Her parents died in a plane crash, so thats why she's scared of planes. She sees herself as a protector, even before she became a [[sailor soldier]]. She is also curiously vulnerable - due to her need to take care of herself, she didn't have many close friends, until [[Usagi Tsukino]] offered to sit with her.
One of her quirks is that she is always obsessing over boys, who all look "just like" her old boyfriend.
==Forms==
===Sailor Jupiter===
[[Image:sailorjupiter]]
Her sailor suit has a dark green collar, dark green skirt, sugar pink front bow, sugar pink back bow, dark green small boots, a dark green choker with a gold star, and a green-stoned tiara. She wears pink rose-shaped earrings, and a special hairtie with two green round balls on it.
===Princess Jupiter===
During the Silver Millenium, she was the ruler of the planet Jupiter. She is the Sailor Soldier of Nature & Strength.
===Queen Jupiter===
She is now Ruler of the Planet Jupiter [[wikipedia:Jupiter|Jupiter]].
==Transformations==
Jupiter Power! (Make Up!): Using her 1st transformation pen, Lita transformed into the 1st version of Sailor Jupiter. Used from Sailor Moon Classic through to the Sailor Moon R Pt.2.
Jupiter Star Power! (Make Up!): Using her 2nd Star Transformation Power Stick to transform into the 2nd version of Sailor Jupiter, with stronger powers. Used from Sailor Moon R Pt. 2 to the middle of Sailor Moon SuperS.
Jupiter Crystal Power! (Make Up!): Using her 3rd Crystal and Rod given to her by Pegasus she transforms into Super Sailor Jupiter the 3rd and final form of Jupiter in the anime.
==Attacks==
*Supreme Thunder: Blasting powerful Thunderbolts to crush the enemy.
*Supreme Thunder Dragon: An even more powerful version of Supreme Thunder, she creates a dragon out of thunder.
*Sparkling Wide Pressure: Creating a bolt of electricity and thunder. (A Less powerful version was called "Jupiter Thundercloud Zap")
*Jupiter Oak Evolution: Blasting beams of light with the strength of an oak tree.
{{charastub}}
[[Category:Sailor soldiers]]

View File

@@ -0,0 +1,32 @@
{{Charabox|chara_name=Usagi Tsukino
|image_filename=Smoon.png
|image_description_1=Usagi Tsukino as Sailor Moon
|image_description_2=Usagi Tsukino as Sailor Moon
|birthday=June 30
|astrosign=Cancer
|bloodtype=O
|family=[[Ikuko Tsukino]] (mother),
[[Kenji Tsukino]] (father),
[[Shingo Tsukino]] (brother)
|hobbies=Sleeping and eating
|sports=None
|color=Pink and white
|class=Home economics
|noclass=English, math
|food=Ice cream, cake
|nofood=Carrots
|place=Palace of Versailles
|fortune=A fortune-telling house
|habit=Cries to get what she wants
|skill=Crying, sleeping
|likes=White rabbits
|dislikes=Dentists
|motto=A sleeping child grows fast
|stone=Diamond
|titles=Sailor Moon,
Princess Serenity,
Neo-Queen Serenity}}

View File

@@ -0,0 +1,34 @@
{{Charabox|chara_name=Usagi Tsukino
|image_filename=Smoon.png
|image_description_1=Usagi Tsukino as Sailor Moon
|image_description_2=Usagi Tsukino as Sailor Moon
|birthday=June 30
|astrosign=Cancer
|bloodtype=O
|family=[[Ikuko Tsukino]] (mother),
[[Kenji Tsukino]] (father),
[[Shingo Tsukino]] (brother)
|hobbies=Sleeping and eating
|sports=None
|color=Pink and white
|class=Home economics
|noclass=English, math
|food=Ice cream, cake
|nofood=Carrots
|place=Château de Versailles
|fortune=Usagi and Naru go to a
fortune-telling house
|habit=Smiles to cheat people
|skill=Blackmailing,
persuades people by cying
|likes=White rabbits
|dislikes=Dentists
|motto=A sleeping child grows fast
|stone=Diamond
|titles=Sailor Moon,
Princess Serenity,
Neo-Queen Serenity}}

View File

@@ -0,0 +1,68 @@
{{charabox |chara_name=Haruka Ten'ou
|image_filename=Uranus10.jpg
|image_description_1=Haruka Ten'ou as Sailor Uranus
|image_description_2=
|birthday=January 27
|astrosign=Aquarius
|bloodtype=B
|family= Girlfriend Michiru/Sailor Neptune<BR/> Changed to cousin 'Michelle' in English<BR/> dub of the anime
|hobbies=Car racing<BR/> Driving<BR/> Track and field<BR/> Playing the piano<BR/> Flirting with pretty girls
|sports=Car racing
|color=Gold
|class=Physical education
|noclass= Modern Japanese
|food=Salad
|nofood=Nattou
|place=
|fortune=
|habit= flirting with pretty girls
|skill=Fawning
|likes=Panda
|dislikes= confessions of love
|dream= To become a professional racer
|motto=
|stone=[[wikipedia:Amber|Amber]]
|titles=Sailor Uranus,<BR>Princess Uranus}}
'''Haruka Ten'ou''' ('''Amara Ten'ou''' in the English dub) better known as '''Sailor Uranus''' is one of the [[Outer Soldiers]]. She is the Keeper of the Space Sword.
Haruka is formally introduced in the [[Sailor Moon S]] story arc, although she appears in silhouette alongside Sailor Neptune in the final [[Sailor Moon R]] episode, which acted as a "teaser" to Sailor Moon S.
Haruka is older than the Inner Senshi, already in high school when the Inner Soldiers are still in junior high. She originally attended the private Mugen School, along with Michuru and Hotaru. She is very tomboyish and has a love of speed; she runs track and races many kinds of vehicles. She can be deeply suspicious of others and can often appear cold in this regard, although she will strongly defend anyone who has earned her trust.
As a Sailor Soldier, Uranus' tactics (along with Neptune's) can be controversial and morally ambiguous, which puts her at odds with Sailor Moon and the other inner Senshi - particularly since they can frequently involve sacrificing lives. This includes willing to let the Death Buster's victims die if their Heart Crystals were the ones they were searching for, wanting to kill Hotaru because she had the Sovereign of Silence within her and betraying Saturn and Pluto in an attempt to join with Galaxia and then double-cross her.
===Her relationship with Sailor Neptune===
In the original manga, Sailor Neptune and Sailor Uranus were lovers. In the Japanese anime, this was the same. However, in the dub, it was decided to change their relationship to that of cousins, as it was considered too controversial for a children's show. Some have hypothesized that in the [[Moon Kingdom]], Sailor Uranus was a man ("Prince Uranus"), and was reincarnated as female
(thus making Haruka and Michiru's relationship "''really'' heterosexual"), but this has been refuted by [[Naoko Takeuchi]]. Some characterize Haruka as being the dominant personality in the relationship, although it could be argued that Michiru has Haruka wrapped around her finger.
Even though they are lovers, they have agreed that they will sacrifice each other if necessary for their mission.
Due to the controversial nature of their relationship, Haruka and Michiru were introduced in the dub as cousins, a fact reinforced by others that technically should not have known to begin with. But despite that, their flirty banter is mostly kept intact throughout the season.
In the final season of Sailor Stars (which has yet to be dubbed and most likely never will), their relationship has stepped up a level from banter to almost explicitly physical in nature and no amount of dubbing would be able to change that. Part of the reason why Sailor Moon S took so long to come out was because the dubbers had to work hard to conceal their relationship.
==In the Manga==
Haruka in the manga is a swift change from Haruka in the anime, as she is shown wearing both feminine and masculine clothing. When she wears masculine clothes, her appearance is sharper to help make the distinction.
==In the Anime==
Haruka is introduced in the S season of the anime, although a silhouette of her and Sailor Neptune appeared in the previous season.
Due to her masculine dress style, Haruka is more often than not mistaken for a boy initially, as evidenced by Usagi and Minako, despite the former already having a boyfriend and future husband they are added in [[wikipedia:Tatsunoko vs. Capcom: Ultimate All Stars]].
==Forms and Powers==
===Sailor Uranus===
Uranus Planet Power! (Make Up!): Transformation phrase used during Sailor Moon S to transform into Sailor Uranus.
Like her fellow Outers, Sailor Uranus is a lot more mature and almost never seen without her partner Sailor Neptune. Uranus is also arguably the strongest of the Senshi, her physical hits generally doing a lot more damage than any of the others. Makoto is possibly Haruka's match in physical strength, as it seemed as though Haruka had won, she was injured by Makoto, who was injured herself.
In temperament, Uranus is generally more quick to act than to sit and think and along with the other Outers, is somewhat cold to the younger Senshi, mostly due to the Outers being the first line of defense in protecting the solar system.
In a strange animation quirk, her special attack, World Shaking, looks like a ground attack, despite the fact that Uranus is the Sky Senshi.
Uranus' special weapon is the Space Sword.
Uranus' first uniform upgrade came in the first episode of the last season, Sailor Stars.
{{charastub}}

View File

@@ -0,0 +1,68 @@
[[File:Esuesvmanga.jpg|thumb|left|Haruka, AKA Eternal Sailor Uranus, as shown in the manga.]]{{charabox
|chara_name = Haruka Ten'ou
|image_filename = Uranus10.jpg
|image_description_1 = Haruka Ten'ou as Sailor Uranus
|birthday = January 27th
|astrosign = Aquarius
|bloodtype = B
|family = Girlfriend Michiru/Sailor Neptune<BR/> Changed to cousin 'Michelle' in English<BR/> dub of the anime
|hobbies = Driving
|sports = Car racing
|color = Gold
|class = Physical education
|noclass = Modern History
|food = Salad
|nofood = Nattou (fermented soy beans)
|place = n/a
|fortune = n/a
|habit = Flirting with pretty girls
|skill = Racing
|likes = n/a
|dislikes = Confessions of love
|dream = To become a professional racer
|motto = n/a
|stone = [[wikipedia:Amber|Amber]]
|titles = Sailor Uranus,<BR>Princess Uranus
}}
'''Ten'ou Haruka/Tenoh Haruka '''('''Amara Ten'ou''' in the English dub) better known as '''Sailor Uranus''' is one of the [[Outer Soldiers]]. She is the Keeper of the Space Sword.
Haruka is formally introduced in the [[Sailor Moon S]] story arc, although she appears in silhouette alongside Sailor Neptune in the final [[Sailor Moon R]] episode, which acted as a "teaser" to Sailor Moon S.
Haruka is older than the Inner Senshi, already in high school when the Inner Soldiers are still in junior high. She originally attended the private Mugen School, along with Michuru and Hotaru. She is very tomboyish and has a love of speed; she runs track and races many kinds of vehicles. She can be deeply suspicious of others and can often appear cold in this regard, although she will strongly defend anyone who has earned her trust.
As a Sailor Soldier, Uranus' tactics (along with Neptune's) can be controversial and morally ambiguous, which puts her at odds with Sailor Moon and the other inner Senshi - particularly since they can frequently involve sacrificing lives. This includes willing to let the Death Buster's victims die if their Heart Crystals were the ones they were searching for, wanting to kill Hotaru because she had the Sovereign of Silence within her and betraying Saturn and Pluto in an attempt to join with Galaxia and then double-cross her.
Haruka's name means 'Far Sky King', although her attacks do not exactly reflect this.
===Her relationship with Sailor Neptune===
In the original manga, Sailor Neptune and Sailor Uranus were lovers. In the Japanese anime, this was the same. However, in the dub, it was decided to change their relationship to that of cousins, as it was considered too controversial for a children's show. Some have hypothesized that in the [[Moon Kingdom]], Sailor Uranus was a man ("Prince Uranus"), and was reincarnated as female
(thus making Haruka and Michiru's relationship "''really'' heterosexual"), but this has been refuted by [[Naoko Takeuchi]]. Some characterize Haruka as being the dominant personality in the relationship, although it could be argued that Michiru has Haruka wrapped around her finger.
Even though they are lovers, they have agreed that they will sacrifice each other if necessary for their mission.
Due to the controversial nature of their relationship, Haruka and Michiru were introduced in the dub as cousins, a fact reinforced by others that technically should not have known to begin with. But despite that, their flirty banter is mostly kept intact throughout the season.
In the final season of Sailor Stars (which has yet to be dubbed and most likely never will), their relationship has stepped up a level from banter to almost explicitly physical in nature and no amount of dubbing would be able to change that. Part of the reason why Sailor Moon S took so long to come out was because the dubbers had to work hard to conceal their relationship.
==In the Manga==
Haruka in the manga is a swift change from Haruka in the anime, as she is shown wearing both feminine and masculine clothing. When she wears masculine clothes, her appearance is sharper to help [[File:Haruka221.jpg|thumb|left|Haruka.]]make the distinction.
==In the Anime==
Haruka is introduced in the S season of the anime, although a silhouette of her and Sailor Neptune appeared in the previous season.
Due to her masculine dress style, Haruka is more often than not mistaken for a boy initially, as evidenced by Usagi and Minako, despite the former already having a boyfriend and future husband they are added in [[wikipedia:Tatsunoko vs. Capcom: Ultimate All Stars]].[[File:Haruka97.jpg|thumb|Haruka, AKA Sailor Uranus, as shown in the anime.]]
==Forms and Powers==
===Sailor Uranus===
Uranus Planet Power! (Make Up!): Transformation phrase used during Sailor Moon S to transform into Sailor Uranus.
Like her fellow Outers, Sailor Uranus is a lot more mature and almost never seen without her partner Sailor Neptune. Uranus is also arguably the strongest of the Senshi, her physical hits generally doing a lot more damage than any of the others. Makoto is possibly Haruka's match in physical strength, as it seemed as though Haruka had won, she was injured by Makoto, who was injured herself.
In temperament, Uranus is generally more quick to act than to sit and think and along with the other Outers, is somewhat cold to the younger Senshi, mostly due to the Outers being the first line of defense in protecting the solar system.
In a strange animation quirk, her special attack, World Shaking, looks like a ground attack, despite the fact that Uranus is the Sky Senshi.
Uranus' special weapon is the Space Sword.
Uranus' first uniform upgrade came in the first episode of the last season, Sailor Stars.

View File

@@ -0,0 +1,75 @@
{{charabox
|chara_name = Minako Aino
|image_filename = Venus7.jpg
|image_description_1 = Minako Aino as Sailor Venus
|image_description_2 = Minako Aino as Sailor Venus
|birthday = 22nd October
|astrosign = Libra
|bloodtype = B
|family = mother, father
|hobbies = reading comics
|sports = volleyball
|color = yellow, red
|class = physical education, English
|noclass = everything else
|food = curry rice
|nofood = Shiitake mushrooms
|habit = forgets things, easily angered
|skill = fawning
|dislikes = mum and [[wikipedia:Law enforcement in Japan|police officers]]
|dream = To be an idol
|motto = If you fall down, lift yourself up!
|stone = topaz
|titles = Sailor V, Sailor Venus, Princess Venus
}}''' Minako Aino''' (愛野 美奈子, ''Aino Minako; ''known simply as '''Mina Aino''' in the english adaptations) better known as '''Sailor Venus''' is one of the original five [[sailor soldiers]] & the leader of the Inner Sailor Soldiers and was in fact the first sailor soldier created by [[Naoko Takeuchi]]. She is extremely cheerful and more or less [[Usagi Tsukino|Usagi]]'s best friend. She has a white cat named [[Artemis]] who is her [[guardian cat]] from the [[Silver Millennium|moon]].
==In the manga==
Minako starred in her own manga series before [[Pretty Soldier Sailor Moon]]. This manga series was called [[Codename: Sailor V]] and detailed her adventures as Sailor V.
When Sailor V appeared to the soldiers, she announced herself as their [[Princess Serenity|princess]]. It is revealed later that she is, in fact, not the moon princess but the leader of her [[Soldiers of the Four Guardian Deities|guardians]]. She said she was the moon princess to act as a decoy and protect Usagi.
==In the anime==
Originally, Sailor Venus was Sailor V in England. She fought crime there with Artemis. She had two friends, Alan and Katarina. Minako fell in love with Alan, but Alan and Katarina fell in love and she left England for Japan again. She soon found the [[sailor soldiers]], and saved them from [[Zoisite]]. She soon after assumed the title of Sailor Venus.
Minako is almost as ditzy as Usagi but knows when to stop. She comes to term as the Leader of the Sailors. Her dream is to be an idol.
==Forms==
[[File:Vartmswink.jpg|thumb|Sailor V in the manga]]
===Sailor V===
In this form, Sailor V can perform "Crescent Beam." She wears an outfit similar to the [[sailor suit]], with a blue collar, red cap sleeves with blue cuffs, sholder guards, gloves with orange elbow pads, a red bow, chest armor, an exposed midriff, a blue skirt with a red line along the bottom and blue high heels. She also wears a red and white mask which looks like a flamboyant pair of red glasses. She has a crescent moon on her forehead (similar to [[Princess Serenity]]'s) and a white choker with a crescent moon.
===Sailor Venus===
In this form, Sailor Venus can perform many attacks including "Venus Love-Me Chain", among others. Her sailor suit has a orange collar, orange skirt, blue front bow, yellow back bow, orange high heels,an orange choker, and an orange-stoned tiara. In the manga, there is a chain around her waist which she uses to perform her attacks.
===Super Sailor Venus===
In this form, Sailor Venus can use the attack "Venus Love and Beauty Shock". There are no very apparent changes to her uniform, but her yellow back bow grows longer, and her brooch turns into a heart-shape. Her choker gains a star jewel on it another variant were added on [[wikipedia:Tatsunoko vs. Capcom: Ultimate All Stars]].
===Sailor Star Venus (manga-only)===
In this form, Sailor Venus gains round yellow sleeves with two orange bands holding them together. Her belt becomes two strips of ribbon, one yellow, one orange, held together by a star jewel, like the one on her choker.Her skirt now has two tiers, the top orange, the bottom yellow. The back ribbons become huge at the bow with two skinny ribbons hanging down. Her boots are tall and white, in the style of Sailor Moon's and Mercury's, only the point is down and orange. The point is held by a star jewel. Her brooch also changes from a heart-shaped jewel to a star-shaped jewel. She loses her tiara, and on her forehead is the symbol for Venus.
===Princess Venus===
In the past during the Silver Millennium, she was Princess Venus, ruler of the planet Venus. As Sailor Venus, she is the leader of the Sailor Soldiers, guardians of Princess Serenity, and soldier of Love and Beauty.
===Queen Venus===
There is no canon information that supports any of the Planetary Princesses are Queens in the 30th century beyond Neo Queen Serenity.
==Transformations==
*Crescent Power: Using the Crescent Moon Broach, she transforms into heroine, Sailor V.
*Venus Power, Make Up!: Using her transformation pen, Minako transformed into the 1st form of Sailor Venus. Used from Sailor Moon Classic through to the Sailor Moon R Pt.2.
*Venus Star Power, Make Up!: Using her 2nd Star Transformation Power Stick to transform into the 2nd form of Sailor Venus, with stronger powers. Used from Sailor Moon R Pt. 2 to the middle of Sailor Moon SuperS.
*Venus Crystal Power, Make Up!: Using her 3rd Crystal and Rod given to her by Pegasus she transforms into Super Sailor Venus the 3rd and final form of Venus in the anime.
*Venus Eternal Power, Make Up!: Her very last transformation that was only shown in the manga, no one knows why it wasn't in the anime.
==Powers==
*Crescent Beam: Creating a powerful light beam.
*Crescent Beam Shower: A more powerful form of her crescent beam, she blasts multipile beams.
*Venus Love-Me Chain&nbsp;: Creating a heart shaped chain that can harness, attack, and be used as a whip. ( called Love-Chain Encircle in English Anime)
*Venus Love & Beauty Shock: Creating a multiple heart shaped lights that combine into one powerful attack.
[[Category:Usagi Tsukino and her Friends]]

View File

@@ -0,0 +1,81 @@
{{charabox
|chara_name = Minako Aino
|image_filename = Venus7.jpg
|image_description_1 = Minako Aino as Sailor Venus
|image_description_2 = Minako Aino as Sailor Venus
|birthday = October 22nd
|astrosign = Libra
|bloodtype = B
|family = Mother
|hobbies = Chasing idols
|sports = Volleyball
|color = Yellow, Red
|class = Physical Education
|noclass = Math, English
|food = Curry
|nofood = Shiitake mushrooms
|place = n/a
|fortune = n/a
|habit = Easily forgetful
|skill = Playing
|likes = n/a
|dislikes = Her mother, and policemen
|dream = To be an idol
|motto = If you fall down, lift yourself up!
|stone = Ttopaz
|titles = Sailor V, Sailor Venus, Princess Venus
}}'''Aino Minako''' (愛野 美奈子, ''Aino Minako; ''known simply as '''Mina Aino''' in the english adaptations) better known as '''Sailor Venus''' is one of the original five [[sailor soldiers]] & the leader of the Inner Sailor Soldiers and was in fact the first sailor soldier created by [[Naoko Takeuchi]]. She is extremely cheerful and more or less [[Usagi Tsukino|Usagi]]'s best friend. She has a white cat named [[Artemis]] who is her [[guardian cat]] from the [[Silver Millennium|moon]].
Her name means 'Beautiful Little Child of Love', and her attacks are based around love, with the exception of Venus Crescent Beam.
==In the manga==
Minako starred in her own manga series before [[Pretty Soldier Sailor Moon]]. This manga series was called [[Codename: Sailor V]] and detailed her adventures as Sailor V.
When Sailor V appeared to the soldiers, she announced herself as their [[Princess Serenity|princess]]. It is revealed later that she is, in fact, not the moon princess but the leader of her [[Soldiers of the Four Guardian Deities|guardians]]. She said she was the moon princess to act as a decoy and protect Usagi.
==In the anime==
Originally, Sailor Venus was Sailor V in England. She fought crime there with Artemis. She had two friends, Alan and Katarina. Minako fell in love with Alan, but Alan and Katarina fell in love and she le[[File:Mina103.jpg|thumb|left|Minako, AKA Sailor Venus, as shown in the anime.]]ft England for Japan again. She soon found the [[sailor soldiers]], and saved them from [[Zoisite]]. She soon after assumed the title of Sailor Venus.
Minako is almost as ditzy as Usagi but knows when to stop. She comes to term as the Leader of the Sailors. Her dream is to be an idol.
==Forms==
[[File:Vartmswink.jpg|thumb|Sailor V in the manga]]
===Sailor V===
In this form, Sailor V can perform "Crescent Beam." She wears an outfit similar to the [[sailor suit]], with a blue collar, red cap sleeves with blue cuffs, sholder guards, gloves with orange elbow pads, a red bow, chest armor, an exposed midriff, a blue skirt with a red line along the bottom and blue high heels. She also wears a red and white mask which looks like a flamboyant pair of red glasses. She has a crescent moon on her forehead (similar to [[Princess Serenity]]'s) and a white choker with a crescent moon.
===Sailor Venus===
In this form, Sailor Venus can perform many attacks including "Venus Love-Me Chain", among others. Her sailor suit has a orange collar, orange skirt, blue front bow, yellow back bow, orange high heels,an orange choker, and an orange-stoned tiara. In the manga, there is a chain around her waist which she uses to perform her attacks.
===Super Sailor Venus===
In this form, Sailor Venus can use the attack "Venus Love and Beauty Shock". There are no very apparent changes to her uniform, but her yellow back bow grows longer, and her brooch turns into a heart-shape. Her choker gains a star jewel on it another variant were added on [[wikipedia:Tatsunoko vs. Capcom: Ultimate All Stars]].
===Sailor Star Venus (manga-only)===
In this form, Sailor Venus gains round yellow sleeves with two orange bands holding them together. Her belt becomes two strips of ribbon, one yellow, one orange, held together by a star jewel, like the one on her choker.Her skirt now has two tiers, the top orange, the bottom yellow. The back ribbons become huge at the bow with two skinny ribbons hanging down. Her boots are tall and white, in the style of Sailor Moon's and Mercury's, only the point is down and orange. The point is held by a star jewel. Her brooch also changes from a heart-shaped jewel to a star-shaped jewel. She loses her tiara, and on her forehead is the symbol for Venus.
===Princess Venus===
In the past during the Silver Millennium, she was Princess Venus, ruler of the planet Venus. As Sailor Venus, she is the leader of the Sailor Soldiers, guardians of Princess Serenity, and soldier of Love and Beauty.
===Queen Venus===
There is no canon information that supports any of the Planetary Princesses are Queens in the 30th century beyond Neo Queen Serenity.
==Transformations==
*Crescent Power: Using the Crescent Moon Broach, she transforms into heroine, Sailor V.
*Venus Power, Make Up!: Using her transformation pen, Minako transformed into the 1st form of Sailor Venus. Used from Sailor Moon Classic through to the Sailor Moon R Pt.2.
*Venus Star Power, Make Up!: Using her 2nd Star Transformation Power Stick to transform into the 2nd form of Sailor Venus, with stronger powers. Used from Sailor Moon R Pt. 2 to the middle of Sailor Moon SuperS.
*Venus Crystal Power, Make Up!: Using her 3rd Crystal and Rod given to her by Pegasus she transforms into Super Sailor Venus the 3rd and final form of Venus in the anime.
*Venus Eternal Power, Make Up!: Her very last transformation that was only shown in the manga, no one knows why it wasn't in the anime.
==Powers==
*Crescent Beam: Creating a powerful light beam.
*Crescent Beam Shower: A more powerful form of her crescent beam, she blasts multipile beams.
*Venus Love-Me Chain&nbsp;: Creating a heart shaped chain that can harness, attack, and be used as a whip. ( called Love-Chain Encircle in English Anime)
*Venus Love & Beauty Shock: Creating a multiple heart shaped lights that combine into one powerful attack.
[[Category:Usagi Tsukino and her Friends]]

723
test/test_resume.py Normal file
View File

@@ -0,0 +1,723 @@
import json
import os
import shutil
import signal
import subprocess
import sys
import tempfile
import time
import pytest
from wikiq_test_utils import (
SAILORMOON,
TEST_DIR,
TEST_OUTPUT_DIR,
WIKIQ,
WikiqTester,
)
def read_jsonl(filepath):
"""Read JSONL file and return list of dicts."""
rows = []
with open(filepath, 'r') as f:
for line in f:
if line.strip():
rows.append(json.loads(line))
return rows
def test_resume():
"""Test that --resume properly resumes processing from the last line of output."""
import pandas as pd
from pandas.testing import assert_frame_equal
tester_full = WikiqTester(SAILORMOON, "resume_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq("--fandom-2020")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_output_path = tester_full.output
full_rows = read_jsonl(full_output_path)
middle_idx = len(full_rows) // 2
resume_revid = full_rows[middle_idx]["revid"]
tester_partial = WikiqTester(SAILORMOON, "resume_partial", in_compression="7z", out_format="jsonl")
partial_output_path = tester_partial.output
with open(partial_output_path, 'w') as f:
for row in full_rows[:middle_idx + 1]:
f.write(json.dumps(row) + "\n")
try:
tester_partial.call_wikiq("--fandom-2020", "--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(partial_output_path)
df_full = pd.DataFrame(full_rows)
df_resumed = pd.DataFrame(resumed_rows)
assert_frame_equal(df_full, df_resumed)
def test_resume_with_diff():
"""Test that --resume correctly computes diff values after resume.
The diff computation depends on having the correct prev_text state.
This test verifies that diff values (text_chars, added_chars, etc.)
are identical between a full run and a resumed run.
"""
import pandas as pd
from pandas.testing import assert_frame_equal
tester_full = WikiqTester(SAILORMOON, "resume_diff_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq("--diff", "--fandom-2020")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_output_path = tester_full.output
full_rows = read_jsonl(full_output_path)
resume_idx = len(full_rows) // 3
resume_revid = full_rows[resume_idx]["revid"]
tester_partial = WikiqTester(SAILORMOON, "resume_diff_partial", in_compression="7z", out_format="jsonl")
partial_output_path = tester_partial.output
with open(partial_output_path, 'w') as f:
for row in full_rows[:resume_idx + 1]:
f.write(json.dumps(row) + "\n")
try:
tester_partial.call_wikiq("--diff", "--fandom-2020", "--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(partial_output_path)
df_full = pd.DataFrame(full_rows)
df_resumed = pd.DataFrame(resumed_rows)
# Verify diff columns are present
diff_columns = ["text_chars", "diff", "diff_timeout"]
for col in diff_columns:
assert col in df_full.columns, f"Diff column {col} should exist in full output"
assert col in df_resumed.columns, f"Diff column {col} should exist in resumed output"
assert_frame_equal(df_full, df_resumed)
def test_resume_file_not_found():
"""Test that --resume starts fresh when output file doesn't exist."""
tester = WikiqTester(SAILORMOON, "resume_not_found", in_compression="7z", out_format="jsonl")
expected_output = tester.output
if os.path.exists(expected_output):
os.remove(expected_output)
# Should succeed by starting fresh
tester.call_wikiq("--fandom-2020", "--resume")
# Verify output was created
assert os.path.exists(expected_output), "Output file should be created when starting fresh"
rows = read_jsonl(expected_output)
assert len(rows) > 0, "Output should have data"
print("Resume file not found test passed - started fresh!")
def test_resume_simple():
"""Test that --resume works without --fandom-2020."""
import pandas as pd
from pandas.testing import assert_frame_equal
tester_full = WikiqTester(SAILORMOON, "resume_simple_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq()
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_output_path = tester_full.output
full_rows = read_jsonl(full_output_path)
resume_idx = len(full_rows) // 3
resume_revid = full_rows[resume_idx]["revid"]
tester_partial = WikiqTester(SAILORMOON, "resume_simple_partial", in_compression="7z", out_format="jsonl")
partial_output_path = tester_partial.output
with open(partial_output_path, 'w') as f:
for row in full_rows[:resume_idx + 1]:
f.write(json.dumps(row) + "\n")
try:
tester_partial.call_wikiq("--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(partial_output_path)
df_full = pd.DataFrame(full_rows)
df_resumed = pd.DataFrame(resumed_rows)
assert_frame_equal(df_full, df_resumed)
def test_resume_with_interruption():
"""Test that resume works correctly after interruption."""
import pandas as pd
from pandas.testing import assert_frame_equal
output_dir = os.path.join(TEST_OUTPUT_DIR, "resume_interrupt")
input_file = os.path.join(TEST_DIR, "dumps", f"{SAILORMOON}.xml.7z")
if os.path.exists(output_dir):
shutil.rmtree(output_dir)
os.makedirs(output_dir)
output_file = os.path.join(output_dir, f"{SAILORMOON}.jsonl")
# First, run to completion to know expected output
cmd_full = f"{WIKIQ} {input_file} -o {output_file} --fandom-2020"
try:
subprocess.check_output(cmd_full, stderr=subprocess.PIPE, shell=True)
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_rows = read_jsonl(output_file)
# Clean up for interrupted run
if os.path.exists(output_file):
os.remove(output_file)
# Start wikiq and interrupt it
cmd_partial = [
sys.executable, WIKIQ, input_file,
"-o", output_file,
"--batch-size", "10",
"--fandom-2020"
]
proc = subprocess.Popen(cmd_partial, stderr=subprocess.PIPE)
interrupt_delay = 3
time.sleep(interrupt_delay)
if proc.poll() is not None:
# Process completed before we could interrupt
interrupted_rows = read_jsonl(output_file)
df_full = pd.DataFrame(full_rows)
df_interrupted = pd.DataFrame(interrupted_rows)
assert_frame_equal(df_full, df_interrupted)
return
proc.send_signal(signal.SIGUSR1)
try:
proc.wait(timeout=5)
except subprocess.TimeoutExpired:
proc.send_signal(signal.SIGTERM)
proc.wait(timeout=30)
interrupted_rows = read_jsonl(output_file)
if len(interrupted_rows) >= len(full_rows):
# Process completed before interrupt
df_full = pd.DataFrame(full_rows)
df_interrupted = pd.DataFrame(interrupted_rows)
assert_frame_equal(df_full, df_interrupted)
return
# Now resume
cmd_resume = f"{WIKIQ} {input_file} -o {output_file} --batch-size 10 --fandom-2020 --resume"
try:
subprocess.check_output(cmd_resume, stderr=subprocess.PIPE, shell=True)
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(output_file)
df_full = pd.DataFrame(full_rows)
df_resumed = pd.DataFrame(resumed_rows)
assert_frame_equal(df_full, df_resumed)
def test_resume_tsv_error():
"""Test that --resume with TSV output produces a proper error message."""
tester = WikiqTester(SAILORMOON, "resume_tsv_error", in_compression="7z", out_format="tsv")
try:
tester.call_wikiq("--fandom-2020", "--resume")
pytest.fail("Expected error for --resume with TSV output")
except subprocess.CalledProcessError as exc:
stderr = exc.stderr.decode("utf8")
assert "Error: --resume only works with JSONL output" in stderr, \
f"Expected proper error message, got: {stderr}"
print("TSV resume error test passed!")
def test_resume_data_equivalence():
"""Test that resumed output produces exactly equivalent data to a full run.
The revert detector state is maintained during the skip phase, so
revert detection should be identical to a full run.
"""
import pandas as pd
from pandas.testing import assert_frame_equal
tester_full = WikiqTester(SAILORMOON, "resume_equiv_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq("--fandom-2020")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_output_path = tester_full.output
full_rows = read_jsonl(full_output_path)
resume_idx = len(full_rows) // 3
resume_revid = full_rows[resume_idx]["revid"]
tester_partial = WikiqTester(SAILORMOON, "resume_equiv_partial", in_compression="7z", out_format="jsonl")
partial_output_path = tester_partial.output
with open(partial_output_path, 'w') as f:
for row in full_rows[:resume_idx + 1]:
f.write(json.dumps(row) + "\n")
try:
tester_partial.call_wikiq("--fandom-2020", "--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(partial_output_path)
df_full = pd.DataFrame(full_rows)
df_resumed = pd.DataFrame(resumed_rows)
assert_frame_equal(df_full, df_resumed)
def test_resume_with_persistence():
"""Test that --resume correctly handles persistence state after resume.
Persistence (PWR) depends on maintaining token state across revisions.
This test verifies that persistence values (token_revs) are identical
between a full run and a resumed run.
"""
import pandas as pd
from pandas.testing import assert_frame_equal
tester_full = WikiqTester(SAILORMOON, "resume_persist_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq("--persistence wikidiff2", "--fandom-2020")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_output_path = tester_full.output
full_rows = read_jsonl(full_output_path)
resume_idx = len(full_rows) // 4
resume_revid = full_rows[resume_idx]["revid"]
tester_partial = WikiqTester(SAILORMOON, "resume_persist_partial", in_compression="7z", out_format="jsonl")
partial_output_path = tester_partial.output
with open(partial_output_path, 'w') as f:
for row in full_rows[:resume_idx + 1]:
f.write(json.dumps(row) + "\n")
try:
tester_partial.call_wikiq("--persistence wikidiff2", "--fandom-2020", "--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(partial_output_path)
df_full = pd.DataFrame(full_rows)
df_resumed = pd.DataFrame(resumed_rows)
# Check persistence columns are present
assert "token_revs" in df_full.columns, "token_revs should exist in full output"
assert "token_revs" in df_resumed.columns, "token_revs should exist in resumed output"
assert_frame_equal(df_full, df_resumed)
def test_resume_corrupted_jsonl_last_line():
"""Test that JSONL resume correctly handles corrupted/incomplete last line.
When the previous run was interrupted mid-write leaving an incomplete JSON
line, the resume should:
1. Find the resume point from the last valid line (no checkpoint file needed)
2. Truncate the corrupted trailing data
3. Append new data, resulting in valid JSONL
"""
tester_full = WikiqTester(SAILORMOON, "resume_corrupt_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq("--fandom-2020")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_rows = read_jsonl(tester_full.output)
# Create a partial file with a corrupted last line
tester_corrupt = WikiqTester(SAILORMOON, "resume_corrupt_test", in_compression="7z", out_format="jsonl")
corrupt_output_path = tester_corrupt.output
resume_idx = len(full_rows) // 2
with open(corrupt_output_path, 'w') as f:
for row in full_rows[:resume_idx]:
f.write(json.dumps(row) + "\n")
# Write incomplete JSON (simulates crash mid-write)
f.write('{"revid": 999, "articleid": 123, "incomplet')
# Record file size before resume
size_before = os.path.getsize(corrupt_output_path)
# Resume should detect corrupted line, truncate it, then append new data
try:
tester_corrupt.call_wikiq("--fandom-2020", "--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(f"Resume failed unexpectedly: {exc.stderr.decode('utf8')}")
# Verify the file is valid JSONL and readable (no corrupted lines)
resumed_rows = read_jsonl(corrupt_output_path)
# Full data equivalence check
import pandas as pd
from pandas.testing import assert_frame_equal
df_full = pd.DataFrame(full_rows)
df_resumed = pd.DataFrame(resumed_rows)
assert_frame_equal(df_full, df_resumed)
def test_resume_diff_persistence_combined():
"""Test that --resume correctly handles both diff and persistence state together.
This tests that multiple stateful features work correctly when combined.
"""
import pandas as pd
from pandas.testing import assert_frame_equal
tester_full = WikiqTester(SAILORMOON, "resume_combined_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq("--diff", "--persistence wikidiff2", "--fandom-2020")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_output_path = tester_full.output
full_rows = read_jsonl(full_output_path)
resume_idx = len(full_rows) // 3
resume_revid = full_rows[resume_idx]["revid"]
tester_partial = WikiqTester(SAILORMOON, "resume_combined_partial", in_compression="7z", out_format="jsonl")
partial_output_path = tester_partial.output
with open(partial_output_path, 'w') as f:
for row in full_rows[:resume_idx + 1]:
f.write(json.dumps(row) + "\n")
try:
tester_partial.call_wikiq("--diff", "--persistence wikidiff2", "--fandom-2020", "--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(partial_output_path)
df_full = pd.DataFrame(full_rows)
df_resumed = pd.DataFrame(resumed_rows)
# Verify both diff and persistence columns exist
assert "diff" in df_full.columns
assert "token_revs" in df_full.columns
assert_frame_equal(df_full, df_resumed)
def test_resume_mid_page():
"""Test resume from the middle of a page with many revisions.
This specifically tests that state restoration works when resuming
partway through a page's revision history.
"""
import pandas as pd
from pandas.testing import assert_frame_equal
tester_full = WikiqTester(SAILORMOON, "resume_midpage_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq("--diff", "--fandom-2020")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_rows = read_jsonl(tester_full.output)
df_full = pd.DataFrame(full_rows)
# Find a page with many revisions
page_counts = df_full.groupby("articleid").size()
large_page_id = page_counts[page_counts >= 10].index[0] if any(page_counts >= 10) else page_counts.idxmax()
page_revs = df_full[df_full["articleid"] == large_page_id].sort_values("revid")
# Resume from middle of this page
mid_idx = len(page_revs) // 2
resume_rev = page_revs.iloc[mid_idx]
resume_revid = int(resume_rev["revid"])
resume_pageid = int(resume_rev["articleid"])
# Find global index for the resume point
global_idx = df_full[df_full["revid"] == resume_revid].index[0]
tester_partial = WikiqTester(SAILORMOON, "resume_midpage_partial", in_compression="7z", out_format="jsonl")
partial_output_path = tester_partial.output
# Write all rows up to and including the resume point
rows_to_write = [full_rows[i] for i in range(global_idx + 1)]
with open(partial_output_path, 'w') as f:
for row in rows_to_write:
f.write(json.dumps(row) + "\n")
try:
tester_partial.call_wikiq("--diff", "--fandom-2020", "--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(partial_output_path)
df_resumed = pd.DataFrame(resumed_rows)
assert_frame_equal(df_full, df_resumed)
def test_resume_page_boundary():
"""Test resume at the exact start of a new page.
This tests for off-by-one errors at page boundaries.
"""
import pandas as pd
from pandas.testing import assert_frame_equal
tester_full = WikiqTester(SAILORMOON, "resume_boundary_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq("--diff", "--fandom-2020")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_rows = read_jsonl(tester_full.output)
df_full = pd.DataFrame(full_rows)
# Find a page boundary - last revision of one page
page_last_revs = df_full.groupby("articleid")["revid"].max()
# Pick a page that's not the very last one
for page_id in page_last_revs.index[:-1]:
last_rev_of_page = page_last_revs[page_id]
row_idx = df_full[df_full["revid"] == last_rev_of_page].index[0]
if row_idx < len(df_full) - 1:
break
resume_revid = int(last_rev_of_page)
resume_pageid = int(page_id)
tester_partial = WikiqTester(SAILORMOON, "resume_boundary_partial", in_compression="7z", out_format="jsonl")
partial_output_path = tester_partial.output
rows_to_write = [full_rows[i] for i in range(row_idx + 1)]
with open(partial_output_path, 'w') as f:
for row in rows_to_write:
f.write(json.dumps(row) + "\n")
try:
tester_partial.call_wikiq("--diff", "--fandom-2020", "--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(partial_output_path)
df_resumed = pd.DataFrame(resumed_rows)
assert_frame_equal(df_full, df_resumed)
def test_jsonl_dir_output():
"""Test that .jsonl.d output creates files named after input files.
When output is a .jsonl.d directory, each input file should write to
a separate JSONL file named after the input (e.g., sailormoon.jsonl),
not a generic data.jsonl.
"""
import pandas as pd
from pandas.testing import assert_frame_equal
output_dir = os.path.join(TEST_OUTPUT_DIR, "jsonl_dir_test.jsonl.d")
input_file = os.path.join(TEST_DIR, "dumps", f"{SAILORMOON}.xml.7z")
if os.path.exists(output_dir):
shutil.rmtree(output_dir)
# Run wikiq with .jsonl.d output
cmd = f"{WIKIQ} {input_file} -o {output_dir} --fandom-2020 --batch-size 10"
try:
subprocess.check_output(cmd, stderr=subprocess.PIPE, shell=True)
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
# Verify output file is named after input, not "data.jsonl"
expected_output = os.path.join(output_dir, f"{SAILORMOON}.jsonl")
wrong_output = os.path.join(output_dir, "data.jsonl")
assert os.path.exists(expected_output), \
f"Expected {expected_output} to exist, but it doesn't. Directory contents: {os.listdir(output_dir)}"
assert not os.path.exists(wrong_output), \
f"Expected {wrong_output} NOT to exist (should be named after input file)"
# Verify output has data
rows = read_jsonl(expected_output)
assert len(rows) > 0, "Output file should have data"
def test_jsonl_dir_resume():
"""Test that resume works correctly with .jsonl.d directory output.
The resume logic must derive the same filename from the input file
as the write logic does.
"""
import pandas as pd
from pandas.testing import assert_frame_equal
output_dir = os.path.join(TEST_OUTPUT_DIR, "jsonl_dir_resume.jsonl.d")
input_file = os.path.join(TEST_DIR, "dumps", f"{SAILORMOON}.xml.7z")
if os.path.exists(output_dir):
shutil.rmtree(output_dir)
# First run: complete
cmd_full = f"{WIKIQ} {input_file} -o {output_dir} --fandom-2020 --batch-size 10"
try:
subprocess.check_output(cmd_full, stderr=subprocess.PIPE, shell=True)
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
expected_output = os.path.join(output_dir, f"{SAILORMOON}.jsonl")
full_rows = read_jsonl(expected_output)
# Truncate to partial
partial_idx = len(full_rows) // 2
with open(expected_output, 'w') as f:
for row in full_rows[:partial_idx]:
f.write(json.dumps(row) + "\n")
# Resume
cmd_resume = f"{WIKIQ} {input_file} -o {output_dir} --fandom-2020 --batch-size 10 --resume"
try:
subprocess.check_output(cmd_resume, stderr=subprocess.PIPE, shell=True)
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(expected_output)
df_full = pd.DataFrame(full_rows)
df_resumed = pd.DataFrame(resumed_rows)
assert_frame_equal(df_full, df_resumed)
def test_resume_revert_detection():
"""Test that revert detection works correctly after resume.
Verifies that the revert detector state is properly maintained during
the skip phase so that reverts are correctly detected after resume.
"""
import pandas as pd
from pandas.testing import assert_series_equal
tester_full = WikiqTester(SAILORMOON, "resume_revert_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq("--fandom-2020")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_rows = read_jsonl(tester_full.output)
df_full = pd.DataFrame(full_rows)
# Find rows with reverts
revert_rows = df_full[df_full["revert"] == True]
if len(revert_rows) == 0:
pytest.skip("No reverts found in test data")
# Resume from before a known revert so we can verify it's detected
first_revert_idx = revert_rows.index[0]
if first_revert_idx < 2:
pytest.skip("First revert too early in dataset")
resume_idx = first_revert_idx - 1
resume_revid = full_rows[resume_idx]["revid"]
resume_pageid = full_rows[resume_idx]["articleid"]
tester_partial = WikiqTester(SAILORMOON, "resume_revert_partial", in_compression="7z", out_format="jsonl")
partial_output_path = tester_partial.output
with open(partial_output_path, 'w') as f:
for row in full_rows[:resume_idx + 1]:
f.write(json.dumps(row) + "\n")
try:
tester_partial.call_wikiq("--fandom-2020", "--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(partial_output_path)
df_resumed = pd.DataFrame(resumed_rows)
# Verify revert column matches exactly
assert_series_equal(df_full["revert"], df_resumed["revert"])
assert_series_equal(df_full["reverteds"], df_resumed["reverteds"])
def test_resume_collapse_user():
"""Test that --resume with --collapse-user matches an uninterrupted run."""
import pandas as pd
from pandas.testing import assert_frame_equal
tester_full = WikiqTester(SAILORMOON, "resume_collapse_full", in_compression="7z", out_format="jsonl")
try:
tester_full.call_wikiq("--collapse-user", "--fandom-2020")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
full_rows = read_jsonl(tester_full.output)
# Truncate in the middle of a page with several collapsed rows so the
# resume point falls between collapsed revision groups
middle_idx = len(full_rows) // 2
tester_partial = WikiqTester(SAILORMOON, "resume_collapse_partial", in_compression="7z", out_format="jsonl")
partial_output_path = tester_partial.output
with open(partial_output_path, 'w') as f:
for row in full_rows[:middle_idx + 1]:
f.write(json.dumps(row) + "\n")
try:
tester_partial.call_wikiq("--collapse-user", "--fandom-2020", "--resume")
except subprocess.CalledProcessError as exc:
pytest.fail(exc.stderr.decode("utf8"))
resumed_rows = read_jsonl(partial_output_path)
df_full = pd.DataFrame(full_rows)
df_resumed = pd.DataFrame(resumed_rows)
assert_frame_equal(df_full, df_resumed)

View File

@@ -0,0 +1,388 @@
from itertools import chain
from functools import partial
import os
import re
import pytest
import pytest_asyncio
from typing import List
from deltas import Delete, Equal, Insert, wikitext_split
from mwpersistence import Token
from wikiq.wiki_diff_matcher import WikiDiffMatcher
def _replace_whitespace(match):
if match.group(1): # If spaces matched (e.g., ' ')
return ' '
elif match.group(2): # If newlines matched (e.g., '\n\n')
return '\n'
elif match.group(3): # If tabs matched (e.g., '\t\t')
return '\t'
return '' # Should not be reached if pattern is comprehensive
def assert_equal_enough(tokens:List[Token], rev):
# the tokens exclude newlines
# we allow extra whitespace at the beginning or end
token_doc = ''.join(str(t) for t in tokens)
token_doc = re.sub(r'( +)|(\n+)|(\t+)', _replace_whitespace, token_doc).strip()
rev = re.sub(r'( +)|(\n+)|(\t+)', _replace_whitespace, rev).strip()
assert token_doc == rev
def assert_correct_equal_section(ops, expected_equal_lines, expected_equal_tokens):
n_equal_lines = 0
last_b2 = max(ops[0].b1, 0)
initial_equal_tokens = 0
first_unequal_token = None
for op in ops:
if not isinstance(op, Equal):
if isinstance(op, Insert):
first_unequal_token = op.b1
else:
first_unequal_token = op.a1
break
n_equal_lines += 1
initial_equal_tokens += op.b2 - last_b2
last_b2 = op.b2
if expected_equal_lines == 1:
first_unequal_token = op.b2 + 1
# if the last line is an equal
if first_unequal_token is None:
first_unequal_token = ops[-1].b2
assert n_equal_lines == expected_equal_lines
# check that there are no gaps and the number is as expected
assert initial_equal_tokens == last_b2 - ops[0].b1 == first_unequal_token - ops[0].b1 == expected_equal_tokens
return last_b2
def test_equality():
rev1 = open("test/test_diff_revisions/1285792388").read()
# whitespace is added because exact identity reverts do not result in diffs.
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
ops, a, b = diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev1 + " ")
assert len(ops) == 257
for op in ops[:-2]:
assert isinstance(op, Equal)
# note that the whitespace token does not result in a token according to wikitext_split
# compare the tokens based on the diffs to the baseline
# whitespace differences are allowed
assert_equal_enough(b, rev1)
def test_highlight_range_3():
rev1 = open("test/test_diff_revisions/test_highlight_3_from").read()
rev2 = open("test/test_diff_revisions/test_highlight_3_to").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(a, rev1)
assert_equal_enough(b, rev2)
def test_highlight_range_4():
rev1 = open("test/test_diff_revisions/test_highlight_4_from").read()
rev2 = open("test/test_diff_revisions/test_highlight_4_to").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(a, rev1)
assert_equal_enough(b, rev2)
def test_complex_diff():
rev1 = open("test/test_diff_revisions/test_complex_from").read()
rev2 = open("test/test_diff_revisions/test_complex_to").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(a, rev1)
assert_equal_enough(b, rev2)
def test_highlight_range_unicode():
rev1 = open("test/test_diff_revisions/test_unicode_highlight_from").read()
rev2 = open("test/test_diff_revisions/test_unicode_highlight_to").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(a, rev1)
assert_equal_enough(b, rev2)
def test_highlight_range():
rev1 = open("test/test_diff_revisions/1295229484_rangeedit0").read()
rev2 = open("test/test_diff_revisions/1295229484_rangeedit1").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(a, rev1)
assert_equal_enough(b, rev2)
def test_unmatched_parmoves():
rev1 = open("test/test_diff_revisions/test_unmatched_parmoves_from").read()
rev2 = open("test/test_diff_revisions/test_unmatched_parmoves_to").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(a, rev1)
assert_equal_enough(b, rev2)
def test_bug_4():
rev1 = open("test/test_diff_revisions/test_bug_4_from").read()
rev2 = open("test/test_diff_revisions/test_bug_4_to").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(a, rev1)
assert_equal_enough(b, rev2)
def test_delete():
rev1 = open("test/test_diff_revisions/1295229484").read()
rev2 = open("test/test_diff_revisions/1295229484_delete").read()
# whitespace is added because exact identity reverts do not result in diffs.
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(b, rev2)
assert_equal_enough(a, rev1)
first_nondelete_token = None
n_deletes = 0
n_deleted_tokens = 0
initial_equal_lines = 256
initial_equal_tokens = 9911
for i, op in enumerate(ops):
if initial_equal_lines > 0:
assert isinstance(op, Equal)
else:
break
initial_equal_lines -= 1
assert initial_equal_lines == 0
assert ops[i-1].a2 - ops[0].a1 == initial_equal_tokens
first_noninsert_token = initial_equal_tokens
last_delete = False
last_insert = False
idx = 0
n_non_delete = 0
last_delete_idx = 0
for op in ops[initial_equal_lines:]:
idx += 1
if isinstance(op, Delete):
n_deletes += 1
n_deleted_tokens += op.a2 - op.a1
last_delete = True
last_delete_idx = idx
# we need to add back a newline when we have a delete
else:
n_non_delete += 1
if not last_delete and first_nondelete_token is None:
first_nondelete_token = op.a1
if n_non_delete:
last_b2 = op.b2
assert n_deletes == 4
assert n_deleted_tokens == 320
assert idx == len(ops)
# first lets test that we properly build the operations.
# then we can test if the state seems to work as intended.
def test_addition():
rev1 = open("test/test_diff_revisions/1285792388").read()
rev2 = open("test/test_diff_revisions/1295229484").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
# note that a and b are constructed from the diffs.
# so they reflect the state of the text according to the diff processor
ops, a, b = diff_processor.process(rev1)
for op in ops:
assert isinstance(op, Insert)
assert_equal_enough(b, rev1)
diff_processor.previous_text = rev1
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(a, rev1)
assert_equal_enough(b, rev2)
ops = list(ops)
initial_equal_lines = 255
initial_equal_tokens = 9614
last_b2 = assert_correct_equal_section(ops,
expected_equal_lines=initial_equal_lines,
expected_equal_tokens=initial_equal_tokens)
last_non_insert = False
first_noninsert_token = None
n_inserts = 0
n_inserted_tokens = 0
last_b2 = last_insert_b2 = initial_equal_tokens
idx = 0
last_insert = False
for op in ops[initial_equal_lines:]:
if isinstance(op, Insert):
n_inserts += 1
n_inserted_tokens += op.b2 - op.b1
last_insert_b2 = op.b2
last_insert = True
elif last_insert:
assert isinstance(op, Equal)
last_b2 = op.b2
assert n_inserted_tokens == last_insert_b2 - initial_equal_tokens == 296
assert n_inserts == 4
def test_paragraph_move():
rev1 = open("test/test_diff_revisions/1295229484").read()
rev2 = open("test/test_diff_revisions/1295229484_parmove").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
# note that a and b are constructed from the diffs.
# so they reflect the state of the text according to the diff processor
ops, a, b = diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(b, rev2)
assert_equal_enough(a, rev1)
def test_paragraph_move_and_change():
rev1 = open("test/test_diff_revisions/1295229484").read()
rev2 = open("test/test_diff_revisions/1295229484_parmove_and_change").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
# note that a and b are constructed from the diffs.
# so they reflect the state of the text according to the diff processor
ops, a, b = diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(a, rev1)
assert_equal_enough(b, rev2)
@pytest.mark.skipif(
not os.path.exists("test/test_diff_revisions/test_infobox_from"),
reason="test_infobox_from/_to fixture files are not in the repository",
)
def test_infobox():
rev1 = open("test/test_diff_revisions/test_infobox_from").read()
rev2 = open("test/test_diff_revisions/test_infobox_to").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
# note that a and b are constructed from the diffs.
# so they reflect the state of the text according to the diff processor
ops, a, b = diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(b, rev2)
assert_equal_enough(a, rev1)
def test_leading_whitespace():
rev1 = open("test/test_diff_revisions/test_leading_ws_from").read()
rev2 = open("test/test_diff_revisions/test_leading_ws_to").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
# note that a and b are constructed from the diffs.
# so they reflect the state of the text according to the diff processor
ops, a, b = diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(b, rev2)
assert_equal_enough(a, rev1)
def test_whitespace_bug():
rev1 = open("test/test_diff_revisions/test_whitespace_bug_from").read()
rev2 = open("test/test_diff_revisions/test_whitespace_bug_to").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
# note that a and b are constructed from the diffs.
# so they reflect the state of the text according to the diff processor
ops, a, b = diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(b, rev2)
assert_equal_enough(a, rev1)
def test_bug_3():
rev1 = open("test/test_diff_revisions/test_bug_3_from").read()
rev2 = open("test/test_diff_revisions/test_bug_3_to").read()
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
# note that a and b are constructed from the diffs.
# so they reflect the state of the text according to the diff processor
ops, a, b = diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev2)
assert_equal_enough(b, rev2)
#assert_equal_enough(a, rev1)
def test_actually_equal():
rev1 = open("test/test_diff_revisions/1285792388").read()
# whitespace is added because exact identity reverts do not result in diffs.
matcher = WikiDiffMatcher()
diff_processor = matcher.processor()
ops, a, b = diff_processor.process(rev1)
ops, a, b = diff_processor.process(rev1)
assert len(ops) == 1
assert isinstance(ops[0], Equal)
# note that the whitespace token does not result in a token according to wikitext_split
# compare the tokens based on the diffs to the baseline
# whitespace differences are allowed
assert_equal_enough(b, rev1)
assert_equal_enough(a, rev1)
# slow test. comment out the following line to enable it.
# Requires an uncompressed test/dumps/ikwiki.xml, which is not in the
# repository; decompress the .bz2 in test/dumps first. Also writes debug
# output to test_unicode_highlight_from/_to in the current directory on
# every iteration.
@pytest.mark.skip
def test_diff_consistency():
from mwxml import Dump
dump = Dump.from_file("test/dumps/ikwiki.xml")
for page in dump:
revisions = [rev.text for rev in page if rev.text]
matcher = WikiDiffMatcher(revisions)
diff_processor = matcher.processor()
last_rev = ""
for rev in revisions:
print(rev, file=open("test_unicode_highlight_to",'w'))
print(last_rev, file=open("test_unicode_highlight_from",'w'))
ops, a, b = diff_processor.process(rev)
assert_equal_enough(a, last_rev)
assert_equal_enough(b, rev)
last_rev = rev
# benchmark, not a pass/fail test; run it deliberately when tuning diff
# performance. Requires an uncompressed test/dumps/ikwiki.xml, which is
# not in the repository; decompress the .bz2 in test/dumps first.
@pytest.mark.skip
def test_benchmark_diff(benchmark):
from mwxml import Dump
dump = Dump.from_file("test/dumps/ikwiki.xml")
revs = chain.from_iterable([rev.text for rev in page] for page in dump)
def next_revs():
return [next(revs), next(revs)], {}
benchmark.pedantic(WikiDiffMatcher, setup=next_revs, iterations=1,rounds=1000, warmup_rounds=1)

78
test/wikiq_test_utils.py Normal file
View File

@@ -0,0 +1,78 @@
import os
import shutil
import subprocess
from typing import Final, Union
TEST_DIR: Final[str] = os.path.dirname(os.path.realpath(__file__))
WIKIQ: Final[str] = os.path.join(os.path.join(TEST_DIR, ".."), "src/wikiq/__init__.py")
TEST_OUTPUT_DIR: Final[str] = os.path.join(TEST_DIR, "test_output")
BASELINE_DIR: Final[str] = os.path.join(TEST_DIR, "baseline_output")
IKWIKI: Final[str] = "ikwiki-20180301-pages-meta-history"
SAILORMOON: Final[str] = "sailormoon"
TWINPEAKS: Final[str] = "twinpeaks"
REGEXTEST: Final[str] = "regextest"
class WikiqTester:
def __init__(
self,
wiki: str,
case_name: str,
suffix: Union[str, None] = None,
in_compression: str = "bz2",
baseline_format: str = "tsv",
out_format: str = "tsv",
):
self.input_file = os.path.join(
TEST_DIR, "dumps", "{0}.xml.{1}".format(wiki, in_compression)
)
basename = "{0}_{1}".format(case_name, wiki)
if suffix:
basename = "{0}_{1}".format(basename, suffix)
self.output = os.path.join(
TEST_OUTPUT_DIR, "{0}.{1}".format(basename, out_format)
)
if os.path.exists(self.output):
if os.path.isfile(self.output):
os.remove(self.output)
else:
shutil.rmtree(self.output)
# For JSONL, self.output is a file path. Create parent directory if needed.
if out_format == "jsonl":
parent_dir = os.path.dirname(self.output)
if parent_dir:
os.makedirs(parent_dir, exist_ok=True)
if suffix is None:
self.wikiq_baseline_name = "{0}.{1}".format(wiki, baseline_format)
self.wikiq_out_name = "{0}.{1}".format(wiki, out_format)
else:
self.wikiq_baseline_name = "{0}_{1}.{2}".format(
wiki, suffix, baseline_format
)
self.wikiq_out_name = "{0}_{1}.{2}".format(wiki, suffix, out_format)
if case_name is not None:
self.baseline_file = os.path.join(
BASELINE_DIR, "{0}_{1}".format(case_name, self.wikiq_baseline_name)
)
def call_wikiq(self, *args: str, out: bool = True):
"""
Calls wikiq with the passed arguments on the input file relevant to the test.
:param args: The command line arguments to pass to wikiq.
:param out: Whether to pass an output argument to wikiq.
:return: The output of the wikiq call.
"""
if out:
call = " ".join([WIKIQ, self.input_file, "-o", self.output, "--batch-size", "10", *args])
else:
call = " ".join([WIKIQ, self.input_file, "--batch-size", "10", *args])
print(call)
return subprocess.check_output(call, stderr=subprocess.PIPE, shell=True)

449
wikiq
View File

@@ -1,449 +0,0 @@
#!/usr/bin/env python3
# original wikiq headers are: title articleid revid date_time anon
# editor editor_id minor text_size text_entropy text_md5 reversion
# additions_size deletions_size
import argparse
import sys
import os, os.path
import re
from subprocess import Popen, PIPE
from collections import deque
from hashlib import sha1
from mwxml import Dump
from deltas.tokenizers import wikitext_split
import mwpersistence
import mwreverts
from urllib.parse import quote
TO_ENCODE = ('title', 'editor')
PERSISTENCE_RADIUS=7
from deltas import SequenceMatcher
from deltas import SegmentMatcher
class PersistMethod:
none = 0
sequence = 1
segment = 2
legacy = 3
def calculate_persistence(tokens_added):
return(sum([(len(x.revisions)-1) for x in tokens_added]),
len(tokens_added))
class WikiqIterator():
def __init__(self, fh, collapse_user=False):
self.fh = fh
self.collapse_user = collapse_user
self.mwiterator = Dump.from_file(self.fh)
self.namespace_map = { ns.id : ns.name for ns in
self.mwiterator.site_info.namespaces }
self.__pages = self.load_pages()
def load_pages(self):
for page in self.mwiterator:
yield WikiqPage(page,
namespace_map = self.namespace_map,
collapse_user=self.collapse_user)
def __iter__(self):
return self.__pages
def __next__(self):
return next(self._pages)
class WikiqPage():
__slots__ = ('id', 'title', 'namespace', 'redirect',
'restrictions', 'mwpage', '__revisions',
'collapse_user')
def __init__(self, page, namespace_map, collapse_user=False):
self.id = page.id
self.namespace = page.namespace
# following mwxml, we assume namespace 0 in cases where
# page.namespace is inconsistent with namespace_map
if page.namespace not in namespace_map:
self.title = page.title
page.namespace = 0
if page.namespace != 0:
self.title = ':'.join([namespace_map[page.namespace], page.title])
else:
self.title = page.title
self.restrictions = page.restrictions
self.collapse_user = collapse_user
self.mwpage = page
self.__revisions = self.rev_list()
def rev_list(self):
# Outline for how we want to handle collapse_user=True
# iteration rev.user prev_rev.user add prev_rev?
# 0 A None Never
# 1 A A False
# 2 B A True
# 3 A B True
# 4 A A False
# Post-loop A Always
for i, rev in enumerate(self.mwpage):
# never yield the first time
if i == 0:
if self.collapse_user:
collapsed_revs = 1
rev.collapsed_revs = collapsed_revs
else:
if self.collapse_user:
# yield if this is the last edit in a seq by a user and reset
# also yield if we do know who the user is
if rev.deleted.user or prev_rev.deleted.user:
yield prev_rev
collapsed_revs = 1
rev.collapsed_revs = collapsed_revs
elif not rev.user.text == prev_rev.user.text:
yield prev_rev
collapsed_revs = 1
rev.collapsed_revs = collapsed_revs
# otherwise, add one to the counter
else:
collapsed_revs += 1
rev.collapsed_revs = collapsed_revs
# if collapse_user is false, we always yield
else:
yield prev_rev
prev_rev = rev
# also yield the final time
yield prev_rev
def __iter__(self):
return self.__revisions
def __next__(self):
return next(self.__revisions)
class WikiqParser():
def __init__(self, input_file, output_file, collapse_user=False, persist=None, urlencode=False, namespaces = None):
"""
Parameters:
persist : what persistence method to use. Takes a PersistMethod value
"""
self.input_file = input_file
self.output_file = output_file
self.collapse_user = collapse_user
self.persist = persist
self.printed_header = False
self.namespaces = []
self.urlencode = urlencode
if namespaces is not None:
self.namespace_filter = set(namespaces)
else:
self.namespace_filter = None
def __get_namespace_from_title(self, title):
default_ns = None
for ns in self.namespaces:
# skip if the namespace is not defined
if ns == None:
default_ns = self.namespaces[ns]
continue
if title.startswith(ns + ":"):
return self.namespaces[ns]
# if we've made it this far with no matches, we return the default namespace
return default_ns
def process(self):
# create a regex that creates the output filename
# output_filename = re.sub(r'^.*/(enwiki\-\d+)\-.*p(\d+)p.*$',
# r'output/wikiq-\1-\2.tsv',
# input_filename)
# Construct dump file iterator
dump = WikiqIterator(self.input_file, collapse_user=self.collapse_user)
# extract list of namspaces
self.namespaces = {ns.name : ns.id for ns in dump.mwiterator.site_info.namespaces}
page_count = 0
rev_count = 0
# Iterate through pages
for page in dump:
namespace = page.namespace if page.namespace is not None else self.__get_namespace_from_title(page.title)
# skip namespaces not in the filter
if self.namespace_filter is not None:
if namespace not in self.namespace_filter:
continue
rev_detector = mwreverts.Detector()
if self.persist != PersistMethod.none:
window = deque(maxlen=PERSISTENCE_RADIUS)
if self.persist == PersistMethod.sequence:
state = mwpersistence.DiffState(SequenceMatcher(tokenizer = wikitext_split),
revert_radius=PERSISTENCE_RADIUS)
elif self.persist == PersistMethod.segment:
state = mwpersistence.DiffState(SegmentMatcher(tokenizer = wikitext_split),
revert_radius=PERSISTENCE_RADIUS)
# self.persist == PersistMethod.legacy
else:
from mw.lib import persistence
state = persistence.State()
# Iterate through a page's revisions
for rev in page:
rev_data = {'revid' : rev.id,
'date_time' : rev.timestamp.strftime('%Y-%m-%d %H:%M:%S'),
'articleid' : page.id,
'editor_id' : "" if rev.deleted.user == True or rev.user.id is None else rev.user.id,
'title' : '"' + page.title + '"',
'namespace' : namespace,
'deleted' : "TRUE" if rev.deleted.text else "FALSE" }
# if revisions are deleted, /many/ things will be missing
if rev.deleted.text:
rev_data['text_chars'] = ""
rev_data['sha1'] = ""
rev_data['revert'] = ""
rev_data['reverteds'] = ""
else:
# rev.text can be None if the page has no text
if not rev.text:
rev.text = ""
# if text exists, we'll check for a sha1 and generate one otherwise
if rev.sha1:
text_sha1 = rev.sha1
else:
text_sha1 = sha1(bytes(rev.text, "utf8")).hexdigest()
rev_data['sha1'] = text_sha1
# TODO rev.bytes doesn't work.. looks like a bug
rev_data['text_chars'] = len(rev.text)
# generate revert data
revert = rev_detector.process(text_sha1, rev.id)
if revert:
rev_data['revert'] = "TRUE"
rev_data['reverteds'] = '"' + ",".join([str(x) for x in revert.reverteds]) + '"'
else:
rev_data['revert'] = "FALSE"
rev_data['reverteds'] = ""
# if the fact that the edit was minor can be hidden, this might be an issue
rev_data['minor'] = "TRUE" if rev.minor else "FALSE"
if not rev.deleted.user:
# wrap user-defined editors in quotes for fread
rev_data['editor'] = '"' + rev.user.text + '"'
rev_data['anon'] = "TRUE" if rev.user.id == None else "FALSE"
else:
rev_data['anon'] = ""
rev_data['editor'] = ""
#if re.match(r'^#redirect \[\[.*\]\]', rev.text, re.I):
# redirect = True
#else:
# redirect = False
#TODO missing: additions_size deletions_size
# if collapse user was on, lets run that
if self.collapse_user:
rev_data['collapsed_revs'] = rev.collapsed_revs
if self.persist != PersistMethod.none:
if rev.deleted.text:
for k in ["token_revs", "tokens_added", "tokens_removed", "tokens_window"]:
old_rev_data[k] = None
else:
if self.persist != PersistMethod.legacy:
_, tokens_added, tokens_removed = state.update(rev.text, rev.id)
else:
_, tokens_added, tokens_removed = state.process(rev.text, rev.id, text_sha1)
window.append((rev.id, rev_data, tokens_added, tokens_removed))
if len(window) == PERSISTENCE_RADIUS:
old_rev_id, old_rev_data, old_tokens_added, old_tokens_removed = window[0]
num_token_revs, num_tokens = calculate_persistence(old_tokens_added)
old_rev_data["token_revs"] = num_token_revs
old_rev_data["tokens_added"] = num_tokens
old_rev_data["tokens_removed"] = len(old_tokens_removed)
old_rev_data["tokens_window"] = PERSISTENCE_RADIUS-1
self.print_rev_data(old_rev_data)
else:
self.print_rev_data(rev_data)
rev_count += 1
if self.persist != PersistMethod.none:
# print out metadata for the last RADIUS revisions
for i, item in enumerate(window):
# if the window was full, we've already printed item 0
if len(window) == PERSISTENCE_RADIUS and i == 0:
continue
rev_id, rev_data, tokens_added, tokens_removed = item
num_token_revs, num_tokens = calculate_persistence(tokens_added)
rev_data["token_revs"] = num_token_revs
rev_data["tokens_added"] = num_tokens
rev_data["tokens_removed"] = len(tokens_removed)
rev_data["tokens_window"] = len(window)-(i+1)
self.print_rev_data(rev_data)
page_count += 1
print("Done: %s revisions and %s pages." % (rev_count, page_count),
file=sys.stderr)
def print_rev_data(self, rev_data):
# if it's the first time through, print the header
if self.urlencode:
for field in TO_ENCODE:
rev_data[field] = quote(str(rev_data[field]))
if not self.printed_header:
print("\t".join([str(k) for k in sorted(rev_data.keys())]), file=self.output_file)
self.printed_header = True
print("\t".join([str(v) for k, v in sorted(rev_data.items())]), file=self.output_file)
def open_input_file(input_filename):
if re.match(r'.*\.7z$', input_filename):
cmd = ["7za", "x", "-so", input_filename, '*']
elif re.match(r'.*\.gz$', input_filename):
cmd = ["zcat", input_filename]
elif re.match(r'.*\.bz2$', input_filename):
cmd = ["bzcat", "-dk", input_filename]
try:
input_file = Popen(cmd, stdout=PIPE).stdout
except NameError:
input_file = open(input_filename, 'r')
return input_file
def open_output_file(input_filename):
# create a regex that creates the output filename
output_filename = re.sub(r'\.(7z|gz|bz2)?$', '', input_filename)
output_filename = re.sub(r'\.xml', '', output_filename)
output_filename = output_filename + ".tsv"
output_file = open(output_filename, "w")
return output_file
parser = argparse.ArgumentParser(description='Parse MediaWiki XML database dumps into tab delimitted data.')
# arguments for the input direction
parser.add_argument('dumpfiles', metavar="DUMPFILE", nargs="*", type=str,
help="Filename of the compressed or uncompressed XML database dump. If absent, we'll look for content on stdin and output on stdout.")
parser.add_argument('-o', '--output-dir', metavar='DIR', dest='output_dir', type=str, nargs=1,
help="Directory for output files.")
parser.add_argument('-s', '--stdout', dest="stdout", action="store_true",
help="Write output to standard out (do not create dump file)")
parser.add_argument('--collapse-user', dest="collapse_user", action="store_true",
help="Operate only on the final revision made by user a user within all sequences of consecutive edits made by a user. This can be useful for addressing issues with text persistence measures.")
parser.add_argument('-p', '--persistence', dest="persist", default=None, const='', type=str, choices = ['','segment','sequence','legacy'], nargs='?',
help="Compute and report measures of content persistent: (1) persistent token revisions, (2) tokens added, and (3) number of revision used in computing the first measure. This may by slow. Use -p=segment for advanced persistence calculation method that is robust to content moves. This might be very slow. Use -p=legacy for legacy behavior.")
parser.add_argument('-u', '--url-encode', dest="urlencode", action="store_true",
help="Output url encoded text strings. This works around some data issues like newlines in editor names. In the future it may be used to output other text data.")
parser.add_argument('-n', '--namespace-include', dest="namespace_filter", type=int, action='append',
help="Id number of namspace to include. Can be specified more than once.")
args = parser.parse_args()
# set persistence method
if args.persist is None:
persist = PersistMethod.none
elif args.persist == "segment":
persist = PersistMethod.segment
elif args.persist == "legacy":
persist = PersistMethod.legacy
else:
persist = PersistMethod.sequence
if args.namespace_filter is not None:
namespaces = args.namespace_filter
else:
namespaces = None
if len(args.dumpfiles) > 0:
for filename in args.dumpfiles:
input_file = open_input_file(filename)
# open directory for output
if args.output_dir:
output_dir = args.output_dir[0]
else:
output_dir = "."
print("Processing file: %s" % filename, file=sys.stderr)
if args.stdout:
output_file = sys.stdout
else:
filename = os.path.join(output_dir, os.path.basename(filename))
output_file = open_output_file(filename)
wikiq = WikiqParser(input_file, output_file,
collapse_user=args.collapse_user,
persist=persist,
urlencode=args.urlencode,
namespaces = namespaces)
wikiq.process()
# close things
input_file.close()
output_file.close()
else:
wikiq = WikiqParser(sys.stdin, sys.stdout,
collapse_user=args.collapse_user,
persist=persist,
persist_legacy=args.persist_legacy,
urlencode=args.urlencode,
namespaces = namespaces)
wikiq.process()
# stop_words = "a,able,about,across,after,all,almost,also,am,among,an,and,any,are,as,at,be,because,been,but,by,can,cannot,could,dear,did,do,does,either,else,ever,every,for,from,get,got,had,has,have,he,her,hers,him,his,how,however,i,if,in,into,is,it,its,just,least,let,like,likely,may,me,might,most,must,my,neither,no,nor,not,of,off,often,on,only,or,other,our,own,rather,said,say,says,she,should,since,so,some,than,that,the,their,them,then,there,these,they,this,tis,to,too,twas,us,wants,was,we,were,what,when,where,which,while,who,whom,why,will,with,would,yet,you,your"
# stop_words = stop_words.split(",")