diff --git a/content/posts/2018-09.md b/content/posts/2018-09.md index 2b30736bd..bad426f95 100644 --- a/content/posts/2018-09.md +++ b/content/posts/2018-09.md @@ -611,4 +611,73 @@ $ time schedtool -D -e ionice -c2 -n7 nice -n19 dspace index-discovery -b - It seems to be Moayad trying to do the AReS explorer indexing - He was sending too many (5 or 10) concurrent requests to the server, but still... why is this shit so slow?! +## 2018-09-30 + +- Valerio keeps sending items on CGSpace that have weird or incorrect languages, authors, etc +- I think I should just batch export and update all languages... + +``` +dspace=# \copy (select distinct text_value, count(*) from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND resource_type_id = 2 group by text_value order by count desc) to /tmp/2018-09-30-languages.csv with csv; +``` + +- Then I can simply delete the "Other" and "other" ones because that's not useful at all: + +``` +dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='Other'; +DELETE 6 +dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='other'; +DELETE 79 +``` + +- Looking through the list I see some weird language codes like `gh`, so I checked out those items: + +``` +dspace=# SELECT resource_id FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh'; + resource_id +------------- + 94530 + 94529 +dspace=# SELECT handle,item_id FROM item, handle WHERE handle.resource_type_id=2 AND handle.resource_id = item.item_id AND handle.resource_id in (94530, 94529); + handle | item_id +-------------+--------- + 10568/91386 | 94529 + 10568/91387 | 94530 +``` + +- Those items are from Ghana, so the submitter apparently thought `gh` was a language... I can safely delete them: + +``` +dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh'; +DELETE 2 +``` + +- The next issue would be `jn`: + +``` +dspace=# SELECT resource_id FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jn'; + resource_id +------------- + 94001 + 94003 +dspace=# SELECT handle,item_id FROM item, handle WHERE handle.resource_type_id=2 AND handle.resource_id = item.item_id AND handle.resource_id in (94001, 94003); + handle | item_id +-------------+--------- + 10568/90868 | 94001 + 10568/90870 | 94003 +``` + +- Those items are about Japan, so I will update them to be `ja` +- Other replacements: + +``` +DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh'; +UPDATE metadatavalue SET text_value='fr' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='fn'; +UPDATE metadatavalue SET text_value='hi' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='in'; +UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='Ja'; +UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jn'; +UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jp'; +``` + +- Then there are 12 items with `en|hi`, but they were all in one collection so I just exported it as a CSV and then re-imported the corrected metadata + diff --git a/docs/2015-11/index.html b/docs/2015-11/index.html index e2ba86515..d939ea617 100644 --- a/docs/2015-11/index.html +++ b/docs/2015-11/index.html @@ -22,6 +22,7 @@ $ psql -c 'SELECT * from pg_stat_activity;' | grep idle | grep -c cgspac + - + diff --git a/docs/2015-12/index.html b/docs/2015-12/index.html index c40b1c4df..128aba30d 100644 --- a/docs/2015-12/index.html +++ b/docs/2015-12/index.html @@ -23,6 +23,7 @@ Replace lzop with xz in log compression cron jobs on DSpace Test—it uses less + - + diff --git a/docs/2016-01/index.html b/docs/2016-01/index.html index ee9368c2e..0482d8af2 100644 --- a/docs/2016-01/index.html +++ b/docs/2016-01/index.html @@ -18,6 +18,7 @@ Update GitHub wiki for documentation of maintenance tasks. + - + diff --git a/docs/2016-02/index.html b/docs/2016-02/index.html index abc689ba0..8f1beeefe 100644 --- a/docs/2016-02/index.html +++ b/docs/2016-02/index.html @@ -25,6 +25,7 @@ Also, lots of things like “COTE D`LVOIRE” and “COTE D IVOIRE&r + - + diff --git a/docs/2016-03/index.html b/docs/2016-03/index.html index a91b88a64..612f0827f 100644 --- a/docs/2016-03/index.html +++ b/docs/2016-03/index.html @@ -18,6 +18,7 @@ Reinstall my local (Mac OS X) DSpace stack with Tomcat 7, PostgreSQL 9.3, and Ja + - + diff --git a/docs/2016-04/index.html b/docs/2016-04/index.html index dcb3d5084..582f44921 100644 --- a/docs/2016-04/index.html +++ b/docs/2016-04/index.html @@ -20,6 +20,7 @@ Also, I noticed the checker log has some errors we should pay attention to: + - + diff --git a/docs/2016-05/index.html b/docs/2016-05/index.html index 1a7a304ee..acc35ab3f 100644 --- a/docs/2016-05/index.html +++ b/docs/2016-05/index.html @@ -22,6 +22,7 @@ There are 3,000 IPs accessing the REST API in a 24-hour period! + - + diff --git a/docs/2016-06/index.html b/docs/2016-06/index.html index 71a0770d8..0c682599e 100644 --- a/docs/2016-06/index.html +++ b/docs/2016-06/index.html @@ -21,6 +21,7 @@ Working on second phase of metadata migration, looks like this will work for mov + - + diff --git a/docs/2016-07/index.html b/docs/2016-07/index.html index ffa478e48..05b847fa8 100644 --- a/docs/2016-07/index.html +++ b/docs/2016-07/index.html @@ -29,6 +29,7 @@ In this case the select query was showing 95 results before the update + - + diff --git a/docs/2016-08/index.html b/docs/2016-08/index.html index df218db4d..7fdaeefbc 100644 --- a/docs/2016-08/index.html +++ b/docs/2016-08/index.html @@ -26,6 +26,7 @@ $ git rebase -i dspace-5.5 + - + diff --git a/docs/2016-09/index.html b/docs/2016-09/index.html index d646b5e86..e461e0a6e 100644 --- a/docs/2016-09/index.html +++ b/docs/2016-09/index.html @@ -22,6 +22,7 @@ $ ldapsearch -x -H ldaps://svcgroot2.cgiarad.org:3269/ -b "dc=cgiarad,dc=or + - + diff --git a/docs/2016-10/index.html b/docs/2016-10/index.html index 54872cc08..2ebfb5fed 100644 --- a/docs/2016-10/index.html +++ b/docs/2016-10/index.html @@ -26,6 +26,7 @@ I exported a random item’s metadata as CSV, deleted all columns except id + - + diff --git a/docs/2016-11/index.html b/docs/2016-11/index.html index 982ee8265..42bb7aae7 100644 --- a/docs/2016-11/index.html +++ b/docs/2016-11/index.html @@ -18,6 +18,7 @@ Add dc.type to the output options for Atmire’s Listings and Reports module + - + diff --git a/docs/2016-12/index.html b/docs/2016-12/index.html index 5ad45acdf..2615dd735 100644 --- a/docs/2016-12/index.html +++ b/docs/2016-12/index.html @@ -30,6 +30,7 @@ Another worrying error from dspace.log is: + - + diff --git a/docs/2017-01/index.html b/docs/2017-01/index.html index a75f87998..035820e64 100644 --- a/docs/2017-01/index.html +++ b/docs/2017-01/index.html @@ -18,6 +18,7 @@ I asked on the dspace-tech mailing list because it seems to be broken, and actua + - + diff --git a/docs/2017-02/index.html b/docs/2017-02/index.html index bcc4b082a..77b33ec5f 100644 --- a/docs/2017-02/index.html +++ b/docs/2017-02/index.html @@ -32,6 +32,7 @@ Looks like we’ll be using cg.identifier.ccafsprojectpii as the field name + - + diff --git a/docs/2017-03/index.html b/docs/2017-03/index.html index 8e4515575..c96522a01 100644 --- a/docs/2017-03/index.html +++ b/docs/2017-03/index.html @@ -34,6 +34,7 @@ $ identify ~/Desktop/alc_contrastes_desafios.jpg + - + diff --git a/docs/2017-04/index.html b/docs/2017-04/index.html index 1c63780c1..deb7b135a 100644 --- a/docs/2017-04/index.html +++ b/docs/2017-04/index.html @@ -27,6 +27,7 @@ $ [dspace]/bin/dspace filter-media -f -i 10568/16498 -p "ImageMagick PDF Th + - + diff --git a/docs/2017-05/index.html b/docs/2017-05/index.html index bdab5704d..7a10a6474 100644 --- a/docs/2017-05/index.html +++ b/docs/2017-05/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/2017-06/index.html b/docs/2017-06/index.html index e27450359..4c84bb98d 100644 --- a/docs/2017-06/index.html +++ b/docs/2017-06/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/2017-07/index.html b/docs/2017-07/index.html index 8a5708137..7b62a6328 100644 --- a/docs/2017-07/index.html +++ b/docs/2017-07/index.html @@ -24,6 +24,7 @@ We can use PostgreSQL’s extended output format (-x) plus sed to format the + - + diff --git a/docs/2017-08/index.html b/docs/2017-08/index.html index ab72a887e..738ecb9cf 100644 --- a/docs/2017-08/index.html +++ b/docs/2017-08/index.html @@ -34,6 +34,7 @@ Then I cleaned up the author authorities and HTML characters in OpenRefine and s + - + diff --git a/docs/2017-09/index.html b/docs/2017-09/index.html index 56f51de95..b35a7155e 100644 --- a/docs/2017-09/index.html +++ b/docs/2017-09/index.html @@ -22,6 +22,7 @@ Ask Sisay to clean up the WLE approvers a bit, as Marianne’s user account + - + diff --git a/docs/2017-10/index.html b/docs/2017-10/index.html index e381a4a09..e7447547e 100644 --- a/docs/2017-10/index.html +++ b/docs/2017-10/index.html @@ -24,6 +24,7 @@ Add Katherine Lutz to the groups for content submission and edit steps of the CG + - + diff --git a/docs/2017-11/index.html b/docs/2017-11/index.html index 99ba04de7..65e39c4d2 100644 --- a/docs/2017-11/index.html +++ b/docs/2017-11/index.html @@ -34,6 +34,7 @@ COPY 54701 + - + diff --git a/docs/2017-12/index.html b/docs/2017-12/index.html index 55746069f..b2f939a77 100644 --- a/docs/2017-12/index.html +++ b/docs/2017-12/index.html @@ -19,6 +19,7 @@ The list of connections to XMLUI and REST API for today: + - + diff --git a/docs/2018-01/index.html b/docs/2018-01/index.html index 3c052c44f..bffacce0f 100644 --- a/docs/2018-01/index.html +++ b/docs/2018-01/index.html @@ -88,6 +88,7 @@ Danny wrote to ask for help renewing the wildcard ilri.org certificate and I adv + - + diff --git a/docs/2018-02/index.html b/docs/2018-02/index.html index afffbfe0a..53cea1562 100644 --- a/docs/2018-02/index.html +++ b/docs/2018-02/index.html @@ -19,6 +19,7 @@ I copied the logic in the jmx_tomcat_dbpools provided by Ubuntu’s munin-pl + - + diff --git a/docs/2018-03/index.html b/docs/2018-03/index.html index 962c39299..5e7cd1516 100644 --- a/docs/2018-03/index.html +++ b/docs/2018-03/index.html @@ -16,6 +16,7 @@ Export a CSV of the IITA community metadata for Martin Mueller + - + diff --git a/docs/2018-04/index.html b/docs/2018-04/index.html index 5f427bb29..b0e08d1c4 100644 --- a/docs/2018-04/index.html +++ b/docs/2018-04/index.html @@ -17,6 +17,7 @@ Catalina logs at least show some memory errors yesterday: + - + diff --git a/docs/2018-05/index.html b/docs/2018-05/index.html index 71376ee77..f044249ff 100644 --- a/docs/2018-05/index.html +++ b/docs/2018-05/index.html @@ -23,6 +23,7 @@ Also, I switched it to use OpenJDK instead of Oracle Java, as well as re-worked + - + diff --git a/docs/2018-06/index.html b/docs/2018-06/index.html index e73d18fc1..09b4126df 100644 --- a/docs/2018-06/index.html +++ b/docs/2018-06/index.html @@ -37,6 +37,7 @@ sys 2m7.289s + - + diff --git a/docs/2018-07/index.html b/docs/2018-07/index.html index 17a13a5cb..7f80e4925 100644 --- a/docs/2018-07/index.html +++ b/docs/2018-07/index.html @@ -26,6 +26,7 @@ There is insufficient memory for the Java Runtime Environment to continue. + - + diff --git a/docs/2018-08/index.html b/docs/2018-08/index.html index deb82eabd..ac2d73d99 100644 --- a/docs/2018-08/index.html +++ b/docs/2018-08/index.html @@ -30,6 +30,7 @@ I ran all system updates on DSpace Test and rebooted it + - + diff --git a/docs/2018-09/index.html b/docs/2018-09/index.html index 81e1adb44..40126f10e 100644 --- a/docs/2018-09/index.html +++ b/docs/2018-09/index.html @@ -18,7 +18,8 @@ I’m testing the new DSpace 5.8 branch in my Ubuntu 18.04 environment and I " /> - + + - + @@ -41,9 +42,9 @@ I’m testing the new DSpace 5.8 branch in my Ubuntu 18.04 environment and I "@type": "BlogPosting", "headline": "September, 2018", "url": "https://alanorth.github.io/cgspace-notes/2018-09/", - "wordCount": "4757", + "wordCount": "5245", "datePublished": "2018-09-02T09:55:54+03:00", - "dateModified": "2018-09-29T15:00:03+03:00", + "dateModified": "2018-09-29T19:00:41+03:00", "author": { "@type": "Person", "name": "Alan Orth" @@ -812,6 +813,83 @@ $ ./fix-metadata-values.py -i 2018-09-29-fix-authors.csv -db dspace -u dspace -p
  • He was sending too many (5 or 10) concurrent requests to the server, but still… why is this shit so slow?!
  • +

    2018-09-30

    + + + +
    dspace=# \copy (select distinct text_value, count(*) from metadatavalue where metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND resource_type_id = 2 group by text_value order by count desc) to /tmp/2018-09-30-languages.csv with csv;
    +
    + + + +
    dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='Other';
    +DELETE 6
    +dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='other';
    +DELETE 79
    +
    + + + +
    dspace=# SELECT resource_id FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh';
    + resource_id
    +-------------
    +       94530
    +       94529
    +dspace=# SELECT handle,item_id FROM item, handle WHERE handle.resource_type_id=2 AND handle.resource_id = item.item_id AND handle.resource_id in (94530, 94529);
    +   handle    | item_id
    +-------------+---------
    + 10568/91386 |   94529
    + 10568/91387 |   94530
    +
    + + + +
    dspace=# DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh';
    +DELETE 2
    +
    + + + +
    dspace=# SELECT resource_id FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jn';
    + resource_id
    +-------------
    +       94001
    +       94003
    +dspace=# SELECT handle,item_id FROM item, handle WHERE handle.resource_type_id=2 AND handle.resource_id = item.item_id AND handle.resource_id in (94001, 94003);
    +   handle    | item_id
    +-------------+---------
    + 10568/90868 |   94001
    + 10568/90870 |   94003
    +
    + + + +
    DELETE FROM metadatavalue WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='gh';
    +UPDATE metadatavalue SET text_value='fr' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='fn';
    +UPDATE metadatavalue SET text_value='hi' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='in';
    +UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='Ja';
    +UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jn';
    +UPDATE metadatavalue SET text_value='ja' WHERE resource_type_id=2 AND metadata_field_id = (select metadata_field_id from metadatafieldregistry where element = 'language' and qualifier = 'iso') AND text_value='jp';
    +
    + + + diff --git a/docs/404.html b/docs/404.html index d2f2b320e..57d5e3834 100644 --- a/docs/404.html +++ b/docs/404.html @@ -9,10 +9,11 @@ + - + diff --git a/docs/categories/index.html b/docs/categories/index.html index 0112c7632..58114ee87 100644 --- a/docs/categories/index.html +++ b/docs/categories/index.html @@ -9,10 +9,11 @@ + - + diff --git a/docs/categories/notes/index.html b/docs/categories/notes/index.html index 293a175f0..9c7f413fc 100644 --- a/docs/categories/notes/index.html +++ b/docs/categories/notes/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/categories/page/2/index.html b/docs/categories/page/2/index.html index 8efcf7e16..6b02b7fb3 100644 --- a/docs/categories/page/2/index.html +++ b/docs/categories/page/2/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/categories/page/3/index.html b/docs/categories/page/3/index.html index 8af79d008..d802baf8c 100644 --- a/docs/categories/page/3/index.html +++ b/docs/categories/page/3/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/categories/page/4/index.html b/docs/categories/page/4/index.html index f9259e63c..02f9d7ae1 100644 --- a/docs/categories/page/4/index.html +++ b/docs/categories/page/4/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/cgiar-library-migration/index.html b/docs/cgiar-library-migration/index.html index 729d32969..2723235a7 100644 --- a/docs/cgiar-library-migration/index.html +++ b/docs/cgiar-library-migration/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/index.html b/docs/index.html index ab1473038..238e17187 100644 --- a/docs/index.html +++ b/docs/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/page/2/index.html b/docs/page/2/index.html index b1e721a0a..052a37c43 100644 --- a/docs/page/2/index.html +++ b/docs/page/2/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/page/3/index.html b/docs/page/3/index.html index 9d1dcc73e..76b3cad26 100644 --- a/docs/page/3/index.html +++ b/docs/page/3/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/page/4/index.html b/docs/page/4/index.html index 216cf1388..3d8603350 100644 --- a/docs/page/4/index.html +++ b/docs/page/4/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/posts/index.html b/docs/posts/index.html index 6388f0365..ae9b8a681 100644 --- a/docs/posts/index.html +++ b/docs/posts/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/posts/page/2/index.html b/docs/posts/page/2/index.html index c2f0fc235..764ea8465 100644 --- a/docs/posts/page/2/index.html +++ b/docs/posts/page/2/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/posts/page/3/index.html b/docs/posts/page/3/index.html index bf5a93174..83fcc251a 100644 --- a/docs/posts/page/3/index.html +++ b/docs/posts/page/3/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/posts/page/4/index.html b/docs/posts/page/4/index.html index 0f03e2997..374fd04bb 100644 --- a/docs/posts/page/4/index.html +++ b/docs/posts/page/4/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/sitemap.xml b/docs/sitemap.xml index eeb768f46..d86d4f561 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -4,7 +4,7 @@ https://alanorth.github.io/cgspace-notes/2018-09/ - 2018-09-29T15:00:03+03:00 + 2018-09-29T19:00:41+03:00 @@ -184,7 +184,7 @@ https://alanorth.github.io/cgspace-notes/ - 2018-09-29T15:00:03+03:00 + 2018-09-29T19:00:41+03:00 0 @@ -195,7 +195,7 @@ https://alanorth.github.io/cgspace-notes/tags/notes/ - 2018-09-29T15:00:03+03:00 + 2018-09-29T19:00:41+03:00 0 @@ -207,13 +207,13 @@ https://alanorth.github.io/cgspace-notes/posts/ - 2018-09-29T15:00:03+03:00 + 2018-09-29T19:00:41+03:00 0 https://alanorth.github.io/cgspace-notes/tags/ - 2018-09-29T15:00:03+03:00 + 2018-09-29T19:00:41+03:00 0 diff --git a/docs/tags/index.html b/docs/tags/index.html index 7a010d427..e7f9f33c1 100644 --- a/docs/tags/index.html +++ b/docs/tags/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/tags/notes/index.html b/docs/tags/notes/index.html index aa7849015..b1587ab99 100644 --- a/docs/tags/notes/index.html +++ b/docs/tags/notes/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/tags/notes/page/2/index.html b/docs/tags/notes/page/2/index.html index 78e28f9cb..2879c08bf 100644 --- a/docs/tags/notes/page/2/index.html +++ b/docs/tags/notes/page/2/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/tags/notes/page/3/index.html b/docs/tags/notes/page/3/index.html index c68f50b9d..3b200f6f2 100644 --- a/docs/tags/notes/page/3/index.html +++ b/docs/tags/notes/page/3/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/tags/notes/page/4/index.html b/docs/tags/notes/page/4/index.html index 55758e5fe..b89ffdcf2 100644 --- a/docs/tags/notes/page/4/index.html +++ b/docs/tags/notes/page/4/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/tags/page/2/index.html b/docs/tags/page/2/index.html index 82c547e04..9e0df4770 100644 --- a/docs/tags/page/2/index.html +++ b/docs/tags/page/2/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/tags/page/3/index.html b/docs/tags/page/3/index.html index 7996936d0..4aedaf7c3 100644 --- a/docs/tags/page/3/index.html +++ b/docs/tags/page/3/index.html @@ -10,10 +10,11 @@ + - + diff --git a/docs/tags/page/4/index.html b/docs/tags/page/4/index.html index 53eff2e2c..8a76df753 100644 --- a/docs/tags/page/4/index.html +++ b/docs/tags/page/4/index.html @@ -10,10 +10,11 @@ + - +