commonmeta-ruby 3.7.1 → 3.7.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e60c424c5990d121493b7cdc7db9d0b2b9a7697044c0278d5e8c3be16157d62b
4
- data.tar.gz: cd24f41eff23c37f380ec8818301bec32839bcf332711701b135bdb41e0dfe30
3
+ metadata.gz: fe9597494d8229d62e5fbfe7d60869465963ae8cb27455b428cf21131a9a8973
4
+ data.tar.gz: 0b4199c7d706e064d0edb767acffe16d033d66833f2f43f405749a3e9cc5208a
5
5
  SHA512:
6
- metadata.gz: aa0286bb0aceb0619a97bc43a7ffca61b7d6400b46e64e435f98ec7e83645a3eee7ef8fb3a2c76770a75ac43c8a5f7d6187c8101c1f279fc58e3ffa4649105be
7
- data.tar.gz: e6720fa86ee5f18bf71f83ea076f2bf7103b2617a36eecb9216b92840ae0d4966b25c8fb10cafb9ad335f648f2c0d632bc800afd785e08584bde643db37ddfb9
6
+ metadata.gz: 709cc4b413280e974e177a69587edff1ebf923a051ba05d41ca2ed4429651aed51b1abdeb9174ae88e7c028b33208ffa5e3c42a29b198e9dd3e27d0e920928bd
7
+ data.tar.gz: c5ebc9f76d2cbf8a9bc61f343c44d84454be253e4ae0785510afb375e451ea8173800eaf7271d9acfb29a79933025b4b8cf3cbde380644407a540917e2bd6904
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- commonmeta-ruby (3.7.1)
4
+ commonmeta-ruby (3.7.2)
5
5
  activesupport (>= 4.2.5, < 8.0)
6
6
  addressable (~> 2.8.1, < 2.8.2)
7
7
  base32-url (>= 0.7.0, < 1)
@@ -42,7 +42,7 @@ GEM
42
42
  ast (2.4.2)
43
43
  base32-url (0.7.0)
44
44
  uuidtools (~> 2.1, >= 2.1.5)
45
- base64 (0.1.1)
45
+ base64 (0.2.0)
46
46
  bcp47_spec (0.2.1)
47
47
  bibtex-ruby (6.0.0)
48
48
  latex-decode (~> 0.0)
@@ -69,7 +69,7 @@ GEM
69
69
  docile (1.4.0)
70
70
  domain_name (0.5.20190701)
71
71
  unf (>= 0.0.5, < 1.0.0)
72
- drb (2.1.1)
72
+ drb (2.2.0)
73
73
  ruby2_keywords
74
74
  ebnf (2.4.0)
75
75
  htmlentities (~> 4.3)
@@ -134,7 +134,7 @@ GEM
134
134
  matrix (0.4.2)
135
135
  minitest (5.20.0)
136
136
  multi_json (1.15.0)
137
- mutex_m (0.1.2)
137
+ mutex_m (0.2.0)
138
138
  namae (1.1.1)
139
139
  nokogiri (1.15.4-arm64-darwin)
140
140
  racc (~> 1.4)
data/bin/commonmeta CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  require File.expand_path("../../lib/commonmeta", __FILE__)
4
4
 
5
- if (ARGV & %w(--version -v help --help encode decode encode_id decode_id encode_by_blog encode_by_id json_feed_not_indexed json_feed_unregistered json_feed_by_blog json_feed_blog_id update_ghost_post generate_ghost_api_token)).empty?
5
+ if (ARGV & %w(--version -v help --help encode decode encode_id decode_id encode_by_blog encode_by_id json_feed_updated json_feed_unregistered json_feed_by_blog json_feed_blog_id update_ghost_post generate_ghost_api_token)).empty?
6
6
  Commonmeta::CLI.start(ARGV.dup.unshift("convert"))
7
7
  else
8
8
  Commonmeta::CLI.start
@@ -103,10 +103,10 @@ module Commonmeta
103
103
  puts get_json_feed_unregistered
104
104
  end
105
105
 
106
- desc "", "json_feed_not_indexed"
106
+ desc "", "json_feed_updated"
107
107
 
108
- def json_feed_not_indexed
109
- puts get_json_feed_not_indexed
108
+ def json_feed_updated
109
+ puts get_json_feed_updated
110
110
  end
111
111
 
112
112
  desc "", "json_feed_by_blog"
@@ -190,10 +190,10 @@ module Commonmeta
190
190
  posts.map { |post| post["id"] }.first
191
191
  end
192
192
 
193
- def get_json_feed_not_indexed
193
+ def get_json_feed_updated
194
194
  # get JSON Feed items not indexed in Crossref since they have been last updated
195
195
 
196
- url = json_feed_not_indexed_url
196
+ url = json_feed_updated_url
197
197
  response = HTTP.get(url)
198
198
  return { "string" => nil, "state" => "not_found" } unless response.status.success?
199
199
 
@@ -1453,8 +1453,8 @@ module Commonmeta
1453
1453
  Base32::URL.decode(id)
1454
1454
  end
1455
1455
 
1456
- def json_feed_not_indexed_url
1457
- "https://api.rogue-scholar.org/posts/not_indexed"
1456
+ def json_feed_updated_url
1457
+ "https://api.rogue-scholar.org/posts/updated"
1458
1458
  end
1459
1459
 
1460
1460
  def json_feed_unregistered_url
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Commonmeta
4
- VERSION = '3.7.1'
4
+ VERSION = '3.7.2'
5
5
  end
data/spec/cli_spec.rb CHANGED
@@ -370,9 +370,9 @@ describe Commonmeta::CLI do
370
370
  expect { subject.json_feed_unregistered }.to output(/17d0e31c-bc41-42b8-b873-d3dacee61f5c/).to_stdout
371
371
  end
372
372
 
373
- # it "json_feed_not_indexed" do
374
- # expect { subject.json_feed_not_indexed }.to output(/r294649-6f79289-8cw1w/).to_stdout
375
- # end
373
+ it "json_feed_updated" do
374
+ expect { subject.json_feed_updated }.to output(/bb8932b9-2820-42f8-b22f-f191aaf00e32/).to_stdout
375
+ end
376
376
 
377
377
  it "json_feed_by_blog" do
378
378
  input = "iphylo"
