diff --git a/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/values/StringValueConverter.java b/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/values/StringValueConverter.java index bc2375070..8005e5567 100644 --- a/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/values/StringValueConverter.java +++ b/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/values/StringValueConverter.java @@ -20,6 +20,8 @@ * #L% */ +import java.net.URLEncoder; +import java.io.UnsupportedEncodingException; import org.openrdf.model.Value; import org.wikidata.wdtk.datamodel.interfaces.DatatypeIdValue; import org.wikidata.wdtk.datamodel.interfaces.PropertyIdValue; @@ -81,8 +83,12 @@ public Value getRdfValue(StringValue value, * @return URL of the page */ static String getCommonsUrl(String pageName) { - return "http://commons.wikimedia.org/wiki/File:" - + pageName.replace(' ', '_'); + try { + return "http://commons.wikimedia.org/wiki/File:" + + URLEncoder.encode(pageName.replace(' ', '_'), "UTF-8"); + } catch(UnsupportedEncodingException uee) { + logger.error("This machine does not support UTF-8 encoding"); + return null; + } } - } diff --git a/wdtk-wikibaseapi/src/main/java/org/wikidata/wdtk/wikibaseapi/RecentChange.java b/wdtk-wikibaseapi/src/main/java/org/wikidata/wdtk/wikibaseapi/RecentChange.java new file mode 100644 index 000000000..3ed6a73ae --- /dev/null +++ b/wdtk-wikibaseapi/src/main/java/org/wikidata/wdtk/wikibaseapi/RecentChange.java @@ -0,0 +1,117 @@ +package org.wikidata.wdtk.wikibaseapi; + +/* + * #%L + * Wikidata Toolkit Wikibase API + * %% + * Copyright (C) 2014 - 2015 Wikidata Toolkit Developers + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + + +import java.util.Date; + +/** + * Simple class for saving recent changes + * + * @author Markus Damm + * + */ + +class RecentChange implements Comparable { + + /** + * author of the recent change + */ + private String author; + + /** + * property that was recently changed + */ + private String propertyName; + + /** + * date and time of the recent change + */ + private Date date; + + /** + * Constructor + * + * @param propertyName + * name of the changed property + * @param date + * date of the recent change + * @param author + * name of the author of the recent change + */ + RecentChange(String propertyName, Date date, String author) { + this.propertyName = propertyName; + this.date = date; + this.author = author; + } + + /** + * Returns the author of the recent change + * + * @return name (if user is registered) or the ip adress (if user is + * unregistered) of the author of the recent change + */ + String getAuthor() { + return author; + } + + /** + * Returns the name of the changed property + * + * @return name of the recently changed property + */ + String getPropertyName() { + return propertyName; + } + + /** + * Returns the date of the recent change + * + * @return date of the recent change + */ + Date getDate() { + return date; + } + + @Override + public boolean equals(Object other) { + if (other instanceof RecentChange) { + RecentChange o = (RecentChange) other; + if (this.propertyName.equals(o.propertyName) + && (this.date.equals(o.date)) + && (this.author.equals(o.author))) { + return true; + } + } + return false; + } + + @Override + public int compareTo(RecentChange other) { + if (this.date.after(other.date)) { + return 1; + } + if (this.date.before(other.date)) { + return -1; + } + return 0; + } +} diff --git a/wdtk-wikibaseapi/src/main/java/org/wikidata/wdtk/wikibaseapi/RecentChangesFetcher.java b/wdtk-wikibaseapi/src/main/java/org/wikidata/wdtk/wikibaseapi/RecentChangesFetcher.java new file mode 100644 index 000000000..a39e24752 --- /dev/null +++ b/wdtk-wikibaseapi/src/main/java/org/wikidata/wdtk/wikibaseapi/RecentChangesFetcher.java @@ -0,0 +1,263 @@ +package org.wikidata.wdtk.wikibaseapi; + +/* + * #%L + * Wikidata Toolkit Wikibase API + * %% + * Copyright (C) 2014 - 2015 Wikidata Toolkit Developers + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.HashMap; +import java.util.Locale; +import java.util.Map; +import java.util.Set; +import java.util.TreeSet; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +/** + * Simple class to fetch recent changes + * + * @author Markus Damm + * + */ +public class RecentChangesFetcher { + + static final Logger logger = LoggerFactory + .getLogger(WikibaseDataFetcher.class); + + /** + * Connection to WikiBase API + */ + static ApiConnection apiConnection; + + /** + * Creates an object to fetch recent changes of Wikidata + */ + public RecentChangesFetcher() { + this(ApiConnection.URL_WIKIDATA_API); + } + + /** + * Creates an object to fetch recent changes + * + * @param apiBaseUrl + * base URI to the API, e.g., + * "https://www.wikidata.org/w/api.php/" + */ + public RecentChangesFetcher(String apiBaseUrl) { + RecentChangesFetcher.apiConnection = new ApiConnection(apiBaseUrl); + } + + /** + * Fetches IOStream from RSS recent changes feed and returns a set of recent + * changes. + * + * @return a set of recent changes from the recent changes feed + * @throws IOException + * if an error occured while connecting to Wikibase API + */ + public Set getRecentChanges() { + return getRecentChanges(getParameters()); + } + + /** + * Fetches IOStream from RSS recent changes feed and no recent change is + * before the date. + * + * @param from + * earliest possible date for a recent change + * @return a set of recent changes from the recent changes feed + */ + public Set getRecentChanges(Date from) { + return getRecentChanges(getParameters(from)); + } + + Set getRecentChanges(Map parameters){ + Set recentChanges = new TreeSet<>(); + try { + recentChanges = parseInputStream(apiConnection.sendRequest("POST", + parameters)); + } catch (IOException e) { + logger.error("Could not retrieve data from " + + apiConnection.apiBaseUrl + + apiConnection.getQueryString(parameters) + ". Error:\n" + + e.toString()); + } + return recentChanges; + } + + /** + * Parses a given RSS feed as an InputSteam and returns the recent changes. + * The InputStream will be closed at the end of this method. + * + * @param inputStream + * given RSS recent changes feed + * @return set of recent changes + * @throws IOException + * if an error occurred while parsing the RSS feed + */ + Set parseInputStream(InputStream inputStream) + throws IOException { + Set changes = new TreeSet<>(); + + BufferedReader bufferedReader = new BufferedReader( + new InputStreamReader(inputStream)); + String line = bufferedReader.readLine(); + while (line != null) { + if (line.contains("")) { + changes.add(parseItem(bufferedReader, line)); + } + line = bufferedReader.readLine(); + } + bufferedReader.close(); + inputStream.close(); + return changes; + } + + /** + * Builds a map of parameters for a recent changes request + * + * @return map of parameters for a recent changes request + */ + Map getParameters() { + Map params = new HashMap<>(); + params.put("action", "feedrecentchanges"); + params.put("format", "json"); + params.put("feedformat", "rss"); + + return params; + } + + /** + * Builds a map of parameters for a recent changes request and adds the + * parameter "from" which defines the earliest possible date of a recent + * change + * + * @param from + * earliest date for a recent change that are requested + * @return map of parameters for a recent changes request + */ + Map getParameters(Date from) { + Map params = getParameters(); + params.put("from", new SimpleDateFormat("yyyyMMddHHmmss").format(from)); + + return params; + } + + /** + * parses the name of the property from the item string of the recent + * changes feed + * + * @param itemString + * substring for an item of the recent changes feed + * @return name of the property + */ + String parsePropertyNameFromItemString(String itemString) { + String endString = ""; + int start = 10; + int end = itemString.indexOf(endString); + String propertyName = itemString.substring(start, end); + return propertyName; + } + + /** + * Parses the date and time of the change of a property from the item string + * of the recent changes feed + * + * @param itemString + * substring for an item of the recent changes feed + * @return date and time for the recent change + */ + Date parseTimeFromItemString(String itemString) { + int start = 17; + int end = 41; + String timeString = itemString.substring(start, end); + Date date = null; + try { + date = new SimpleDateFormat("dd MMM yyyy HH:mm:ss Z", + Locale.ENGLISH).parse(timeString); + } + + catch (ParseException e) { + logger.error("Could not parse date from string \"" + itemString + + "\". Error:\n" + e.toString()); + } + return date; + } + + /** + * Parses the name or the IP address of the change of a property from the + * item string of the recent changes feed + * + * @param itemString + * substring for an item of the recent changes feed + * @return name of the author (if user is registered) or the IP address (if + * user is not registered) + */ + String parseAuthorFromItemString(String itemString) { + String endString = ""; + int start = 66; + int end = itemString.indexOf(endString); + return itemString.substring(start, end); + } + + /** + * Parses an item inside the -tag. + * + * @param bufferedReader + * reader that reads the InputStream + * @param line + * last line from the InputStream that has been read + * @return RecentChange that equals the item + */ + RecentChange parseItem(BufferedReader bufferedReader, String line) { + String propertyName = null; + String author = null; + Date date = null; + while (!line.contains("")) { + try { + line = bufferedReader.readLine(); + if (line.contains("")) { + propertyName = parsePropertyNameFromItemString(line); + } + if (line.contains("<pubDate>")) { + date = parseTimeFromItemString(line); + } + if (line.contains("<dc:creator>")) { + author = parseAuthorFromItemString(line); + } + } catch (IOException e) { + logger.error("Could not parse data from " + + apiConnection.apiBaseUrl + ". Error:\n" + + e.toString()); + } + } + if (propertyName == null || author == null || date == null) { + // This should actually not happen + throw new NullPointerException(); + } + return new RecentChange(propertyName, date, author); + } +} diff --git a/wdtk-wikibaseapi/src/test/java/org/wikidata/wdtk/wikibaseapi/RecentChangeTest.java b/wdtk-wikibaseapi/src/test/java/org/wikidata/wdtk/wikibaseapi/RecentChangeTest.java new file mode 100644 index 000000000..0b540ff08 --- /dev/null +++ b/wdtk-wikibaseapi/src/test/java/org/wikidata/wdtk/wikibaseapi/RecentChangeTest.java @@ -0,0 +1,69 @@ +package org.wikidata.wdtk.wikibaseapi; + +/* + * #%L + * Wikidata Toolkit Wikibase API + * %% + * Copyright (C) 2014 - 2015 Wikidata Toolkit Developers + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.Set; +import java.util.TreeSet; + +import org.junit.Test; + +public class RecentChangeTest { + @Test + public void testEquals() { + RecentChange rc1 = new RecentChange("a", new Date(), "b"); + RecentChange rc2 = new RecentChange("a", new Date(), "b"); + RecentChange rc3 = new RecentChange("c", new Date(), "b"); + assertTrue(rc1.equals(rc2)); + assertFalse(rc3.equals(rc2)); + } + + @Test + public void testContainsSet() { + RecentChange rc1 = new RecentChange("a", new Date(), "b"); + RecentChange rc2 = new RecentChange("a", new Date(), "b"); + Set<RecentChange> rcs = new TreeSet<>(); + rcs.add(rc1); + assertTrue(rcs.contains(rc1)); + assertTrue(rcs.contains(rc2)); + } + + @Test + public void testComparable() throws ParseException { + SimpleDateFormat sdf = new SimpleDateFormat("dd.MM.yyyy"); + RecentChange rc1 = new RecentChange("", + sdf.parse("31.12.2014"), ""); + RecentChange rc2 = new RecentChange("", + sdf.parse("31.12.2014"), ""); + RecentChange rc3 = new RecentChange("", + sdf.parse("01.01.2015"), ""); + assertEquals(rc1.compareTo(rc2), 0); + assertEquals(rc2.compareTo(rc3), -1); + assertEquals(rc3.compareTo(rc2), 1); + } +} diff --git a/wdtk-wikibaseapi/src/test/java/org/wikidata/wdtk/wikibaseapi/RecentChangesFetcherTest.java b/wdtk-wikibaseapi/src/test/java/org/wikidata/wdtk/wikibaseapi/RecentChangesFetcherTest.java new file mode 100644 index 000000000..ee2424214 --- /dev/null +++ b/wdtk-wikibaseapi/src/test/java/org/wikidata/wdtk/wikibaseapi/RecentChangesFetcherTest.java @@ -0,0 +1,109 @@ +package org.wikidata.wdtk.wikibaseapi; + +/* + * #%L + * Wikidata Toolkit Wikibase API + * %% + * Copyright (C) 2014 - 2015 Wikidata Toolkit Developers + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +import java.io.IOException; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.Locale; +import java.util.Map; +import java.util.Set; + +import org.junit.Test; +import org.wikidata.wdtk.util.CompressionType; + +public class RecentChangesFetcherTest { + private String dateLine = " <pubDate>Tue, 02 Jun 2015 13:22:02 GMT</pubDate> <dc:creator>Superzerocool</dc:creator> <comments>http://www.wikidata.org/wiki/Talk:Q1876457</comments> </item>"; + private String titleLine = " <title>Q1876457"; + + @Test + public void testGetRecentChanges() throws IOException, ParseException { + RecentChangesFetcher rcf = new RecentChangesFetcher(); + MockApiConnection mac = new MockApiConnection(); + + mac.setWebResourceFromPath(rcf.getParameters(), this.getClass(), + "/recentchanges.xml", CompressionType.NONE); + + RecentChangesFetcher.apiConnection = mac; + + Set result = rcf.getRecentChanges(); + RecentChange rc1 = new RecentChange("Q1876457", + new SimpleDateFormat("dd.MM.yyyy HH:mm:ss Z", Locale.ENGLISH) + .parse("02.06.2015 13:22:02 GMT"), "Superzerocool"); + assertTrue(result.contains(rc1)); + + RecentChange rc2 = new RecentChange("", new Date(), ""); + RecentChange rc3 = new RecentChange("Q1", new Date(), ""); + RecentChange rc4 = new RecentChange("Wikidata - Recent changes [en]", + new Date(), ""); + + assertFalse(result.contains(rc2)); + assertFalse(result.contains(rc3)); + assertFalse(result.contains(rc4)); + } + + @Test + public void testGetRecentChangesWithFromParamenter() throws IOException, + ParseException { + RecentChangesFetcher rcf = new RecentChangesFetcher(); + MockApiConnection mac = new MockApiConnection(); + Map params = rcf.getParameters(); + params.put("from", "20150611154713"); + mac.setWebResourceFromPath(params, this.getClass(), + "/recentchanges.xml", CompressionType.NONE); + RecentChangesFetcher.apiConnection = mac; + + + Date date = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss").parse("11.06.2015 15:47:13"); + Set result = rcf.getRecentChanges(date); + + assertFalse(result.isEmpty()); + } + + @Test + public void testParsePropertyName() { + RecentChangesFetcher rcf = new RecentChangesFetcher(); + String result = rcf.parsePropertyNameFromItemString(titleLine); + assertEquals(result, "Q1876457"); + } + + @Test + public void testParseDate() throws ParseException { + RecentChangesFetcher rcf = new RecentChangesFetcher(); + Date result = rcf.parseTimeFromItemString(dateLine); + Date actualDate = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss Z", + Locale.ENGLISH).parse("02.06.2015 13:22:02 GMT"); + assertEquals(actualDate.compareTo(result), 0); + + } + + @Test + public void testParseAuthor() { + RecentChangesFetcher rcf = new RecentChangesFetcher(); + String result = rcf.parseAuthorFromItemString(dateLine); + assertEquals(result, "Superzerocool"); + } +} diff --git a/wdtk-wikibaseapi/src/test/resources/recentchanges.xml b/wdtk-wikibaseapi/src/test/resources/recentchanges.xml new file mode 100644 index 000000000..2db8b00c2 --- /dev/null +++ b/wdtk-wikibaseapi/src/test/resources/recentchanges.xml @@ -0,0 +1,608 @@ + + + + Wikidata - Recent changes [en] + http://www.wikidata.org/wiki/Special:RecentChanges + Track the most recent changes to the wiki in this feed. + en + MediaWiki 1.26wmf7 + Tue, 02 Jun 2015 13:22:03 GMT + + Q1876457 + http://www.wikidata.org/w/index.php?title=Q1876457&diff=220987804&oldid=220928090 + http://www.wikidata.org/w/index.php?title=Q1876457&diff=220987804&oldid=220928090 + <p>‎<span dir="auto"><span class="autocomment">wbsetdescription-add:1|es: </span> obispo católico de España</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:22, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">description / es</td><td colspan="2" class="diff-lineno">description / es</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline">obispo católico de España</ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220928090:newid:220987804:lang:en --> +</table> + Tue, 02 Jun 2015 13:22:02 GMT Superzerocool http://www.wikidata.org/wiki/Talk:Q1876457 + + Q2304926 + http://www.wikidata.org/w/index.php?title=Q2304926&diff=220987803&oldid=220987439 + http://www.wikidata.org/w/index.php?title=Q2304926&diff=220987803&oldid=220987439 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P856" title="‎official website‎ | ‎URL to the website of this item‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">official website</span> <span class="wb-itemlink-id">(P856)</span></span></a>: http://www.ozolnieki.lv/</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / official website</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span><a rel="nofollow" class="external free" href="http://www.ozolnieki.lv/">http://www.ozolnieki.lv/</a></span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / official website: <a rel="nofollow" class="external free" href="http://www.ozolnieki.lv/">http://www.ozolnieki.lv/</a> / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987439:newid:220987803:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:59 GMT Kikos http://www.wikidata.org/wiki/Talk:Q2304926 + + Q20026648 + http://www.wikidata.org/w/index.php?title=Q20026648&diff=220987802&oldid=220987777 + http://www.wikidata.org/w/index.php?title=Q20026648&diff=220987802&oldid=220987777 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P244" title="‎LCAuth identifier‎ | ‎identifier from the the Library of Congress Authorities (only for authority control; for single books see P1144)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">LCAuth identifier</span> <span class="wb-itemlink-id">(P244)</span></span></a>: n79100680</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>n79100680</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier: n79100680 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987777:newid:220987802:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:58 GMT Sergey kudryavtsev http://www.wikidata.org/wiki/Talk:Q20026648 + + Q137138 + http://www.wikidata.org/w/index.php?title=Q137138&diff=220987801&oldid=220987783 + http://www.wikidata.org/w/index.php?title=Q137138&diff=220987801&oldid=220987783 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P269" title="‎SUDOC authorities‎ | ‎identifier for authority control in the French collaborative library catalog (see also P1025)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">SUDOC authorities</span> <span class="wb-itemlink-id">(P269)</span></span></a>: 162195001</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>162195001</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities: 162195001 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987783:newid:220987801:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:54 GMT Toto256 http://www.wikidata.org/wiki/Talk:Q137138 + + Q932690 + http://www.wikidata.org/w/index.php?title=Q932690&diff=220987800&oldid=206273244 + http://www.wikidata.org/w/index.php?title=Q932690&diff=220987800&oldid=206273244 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P131" title="‎located in the administrative territorial entity‎ | ‎the item is located on the territory of the following administrative entity‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">located in the administrative territorial entity</span> <span class="wb-itemlink-id">(P131)</span></span></a>: <a href="/wiki/Q1186" title="‎Kerala‎ | ‎Indian state‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">Kerala</span> <span class="wb-itemlink-id">(Q1186)</span></span></a></span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / located in the administrative territorial entity</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span><a title="Q1186" href="/wiki/Q1186">Kerala</a></span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / located in the administrative territorial entity: <a title="Q1186" href="/wiki/Q1186">Kerala</a> / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:206273244:newid:220987800:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:53 GMT Manumg http://www.wikidata.org/wiki/Talk:Q932690 + + Q3928451 + http://www.wikidata.org/w/index.php?title=Q3928451&diff=220987799&oldid=210566815 + http://www.wikidata.org/w/index.php?title=Q3928451&diff=220987799&oldid=210566815 + <p>‎<span dir="auto"><span class="autocomment">wbsetreference-add:2|: </span> <a href="/wiki/Property:P244" title="‎LCAuth identifier‎ | ‎identifier from the the Library of Congress Authorities (only for authority control; for single books see P1144)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">LCAuth identifier</span> <span class="wb-itemlink-id">(P244)</span></span></a>: sh95003611</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(One intermediate revision by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>sh95003611</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier: sh95003611 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier: sh95003611 / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:53 GMT KasparBot http://www.wikidata.org/wiki/Talk:Q3928451 + + Q1193043 + http://www.wikidata.org/w/index.php?title=Q1193043&diff=220987797&oldid=220987796 + http://www.wikidata.org/w/index.php?title=Q1193043&diff=220987797&oldid=220987796 + <p>‎<span dir="auto"><span class="autocomment">wbsetaliases-add:1|en: </span> Falculea palliata</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">aliases / en / 0</td><td colspan="2" class="diff-lineno">aliases / en / 0</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline">Falculea palliata</ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987796:newid:220987797:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:50 GMT Jarould http://www.wikidata.org/wiki/Talk:Q1193043 + + Q367539 + http://www.wikidata.org/w/index.php?title=Q367539&diff=220987795&oldid=209231784 + http://www.wikidata.org/w/index.php?title=Q367539&diff=220987795&oldid=209231784 + <p>‎<span dir="auto"><span class="autocomment">wbsetsitelink-add:1|ruwiki: </span> Фаркаш, Ференц</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">links / ruwiki / name</td><td colspan="2" class="diff-lineno">links / ruwiki / name</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><a href="https://ru.wikipedia.org/wiki/%D0%A4%D0%B0%D1%80%D0%BA%D0%B0%D1%88,_%D0%A4%D0%B5%D1%80%D0%B5%D0%BD%D1%86" hreflang="ru" dir="auto">Фаркаш, Ференц</a></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:209231784:newid:220987795:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:50 GMT Dutcman http://www.wikidata.org/wiki/Talk:Q367539 + + Q1193043 + http://www.wikidata.org/w/index.php?title=Q1193043&diff=220987796&oldid=220987791 + http://www.wikidata.org/w/index.php?title=Q1193043&diff=220987796&oldid=220987791 + <p>‎<span dir="auto"><span class="autocomment">wbsetdescription-add:1|en: </span> bird</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(One intermediate revision by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno">aliases / es / 0</td><td colspan="2" class="diff-lineno">aliases / es / 0</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline">Falculea palliata</ins></div></td></tr><tr><td colspan="2" class="diff-lineno">description / en</td><td colspan="2" class="diff-lineno">description / en</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline">bird</ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:50 GMT Jarould http://www.wikidata.org/wiki/Talk:Q1193043 + + Q15451381 + http://www.wikidata.org/w/index.php?title=Q15451381&diff=220987793&oldid=214099568 + http://www.wikidata.org/w/index.php?title=Q15451381&diff=220987793&oldid=214099568 + <p>‎<span dir="auto"><span class="autocomment">wbsetsitelink-add:1|zhwiki: </span> 雲信·皮哈里</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">links / zhwiki / name</td><td colspan="2" class="diff-lineno">links / zhwiki / name</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><a href="//zh.wikipedia.org/wiki/%E9%9B%B2%E4%BF%A1%C2%B7%E7%9A%AE%E5%93%88%E9%87%8C" hreflang="zh" dir="auto">雲信·皮哈里</a></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:214099568:newid:220987793:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:48 GMT Mkckim http://www.wikidata.org/wiki/Talk:Q15451381 + + Q1193043 + http://www.wikidata.org/w/index.php?title=Q1193043&diff=220987791&oldid=220987789 + http://www.wikidata.org/w/index.php?title=Q1193043&diff=220987791&oldid=220987789 + <p>‎<span dir="auto"><span class="autocomment">wbsetdescription-add:1|es: </span> especie de ave paseriforme</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">description / es</td><td colspan="2" class="diff-lineno">description / es</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline">especie de ave paseriforme</ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987789:newid:220987791:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:48 GMT Jarould http://www.wikidata.org/wiki/Talk:Q1193043 + + Q20026661 + http://www.wikidata.org/w/index.php?title=Q20026661&diff=220987792&oldid=220987776 + http://www.wikidata.org/w/index.php?title=Q20026661&diff=220987792&oldid=220987776 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P345" title="‎IMDb identifier‎ | ‎identifier from the Internet Movie Database (IMDb) with prefix (tt-, nm-, ch-, co-, ev-)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">IMDb identifier</span> <span class="wb-itemlink-id">(P345)</span></span></a>: nm0474977</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / IMDb identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>nm0474977</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / IMDb identifier: nm0474977 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987776:newid:220987792:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:48 GMT Väsk http://www.wikidata.org/wiki/Talk:Q20026661 + + Q18085792 + http://www.wikidata.org/w/index.php?title=Q18085792&diff=220987790&oldid=212387279 + http://www.wikidata.org/w/index.php?title=Q18085792&diff=220987790&oldid=212387279 + <p>‎<span dir="auto"><span class="autocomment">wbsetsitelink-remove:1|itwiki: </span> Killer Queen</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">links / itwiki / name</td><td colspan="2" class="diff-lineno">links / itwiki / name</td></tr><tr><td class="diff-marker">-</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;"><div><del class="diffchange diffchange-inline"><a href="//it.wikipedia.org/wiki/Killer_Queen" hreflang="it" dir="auto">Killer Queen</a></del></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:212387279:newid:220987790:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:47 GMT Horcrux92 http://www.wikidata.org/wiki/Talk:Q18085792 + + Q1193043 + http://www.wikidata.org/w/index.php?title=Q1193043&diff=220987789&oldid=215974674 + http://www.wikidata.org/w/index.php?title=Q1193043&diff=220987789&oldid=215974674 + <p>‎<span dir="auto"><span class="autocomment">wbsetlabel-set:1|es: </span> vanga piquicurvo</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">label / es</td><td colspan="2" class="diff-lineno">label / es</td></tr><tr><td class="diff-marker">-</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;"><div><del class="diffchange diffchange-inline">Falculea palliata</del></div></td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline">vanga piquicurvo</ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:215974674:newid:220987789:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:47 GMT Jarould http://www.wikidata.org/wiki/Talk:Q1193043 + + Q4438870 + http://www.wikidata.org/w/index.php?title=Q4438870&diff=220987788&oldid=220987785 + http://www.wikidata.org/w/index.php?title=Q4438870&diff=220987788&oldid=220987785 + <p>‎<span dir="auto"><span class="autocomment">wbsetreference-add:2|: </span> <a href="/wiki/Property:P268" title="‎BnF identifier‎ | ‎identifier for the subject issued by BNF (Bibliothèque nationale de France)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">BnF identifier</span> <span class="wb-itemlink-id">(P268)</span></span></a>: 12323632c</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(One intermediate revision by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / BnF identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>12323632c</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / BnF identifier: 12323632c / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / BnF identifier: 12323632c / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:47 GMT KasparBot http://www.wikidata.org/wiki/Talk:Q4438870 + + Q20026662 + http://www.wikidata.org/w/index.php?title=Q20026662&diff=220987786&oldid=220987773 + http://www.wikidata.org/w/index.php?title=Q20026662&diff=220987786&oldid=220987773 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P31" title="‎instance of‎ | ‎this item is a specific example and a member of that class‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">instance of</span> <span class="wb-itemlink-id">(P31)</span></span></a>: <a href="/wiki/Q16970" title="‎church‎ | ‎religious building for Christian worship‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">church</span> <span class="wb-itemlink-id">(Q16970)</span></span></a></span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / instance of</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span><a title="Q16970" href="/wiki/Q16970">church</a></span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / instance of: <a title="Q16970" href="/wiki/Q16970">church</a> / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987773:newid:220987786:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:45 GMT 89.114.10.123 http://www.wikidata.org/wiki/Talk:Q20026662 + + Q4438870 + http://www.wikidata.org/w/index.php?title=Q4438870&diff=220987785&oldid=210461074 + http://www.wikidata.org/w/index.php?title=Q4438870&diff=220987785&oldid=210461074 + <p>‎<span dir="auto"><span class="autocomment">wbsetreference-add:2|: </span> <a href="/wiki/Property:P244" title="‎LCAuth identifier‎ | ‎identifier from the the Library of Congress Authorities (only for authority control; for single books see P1144)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">LCAuth identifier</span> <span class="wb-itemlink-id">(P244)</span></span></a>: sh88002145</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(One intermediate revision by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>sh88002145</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier: sh88002145 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier: sh88002145 / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:45 GMT KasparBot http://www.wikidata.org/wiki/Talk:Q4438870 + + Q137138 + http://www.wikidata.org/w/index.php?title=Q137138&diff=220987783&oldid=220987747 + http://www.wikidata.org/w/index.php?title=Q137138&diff=220987783&oldid=220987747 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P244" title="‎LCAuth identifier‎ | ‎identifier from the the Library of Congress Authorities (only for authority control; for single books see P1144)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">LCAuth identifier</span> <span class="wb-itemlink-id">(P244)</span></span></a>: n81087040</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>n81087040</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier: n81087040 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987747:newid:220987783:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:44 GMT Toto256 http://www.wikidata.org/wiki/Talk:Q137138 + + Q2968035 + http://www.wikidata.org/w/index.php?title=Q2968035&diff=220987782&oldid=192002089 + http://www.wikidata.org/w/index.php?title=Q2968035&diff=220987782&oldid=192002089 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P373" title="‎Commons category‎ | ‎name of the Wikimedia Commons category containing files related to this item (without the prefix &quot;Category&quot;)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">Commons category</span> <span class="wb-itemlink-id">(P373)</span></span></a>: Castello Normanno (Aci Castello)</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / Commons category</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Castello Normanno (Aci Castello)</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / Commons category: Castello Normanno (Aci Castello) / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:192002089:newid:220987782:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:40 GMT Sannita http://www.wikidata.org/wiki/Talk:Q2968035 + + Q18214523 + http://www.wikidata.org/w/index.php?title=Q18214523&diff=220987781&oldid=213421635 + http://www.wikidata.org/w/index.php?title=Q18214523&diff=220987781&oldid=213421635 + <p>‎<span dir="auto"><span class="autocomment">wbsetreference-add:2|: </span> <a href="/wiki/Property:P227" title="‎GND identifier‎ | ‎identifier from an international authority file of names, subjects, and organizations (please don't use type n = name, disambiguation)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">GND identifier</span> <span class="wb-itemlink-id">(P227)</span></span></a>: 120784521</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(One intermediate revision by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / GND identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>120784521</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / GND identifier: 120784521 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / GND identifier: 120784521 / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:40 GMT KasparBot http://www.wikidata.org/wiki/Talk:Q18214523 + + Q4468164 + http://www.wikidata.org/w/index.php?title=Q4468164&diff=220987779&oldid=210460550 + http://www.wikidata.org/w/index.php?title=Q4468164&diff=220987779&oldid=210460550 + <p>‎<span dir="auto"><span class="autocomment">wbsetreference-add:2|: </span> <a href="/wiki/Property:P244" title="‎LCAuth identifier‎ | ‎identifier from the the Library of Congress Authorities (only for authority control; for single books see P1144)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">LCAuth identifier</span> <span class="wb-itemlink-id">(P244)</span></span></a>: sh2009004997</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(One intermediate revision by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>sh2009004997</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier: sh2009004997 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / LCAuth identifier: sh2009004997 / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:35 GMT KasparBot http://www.wikidata.org/wiki/Talk:Q4468164 + + Q20026648 + http://www.wikidata.org/w/index.php?title=Q20026648&diff=220987777&oldid=220987764 + http://www.wikidata.org/w/index.php?title=Q20026648&diff=220987777&oldid=220987764 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P409" title="‎NLA identifier‎ | ‎identifier issued by the National Library of Australia (see also P1315 for the newer People Australia identifier)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">NLA identifier</span> <span class="wb-itemlink-id">(P409)</span></span></a>: 000035468736</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / NLA identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>000035468736</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / NLA identifier: 000035468736 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987764:newid:220987777:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:34 GMT Sergey kudryavtsev http://www.wikidata.org/wiki/Talk:Q20026648 + + Q20026661 + http://www.wikidata.org/w/index.php?title=Q20026661&diff=220987776&oldid=220987770 + http://www.wikidata.org/w/index.php?title=Q20026661&diff=220987776&oldid=220987770 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P27" title="‎country of citizenship‎ | ‎the object is a country that recognizes the subject as its citizen‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">country of citizenship</span> <span class="wb-itemlink-id">(P27)</span></span></a>: <a href="/wiki/Q34" title="‎Sweden‎ | ‎constitutional monarchy in Northern Europe‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">Sweden</span> <span class="wb-itemlink-id">(Q34)</span></span></a></span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / country of citizenship</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span><a title="Q34" href="/wiki/Q34">Sweden</a></span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / country of citizenship: <a title="Q34" href="/wiki/Q34">Sweden</a> / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987770:newid:220987776:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:33 GMT Väsk http://www.wikidata.org/wiki/Talk:Q20026661 + + Q15456522 + http://www.wikidata.org/w/index.php?title=Q15456522&diff=220987775&oldid=208049839 + http://www.wikidata.org/w/index.php?title=Q15456522&diff=220987775&oldid=208049839 + <p>‎<span dir="auto"><span class="autocomment">wbsetreference-add:2|: </span> <a href="/wiki/Property:P269" title="‎SUDOC authorities‎ | ‎identifier for authority control in the French collaborative library catalog (see also P1025)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">SUDOC authorities</span> <span class="wb-itemlink-id">(P269)</span></span></a>: 085693979</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(One intermediate revision by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>085693979</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities: 085693979 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities: 085693979 / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:30 GMT KasparBot http://www.wikidata.org/wiki/Talk:Q15456522 + + Q20026662 + http://www.wikidata.org/w/index.php?title=Q20026662&diff=220987773&oldid=0 + http://www.wikidata.org/w/index.php?title=Q20026662&diff=220987773&oldid=0 + <p>‎<span dir="auto"><span class="autocomment">wbeditentity-create:2|en: </span> Iglesia misercordia, Church in Porto, Portugal</span></p> +<a href="//www.wikidata.org/w/index.php?title=Q20026662&amp;diff=220987773">Show changes</a> + Tue, 02 Jun 2015 13:21:25 GMT 89.114.10.123 http://www.wikidata.org/wiki/Talk:Q20026662 + + Q18398336 + http://www.wikidata.org/w/index.php?title=Q18398336&diff=220987772&oldid=220987769 + http://www.wikidata.org/w/index.php?title=Q18398336&diff=220987772&oldid=220987769 + <p>‎<span dir="auto"><span class="autocomment">wbsetreference-add:2|: </span> <a href="/wiki/Property:P268" title="‎BnF identifier‎ | ‎identifier for the subject issued by BNF (Bibliothèque nationale de France)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">BnF identifier</span> <span class="wb-itemlink-id">(P268)</span></span></a>: 146560994</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(One intermediate revision by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / BnF identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>146560994</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / BnF identifier: 146560994 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / BnF identifier: 146560994 / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:25 GMT KasparBot http://www.wikidata.org/wiki/Talk:Q18398336 + + Q20026661 + http://www.wikidata.org/w/index.php?title=Q20026661&diff=220987770&oldid=220987760 + http://www.wikidata.org/w/index.php?title=Q20026661&diff=220987770&oldid=220987760 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P21" title="‎sex or gender‎ | ‎Sexual identity of subject. Main: male (Q6581097), female (Q6581072), transgender female (Q1052281), transgender male (Q2449503). For animals, use male animal (Q44148), female animal (Q43445). For groups of same gender, use &quot;subclass of&quot; (P279)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">sex or gender</span> <span class="wb-itemlink-id">(P21)</span></span></a>: <a href="/wiki/Q6581097" title="‎male‎ | ‎human who is male (use with Property:P21 sex or gender). For groups of males use with subclass of (P279).‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">male</span> <span class="wb-itemlink-id">(Q6581097)</span></span></a></span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / sex or gender</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span><a title="Q6581097" href="/wiki/Q6581097">male</a></span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / sex or gender: <a title="Q6581097" href="/wiki/Q6581097">male</a> / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987760:newid:220987770:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:23 GMT Väsk http://www.wikidata.org/wiki/Talk:Q20026661 + + Q18398336 + http://www.wikidata.org/w/index.php?title=Q18398336&diff=220987769&oldid=213588450 + http://www.wikidata.org/w/index.php?title=Q18398336&diff=220987769&oldid=213588450 + <p>‎<span dir="auto"><span class="autocomment">wbsetreference-add:2|: </span> <a href="/wiki/Property:P269" title="‎SUDOC authorities‎ | ‎identifier for authority control in the French collaborative library catalog (see also P1025)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">SUDOC authorities</span> <span class="wb-itemlink-id">(P269)</span></span></a>: 139901760</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(One intermediate revision by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>139901760</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities: 139901760 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities: 139901760 / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:22 GMT KasparBot http://www.wikidata.org/wiki/Talk:Q18398336 + + Q18215075 + http://www.wikidata.org/w/index.php?title=Q18215075&diff=220987767&oldid=220987763 + http://www.wikidata.org/w/index.php?title=Q18215075&diff=220987767&oldid=220987763 + <p>‎<span dir="auto"><span class="autocomment">wbsetreference-add:2|: </span> <a href="/wiki/Property:P268" title="‎BnF identifier‎ | ‎identifier for the subject issued by BNF (Bibliothèque nationale de France)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">BnF identifier</span> <span class="wb-itemlink-id">(P268)</span></span></a>: 120856735</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(One intermediate revision by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities: 029175755 / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / BnF identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>120856735</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / BnF identifier: 120856735 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / BnF identifier: 120856735 / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:17 GMT KasparBot http://www.wikidata.org/wiki/Talk:Q18215075 + + Q20026648 + http://www.wikidata.org/w/index.php?title=Q20026648&diff=220987764&oldid=220987748 + http://www.wikidata.org/w/index.php?title=Q20026648&diff=220987764&oldid=220987748 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P906" title="‎SELIBR‎ | ‎identifier per Libris library catalog‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">SELIBR</span> <span class="wb-itemlink-id">(P906)</span></span></a>: 137087</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SELIBR</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>137087</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SELIBR: 137087 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987748:newid:220987764:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:15 GMT Sergey kudryavtsev http://www.wikidata.org/wiki/Talk:Q20026648 + + Q18215075 + http://www.wikidata.org/w/index.php?title=Q18215075&diff=220987763&oldid=213586974 + http://www.wikidata.org/w/index.php?title=Q18215075&diff=220987763&oldid=213586974 + <p>‎<span dir="auto"><span class="autocomment">wbcreateclaim-create:1|: </span> <a href="/wiki/Property:P269" title="‎SUDOC authorities‎ | ‎identifier for authority control in the French collaborative library catalog (see also P1025)‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">SUDOC authorities</span> <span class="wb-itemlink-id">(P269)</span></span></a>: 029175755</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan='4' style='text-align: center;' class='diff-multi' lang='en'>(2 intermediate revisions by the same user not shown)</td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / VIAF identifier</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>49251243</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / VIAF identifier: 49251243 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / VIAF identifier: 49251243 / reference</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>imported from: <a title="Q8447" href="/wiki/Q8447">French Wikipedia</a></span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>029175755</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / SUDOC authorities: 029175755 / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr></table> + Tue, 02 Jun 2015 13:21:15 GMT KasparBot http://www.wikidata.org/wiki/Talk:Q18215075 + + Q20026661 + http://www.wikidata.org/w/index.php?title=Q20026661&diff=220987760&oldid=220987744 + http://www.wikidata.org/w/index.php?title=Q20026661&diff=220987760&oldid=220987744 + <p>‎<span dir="auto"><span class="autocomment">wbsetclaim-create:2||1: </span> <a href="/wiki/Property:P31" title="‎instance of‎ | ‎this item is a specific example and a member of that class‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">instance of</span> <span class="wb-itemlink-id">(P31)</span></span></a>: <a href="/wiki/Q5" title="‎human‎ | ‎species of the family Hominidae, unique extant species of the genus Homo‎"><span class="wb-itemlink"><span class="wb-itemlink-label" lang="en" dir="ltr">human</span> <span class="wb-itemlink-id">(Q5)</span></span></a></span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / instance of</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span><a title="Q5" href="/wiki/Q5">human</a></span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / instance of: <a title="Q5" href="/wiki/Q5">human</a> / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987744:newid:220987760:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:12 GMT Väsk http://www.wikidata.org/wiki/Talk:Q20026661 + + Q17354242 + http://www.wikidata.org/w/index.php?title=Q17354242&diff=220987759&oldid=203428144 + http://www.wikidata.org/w/index.php?title=Q17354242&diff=220987759&oldid=203428144 + <p>‎<span dir="auto"><span class="autocomment">wbsetsitelink-add:1|commonswiki: </span> Category:Viktoriastraße (Hannover)</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">links / commonswiki / name</td><td colspan="2" class="diff-lineno">links / commonswiki / name</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><a href="//commons.wikimedia.org/wiki/Category:Viktoriastra%C3%9Fe_(Hannover)" hreflang="en" dir="auto">Category:Viktoriastraße (Hannover)</a></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:203428144:newid:220987759:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:10 GMT Jean11 http://www.wikidata.org/wiki/Talk:Q17354242 + + Q20011808 + http://www.wikidata.org/w/index.php?title=Q20011808&diff=220987758&oldid=220987694 + http://www.wikidata.org/w/index.php?title=Q20011808&diff=220987758&oldid=220987694 + <p>‎<span dir="auto"><span class="autocomment">wbsetdescription-add:1|es: </span> activista español pro derechos de personas con discapacidad</span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">description / es</td><td colspan="2" class="diff-lineno">description / es</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline">activista español pro derechos de personas con discapacidad</ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987694:newid:220987758:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:08 GMT Superzerocool http://www.wikidata.org/wiki/Talk:Q20011808 + + Q20000339 + http://www.wikidata.org/w/index.php?title=Q20000339&diff=220987757&oldid=220987755 + http://www.wikidata.org/w/index.php?title=Q20000339&diff=220987757&oldid=220987755 + <p>‎<span dir="auto"><span class="autocomment">wbcreateredirect:0||Q20000339|Q318417</span></span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">redirect</td><td colspan="2" class="diff-lineno">redirect</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline">Q318417</ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220987755:newid:220987757:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:02 GMT Lymantria http://www.wikidata.org/wiki/Talk:Q20000339 + + Q318417 + http://www.wikidata.org/w/index.php?title=Q318417&diff=220987756&oldid=206489112 + http://www.wikidata.org/w/index.php?title=Q318417&diff=220987756&oldid=206489112 + <p>‎<span dir="auto"><span class="autocomment">wbmergeitems-from:0||Q20000339: </span> <a href="/wiki/MediaWiki:Gadget-Merge.js" title="MediaWiki:Gadget-Merge.js">merge.js</a></span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">label / ca</td><td colspan="2" class="diff-lineno">label / ca</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline">Filip I de Macedònia</ins></div></td></tr><tr><td colspan="2" class="diff-lineno">aliases / en / 0</td><td colspan="2" class="diff-lineno">aliases / en / 0</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline">Filip I de Macedònia</ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / given name</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span><a title="Q998338" href="/wiki/Q998338">Filip</a></span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno"></td><td colspan="2" class="diff-lineno">property / given name: <a title="Q998338" href="/wiki/Q998338">Filip</a> / rank</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><span>Normal rank</span></ins></div></td></tr><tr><td colspan="2" class="diff-lineno">links / cawiki / name</td><td colspan="2" class="diff-lineno">links / cawiki / name</td></tr><tr><td colspan="2">&nbsp;</td><td class="diff-marker">+</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;"><div><ins class="diffchange diffchange-inline"><a href="//ca.wikipedia.org/wiki/Filip_I_de_Maced%C3%B2nia" hreflang="ca" dir="auto">Filip I de Macedònia</a></ins></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:206489112:newid:220987756:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:01 GMT Lymantria http://www.wikidata.org/wiki/Talk:Q318417 + + Q20000339 + http://www.wikidata.org/w/index.php?title=Q20000339&diff=220987755&oldid=220878740 + http://www.wikidata.org/w/index.php?title=Q20000339&diff=220987755&oldid=220878740 + <p>‎<span dir="auto"><span class="autocomment">wbmergeitems-to:0||Q318417: </span> <a href="/wiki/MediaWiki:Gadget-Merge.js" title="MediaWiki:Gadget-Merge.js">merge.js</a></span></p> +<table class='diff diff-contentalign-left'> + <col class='diff-marker' /> + <col class='diff-content' /> + <col class='diff-marker' /> + <col class='diff-content' /> + <tr style='vertical-align: top;' lang='en'> + <td colspan='2' style="background-color: white; color:black; text-align: center;">← Older revision</td> + <td colspan='2' style="background-color: white; color:black; text-align: center;">Revision as of 13:21, 2 June 2015</td> + </tr><tr><td colspan="2" class="diff-lineno">label / ca</td><td colspan="2" class="diff-lineno">label / ca</td></tr><tr><td class="diff-marker">-</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;"><div><del class="diffchange diffchange-inline">Filip I de Macedònia</del></div></td></tr><tr><td colspan="2" class="diff-lineno">label / en</td><td colspan="2" class="diff-lineno">label / en</td></tr><tr><td class="diff-marker">-</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;"><div><del class="diffchange diffchange-inline">Filip I de Macedònia</del></div></td></tr><tr><td colspan="2" class="diff-lineno">property / instance of</td><td colspan="2" class="diff-lineno"></td></tr><tr><td class="diff-marker">-</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;"><div><del class="diffchange diffchange-inline"><span><a title="Q5" href="/wiki/Q5">human</a></span></del></div></td><td colspan="2">&nbsp;</td></tr><tr><td colspan="2" class="diff-lineno">property / instance of: <a title="Q5" href="/wiki/Q5">human</a> / rank</td><td colspan="2" class="diff-lineno"></td></tr><tr><td class="diff-marker">-</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;"><div><del class="diffchange diffchange-inline"><span>Normal rank</span></del></div></td><td colspan="2">&nbsp;</td></tr><tr><td colspan="2" class="diff-lineno">property / given name</td><td colspan="2" class="diff-lineno"></td></tr><tr><td class="diff-marker">-</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;"><div><del class="diffchange diffchange-inline"><span><a title="Q998338" href="/wiki/Q998338">Filip</a></span></del></div></td><td colspan="2">&nbsp;</td></tr><tr><td colspan="2" class="diff-lineno">property / given name: <a title="Q998338" href="/wiki/Q998338">Filip</a> / rank</td><td colspan="2" class="diff-lineno"></td></tr><tr><td class="diff-marker">-</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;"><div><del class="diffchange diffchange-inline"><span>Normal rank</span></del></div></td><td colspan="2">&nbsp;</td></tr><tr><td colspan="2" class="diff-lineno">links / cawiki / name</td><td colspan="2" class="diff-lineno">links / cawiki / name</td></tr><tr><td class="diff-marker">-</td><td style="color:black; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;"><div><del class="diffchange diffchange-inline"><a href="//ca.wikipedia.org/wiki/Filip_I_de_Maced%C3%B2nia" hreflang="ca" dir="auto">Filip I de Macedònia</a></del></div></td></tr> +<!-- diff cache key wikidatawiki:diff:version:1.11a:oldid:220878740:newid:220987755:lang:en --> +</table> + Tue, 02 Jun 2015 13:21:01 GMT Lymantria http://www.wikidata.org/wiki/Talk:Q20000339 + + \ No newline at end of file