NLA digitised finding aids in Trove:
ADMINISTRATIVE SERVICES | |
- government accommodation and catering | |
- fleet | |
- freight | |
- goods and services | |
- property management | |
-- acquisition | |
-- leasing | |
-- maintenance | |
- removals |
Sharing nested links in CloudStor
It's easy to create a public link to a file or folder in the CloudStor interface. But what if you have lots of files in nested folders that you want to make publicly accessible? Yes, you can share the parent folder, but how do you create direct public links to files and folders inside the parent folder without generating new share links for every resource.
This is a public link to a shared folder that contains the OCRd text of digitised journals from Trove:
https://cloudstor.aarnet.edu.au/plus/s/QOmnqpGQCNCSC2h
If we want to open a folder that is a child of the shared folder, we add a path
parameter that points to the child folder, in this case angry-penguins-broadsheet-nla.obj-320790312
(the %2F
is a url encoded forward slash):
// ==UserScript== | |
// @name RecordSearch Show Pages | |
// @namespace http://timsherratt.org/recordsearch_show_pages | |
// @description Enhances functionality of NAA's RecordSearch database | |
// @version 0.11 | |
// @date 2021-12-03 | |
// @creator Tim Sherratt | |
// @include https://recordsearch.naa.gov.au/SearchNRetrieve/Interface/ListingReports/ItemsListing.aspx* | |
// @include https://recordsearch.naa.gov.au/SearchNRetrieve/Interface/DetailsReports/ItemDetail.aspx* | |
// @include https://recordsearch.naa.gov.au/SearchNRetrieve/Interface/ViewImage.aspx* |
Feedback on the updated draft plan for Trove advanced research tools
Submitted by Dr Tim Sherratt (GLAM Workbench and University of Canberra)
Do you think this proposal meets the requirements?
Additional notes on the two versions of the draft plan can be found here and here.
The current investment in the HASS Research Data Commons is part of a long-term program of capability development across the HASS sector. This is reflected in the evaluation criteria for project plans that emphasises ‘maximisation of the use or re-use of existing research infrastructure’, ‘integrated infrastructure layers with other HASS RDC activities’, collaboration, ‘research leadership’, and ‘a demonstrated commitment to ongoing community development’.
The NLA plan for a Trove Advanced Platform is narrowly focused on the development of the Library’s own systems. The redrafted plan intr
A Voz de Timor (Dili, East Timor : 1970 - 1975)
1.Language | Language code | Proportion of sample |
---|---|---|
Portuguese | pt | 0.9888888888888889 |
Adelaider Deutsche Zeitung (SA : 1851 - 1862)
2.| Language | Language code | Proportion of sample |
Feedback on the draft plan for Trove advanced research tools
Submitted by Dr Tim Sherratt (GLAM Workbench and University of Canberra)
Do you think this proposal meets the requirements?
I’ve provided more detailed feedback on the proposal in this post.
Unfortunately I don’t think this proposal meets the requirements. A comparison with the other project plans is quite stark. While the other plans will establish collaborative processes, involving multiple partners, that will deliver a range of outcomes, this plan proposes to develop a small number of products with minimal consultation. No justification is given for prioritising these products; no indication is provided as to how they might integrate with other research infrastructure; no strategy is outlined for sustaining these products; no explanation is offered as to how this plan could help build a framework for future infrastructure development and collaboration. My concern is
identifier | title | contents_date_str | contents_start_date | contents_end_date | location | quantity | described_note | described_total | digitised_total | access_open_total | access_owe_total | access_closed_total | access_nye_total | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A40 | Volumes of duplicate Certificates of Naturalization | 01 Jan 1904 - 31 Dec 1917 | 1904-01-01 | 1917-12-31 | TAS | 0.13 | All items from this series are entered on RecordSearch. | 36 | 36 | 36 | 0 | 0 | 0 | |
A376 | Correspondence Files T Series | TAS | 0.36 | Click to see items listed on RecordSearch. Please contact the National Reference Service if you can't find the record you want as not all items from the series may be on RecordSearch. | 16 | 2 | 15 | 1 | 0 | 0 | ||||
A396 | Alien Registration Papers - Chinese, Tasmania | TAS | 0.9 | All items from this series are entered on RecordSearch. | 293 | 285 | 293 | 0 | 0 | 0 | ||||
A401 | Records of Aliens | 1914 - 1919 | 1914 | 1919 | TAS | 0.36 | All items from this series are entered on RecordSearch. | 767 | 767 | 767 | 0 | 0 | 0 | |
A403 | Correspondence Files, C Series | TAS | 0.03 | All items from this series are entered on RecordSearch. | 10 | 0 | 10 | 0 | 0 | 0 |
A Voz de Timor (Dili, East TIMOR)
capture_date | dates | place |
---|
from pathlib import Path | |
import json | |
import re | |
import imp | |
import os.path | |
import sys | |
python_path = os.path.dirname(sys.executable).replace('bin', 'lib') | |
imports = [] |