@@ -0,0 +1,186 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.rogue-scholar.org/posts/updated
6
+ body:
7
+ encoding: ASCII-8BIT
8
+ string: ''
9
+ headers:
10
+ Connection:
11
+ - close
12
+ Host:
13
+ - api.rogue-scholar.org
14
+ User-Agent:
15
+ - http.rb/5.1.1
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Content-Type:
22
+ - application/json
23
+ Content-Length:
24
+ - '25138'
25
+ Ratelimit-Limit:
26
+ - '15'
27
+ Ratelimit-Remaining:
28
+ - '14'
29
+ Ratelimit-Reset:
30
+ - '3'
31
+ Date:
32
+ - Wed, 08 Nov 2023 10:07:52 GMT
33
+ Server:
34
+ - Fly/442f90d3 (2023-11-07)
35
+ Via:
36
+ - 1.1 fly.io
37
+ Fly-Request-Id:
38
+ - 01HEQ6E4HTP85T3NK4C16TKDFM-fra
39
+ body:
40
+ encoding: UTF-8
41
+ string: '[{"archive_url":"https://wayback.archive-it.org/22141/20231105110201/https://blogs.fu-berlin.de/open-access-berlin/2023/10/06/veranstaltungshinweise-november-2023","authors":[{"name":"Georg
42
+ Fischer"}],"blog":{"category":"otherHumanities","description":null,"feed_url":"https://blogs.fu-berlin.de/open-access-berlin/feed/atom/","generator":"WordPress","home_page_url":"https://blogs.fu-berlin.de/open-access-berlin","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"oaberlin","status":"active","title":"Open
43
+ Access Blog Berlin","updated_at":1699429735},"blog_name":"Open Access Blog
44
+ Berlin","blog_slug":"oaberlin","doi":"https://doi.org/10.59350/bmvf8-z4q23","guid":"https://blogs.fu-berlin.de/open-access-berlin/?p=1977","id":"bb8932b9-2820-42f8-b22f-f191aaf00e32","image":null,"indexed":false,"indexed_at":1699219437,"language":"de","published_at":1696581036,"reference":[],"relationships":[],"summary":"weiter
45
+ zu Dezember 2023 [folgt in K\u00fcrze] Anmerkung zu dieser Rubrik: Das OABB
46
+ erstellt monatlich eine \u00dcbersicht \u00fcber Termine und Veranstaltungen
47
+ zu Open Access und Open Research in Berlin bzw. an Berliner Einrichtungen.
48
+ Der Fokus liegt dabei auf unseren Partnereinrichtungen und auf Veranstaltungen,
49
+ die sich an die \u00d6ffentlichkeit richten bzw. die offen sind f\u00fcr Angeh\u00f6rige
50
+ der Wissenschafts- und Kulturerbeeinrichtungen in Berlin.","tags":["Veranstaltungshinweise"],"title":"Veranstaltungshinweise
51
+ November 2023","updated_at":1699429735,"url":"https://blogs.fu-berlin.de/open-access-berlin/2023/10/06/veranstaltungshinweise-november-2023"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/principles-of-open-scholarly-infrastructure-posi-version-1-1-reflections-from-adopters","authors":[{"name":"Ginny
52
+ Hendricks","url":"https://orcid.org/0000-0002-0353-2702"}],"blog":{"category":"humanities","description":"The
53
+ community blog for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/n6az7-4xb07","guid":"652bb7cb4e902104cd51d525","id":"3d013369-c9fa-4b05-8b5f-ad7e1e2f39a2","image":"https://images.unsplash.com/photo-1529246337709-b1a561ebd175?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wxMTc3M3wwfDF8c2VhcmNofDEyfHxjb2xvdXIlMjBzdGVwc3xlbnwwfHx8fDE2OTkzMDU0MTN8MA&ixlib=rb-4.0.3&q=80&w=2000","indexed":false,"indexed_at":1699348555,"language":"en","published_at":1699347653,"reference":[],"relationships":[],"summary":"<em>The
54
+ Upstream platform was created in order to discuss all things open. Open scholarly
55
+ infrastructure and the need for the community to assess such infrastructures
56
+ are surely at the heart of enabling the open research movement.","tags":["Interviews","Thought
57
+ Pieces"],"title":"Principles of Open Scholarly Infrastructure (POSI) version
58
+ 1.1: Reflections from adopters","updated_at":1699378833,"url":"https://upstream.force11.org/principles-of-open-scholarly-infrastructure-posi-version-1-1-reflections-from-adopters"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/navigating-data-intensive-innovation-the-transition-from-research-data-management-to-research-data-governance","authors":[{"name":"Andrea
59
+ Chiarelli","url":"https://orcid.org/0000-0001-7336-8330"}],"blog":{"category":"humanities","description":"The
60
+ community blog for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/qxbkv-rth08","guid":"6479cd0251698604a68d4b33","id":"d5bea9a2-5136-4ef1-8a73-0490aabd8b14","image":"https://upstream.force11.org/content/images/2023/06/alina-grubnyak-ZiQkhI7417A-unsplash.jpg","indexed":false,"indexed_at":1699197886,"language":"en","published_at":1686038449,"reference":[],"relationships":[],"summary":"The
61
+ exponential surge in research data, coupled with the advent of cutting-edge
62
+ computational tools, is ushering in an era of unprecedented opportunities
63
+ for research performing organisations. However, with many still in the process
64
+ of adopting basic research data management practices and support mechanisms,
65
+ the current state of play is concerning.","tags":["Thought Pieces"],"title":"Navigating
66
+ data-intensive innovation: The transition from research data management to
67
+ research data governance","updated_at":1699304092,"url":"https://upstream.force11.org/navigating-data-intensive-innovation-the-transition-from-research-data-management-to-research-data-governance"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/flowcharts-from-the-f11-cope-data-publishing-ethics-working-group","authors":[{"name":"Iratxe
68
+ Puebla","url":"https://orcid.org/0000-0003-1258-0746"}],"blog":{"category":"humanities","description":"The
69
+ community blog for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/8ty1h-b7t22","guid":"64932cf93cf1043a4d8b0425","id":"0d86b023-1425-450e-a641-a3e5cc25544b","image":"https://upstream.force11.org/content/images/2023/06/Screen-Shot-2023-06-26-at-11.33.11-AM.png","indexed":false,"indexed_at":1699194850,"language":"en","published_at":1687852853,"reference":[],"relationships":[],"summary":"Recognizing
70
+ the need for dialogue on best practices around ethical challenges in data
71
+ publication, the FORCE11 Research Data Publication Ethics Working Group started
72
+ in early 2021 as a multi-stakeholder community effort involving representatives
73
+ of data repositories, journals, researchers, institutional research integrity
74
+ officers and libraries.","tags":["Thought Pieces"],"title":"Announcing new
75
+ resources from the FORCE11-COPE Research Data Publishing Ethics Working Group:
76
+ flowcharts!","updated_at":1699304063,"url":"https://upstream.force11.org/flowcharts-from-the-f11-cope-data-publishing-ethics-working-group"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/fairer-future-for-open-science-choosing-community-over-commercialization-with-equitable-article-processing-charges","authors":[{"name":"Uttkarsha
77
+ Bhosale","url":"https://orcid.org/0000-0002-4189-8975"},{"name":"Riya Thomas","url":"https://orcid.org/0000-0002-8720-4051"},{"name":"Dr.
78
+ Gayatri Phadke","url":"https://orcid.org/0000-0003-2206-0031"},{"name":"Anupama
79
+ Kapadia"}],"blog":{"category":"humanities","description":"The community blog
80
+ for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/ra7z7-q2p46","guid":"6493e4be3cf1043a4d8b045b","id":"271749ff-66df-495a-893b-4bdc73ccc0cd","image":"https://upstream.force11.org/content/images/2023/06/standard-quality-control-collage-concept--1-.jpg","indexed":false,"indexed_at":1699194321,"language":"en","published_at":1688475577,"reference":[],"relationships":[],"summary":"The
81
+ open access (OA) movement has undoubtedly revolutionized the accessibility
82
+ of scholarly research, aiming to make knowledge freely available to all. While
83
+ many countries have embraced OA publishing with supportive policies, a persistent
84
+ obstacle remains\u2014article processing charges (APCs). These charges/fees
85
+ have led to a debate within the academic community, questioning whether they
86
+ align with the best interests of open science.","tags":["Thought Pieces","Original
87
+ Research"],"title":"A Fairer Future for Open Science: Choosing community over
88
+ commercialization with equitable article processing charges","updated_at":1699304052,"url":"https://upstream.force11.org/fairer-future-for-open-science-choosing-community-over-commercialization-with-equitable-article-processing-charges"},{"archive_url":"https://wayback.archive-it.org/22096/20231101172748/https://blog.front-matter.io/posts/rogue-scholar-blogs-are-now-searchable","authors":[{"name":"Martin
89
+ Fenner","url":"https://orcid.org/0000-0003-1419-2405"}],"blog":{"category":"computerAndInformationSciences","description":"The
90
+ Front Matter Blog covers the intersection of science and technology since
91
+ 2007.","feed_url":"https://blog.front-matter.io/atom-complete/","generator":"Ghost","home_page_url":"https://blog.front-matter.io","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"front_matter","status":"active","title":"Front
92
+ Matter","updated_at":1699181519},"blog_name":"Front Matter","blog_slug":"front_matter","doi":"https://doi.org/10.53731/j4m27-bdw69","guid":"6544c3a43d863800019a5eec","id":"db56ed1f-6430-4418-b4a5-afa6338cf318","image":"https://images.unsplash.com/photo-1473163928189-364b2c4e1135?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wxMTc3M3wwfDF8c2VhcmNofDE1fHxzZWFyY2glMjBrZXlzfGVufDB8fHx8MTY5OTE4MTQ2NHww&ixlib=rb-4.0.3&q=80&w=2000","indexed":false,"indexed_at":1699118710,"language":"en","published_at":1699009062,"reference":[],"relationships":[],"summary":"With
93
+ an update launched yesterday, all blogs that participate in the Rogue Scholar
94
+ science blog archive are now searchable by blog title, description, language,
95
+ blogging platform, category (scientific field using the OECD Fields of Science
96
+ and Technology), and ISSN.","tags":["News"],"title":"Rogue Scholar blogs are
97
+ now searchable","updated_at":1699181519,"url":"https://blog.front-matter.io/posts/rogue-scholar-blogs-are-now-searchable"},{"archive_url":null,"authors":[{"name":"Kim
98
+ Hartley"},{"name":"Michelle Barker"}],"blog":{"category":"computerAndInformationSciences","description":null,"feed_url":"https://www.researchsoft.org/feed.xml","generator":"Hugo","home_page_url":"https://researchsoft.org/","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"researchsoft","status":"active","title":"Research
99
+ Software Alliance","updated_at":1699160484},"blog_name":"Research Software
100
+ Alliance","blog_slug":"researchsoft","doi":"https://doi.org/10.59350/kjwtp-3yg06","guid":"tag:researchsoft.org,2023:/blog/2023-10/","id":"092b69ee-5f4e-4449-9fdb-34329c8d1444","image":"https://researchsoft.org/blog/2023-10/IMG_3080-1440x1080.jpg","indexed":false,"indexed_at":1698568390,"language":"en","published_at":1698105600,"reference":[],"relationships":[],"summary":"October
101
+ 2023 Authors: Kim Hartley and Michelle Barker We are proud to report that
102
+ the second International Research Software Funders Workshop, co-hosted by
103
+ the Digital Research Alliance of Canada (the Alliance) and the Research Software
104
+ Alliance (ReSA) from 18-20 September was a great success.","tags":[],"title":"Investing
105
+ in People: Anticipating the Future of Research Software","updated_at":1699160484,"url":"https://researchsoft.org/blog/2023-10"},{"archive_url":"https://wayback.archive-it.org/22135/20231101173016/https://irights.info/artikel/20-jahre-berliner-erklaerung-open-access-berlin-brandenburg/32078","authors":[{"name":"Georg
106
+ Fischer"}],"blog":{"category":"law","description":"Urheberrecht und kreatives
107
+ Schaffen in der digitalen Welt","feed_url":"https://irights.info/feed/atom","generator":"WordPress","home_page_url":"https://irights.info/","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"irights","status":"active","title":"iRights.info","updated_at":1698917891},"blog_name":"iRights.info","blog_slug":"irights","doi":"https://doi.org/10.59350/6mhvf-28f30","guid":"https://irights.info/?post_type=custom_artikel&p=32078","id":"c85a507c-9125-40a1-9dc2-da10129b57c6","image":"https://irights.info/wp-content/uploads/2023/11/IMG_20231024_1601265362-490x254.jpg","indexed":false,"indexed_at":1698909349,"language":"de","published_at":1698908451,"reference":[],"relationships":[],"summary":"Open
108
+ Access f\u00fcr \u00f6ffentliche Forschung und Kultur: Zwei Jahrzehnte ist
109
+ es schon her, dass sich zahlreiche Organisationen in der <em>Berliner Erkl\u00e4rung</em>
110
+ daf\u00fcr aussprachen. Wie weit ist die \u00d6ffnung tats\u00e4chlich gekommen?
111
+ Und was gilt es weiterhin zu tun? Spannende Fragen, die Berliner und Brandenburger
112
+ Vertreter*innen aus Wissenschaft und Kultur letzte Woche diskutierten.","tags":["Gesellschaft
113
+ + Kunst","Museen + Archive","Urheberrecht","Wissen + Open Access","Wissenschaft"],"title":"20
114
+ Jahre Berliner Erkl\u00e4rung f\u00fcr Open Access: Wie ist die Lage in Berlin
115
+ und Brandenburg?","updated_at":1698917891,"url":"https://irights.info/artikel/20-jahre-berliner-erklaerung-open-access-berlin-brandenburg/32078"},{"archive_url":"https://wayback.archive-it.org/22135/20231101173016/https://irights.info/artikel/urheberrecht-schule-unterrichtsschranke-%C2%A760a-urhg/32073","authors":[{"name":"Till
116
+ Kreutzer"}],"blog":{"category":"law","description":"Urheberrecht und kreatives
117
+ Schaffen in der digitalen Welt","feed_url":"https://irights.info/feed/atom","generator":"WordPress","home_page_url":"https://irights.info/","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"irights","status":"active","title":"iRights.info","updated_at":1698917891},"blog_name":"iRights.info","blog_slug":"irights","doi":"https://doi.org/10.59350/ekr0w-r5r66","guid":"https://irights.info/?post_type=custom_artikel&p=32073","id":"fc382624-1e55-48df-a09b-853674644716","image":"https://irights.info/wp-content/uploads/2023/09/Schule-150x213.png","indexed":false,"indexed_at":1698214609,"language":"de","published_at":1698213654,"reference":[],"relationships":[],"summary":"Das
118
+ Urheberrecht enth\u00e4lt Ausnahmen, die die Arbeit in Bildungseinrichtungen
119
+ leichter machen. Eine davon ist die sogenannte Unterrichtsschranke (\u00a7
120
+ 60a UrhG). iRights.info erkl\u00e4rt die Regelung und gibt Tipps f\u00fcr
121
+ die Praxis. Die Unterrichtsschranke erleichtert es, urheberrechtlich gesch\u00fctztes
122
+ Fremdmaterial zu Bildungszwecken zu nutzen.","tags":["Bildung + OER","Grundwissen","Urheberrecht","Schrankenbestimmungen","Schule"],"title":"Urheberrecht
123
+ in Schulen: Welche Nutzungen die Unterrichtsschranke erlaubt","updated_at":1698908961,"url":"https://irights.info/artikel/urheberrecht-schule-unterrichtsschranke-%C2%A760a-urhg/32073"},{"archive_url":"https://wayback.archive-it.org/22135/20231101173016/https://irights.info/artikel/urheberrecht-schule-wissenschaft-bmbf/32021","authors":[{"name":"Redaktion
124
+ iRights.info"}],"blog":{"category":"law","description":"Urheberrecht und kreatives
125
+ Schaffen in der digitalen Welt","feed_url":"https://irights.info/feed/atom","generator":"WordPress","home_page_url":"https://irights.info/","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"irights","status":"active","title":"iRights.info","updated_at":1698917891},"blog_name":"iRights.info","blog_slug":"irights","doi":"https://doi.org/10.59350/mbc9d-jet17","guid":"https://irights.info/?post_type=custom_artikel&p=32021","id":"f0a7cab6-67dd-48f2-b8be-f59f91254e07","image":"https://irights.info/wp-content/uploads/2023/09/Schule-150x213.png","indexed":false,"indexed_at":1698228321,"language":"de","published_at":1693829213,"reference":[],"relationships":[],"summary":"Darf
126
+ ich meinen Unterricht aufzeichen? Wem geh\u00f6ren die Rechte an meinem Aufsatz?
127
+ Und wie war das nochmal mit dem Zitatrecht? In Schule und Wissenschaft stellen
128
+ sich vielf\u00e4ltige Fragen rund ums Urheberrecht. Zwei neue Handreichungen
129
+ des BMBF helfen mit leicht verst\u00e4ndlichen und praxisnahen Antworten,
130
+ konzipiert und erarbeitet von Till Kreutzer und Georg Fischer.","tags":["Autor
131
+ + Text","Creative Commons + Lizenzen","Urheberrecht","Wissen + Open Access","Wissenschaft"],"title":"Urheberrecht
132
+ in Schule und Wissenschaft: Zwei neue Handreichungen unterst\u00fctzen bei
133
+ Alltagsfragen","updated_at":1698677589,"url":"https://irights.info/artikel/urheberrecht-schule-wissenschaft-bmbf/32021"},{"archive_url":"https://wayback.archive-it.org/22125/20231105110316/https://opencitations.hypotheses.org/3488","authors":[{"name":"Chiara
134
+ Di Giambattista"}],"blog":{"category":"socialSciences","description":"The
135
+ blog of the OpenCitations Infrastructure","feed_url":"https://opencitations.hypotheses.org/feed/atom/","generator":"WordPress","home_page_url":"https://opencitations.hypotheses.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"opencitations","status":"active","title":"OpenCitations
136
+ blog","updated_at":1698658626},"blog_name":"OpenCitations blog","blog_slug":"opencitations","doi":"https://doi.org/10.59350/canw4-3xd10","guid":"https://opencitations.hypotheses.org/?p=3488","id":"77e770e0-74be-46f4-b800-9f8dc6435741","image":null,"indexed":false,"indexed_at":1698180833,"language":"en","published_at":1697558939,"reference":[],"relationships":[],"summary":"In
137
+ OpenCitations, we like to define our infrastructure organization as \u201ccommunity-based\u201d
138
+ and \u201ccommunity-driven\u201d, and we&nbsp;really&nbsp;mean it. The support
139
+ coming from the number of academic libraries and consortia coming after&nbsp;OpenCitations\u2019
140
+ involvement in the 2nd SCOSS funding cycle&nbsp;has made it possible, starting
141
+ from 2020, to make OpenCitations develop from a small university project based
142
+ on time-limited grant incomes to being an","tags":["Open Abstracts","Open
143
+ Access","Open Citations","Open Scholarship","Open Science"],"title":"OpenCitations
144
+ needs you: support the change in research practices","updated_at":1698658626,"url":"https://opencitations.hypotheses.org/3488"},{"archive_url":"https://wayback.archive-it.org/22153/20231105213934/https://svpow.com/2023/10/28/facial-hair-of-the-mesozoic-bob-nicholls-edition-part-2-only-ten-years-late","authors":[{"name":"Mike
145
+ Taylor"}],"blog":{"category":"earthAndRelatedEnvironmentalSciences","description":"SV-POW! ... All
146
+ sauropod vertebrae, except when we''re talking about Open Access","feed_url":"https://svpow.com/feed/atom/","generator":"WordPress.com","home_page_url":"https://svpow.com","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"svpow","status":"active","title":"Sauropod
147
+ Vertebra Picture of the Week","updated_at":1698530723},"blog_name":"Sauropod
148
+ Vertebra Picture of the Week","blog_slug":"svpow","doi":"https://doi.org/10.59350/tfpdy-zkt79","guid":"https://svpow.com/?p=21347","id":"eec545af-44fd-4663-bcab-75d5c8de8bb1","image":"https://svpow.files.wordpress.com/2023/10/bob-nicholls-sideburns.jpeg?w=480&h=646","indexed":false,"indexed_at":1698526380,"language":"en","published_at":1698525657,"reference":[],"relationships":[],"summary":"Back
149
+ in 2013, we showed you Bob Nicholls\u2019 beautiful sketch \u201cThe Giant
150
+ &amp; Company\u201d, featuring a giant Apatosaurus with a shaggy beard running
151
+ along its neck.","tags":["Art","Bob Nicholls","Diplodocids","Life Restorations","Speculation"],"title":"Facial
152
+ hair of the Mesozoic: Bob Nicholls edition, part 2 (only ten years late)","updated_at":1698530723,"url":"https://svpow.com/2023/10/28/facial-hair-of-the-mesozoic-bob-nicholls-edition-part-2-only-ten-years-late"},{"archive_url":"https://wayback.archive-it.org/22096/20231101172748/https://blog.front-matter.io/posts/using-twitter-at-the-asco-conference","authors":[{"name":"Martin
153
+ Fenner","url":"https://orcid.org/0000-0003-1419-2405"}],"blog":{"category":"computerAndInformationSciences","description":"The
154
+ Front Matter Blog covers the intersection of science and technology since
155
+ 2007.","feed_url":"https://blog.front-matter.io/atom-complete/","generator":"Ghost","home_page_url":"https://blog.front-matter.io","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"front_matter","status":"active","title":"Front
156
+ Matter","updated_at":1699181519},"blog_name":"Front Matter","blog_slug":"front_matter","doi":"https://doi.org/10.53731/r294649-6f79289-8cw55","guid":"62d42bbd41e317003df48e00","id":"b8f01608-05af-41a8-aa71-7238ddea1677","image":"https://blog.front-matter.io/content/images/2023/10/4691440146_bcaea61ee0-1.jpg","indexed":null,"indexed_at":1689007007,"language":"en","published_at":1276560000,"reference":[],"relationships":[],"summary":"Last
157
+ week I attended the annual meeting of the American Society of Clinical Oncology
158
+ (ASCO) in Chicago. For my work it is the most important scientific meeting
159
+ of the year, and it is also by far the biggest with more than 30.000 participants.
160
+ Blogging is a great way to report from conferences, and for me <em>FriendFeed</em>
161
+ is the best microblogging tool to do that.","tags":["Meeting Report"],"title":"Using
162
+ Twitter at the ASCO Conference","updated_at":1698521115,"url":"https://blog.front-matter.io/posts/using-twitter-at-the-asco-conference"},{"archive_url":"https://wayback.archive-it.org/22096/20231101172748/https://blog.front-matter.io/posts/what-is-scholarly-markdown","authors":[{"name":"Martin
163
+ Fenner","url":"https://orcid.org/0000-0003-1419-2405"}],"blog":{"category":"computerAndInformationSciences","description":"The
164
+ Front Matter Blog covers the intersection of science and technology since
165
+ 2007.","feed_url":"https://blog.front-matter.io/atom-complete/","generator":"Ghost","home_page_url":"https://blog.front-matter.io","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"front_matter","status":"active","title":"Front
166
+ Matter","updated_at":1699181519},"blog_name":"Front Matter","blog_slug":"front_matter","doi":"https://doi.org/10.53731/r294649-6f79289-8cw1c","guid":"62d42bbd41e317003df48d87","id":"3850bdcb-6858-4883-a9e9-b474d0bc6f45","image":"https://blog.front-matter.io/content/images/2022/08/DALL-E-2022-08-29-11.57.15---Edward-hopper-oil-painting-of-a-garden-gnome-with-an-umbrella-under-the-Golden-Gate-Bridge.png","indexed":null,"indexed_at":1689007007,"language":"en","published_at":1371489360,"reference":[],"relationships":[],"summary":"One
167
+ of the important discussions taking place at the Markdown for Science workshop
168
+ last weekend was about the definition of Scholarly Markdown.","tags":["Meeting
169
+ Report"],"title":"What is Scholarly Markdown?","updated_at":1698520325,"url":"https://blog.front-matter.io/posts/what-is-scholarly-markdown"},{"archive_url":null,"authors":[{"name":"Roderic
170
+ Page","url":"https://orcid.org/0000-0002-7101-9767"}],"blog":{"category":"computerAndInformationSciences","description":"Rants,
171
+ raves (and occasionally considered opinions) on phyloinformatics, taxonomy,
172
+ and biodiversity informatics. For more ranty and less considered opinions,
173
+ see my <a href=\"https://twitter.com/rdmpage\">Twitter feed</a>.<br />ISSN
174
+ 2051-8188. Written content on this site is licensed under a <a href=\"https://creativecommons.org/licenses/by/4.0/\">Creative
175
+ Commons Attribution 4.0 International license</a>.","feed_url":"https://iphylo.blogspot.com/feeds/posts/default","generator":"Blogger","home_page_url":"https://iphylo.blogspot.com/","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"iphylo","status":"active","title":"iPhylo","updated_at":1698394696},"blog_name":"iPhylo","blog_slug":"iphylo","doi":"https://doi.org/10.59350/m59qn-22v52","guid":"tag:blogger.com,1999:blog-16081779.post-903668539491051583","id":"087fc7fc-c157-414a-a7b6-00503a55b521","image":"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjaJx_5psYTAPfRLaomxACMxZ5Ant1peCHJixf0PeYP82k2uw9vOq4P2Q-HzSakV8q5aSmfqs0X_J_OJmnnhttknlwVYeEguQaxhk4fWi0lKvh_KzugoZWd_MjHmXcImkuMVbJPxXmwln6-Ah7iy4elXNGhfhmofrZbHrgcc3VC7E7lrVd05Utw/s72-c/Screenshot%202023-10-26%20at%2013.30.11.png","indexed":false,"indexed_at":1698333872,"language":"en","published_at":1698333060,"reference":[],"relationships":[],"summary":"This
176
+ blog post documents my attempts to create links between two major resources
177
+ for plant taxonomy: JSTOR\u2019s Global Plants and GBIF, specifically between
178
+ type specimens in JSTOR and the corresponding occurrence in GBIF. The TL;DR
179
+ is that I have tried to map 1,354,861 records for type specimens from JSTOR
180
+ to the equivalent record in GBIF, and managed to find 903,945 (67%) matches.
181
+ Why do this? Why do this?","tags":[],"title":"Where are the plant type specimens?
182
+ Mapping JSTOR Global Plants to GBIF","updated_at":1698394696,"url":"https://iphylo.blogspot.com/2023/10/where-are-plant-type-specimens-mapping.html"}]
183
+
184
+ '
185
+ recorded_at: Wed, 08 Nov 2023 10:07:52 GMT
186
+ recorded_with: VCR 6.2.0
@@ -0,0 +1,186 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.rogue-scholar.org/posts/updated
6
+ body:
7
+ encoding: ASCII-8BIT
8
+ string: ''
9
+ headers:
10
+ Connection:
11
+ - close
12
+ Host:
13
+ - api.rogue-scholar.org
14
+ User-Agent:
15
+ - http.rb/5.1.1
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Content-Type:
22
+ - application/json
23
+ Content-Length:
24
+ - '25138'
25
+ Ratelimit-Limit:
26
+ - '15'
27
+ Ratelimit-Remaining:
28
+ - '13'
29
+ Ratelimit-Reset:
30
+ - '5'
31
+ Date:
32
+ - Wed, 08 Nov 2023 10:07:55 GMT
33
+ Server:
34
+ - Fly/442f90d3 (2023-11-07)
35
+ Via:
36
+ - 1.1 fly.io
37
+ Fly-Request-Id:
38
+ - 01HEQ6E76W3EJQAJNP320B0RJP-fra
39
+ body:
40
+ encoding: UTF-8
41
+ string: '[{"archive_url":"https://wayback.archive-it.org/22141/20231105110201/https://blogs.fu-berlin.de/open-access-berlin/2023/10/06/veranstaltungshinweise-november-2023","authors":[{"name":"Georg
42
+ Fischer"}],"blog":{"category":"otherHumanities","description":null,"feed_url":"https://blogs.fu-berlin.de/open-access-berlin/feed/atom/","generator":"WordPress","home_page_url":"https://blogs.fu-berlin.de/open-access-berlin","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"oaberlin","status":"active","title":"Open
43
+ Access Blog Berlin","updated_at":1699429735},"blog_name":"Open Access Blog
44
+ Berlin","blog_slug":"oaberlin","doi":"https://doi.org/10.59350/bmvf8-z4q23","guid":"https://blogs.fu-berlin.de/open-access-berlin/?p=1977","id":"bb8932b9-2820-42f8-b22f-f191aaf00e32","image":null,"indexed":false,"indexed_at":1699219437,"language":"de","published_at":1696581036,"reference":[],"relationships":[],"summary":"weiter
45
+ zu Dezember 2023 [folgt in K\u00fcrze] Anmerkung zu dieser Rubrik: Das OABB
46
+ erstellt monatlich eine \u00dcbersicht \u00fcber Termine und Veranstaltungen
47
+ zu Open Access und Open Research in Berlin bzw. an Berliner Einrichtungen.
48
+ Der Fokus liegt dabei auf unseren Partnereinrichtungen und auf Veranstaltungen,
49
+ die sich an die \u00d6ffentlichkeit richten bzw. die offen sind f\u00fcr Angeh\u00f6rige
50
+ der Wissenschafts- und Kulturerbeeinrichtungen in Berlin.","tags":["Veranstaltungshinweise"],"title":"Veranstaltungshinweise
51
+ November 2023","updated_at":1699429735,"url":"https://blogs.fu-berlin.de/open-access-berlin/2023/10/06/veranstaltungshinweise-november-2023"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/principles-of-open-scholarly-infrastructure-posi-version-1-1-reflections-from-adopters","authors":[{"name":"Ginny
52
+ Hendricks","url":"https://orcid.org/0000-0002-0353-2702"}],"blog":{"category":"humanities","description":"The
53
+ community blog for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/n6az7-4xb07","guid":"652bb7cb4e902104cd51d525","id":"3d013369-c9fa-4b05-8b5f-ad7e1e2f39a2","image":"https://images.unsplash.com/photo-1529246337709-b1a561ebd175?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wxMTc3M3wwfDF8c2VhcmNofDEyfHxjb2xvdXIlMjBzdGVwc3xlbnwwfHx8fDE2OTkzMDU0MTN8MA&ixlib=rb-4.0.3&q=80&w=2000","indexed":false,"indexed_at":1699348555,"language":"en","published_at":1699347653,"reference":[],"relationships":[],"summary":"<em>The
54
+ Upstream platform was created in order to discuss all things open. Open scholarly
55
+ infrastructure and the need for the community to assess such infrastructures
56
+ are surely at the heart of enabling the open research movement.","tags":["Interviews","Thought
57
+ Pieces"],"title":"Principles of Open Scholarly Infrastructure (POSI) version
58
+ 1.1: Reflections from adopters","updated_at":1699378833,"url":"https://upstream.force11.org/principles-of-open-scholarly-infrastructure-posi-version-1-1-reflections-from-adopters"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/navigating-data-intensive-innovation-the-transition-from-research-data-management-to-research-data-governance","authors":[{"name":"Andrea
59
+ Chiarelli","url":"https://orcid.org/0000-0001-7336-8330"}],"blog":{"category":"humanities","description":"The
60
+ community blog for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/qxbkv-rth08","guid":"6479cd0251698604a68d4b33","id":"d5bea9a2-5136-4ef1-8a73-0490aabd8b14","image":"https://upstream.force11.org/content/images/2023/06/alina-grubnyak-ZiQkhI7417A-unsplash.jpg","indexed":false,"indexed_at":1699197886,"language":"en","published_at":1686038449,"reference":[],"relationships":[],"summary":"The
61
+ exponential surge in research data, coupled with the advent of cutting-edge
62
+ computational tools, is ushering in an era of unprecedented opportunities
63
+ for research performing organisations. However, with many still in the process
64
+ of adopting basic research data management practices and support mechanisms,
65
+ the current state of play is concerning.","tags":["Thought Pieces"],"title":"Navigating
66
+ data-intensive innovation: The transition from research data management to
67
+ research data governance","updated_at":1699304092,"url":"https://upstream.force11.org/navigating-data-intensive-innovation-the-transition-from-research-data-management-to-research-data-governance"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/flowcharts-from-the-f11-cope-data-publishing-ethics-working-group","authors":[{"name":"Iratxe
68
+ Puebla","url":"https://orcid.org/0000-0003-1258-0746"}],"blog":{"category":"humanities","description":"The
69
+ community blog for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/8ty1h-b7t22","guid":"64932cf93cf1043a4d8b0425","id":"0d86b023-1425-450e-a641-a3e5cc25544b","image":"https://upstream.force11.org/content/images/2023/06/Screen-Shot-2023-06-26-at-11.33.11-AM.png","indexed":false,"indexed_at":1699194850,"language":"en","published_at":1687852853,"reference":[],"relationships":[],"summary":"Recognizing
70
+ the need for dialogue on best practices around ethical challenges in data
71
+ publication, the FORCE11 Research Data Publication Ethics Working Group started
72
+ in early 2021 as a multi-stakeholder community effort involving representatives
73
+ of data repositories, journals, researchers, institutional research integrity
74
+ officers and libraries.","tags":["Thought Pieces"],"title":"Announcing new
75
+ resources from the FORCE11-COPE Research Data Publishing Ethics Working Group:
76
+ flowcharts!","updated_at":1699304063,"url":"https://upstream.force11.org/flowcharts-from-the-f11-cope-data-publishing-ethics-working-group"},{"archive_url":"https://wayback.archive-it.org/22124/20231105103706/https://upstream.force11.org/fairer-future-for-open-science-choosing-community-over-commercialization-with-equitable-article-processing-charges","authors":[{"name":"Uttkarsha
77
+ Bhosale","url":"https://orcid.org/0000-0002-4189-8975"},{"name":"Riya Thomas","url":"https://orcid.org/0000-0002-8720-4051"},{"name":"Dr.
78
+ Gayatri Phadke","url":"https://orcid.org/0000-0003-2206-0031"},{"name":"Anupama
79
+ Kapadia"}],"blog":{"category":"humanities","description":"The community blog
80
+ for all things Open Research.","feed_url":"https://upstream.force11.org/atom-complete/","generator":"Ghost","home_page_url":"https://upstream.force11.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"upstream","status":"active","title":"Upstream","updated_at":1699378833},"blog_name":"Upstream","blog_slug":"upstream","doi":"https://doi.org/10.54900/ra7z7-q2p46","guid":"6493e4be3cf1043a4d8b045b","id":"271749ff-66df-495a-893b-4bdc73ccc0cd","image":"https://upstream.force11.org/content/images/2023/06/standard-quality-control-collage-concept--1-.jpg","indexed":false,"indexed_at":1699194321,"language":"en","published_at":1688475577,"reference":[],"relationships":[],"summary":"The
81
+ open access (OA) movement has undoubtedly revolutionized the accessibility
82
+ of scholarly research, aiming to make knowledge freely available to all. While
83
+ many countries have embraced OA publishing with supportive policies, a persistent
84
+ obstacle remains\u2014article processing charges (APCs). These charges/fees
85
+ have led to a debate within the academic community, questioning whether they
86
+ align with the best interests of open science.","tags":["Thought Pieces","Original
87
+ Research"],"title":"A Fairer Future for Open Science: Choosing community over
88
+ commercialization with equitable article processing charges","updated_at":1699304052,"url":"https://upstream.force11.org/fairer-future-for-open-science-choosing-community-over-commercialization-with-equitable-article-processing-charges"},{"archive_url":"https://wayback.archive-it.org/22096/20231101172748/https://blog.front-matter.io/posts/rogue-scholar-blogs-are-now-searchable","authors":[{"name":"Martin
89
+ Fenner","url":"https://orcid.org/0000-0003-1419-2405"}],"blog":{"category":"computerAndInformationSciences","description":"The
90
+ Front Matter Blog covers the intersection of science and technology since
91
+ 2007.","feed_url":"https://blog.front-matter.io/atom-complete/","generator":"Ghost","home_page_url":"https://blog.front-matter.io","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"front_matter","status":"active","title":"Front
92
+ Matter","updated_at":1699181519},"blog_name":"Front Matter","blog_slug":"front_matter","doi":"https://doi.org/10.53731/j4m27-bdw69","guid":"6544c3a43d863800019a5eec","id":"db56ed1f-6430-4418-b4a5-afa6338cf318","image":"https://images.unsplash.com/photo-1473163928189-364b2c4e1135?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wxMTc3M3wwfDF8c2VhcmNofDE1fHxzZWFyY2glMjBrZXlzfGVufDB8fHx8MTY5OTE4MTQ2NHww&ixlib=rb-4.0.3&q=80&w=2000","indexed":false,"indexed_at":1699118710,"language":"en","published_at":1699009062,"reference":[],"relationships":[],"summary":"With
93
+ an update launched yesterday, all blogs that participate in the Rogue Scholar
94
+ science blog archive are now searchable by blog title, description, language,
95
+ blogging platform, category (scientific field using the OECD Fields of Science
96
+ and Technology), and ISSN.","tags":["News"],"title":"Rogue Scholar blogs are
97
+ now searchable","updated_at":1699181519,"url":"https://blog.front-matter.io/posts/rogue-scholar-blogs-are-now-searchable"},{"archive_url":null,"authors":[{"name":"Kim
98
+ Hartley"},{"name":"Michelle Barker"}],"blog":{"category":"computerAndInformationSciences","description":null,"feed_url":"https://www.researchsoft.org/feed.xml","generator":"Hugo","home_page_url":"https://researchsoft.org/","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"researchsoft","status":"active","title":"Research
99
+ Software Alliance","updated_at":1699160484},"blog_name":"Research Software
100
+ Alliance","blog_slug":"researchsoft","doi":"https://doi.org/10.59350/kjwtp-3yg06","guid":"tag:researchsoft.org,2023:/blog/2023-10/","id":"092b69ee-5f4e-4449-9fdb-34329c8d1444","image":"https://researchsoft.org/blog/2023-10/IMG_3080-1440x1080.jpg","indexed":false,"indexed_at":1698568390,"language":"en","published_at":1698105600,"reference":[],"relationships":[],"summary":"October
101
+ 2023 Authors: Kim Hartley and Michelle Barker We are proud to report that
102
+ the second International Research Software Funders Workshop, co-hosted by
103
+ the Digital Research Alliance of Canada (the Alliance) and the Research Software
104
+ Alliance (ReSA) from 18-20 September was a great success.","tags":[],"title":"Investing
105
+ in People: Anticipating the Future of Research Software","updated_at":1699160484,"url":"https://researchsoft.org/blog/2023-10"},{"archive_url":"https://wayback.archive-it.org/22135/20231101173016/https://irights.info/artikel/20-jahre-berliner-erklaerung-open-access-berlin-brandenburg/32078","authors":[{"name":"Georg
106
+ Fischer"}],"blog":{"category":"law","description":"Urheberrecht und kreatives
107
+ Schaffen in der digitalen Welt","feed_url":"https://irights.info/feed/atom","generator":"WordPress","home_page_url":"https://irights.info/","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"irights","status":"active","title":"iRights.info","updated_at":1698917891},"blog_name":"iRights.info","blog_slug":"irights","doi":"https://doi.org/10.59350/6mhvf-28f30","guid":"https://irights.info/?post_type=custom_artikel&p=32078","id":"c85a507c-9125-40a1-9dc2-da10129b57c6","image":"https://irights.info/wp-content/uploads/2023/11/IMG_20231024_1601265362-490x254.jpg","indexed":false,"indexed_at":1698909349,"language":"de","published_at":1698908451,"reference":[],"relationships":[],"summary":"Open
108
+ Access f\u00fcr \u00f6ffentliche Forschung und Kultur: Zwei Jahrzehnte ist
109
+ es schon her, dass sich zahlreiche Organisationen in der <em>Berliner Erkl\u00e4rung</em>
110
+ daf\u00fcr aussprachen. Wie weit ist die \u00d6ffnung tats\u00e4chlich gekommen?
111
+ Und was gilt es weiterhin zu tun? Spannende Fragen, die Berliner und Brandenburger
112
+ Vertreter*innen aus Wissenschaft und Kultur letzte Woche diskutierten.","tags":["Gesellschaft
113
+ + Kunst","Museen + Archive","Urheberrecht","Wissen + Open Access","Wissenschaft"],"title":"20
114
+ Jahre Berliner Erkl\u00e4rung f\u00fcr Open Access: Wie ist die Lage in Berlin
115
+ und Brandenburg?","updated_at":1698917891,"url":"https://irights.info/artikel/20-jahre-berliner-erklaerung-open-access-berlin-brandenburg/32078"},{"archive_url":"https://wayback.archive-it.org/22135/20231101173016/https://irights.info/artikel/urheberrecht-schule-unterrichtsschranke-%C2%A760a-urhg/32073","authors":[{"name":"Till
116
+ Kreutzer"}],"blog":{"category":"law","description":"Urheberrecht und kreatives
117
+ Schaffen in der digitalen Welt","feed_url":"https://irights.info/feed/atom","generator":"WordPress","home_page_url":"https://irights.info/","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"irights","status":"active","title":"iRights.info","updated_at":1698917891},"blog_name":"iRights.info","blog_slug":"irights","doi":"https://doi.org/10.59350/ekr0w-r5r66","guid":"https://irights.info/?post_type=custom_artikel&p=32073","id":"fc382624-1e55-48df-a09b-853674644716","image":"https://irights.info/wp-content/uploads/2023/09/Schule-150x213.png","indexed":false,"indexed_at":1698214609,"language":"de","published_at":1698213654,"reference":[],"relationships":[],"summary":"Das
118
+ Urheberrecht enth\u00e4lt Ausnahmen, die die Arbeit in Bildungseinrichtungen
119
+ leichter machen. Eine davon ist die sogenannte Unterrichtsschranke (\u00a7
120
+ 60a UrhG). iRights.info erkl\u00e4rt die Regelung und gibt Tipps f\u00fcr
121
+ die Praxis. Die Unterrichtsschranke erleichtert es, urheberrechtlich gesch\u00fctztes
122
+ Fremdmaterial zu Bildungszwecken zu nutzen.","tags":["Bildung + OER","Grundwissen","Urheberrecht","Schrankenbestimmungen","Schule"],"title":"Urheberrecht
123
+ in Schulen: Welche Nutzungen die Unterrichtsschranke erlaubt","updated_at":1698908961,"url":"https://irights.info/artikel/urheberrecht-schule-unterrichtsschranke-%C2%A760a-urhg/32073"},{"archive_url":"https://wayback.archive-it.org/22135/20231101173016/https://irights.info/artikel/urheberrecht-schule-wissenschaft-bmbf/32021","authors":[{"name":"Redaktion
124
+ iRights.info"}],"blog":{"category":"law","description":"Urheberrecht und kreatives
125
+ Schaffen in der digitalen Welt","feed_url":"https://irights.info/feed/atom","generator":"WordPress","home_page_url":"https://irights.info/","language":"de","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"irights","status":"active","title":"iRights.info","updated_at":1698917891},"blog_name":"iRights.info","blog_slug":"irights","doi":"https://doi.org/10.59350/mbc9d-jet17","guid":"https://irights.info/?post_type=custom_artikel&p=32021","id":"f0a7cab6-67dd-48f2-b8be-f59f91254e07","image":"https://irights.info/wp-content/uploads/2023/09/Schule-150x213.png","indexed":false,"indexed_at":1698228321,"language":"de","published_at":1693829213,"reference":[],"relationships":[],"summary":"Darf
126
+ ich meinen Unterricht aufzeichen? Wem geh\u00f6ren die Rechte an meinem Aufsatz?
127
+ Und wie war das nochmal mit dem Zitatrecht? In Schule und Wissenschaft stellen
128
+ sich vielf\u00e4ltige Fragen rund ums Urheberrecht. Zwei neue Handreichungen
129
+ des BMBF helfen mit leicht verst\u00e4ndlichen und praxisnahen Antworten,
130
+ konzipiert und erarbeitet von Till Kreutzer und Georg Fischer.","tags":["Autor
131
+ + Text","Creative Commons + Lizenzen","Urheberrecht","Wissen + Open Access","Wissenschaft"],"title":"Urheberrecht
132
+ in Schule und Wissenschaft: Zwei neue Handreichungen unterst\u00fctzen bei
133
+ Alltagsfragen","updated_at":1698677589,"url":"https://irights.info/artikel/urheberrecht-schule-wissenschaft-bmbf/32021"},{"archive_url":"https://wayback.archive-it.org/22125/20231105110316/https://opencitations.hypotheses.org/3488","authors":[{"name":"Chiara
134
+ Di Giambattista"}],"blog":{"category":"socialSciences","description":"The
135
+ blog of the OpenCitations Infrastructure","feed_url":"https://opencitations.hypotheses.org/feed/atom/","generator":"WordPress","home_page_url":"https://opencitations.hypotheses.org","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"opencitations","status":"active","title":"OpenCitations
136
+ blog","updated_at":1698658626},"blog_name":"OpenCitations blog","blog_slug":"opencitations","doi":"https://doi.org/10.59350/canw4-3xd10","guid":"https://opencitations.hypotheses.org/?p=3488","id":"77e770e0-74be-46f4-b800-9f8dc6435741","image":null,"indexed":false,"indexed_at":1698180833,"language":"en","published_at":1697558939,"reference":[],"relationships":[],"summary":"In
137
+ OpenCitations, we like to define our infrastructure organization as \u201ccommunity-based\u201d
138
+ and \u201ccommunity-driven\u201d, and we&nbsp;really&nbsp;mean it. The support
139
+ coming from the number of academic libraries and consortia coming after&nbsp;OpenCitations\u2019
140
+ involvement in the 2nd SCOSS funding cycle&nbsp;has made it possible, starting
141
+ from 2020, to make OpenCitations develop from a small university project based
142
+ on time-limited grant incomes to being an","tags":["Open Abstracts","Open
143
+ Access","Open Citations","Open Scholarship","Open Science"],"title":"OpenCitations
144
+ needs you: support the change in research practices","updated_at":1698658626,"url":"https://opencitations.hypotheses.org/3488"},{"archive_url":"https://wayback.archive-it.org/22153/20231105213934/https://svpow.com/2023/10/28/facial-hair-of-the-mesozoic-bob-nicholls-edition-part-2-only-ten-years-late","authors":[{"name":"Mike
145
+ Taylor"}],"blog":{"category":"earthAndRelatedEnvironmentalSciences","description":"SV-POW! ... All
146
+ sauropod vertebrae, except when we''re talking about Open Access","feed_url":"https://svpow.com/feed/atom/","generator":"WordPress.com","home_page_url":"https://svpow.com","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"svpow","status":"active","title":"Sauropod
147
+ Vertebra Picture of the Week","updated_at":1698530723},"blog_name":"Sauropod
148
+ Vertebra Picture of the Week","blog_slug":"svpow","doi":"https://doi.org/10.59350/tfpdy-zkt79","guid":"https://svpow.com/?p=21347","id":"eec545af-44fd-4663-bcab-75d5c8de8bb1","image":"https://svpow.files.wordpress.com/2023/10/bob-nicholls-sideburns.jpeg?w=480&h=646","indexed":false,"indexed_at":1698526380,"language":"en","published_at":1698525657,"reference":[],"relationships":[],"summary":"Back
149
+ in 2013, we showed you Bob Nicholls\u2019 beautiful sketch \u201cThe Giant
150
+ &amp; Company\u201d, featuring a giant Apatosaurus with a shaggy beard running
151
+ along its neck.","tags":["Art","Bob Nicholls","Diplodocids","Life Restorations","Speculation"],"title":"Facial
152
+ hair of the Mesozoic: Bob Nicholls edition, part 2 (only ten years late)","updated_at":1698530723,"url":"https://svpow.com/2023/10/28/facial-hair-of-the-mesozoic-bob-nicholls-edition-part-2-only-ten-years-late"},{"archive_url":"https://wayback.archive-it.org/22096/20231101172748/https://blog.front-matter.io/posts/using-twitter-at-the-asco-conference","authors":[{"name":"Martin
153
+ Fenner","url":"https://orcid.org/0000-0003-1419-2405"}],"blog":{"category":"computerAndInformationSciences","description":"The
154
+ Front Matter Blog covers the intersection of science and technology since
155
+ 2007.","feed_url":"https://blog.front-matter.io/atom-complete/","generator":"Ghost","home_page_url":"https://blog.front-matter.io","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"front_matter","status":"active","title":"Front
156
+ Matter","updated_at":1699181519},"blog_name":"Front Matter","blog_slug":"front_matter","doi":"https://doi.org/10.53731/r294649-6f79289-8cw55","guid":"62d42bbd41e317003df48e00","id":"b8f01608-05af-41a8-aa71-7238ddea1677","image":"https://blog.front-matter.io/content/images/2023/10/4691440146_bcaea61ee0-1.jpg","indexed":null,"indexed_at":1689007007,"language":"en","published_at":1276560000,"reference":[],"relationships":[],"summary":"Last
157
+ week I attended the annual meeting of the American Society of Clinical Oncology
158
+ (ASCO) in Chicago. For my work it is the most important scientific meeting
159
+ of the year, and it is also by far the biggest with more than 30.000 participants.
160
+ Blogging is a great way to report from conferences, and for me <em>FriendFeed</em>
161
+ is the best microblogging tool to do that.","tags":["Meeting Report"],"title":"Using
162
+ Twitter at the ASCO Conference","updated_at":1698521115,"url":"https://blog.front-matter.io/posts/using-twitter-at-the-asco-conference"},{"archive_url":"https://wayback.archive-it.org/22096/20231101172748/https://blog.front-matter.io/posts/what-is-scholarly-markdown","authors":[{"name":"Martin
163
+ Fenner","url":"https://orcid.org/0000-0003-1419-2405"}],"blog":{"category":"computerAndInformationSciences","description":"The
164
+ Front Matter Blog covers the intersection of science and technology since
165
+ 2007.","feed_url":"https://blog.front-matter.io/atom-complete/","generator":"Ghost","home_page_url":"https://blog.front-matter.io","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"front_matter","status":"active","title":"Front
166
+ Matter","updated_at":1699181519},"blog_name":"Front Matter","blog_slug":"front_matter","doi":"https://doi.org/10.53731/r294649-6f79289-8cw1c","guid":"62d42bbd41e317003df48d87","id":"3850bdcb-6858-4883-a9e9-b474d0bc6f45","image":"https://blog.front-matter.io/content/images/2022/08/DALL-E-2022-08-29-11.57.15---Edward-hopper-oil-painting-of-a-garden-gnome-with-an-umbrella-under-the-Golden-Gate-Bridge.png","indexed":null,"indexed_at":1689007007,"language":"en","published_at":1371489360,"reference":[],"relationships":[],"summary":"One
167
+ of the important discussions taking place at the Markdown for Science workshop
168
+ last weekend was about the definition of Scholarly Markdown.","tags":["Meeting
169
+ Report"],"title":"What is Scholarly Markdown?","updated_at":1698520325,"url":"https://blog.front-matter.io/posts/what-is-scholarly-markdown"},{"archive_url":null,"authors":[{"name":"Roderic
170
+ Page","url":"https://orcid.org/0000-0002-7101-9767"}],"blog":{"category":"computerAndInformationSciences","description":"Rants,
171
+ raves (and occasionally considered opinions) on phyloinformatics, taxonomy,
172
+ and biodiversity informatics. For more ranty and less considered opinions,
173
+ see my <a href=\"https://twitter.com/rdmpage\">Twitter feed</a>.<br />ISSN
174
+ 2051-8188. Written content on this site is licensed under a <a href=\"https://creativecommons.org/licenses/by/4.0/\">Creative
175
+ Commons Attribution 4.0 International license</a>.","feed_url":"https://iphylo.blogspot.com/feeds/posts/default","generator":"Blogger","home_page_url":"https://iphylo.blogspot.com/","language":"en","license":"https://creativecommons.org/licenses/by/4.0/legalcode","slug":"iphylo","status":"active","title":"iPhylo","updated_at":1698394696},"blog_name":"iPhylo","blog_slug":"iphylo","doi":"https://doi.org/10.59350/m59qn-22v52","guid":"tag:blogger.com,1999:blog-16081779.post-903668539491051583","id":"087fc7fc-c157-414a-a7b6-00503a55b521","image":"https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjaJx_5psYTAPfRLaomxACMxZ5Ant1peCHJixf0PeYP82k2uw9vOq4P2Q-HzSakV8q5aSmfqs0X_J_OJmnnhttknlwVYeEguQaxhk4fWi0lKvh_KzugoZWd_MjHmXcImkuMVbJPxXmwln6-Ah7iy4elXNGhfhmofrZbHrgcc3VC7E7lrVd05Utw/s72-c/Screenshot%202023-10-26%20at%2013.30.11.png","indexed":false,"indexed_at":1698333872,"language":"en","published_at":1698333060,"reference":[],"relationships":[],"summary":"This
176
+ blog post documents my attempts to create links between two major resources
177
+ for plant taxonomy: JSTOR\u2019s Global Plants and GBIF, specifically between
178
+ type specimens in JSTOR and the corresponding occurrence in GBIF. The TL;DR
179
+ is that I have tried to map 1,354,861 records for type specimens from JSTOR
180
+ to the equivalent record in GBIF, and managed to find 903,945 (67%) matches.
181
+ Why do this? Why do this?","tags":[],"title":"Where are the plant type specimens?
182
+ Mapping JSTOR Global Plants to GBIF","updated_at":1698394696,"url":"https://iphylo.blogspot.com/2023/10/where-are-plant-type-specimens-mapping.html"}]
183
+
184
+ '
185
+ recorded_at: Wed, 08 Nov 2023 10:07:55 GMT
186
+ recorded_with: VCR 6.2.0
@@ -515,9 +515,9 @@ describe Commonmeta::Metadata, vcr: true do
515
515
  expect(response).to eq("17d0e31c-bc41-42b8-b873-d3dacee61f5c")
516
516
  end
517
517
 
518
- it "not indexed posts" do
519
- response = subject.get_json_feed_not_indexed
520
- expect(response).to be_nil
518
+ it "updated posts" do
519
+ response = subject.get_json_feed_updated
520
+ expect(response).to eq("bb8932b9-2820-42f8-b22f-f191aaf00e32")
521
521
  end
522
522
 
523
523
  it "by blog_id" do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: commonmeta-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.1
4
+ version: 3.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Fenner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-04 00:00:00.000000000 Z
11
+ date: 2023-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -792,8 +792,8 @@ files:
792
792
  - spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/op.yml
793
793
  - spec/fixtures/vcr_cassettes/Commonmeta_CLI/json_feed/json_feed_blog_id.yml
794
794
  - spec/fixtures/vcr_cassettes/Commonmeta_CLI/json_feed/json_feed_by_blog.yml
795
- - spec/fixtures/vcr_cassettes/Commonmeta_CLI/json_feed/json_feed_not_indexed.yml
796
795
  - spec/fixtures/vcr_cassettes/Commonmeta_CLI/json_feed/json_feed_unregistered.yml
796
+ - spec/fixtures/vcr_cassettes/Commonmeta_CLI/json_feed/json_feed_updated.yml
797
797
  - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml
798
798
  - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/crossref.yml
799
799
  - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/datacite.yml
@@ -865,8 +865,8 @@ files:
865
865
  - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_doi_prefix_for_blog/by_blog_post_id.yml
866
866
  - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_doi_prefix_for_blog/by_blog_post_id_specific_prefix.yml
867
867
  - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed/by_blog_id.yml
868
- - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed/not_indexed_posts.yml
869
868
  - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed/unregistered_posts.yml
869
+ - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed/updated_posts.yml
870
870
  - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/archived_wordpress_post.yml
871
871
  - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/blog_post_with_non-url_id.yml
872
872
  - spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_json_feed_item_metadata/blogger_post.yml
@@ -1,37 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://api.rogue-scholar.org/posts/not_indexed
6
- body:
7
- encoding: ASCII-8BIT
8
- string: ''
9
- headers:
10
- Connection:
11
- - close
12
- Host:
13
- - api.rogue-scholar.org
14
- User-Agent:
15
- - http.rb/5.1.1
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Content-Type:
22
- - application/json
23
- Content-Length:
24
- - '3'
25
- Date:
26
- - Thu, 05 Oct 2023 21:11:06 GMT
27
- Server:
28
- - Fly/e440b950 (2023-09-20)
29
- Via:
30
- - 1.1 fly.io
31
- Fly-Request-Id:
32
- - 01HC0TW3EYS56H60DNC225JB8Y-fra
33
- body:
34
- encoding: UTF-8
35
- string: "[]\n"
36
- recorded_at: Thu, 05 Oct 2023 21:11:06 GMT
37
- recorded_with: VCR 6.2.0
@@ -1,37 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://api.rogue-scholar.org/posts/not_indexed
6
- body:
7
- encoding: ASCII-8BIT
8
- string: ''
9
- headers:
10
- Connection:
11
- - close
12
- Host:
13
- - api.rogue-scholar.org
14
- User-Agent:
15
- - http.rb/5.1.1
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Content-Type:
22
- - application/json
23
- Content-Length:
24
- - '3'
25
- Date:
26
- - Thu, 05 Oct 2023 19:45:43 GMT
27
- Server:
28
- - Fly/e440b950 (2023-09-20)
29
- Via:
30
- - 1.1 fly.io
31
- Fly-Request-Id:
32
- - 01HC0NZRKTM49WY5FJPMEP7GQ9-fra
33
- body:
34
- encoding: UTF-8
35
- string: "[]\n"
36
- recorded_at: Thu, 05 Oct 2023 19:45:43 GMT
37
- recorded_with: VCR 6.2.0