From 5f2d29b8fc5a52c86609e28b8c74ada9677027b4 Mon Sep 17 00:00:00 2001 From: davivcu Date: Wed, 2 Oct 2024 19:44:07 +0200 Subject: [PATCH 01/10] Prose-verse selector use default text flow from config --- .../verse-prose-select/verse-prose-select.component.ts | 5 ++++- src/assets/config/custom-styles.css | 5 +++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/app/components/verse-prose-select/verse-prose-select.component.ts b/src/app/components/verse-prose-select/verse-prose-select.component.ts index a1d7ebd36..fbb8835bd 100644 --- a/src/app/components/verse-prose-select/verse-prose-select.component.ts +++ b/src/app/components/verse-prose-select/verse-prose-select.component.ts @@ -1,6 +1,7 @@ import { Component, EventEmitter, Output } from '@angular/core'; import { TextFlow } from 'src/app/app.config'; import { EvtIconInfo } from 'src/app/ui-components/icon/icon.component'; +import { AppConfig } from 'src/app/app.config'; @Component({ selector: 'evt-verse-prose-select', @@ -12,9 +13,11 @@ export class VerseProseSelectComponent { @Output() textModeSelectionChange: EventEmitter = new EventEmitter(); + public defaultTextFlow: TextFlow = AppConfig.evtSettings.edition.defaultTextFlow; + public textFlowTypes: TextFlow[] = ['prose', 'prose_mixed', 'verses']; - public selectedType: TextFlow = 'prose'; + public selectedType: TextFlow = this.defaultTextFlow; getProseVersesTogglerIcon(textFlowMode: TextFlow): EvtIconInfo { return { icon: textFlowMode === 'verses' ? 'align-justify' : 'align-left', iconSet: 'fas' }; diff --git a/src/assets/config/custom-styles.css b/src/assets/config/custom-styles.css index efa0aad6e..122c40258 100644 --- a/src/assets/config/custom-styles.css +++ b/src/assets/config/custom-styles.css @@ -1,3 +1,8 @@ +.ab[rend="align-center"] { + display: block; + text-align: center; +} + *[rend="strikethrough"] { text-decoration: line-through; } From 0293fb9a62785edb3d6e9f7742aa8f70a766d993 Mon Sep 17 00:00:00 2001 From: davivcu Date: Thu, 3 Oct 2024 15:23:56 +0200 Subject: [PATCH 02/10] Import config files from repository evt-sample-documents/EVT3/release-sample/2024 beta 1 --- src/assets/config/edition_config.json | 4 +- src/assets/config/edition_config_DOTR.json | 174 + .../config/edition_config_Pelavicino.json | 174 + .../config/edition_config_PseudoEdition.json | 174 + src/assets/config/edition_config_Saba.json | 172 + src/assets/config/file_config.json | 8 +- src/assets/config/file_config_DOTR.json | 22 + src/assets/config/file_config_Pelavicino.json | 22 + .../config/file_config_PseudoEdition.json | 22 + src/assets/config/file_config_Saba.json | 22 + src/assets/config/ui_config.json | 16 +- src/assets/config/ui_config_DOTR.json | 167 + src/assets/config/ui_config_Pelavicino.json | 167 + .../config/ui_config_PseudoEdition.json | 167 + src/assets/config/ui_config_Saba.json | 167 + src/assets/data/VB-DOTR.xml | 2290 ++ src/assets/data/pelavicino.xml | 27875 ++++++++++++++++ src/assets/data/pseudoEdition.xml | 253 + src/assets/data/saba.xml | 1348 + src/assets/data/schema/tei-vbd.rng | 12048 +++++++ src/assets/data/schema/tei_cp.rng | 11181 +++++++ 21 files changed, 56459 insertions(+), 14 deletions(-) create mode 100644 src/assets/config/edition_config_DOTR.json create mode 100644 src/assets/config/edition_config_Pelavicino.json create mode 100644 src/assets/config/edition_config_PseudoEdition.json create mode 100644 src/assets/config/edition_config_Saba.json create mode 100644 src/assets/config/file_config_DOTR.json create mode 100644 src/assets/config/file_config_Pelavicino.json create mode 100644 src/assets/config/file_config_PseudoEdition.json create mode 100644 src/assets/config/file_config_Saba.json create mode 100644 src/assets/config/ui_config_DOTR.json create mode 100644 src/assets/config/ui_config_Pelavicino.json create mode 100644 src/assets/config/ui_config_PseudoEdition.json create mode 100644 src/assets/config/ui_config_Saba.json create mode 100644 src/assets/data/VB-DOTR.xml create mode 100644 src/assets/data/pelavicino.xml create mode 100644 src/assets/data/pseudoEdition.xml create mode 100644 src/assets/data/saba.xml create mode 100644 src/assets/data/schema/tei-vbd.rng create mode 100644 src/assets/data/schema/tei_cp.rng diff --git a/src/assets/config/edition_config.json b/src/assets/config/edition_config.json index 19344c215..befe0a457 100644 --- a/src/assets/config/edition_config.json +++ b/src/assets/config/edition_config.json @@ -109,7 +109,7 @@ "notSignificantVariants": [ "type=orthographic" ], - "defaultEdition": "diplomatic", + "defaultEdition": "critical", "defaultViewMode": "collation", "proseVersesToggler": true, "defaultTextFlow": "prose", @@ -172,4 +172,4 @@ "defaultImageZoomLevel": 0.8, "maxImageZoomLevel": 2, "multiPageEngineForCriticalEdition": false -} \ No newline at end of file +} diff --git a/src/assets/config/edition_config_DOTR.json b/src/assets/config/edition_config_DOTR.json new file mode 100644 index 000000000..bb026c8f7 --- /dev/null +++ b/src/assets/config/edition_config_DOTR.json @@ -0,0 +1,174 @@ +{ + "editionTitle": "The Dream of the Rood", + "badge": "beta", + "editionHome": "http://vbd.humnet.unipi.it/beta2/", + "availableEditionLevels": [ + { + "id": "diplomatic", + "label": "diplomatic", + "enable": true, + "hidden": false + }, + { + "id": "interpretative", + "label": "interpretative", + "enable": true, + "hidden": false + }, + { + "id": "critical", + "label": "critical", + "enable": true, + "hidden": false + }, + { + "id": "changesView", + "label": "changes", + "enable": true, + "hidden": true + } + ], + "downloadableXMLSource": true, + "namedEntitiesLists": { + "persons": { + "defaultLabel": "Persons", + "enable": true + }, + "places": { + "defaultLabel": "Places", + "enable": true + }, + "organizations": { + "defaultLabel": "Organizations", + "enable": true + }, + "relations": { + "defaultLabel": "Relations", + "enable": true + }, + "events": { + "defaultLabel": "Events", + "enable": true + } + }, + "showLists": true, + "entitiesSelectItems": [ + { + "label": "Named Entities", + "items": [ + { + "value": "persName", + "label": "persons", + "color": "#ffcdd2", + "enable": true + }, + { + "value": "persName[type='episcopus']", + "label": "bishops", + "color": "rgb(139, 98, 236)", + "enable": true + }, + { + "value": "placeName,geogName", + "label": "places", + "color": "#A5D6A7", + "enable": true + }, + { + "value": "orgName", + "label": "organizations", + "color": "#FFB74D", + "enable": true + } + ], + "enable": false + }, + { + "label": "Other", + "items": [ + { + "value": "event", + "label": "events", + "color": "#fcfc60", + "enable": true + }, + { + "value": "rolename", + "label": "roles", + "enable": true + }, + { + "value": "measure", + "label": "measures", + "enable": true + } + ], + "enable": false + } + ], + "notSignificantVariants": [ + "type=orthographic" + ], + "defaultEdition": "diplomatic", + "defaultViewMode": "imageText", + "proseVersesToggler": true, + "defaultTextFlow": "prose", + "verseNumberPrinter": 5, + "readingColorLight": "rgb(208, 220, 255)", + "readingColorDark": "rgb(101, 138, 255)", + "externalBibliography": { + "biblAttributeToMatch": "xml:id", + "elementAttributesToMatch": [ + "target", + "source" + ] + }, + "biblView": { + "propsToShow": [ + "author", + "title", + "date", + "editor", + "publisher", + "pubPlace", + "citedRange", + "biblScope" + ], + "showAttrNames": false, + "showEmptyValues": false, + "inline": true, + "commaSeparated": true, + "showMainElemTextContent": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": [] + }, + "defaultImageZoomLevel": 0.8 + }, + "analogueMarkers": [ + "ParallelPassage", + "parallelPassage", + "Parallel", + "parallel" + ], + "sourcesExcludedFromListByParent": ["desc"], + "showSubstitutionMarker": true, + "showSeparatorBetweenChanges": true, + "startingFromDefinitiveLayer": true, + "showChangeLayerMarkerInText": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": { + "strato-0": "#71e5fa", + "strato-1": "#609cf4", + "strato-2": "#0d6efd", + "strato-3": "#7B66FF", + "strato-4": "#3e22f3", + "strato-5": "#100077" + } + }, + "defaultImageZoomLevel": 0.8, + "multiPageEngineForCriticalEdition": false +} diff --git a/src/assets/config/edition_config_Pelavicino.json b/src/assets/config/edition_config_Pelavicino.json new file mode 100644 index 000000000..27c0d55fd --- /dev/null +++ b/src/assets/config/edition_config_Pelavicino.json @@ -0,0 +1,174 @@ +{ + "editionTitle": "Codice Pelavicino Digitale", + "badge": "beta", + "editionHome": "http://pelavicino.labcd.unipi.it/", + "availableEditionLevels": [ + { + "id": "diplomatic", + "label": "diplomatic", + "enable": false, + "hidden": false + }, + { + "id": "interpretative", + "label": "interpretative", + "enable": true, + "hidden": false + }, + { + "id": "critical", + "label": "critical", + "enable": false, + "hidden": false + }, + { + "id": "changesView", + "label": "changes", + "enable": false, + "hidden": true + } + ], + "downloadableXMLSource": true, + "namedEntitiesLists": { + "persons": { + "defaultLabel": "Persons", + "enable": true + }, + "places": { + "defaultLabel": "Places", + "enable": true + }, + "organizations": { + "defaultLabel": "Organizations", + "enable": true + }, + "relations": { + "defaultLabel": "Relations", + "enable": true + }, + "events": { + "defaultLabel": "Events", + "enable": true + } + }, + "showLists": true, + "entitiesSelectItems": [ + { + "label": "Named Entities", + "items": [ + { + "value": "persName", + "label": "persons", + "color": "#ffcdd2", + "enable": true + }, + { + "value": "persName[type='episcopus']", + "label": "bishops", + "color": "rgb(139, 98, 236)", + "enable": true + }, + { + "value": "placeName,geogName", + "label": "places", + "color": "#A5D6A7", + "enable": true + }, + { + "value": "orgName", + "label": "organizations", + "color": "#FFB74D", + "enable": true + } + ], + "enable": true + }, + { + "label": "Other", + "items": [ + { + "value": "event", + "label": "events", + "color": "#fcfc60", + "enable": true + }, + { + "value": "rolename", + "label": "roles", + "enable": true + }, + { + "value": "measure", + "label": "measures", + "enable": true + } + ], + "enable": true + } + ], + "notSignificantVariants": [ + "type=orthographic" + ], + "defaultEdition": "interpretative", + "defaultViewMode": "imageText", + "proseVersesToggler": false, + "defaultTextFlow": "prose", + "verseNumberPrinter": 5, + "readingColorLight": "rgb(208, 220, 255)", + "readingColorDark": "rgb(101, 138, 255)", + "externalBibliography": { + "biblAttributeToMatch": "xml:id", + "elementAttributesToMatch": [ + "target", + "source" + ] + }, + "biblView": { + "propsToShow": [ + "author", + "title", + "date", + "editor", + "publisher", + "pubPlace", + "citedRange", + "biblScope" + ], + "showAttrNames": false, + "showEmptyValues": false, + "inline": true, + "commaSeparated": true, + "showMainElemTextContent": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": [] + }, + "defaultImageZoomLevel": 0.8 + }, + "analogueMarkers": [ + "ParallelPassage", + "parallelPassage", + "Parallel", + "parallel" + ], + "sourcesExcludedFromListByParent": ["desc"], + "showSubstitutionMarker": true, + "showSeparatorBetweenChanges": true, + "startingFromDefinitiveLayer": true, + "showChangeLayerMarkerInText": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": { + "strato-0": "#71e5fa", + "strato-1": "#609cf4", + "strato-2": "#0d6efd", + "strato-3": "#7B66FF", + "strato-4": "#3e22f3", + "strato-5": "#100077" + } + }, + "defaultImageZoomLevel": 0.8, + "multiPageEngineForCriticalEdition": false +} diff --git a/src/assets/config/edition_config_PseudoEdition.json b/src/assets/config/edition_config_PseudoEdition.json new file mode 100644 index 000000000..7f0e783df --- /dev/null +++ b/src/assets/config/edition_config_PseudoEdition.json @@ -0,0 +1,174 @@ +{ + "editionTitle": "Pseudo Edition", + "badge": "beta", + "editionHome": "", + "availableEditionLevels": [ + { + "id": "diplomatic", + "label": "diplomatic", + "enable": false, + "hidden": false + }, + { + "id": "interpretative", + "label": "interpretative", + "enable": false, + "hidden": false + }, + { + "id": "critical", + "label": "Critical", + "enable": true, + "hidden": false + }, + { + "id": "changesView", + "label": "changes", + "enable": false, + "hidden": true + } + ], + "downloadableXMLSource": true, + "namedEntitiesLists": { + "persons": { + "defaultLabel": "Persons", + "enable": true + }, + "places": { + "defaultLabel": "Places", + "enable": true + }, + "organizations": { + "defaultLabel": "Organizations", + "enable": true + }, + "relations": { + "defaultLabel": "Relations", + "enable": true + }, + "events": { + "defaultLabel": "Events", + "enable": true + } + }, + "showLists": true, + "entitiesSelectItems": [ + { + "label": "Named Entities", + "items": [ + { + "value": "persName", + "label": "persons", + "color": "#ffcdd2", + "enable": true + }, + { + "value": "persName[type='episcopus']", + "label": "bishops", + "color": "rgb(139, 98, 236)", + "enable": true + }, + { + "value": "placeName,geogName", + "label": "places", + "color": "#A5D6A7", + "enable": true + }, + { + "value": "orgName", + "label": "organizations", + "color": "#FFB74D", + "enable": true + } + ], + "enable": false + }, + { + "label": "Other", + "items": [ + { + "value": "event", + "label": "events", + "color": "#fcfc60", + "enable": true + }, + { + "value": "rolename", + "label": "roles", + "enable": true + }, + { + "value": "measure", + "label": "measures", + "enable": true + } + ], + "enable": false + } + ], + "notSignificantVariants": [ + "type=orthographic" + ], + "defaultEdition": "critical", + "defaultViewMode": "readingText", + "proseVersesToggler": false, + "defaultTextFlow": "prose", + "verseNumberPrinter": 5, + "readingColorLight": "rgb(208, 220, 255)", + "readingColorDark": "rgb(101, 138, 255)", + "externalBibliography": { + "biblAttributeToMatch": "xml:id", + "elementAttributesToMatch": [ + "target", + "source" + ] + }, + "biblView": { + "propsToShow": [ + "author", + "title", + "date", + "editor", + "publisher", + "pubPlace", + "citedRange", + "biblScope" + ], + "showAttrNames": false, + "showEmptyValues": false, + "inline": true, + "commaSeparated": true, + "showMainElemTextContent": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": [] + }, + "defaultImageZoomLevel": 0.8 + }, + "analogueMarkers": [ + "ParallelPassage", + "parallelPassage", + "Parallel", + "parallel" + ], + "sourcesExcludedFromListByParent": ["desc"], + "showSubstitutionMarker": true, + "showSeparatorBetweenChanges": true, + "startingFromDefinitiveLayer": true, + "showChangeLayerMarkerInText": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": { + "strato-0": "#71e5fa", + "strato-1": "#609cf4", + "strato-2": "#0d6efd", + "strato-3": "#7B66FF", + "strato-4": "#3e22f3", + "strato-5": "#100077" + } + }, + "defaultImageZoomLevel": 0.8, + "multiPageEngineForCriticalEdition": false +} diff --git a/src/assets/config/edition_config_Saba.json b/src/assets/config/edition_config_Saba.json new file mode 100644 index 000000000..ec2ce2adf --- /dev/null +++ b/src/assets/config/edition_config_Saba.json @@ -0,0 +1,172 @@ +{ + "editionTitle": "Progetto Saba1919", + "badge": "beta", + "editionHome": "", + "availableEditionLevels": [ + { + "id": "diplomatic", + "label": "diplomatic", + "enable": true, + "hidden": false + }, + { + "id": "interpretative", + "label": "interpretative", + "enable": true, + "hidden": false + }, + { + "id": "critical", + "label": "critical", + "enable": true, + "hidden": false + }, + { + "id": "changesView", + "label": "changes", + "enable": true, + "hidden": true + } + ], + "downloadableXMLSource": false, + "namedEntitiesLists": { + "persons": { + "defaultLabel": "Persons", + "enable": true + }, + "places": { + "defaultLabel": "Places", + "enable": true + }, + "organizations": { + "defaultLabel": "Organizations", + "enable": true + }, + "relations": { + "defaultLabel": "Relations", + "enable": true + }, + "events": { + "defaultLabel": "Events", + "enable": true + } + }, + "showLists": true, + "entitiesSelectItems": [ + { + "label": "Named Entities", + "items": [ + { + "value": "persName", + "label": "persons", + "color": "#ffcdd2", + "enable": true + }, + { + "value": "persName[type='episcopus']", + "label": "bishops", + "color": "rgb(139, 98, 236)", + "enable": true + }, + { + "value": "placeName,geogName", + "label": "places", + "color": "#A5D6A7", + "enable": true + }, + { + "value": "orgName", + "label": "organizations", + "color": "#FFB74D", + "enable": true + } + ], + "enable": true + }, + { + "label": "Other", + "items": [ + { + "value": "event", + "label": "events", + "color": "#fcfc60", + "enable": true + }, + { + "value": "rolename", + "label": "roles", + "enable": true + }, + { + "value": "measure", + "label": "measures", + "enable": true + } + ], + "enable": true + } + ], + "notSignificantVariants": ["type=orthographic"], + "defaultEdition": "changesView", + "defaultViewMode": "documentalMixed", + "proseVersesToggler": false, + "defaultTextFlow": "prose", + "verseNumberPrinter": 5, + "readingColorLight": "rgb(208, 220, 255)", + "readingColorDark": "rgb(101, 138, 255)", + "externalBibliography": { + "biblAttributeToMatch": "xml:id", + "elementAttributesToMatch": [ + "target", + "source" + ] + }, + "biblView": { + "propsToShow": [ + "author", + "title", + "date", + "editor", + "publisher", + "pubPlace", + "citedRange", + "biblScope" + ], + "showAttrNames": false, + "showEmptyValues": false, + "inline": true, + "commaSeparated": true, + "showMainElemTextContent": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": [] + } + }, + "analogueMarkers": [ + "ParallelPassage", + "parallelPassage", + "Parallel", + "parallel" + ], + "sourcesExcludedFromListByParent": ["desc"], + "showSubstitutionMarker": true, + "showSeparatorBetweenChanges": true, + "startingFromDefinitiveLayer": false, + "showChangeLayerMarkerInText": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": { + "strato-0": "#71e5fa", + "strato-1": "#609cf4", + "strato-2": "#0d6efd", + "strato-3": "#7B66FF", + "strato-4": "#3e22f3", + "strato-5": "#100077" + } + }, + "defaultImageZoomLevel": 0.8, + "multiPageEngineForCriticalEdition": false, + "syncZonesHighlightButton": false +} diff --git a/src/assets/config/file_config.json b/src/assets/config/file_config.json index 2be75edba..bfb391c2e 100644 --- a/src/assets/config/file_config.json +++ b/src/assets/config/file_config.json @@ -1,5 +1,5 @@ { - "editionUrls": ["assets/data/edition.xml"], + "editionUrls": ["assets/data/saba.xml"], "editionImagesSource": { "manifest": { "value": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", @@ -15,8 +15,8 @@ "double": "assets/data/images/double/" }, "configurationUrls": { - "edition": "assets/config/edition_config.json", - "ui": "assets/config/ui_config.json", + "edition": "assets/config/edition_config_Saba.json", + "ui": "assets/config/ui_config_Saba.json", "editorialConventions": "assets/config/editorial_conventions_config.json" } -} \ No newline at end of file +} diff --git a/src/assets/config/file_config_DOTR.json b/src/assets/config/file_config_DOTR.json new file mode 100644 index 000000000..e3b1eb73b --- /dev/null +++ b/src/assets/config/file_config_DOTR.json @@ -0,0 +1,22 @@ +{ + "editionUrls": ["assets/data/VB-DOTR.xml"], + "editionImagesSource": { + "manifest": { + "value": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "enable": false + }, + "graphics": { + "value": "url", + "enable": false + } + }, + "imagesFolderUrls":{ + "single": "assets/data/images/single/", + "double": "assets/data/images/double/" + }, + "configurationUrls": { + "edition": "assets/config/edition_config_DOTR.json", + "ui": "assets/config/ui_config_DOTR.json", + "editorialConventions": "assets/config/editorial_conventions_config.json" + } +} diff --git a/src/assets/config/file_config_Pelavicino.json b/src/assets/config/file_config_Pelavicino.json new file mode 100644 index 000000000..363d9be5b --- /dev/null +++ b/src/assets/config/file_config_Pelavicino.json @@ -0,0 +1,22 @@ +{ + "editionUrls": ["assets/data/pelavicino.xml"], + "editionImagesSource": { + "manifest": { + "value": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "enable": false + }, + "graphics": { + "value": "url", + "enable": false + } + }, + "imagesFolderUrls":{ + "single": "assets/data/images/single/", + "double": "assets/data/images/double/" + }, + "configurationUrls": { + "edition": "assets/config/edition_config_Pelavicino.json", + "ui": "assets/config/ui_config_Pelavicino.json", + "editorialConventions": "assets/config/editorial_conventions_config.json" + } +} diff --git a/src/assets/config/file_config_PseudoEdition.json b/src/assets/config/file_config_PseudoEdition.json new file mode 100644 index 000000000..53bf48642 --- /dev/null +++ b/src/assets/config/file_config_PseudoEdition.json @@ -0,0 +1,22 @@ +{ + "editionUrls": ["assets/data/pseudoEdition.xml"], + "editionImagesSource": { + "manifest": { + "value": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "enable": false + }, + "graphics": { + "value": "url", + "enable": false + } + }, + "imagesFolderUrls":{ + "single": "assets/data/images/single/", + "double": "assets/data/images/double/" + }, + "configurationUrls": { + "edition": "assets/config/edition_config_PseudoEdition.json", + "ui": "assets/config/ui_config_PseudoEdition.json", + "editorialConventions": "assets/config/editorial_conventions_config.json" + } +} diff --git a/src/assets/config/file_config_Saba.json b/src/assets/config/file_config_Saba.json new file mode 100644 index 000000000..bfb391c2e --- /dev/null +++ b/src/assets/config/file_config_Saba.json @@ -0,0 +1,22 @@ +{ + "editionUrls": ["assets/data/saba.xml"], + "editionImagesSource": { + "manifest": { + "value": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", + "enable": false + }, + "graphics": { + "value": "url", + "enable": false + } + }, + "imagesFolderUrls":{ + "single": "assets/data/images/single/", + "double": "assets/data/images/double/" + }, + "configurationUrls": { + "edition": "assets/config/edition_config_Saba.json", + "ui": "assets/config/ui_config_Saba.json", + "editorialConventions": "assets/config/editorial_conventions_config.json" + } +} diff --git a/src/assets/config/ui_config.json b/src/assets/config/ui_config.json index 2c60d1c9d..632d3c080 100644 --- a/src/assets/config/ui_config.json +++ b/src/assets/config/ui_config.json @@ -4,15 +4,15 @@ "icon": "images", "iconSet": "fas", "id": "imageImage", - "label": "Images", - "enable": true + "label": "Image-Image", + "enable": false }, { "icon": "image", "iconSet": "fas", "id": "imageOnly", "label": "Image only", - "enable": true + "enable": false }, { "icon": "txt", @@ -47,21 +47,21 @@ "iconSet": "evt", "id": "textSources", "label": "Text Sources", - "enable": true + "enable": false }, { "icon": "versions", "iconSet": "evt", "id": "textVersions", "label": "Text Versions", - "enable": true + "enable": false }, { "icon": "documix", "iconSet": "evt", "id": "documentalMixed", "label": "Documental", - "enable": true + "enable": false } ], "localization": true, @@ -81,7 +81,7 @@ "enableNavBar": true, "initNavBarOpened": true, "thumbnailsButton": true, - "viscollButton": true, + "viscollButton": false, "mainFontFamily": "Junicode, Times, serif", "mainFontSize": "1.1rem", "secondaryfontFamily": "Arial, sans-serif", @@ -164,4 +164,4 @@ } } } -} \ No newline at end of file +} diff --git a/src/assets/config/ui_config_DOTR.json b/src/assets/config/ui_config_DOTR.json new file mode 100644 index 000000000..c949d60f5 --- /dev/null +++ b/src/assets/config/ui_config_DOTR.json @@ -0,0 +1,167 @@ +{ + "availableViewModes": [ + { + "icon": "images", + "iconSet": "fas", + "id": "imageImage", + "label": "Image-Image", + "enable": true + }, + { + "icon": "image", + "iconSet": "fas", + "id": "imageOnly", + "label": "Image only", + "enable": true + }, + { + "icon": "txt", + "iconSet": "evt", + "id": "readingText", + "label": "Reading Text", + "enable": true + }, + { + "icon": "imgTxt", + "iconSet": "evt", + "id": "imageText", + "label": "Image Text", + "enable": true + }, + { + "icon": "txtTxt", + "iconSet": "evt", + "id": "textText", + "label": "Text Text", + "enable": true + }, + { + "icon": "collation", + "iconSet": "evt", + "id": "collation", + "label": "Collation", + "enable": false + }, + { + "icon": "srcTxt", + "iconSet": "evt", + "id": "textSources", + "label": "Text Sources", + "enable": false + }, + { + "icon": "versions", + "iconSet": "evt", + "id": "textVersions", + "label": "Text Versions", + "enable": false + }, + { + "icon": "documix", + "iconSet": "evt", + "id": "documentalMixed", + "label": "Documental", + "enable": false + } + ], + "localization": true, + "defaultLocalization": "en", + "availableLanguages": [ + { + "code": "en", + "label": "languageEn", + "enable": true + }, + { + "code": "it", + "label": "languageIt", + "enable": true + } + ], + "enableNavBar": true, + "initNavBarOpened": true, + "thumbnailsButton": true, + "viscollButton": false, + "mainFontFamily": "Junicode, Times, serif", + "mainFontSize": "1.1rem", + "secondaryfontFamily": "Arial, sans-serif", + "secondaryfontSize": "1.1em", + "theme": "classic", + "syncZonesHighlightButton": true, + "defaultBibliographicStyle": "chicago", + "allowedBibliographicStyles": { + "chicago": { + "id": "chicago", + "label": "Chicago (Author-Date)", + "enabled": true, + "propsOrder": [ + "author", + "date", + "title", + "editor", + "publication", + "pubPlace", + "publisher", + "doi" + ], + "properties": { + "titleQuotes": true, + "emphasized": [ "publisher" ] + } + }, + "apa": { + "id": "apa", + "label": "APA", + "enabled": true, + "propsOrder": [ + "author", + "date", + "title", + "publication", + "publisher", + "doi" + ], + "properties": { + "authorStyle": { + "delimiter": ",", + "forenameInitials": true, + "maxAuthors": 3 + }, + "publicationStyle": { + "citingAcronym": "none", + "inBrackets": [ "issue" ] + }, + "propsDelimiter": ".", + "titleQuotes": false, + "emphasized": [ "publication" ], + "inBrackets": [ "date" ] + } + }, + "mla": { + "id": "mla", + "label": "MLA", + "enabled": true, + "propsOrder": [ + "author", + "title", + "publication", + "publisher", + "doi" + ], + "properties": { + "propsDelimiter": ".", + "authorStyle": { + "delimiter": "," + }, + "publicationStyle": { + "citingAcronym": "all", + "inBrackets": [ "issue" ], + "includeEditor": true + }, + "dateInsidePublication": true, + "titleQuotes": false, + "emphasized": [ "publication" ] + } + } + } +} diff --git a/src/assets/config/ui_config_Pelavicino.json b/src/assets/config/ui_config_Pelavicino.json new file mode 100644 index 000000000..678993df0 --- /dev/null +++ b/src/assets/config/ui_config_Pelavicino.json @@ -0,0 +1,167 @@ +{ + "availableViewModes": [ + { + "icon": "images", + "iconSet": "fas", + "id": "imageImage", + "label": "Image-Image", + "enable": false + }, + { + "icon": "image", + "iconSet": "fas", + "id": "imageOnly", + "label": "Image only", + "enable": false + }, + { + "icon": "txt", + "iconSet": "evt", + "id": "readingText", + "label": "Reading Text", + "enable": true + }, + { + "icon": "imgTxt", + "iconSet": "evt", + "id": "imageText", + "label": "Image Text", + "enable": true + }, + { + "icon": "txtTxt", + "iconSet": "evt", + "id": "textText", + "label": "Text Text", + "enable": false + }, + { + "icon": "collation", + "iconSet": "evt", + "id": "collation", + "label": "Collation", + "enable": false + }, + { + "icon": "srcTxt", + "iconSet": "evt", + "id": "textSources", + "label": "Text Sources", + "enable": false + }, + { + "icon": "versions", + "iconSet": "evt", + "id": "textVersions", + "label": "Text Versions", + "enable": false + }, + { + "icon": "documix", + "iconSet": "evt", + "id": "documentalMixed", + "label": "Documental", + "enable": false + } + ], + "localization": true, + "defaultLocalization": "en", + "availableLanguages": [ + { + "code": "en", + "label": "languageEn", + "enable": true + }, + { + "code": "it", + "label": "languageIt", + "enable": true + } + ], + "enableNavBar": true, + "initNavBarOpened": true, + "thumbnailsButton": true, + "viscollButton": false, + "mainFontFamily": "Junicode, Times, serif", + "mainFontSize": "1.1rem", + "secondaryfontFamily": "Arial, sans-serif", + "secondaryfontSize": "1.1em", + "theme": "classic", + "syncZonesHighlightButton": true, + "defaultBibliographicStyle": "chicago", + "allowedBibliographicStyles": { + "chicago": { + "id": "chicago", + "label": "Chicago (Author-Date)", + "enabled": true, + "propsOrder": [ + "author", + "date", + "title", + "editor", + "publication", + "pubPlace", + "publisher", + "doi" + ], + "properties": { + "titleQuotes": true, + "emphasized": [ "publisher" ] + } + }, + "apa": { + "id": "apa", + "label": "APA", + "enabled": true, + "propsOrder": [ + "author", + "date", + "title", + "publication", + "publisher", + "doi" + ], + "properties": { + "authorStyle": { + "delimiter": ",", + "forenameInitials": true, + "maxAuthors": 3 + }, + "publicationStyle": { + "citingAcronym": "none", + "inBrackets": [ "issue" ] + }, + "propsDelimiter": ".", + "titleQuotes": false, + "emphasized": [ "publication" ], + "inBrackets": [ "date" ] + } + }, + "mla": { + "id": "mla", + "label": "MLA", + "enabled": true, + "propsOrder": [ + "author", + "title", + "publication", + "publisher", + "doi" + ], + "properties": { + "propsDelimiter": ".", + "authorStyle": { + "delimiter": "," + }, + "publicationStyle": { + "citingAcronym": "all", + "inBrackets": [ "issue" ], + "includeEditor": true + }, + "dateInsidePublication": true, + "titleQuotes": false, + "emphasized": [ "publication" ] + } + } + } +} diff --git a/src/assets/config/ui_config_PseudoEdition.json b/src/assets/config/ui_config_PseudoEdition.json new file mode 100644 index 000000000..cac6d7cc3 --- /dev/null +++ b/src/assets/config/ui_config_PseudoEdition.json @@ -0,0 +1,167 @@ +{ + "availableViewModes": [ + { + "icon": "images", + "iconSet": "fas", + "id": "imageImage", + "label": "Image-Image", + "enable": false + }, + { + "icon": "image", + "iconSet": "fas", + "id": "imageOnly", + "label": "Image only", + "enable": false + }, + { + "icon": "txt", + "iconSet": "evt", + "id": "readingText", + "label": "Reading Text", + "enable": true + }, + { + "icon": "imgTxt", + "iconSet": "evt", + "id": "imageText", + "label": "Image - Text", + "enable": false + }, + { + "icon": "txtTxt", + "iconSet": "evt", + "id": "textText", + "label": "Text - Text", + "enable": false + }, + { + "icon": "collation", + "iconSet": "evt", + "id": "collation", + "label": "Collation", + "enable": true + }, + { + "icon": "srcTxt", + "iconSet": "evt", + "id": "textSources", + "label": "Text Sources", + "enable": false + }, + { + "icon": "versions", + "iconSet": "evt", + "id": "textVersions", + "label": "Text Versions", + "enable": false + }, + { + "icon": "documix", + "iconSet": "evt", + "id": "documentalMixed", + "label": "Documental", + "enable": false + } + ], + "localization": true, + "defaultLocalization": "en", + "availableLanguages": [ + { + "code": "en", + "label": "languageEn", + "enable": true + }, + { + "code": "it", + "label": "languageIt", + "enable": true + } + ], + "enableNavBar": false, + "initNavBarOpened": true, + "thumbnailsButton": false, + "viscollButton": false, + "mainFontFamily": "Junicode, Times, serif", + "mainFontSize": "1.1rem", + "secondaryfontFamily": "Arial, sans-serif", + "secondaryfontSize": "1.1em", + "theme": "modern", + "syncZonesHighlightButton": true, + "defaultBibliographicStyle": "chicago", + "allowedBibliographicStyles": { + "chicago": { + "id": "chicago", + "label": "Chicago (Author-Date)", + "enabled": true, + "propsOrder": [ + "author", + "date", + "title", + "editor", + "publication", + "pubPlace", + "publisher", + "doi" + ], + "properties": { + "titleQuotes": true, + "emphasized": [ "publisher" ] + } + }, + "apa": { + "id": "apa", + "label": "APA", + "enabled": true, + "propsOrder": [ + "author", + "date", + "title", + "publication", + "publisher", + "doi" + ], + "properties": { + "authorStyle": { + "delimiter": ",", + "forenameInitials": true, + "maxAuthors": 3 + }, + "publicationStyle": { + "citingAcronym": "none", + "inBrackets": [ "issue" ] + }, + "propsDelimiter": ".", + "titleQuotes": false, + "emphasized": [ "publication" ], + "inBrackets": [ "date" ] + } + }, + "mla": { + "id": "mla", + "label": "MLA", + "enabled": true, + "propsOrder": [ + "author", + "title", + "publication", + "publisher", + "doi" + ], + "properties": { + "propsDelimiter": ".", + "authorStyle": { + "delimiter": "," + }, + "publicationStyle": { + "citingAcronym": "all", + "inBrackets": [ "issue" ], + "includeEditor": true + }, + "dateInsidePublication": true, + "titleQuotes": false, + "emphasized": [ "publication" ] + } + } + } +} diff --git a/src/assets/config/ui_config_Saba.json b/src/assets/config/ui_config_Saba.json new file mode 100644 index 000000000..ea0682b81 --- /dev/null +++ b/src/assets/config/ui_config_Saba.json @@ -0,0 +1,167 @@ +{ + "availableViewModes": [ + { + "icon": "images", + "iconSet": "fas", + "id": "imageImage", + "label": "Image-Image", + "enable": false + }, + { + "icon": "image", + "iconSet": "fas", + "id": "imageOnly", + "label": "Image only", + "enable": false + }, + { + "icon": "txt", + "iconSet": "evt", + "id": "readingText", + "label": "Reading Text", + "enable": true + }, + { + "icon": "imgTxt", + "iconSet": "evt", + "id": "imageText", + "label": "Image Text", + "enable": true + }, + { + "icon": "txtTxt", + "iconSet": "evt", + "id": "textText", + "label": "Text Text", + "enable": false + }, + { + "icon": "collation", + "iconSet": "evt", + "id": "collation", + "label": "Collation", + "enable": false + }, + { + "icon": "srcTxt", + "iconSet": "evt", + "id": "textSources", + "label": "Text Sources", + "enable": false + }, + { + "icon": "versions", + "iconSet": "evt", + "id": "textVersions", + "label": "Text Versions", + "enable": false + }, + { + "icon": "documix", + "iconSet": "evt", + "id": "documentalMixed", + "label": "Documental", + "enable": true + } + ], + "localization": true, + "defaultLocalization": "en", + "availableLanguages": [ + { + "code": "en", + "label": "languageEn", + "enable": true + }, + { + "code": "it", + "label": "languageIt", + "enable": true + } + ], + "enableNavBar": true, + "initNavBarOpened": true, + "thumbnailsButton": true, + "viscollButton": false, + "mainFontFamily": "Junicode, Times, serif", + "mainFontSize": "1.1rem", + "secondaryfontFamily": "Arial, sans-serif", + "secondaryfontSize": "1.1em", + "theme": "modern", + "syncZonesHighlightButton": true, + "defaultBibliographicStyle": "chicago", + "allowedBibliographicStyles": { + "chicago": { + "id": "chicago", + "label": "Chicago (Author-Date)", + "enabled": true, + "propsOrder": [ + "author", + "date", + "title", + "editor", + "publication", + "pubPlace", + "publisher", + "doi" + ], + "properties": { + "titleQuotes": true, + "emphasized": [ "publisher" ] + } + }, + "apa": { + "id": "apa", + "label": "APA", + "enabled": true, + "propsOrder": [ + "author", + "date", + "title", + "publication", + "publisher", + "doi" + ], + "properties": { + "authorStyle": { + "delimiter": ",", + "forenameInitials": true, + "maxAuthors": 3 + }, + "publicationStyle": { + "citingAcronym": "none", + "inBrackets": [ "issue" ] + }, + "propsDelimiter": ".", + "titleQuotes": false, + "emphasized": [ "publication" ], + "inBrackets": [ "date" ] + } + }, + "mla": { + "id": "mla", + "label": "MLA", + "enabled": true, + "propsOrder": [ + "author", + "title", + "publication", + "publisher", + "doi" + ], + "properties": { + "propsDelimiter": ".", + "authorStyle": { + "delimiter": "," + }, + "publicationStyle": { + "citingAcronym": "all", + "inBrackets": [ "issue" ], + "includeEditor": true + }, + "dateInsidePublication": true, + "titleQuotes": false, + "emphasized": [ "publication" ] + } + } + } +} diff --git a/src/assets/data/VB-DOTR.xml b/src/assets/data/VB-DOTR.xml new file mode 100644 index 000000000..57db77e4b --- /dev/null +++ b/src/assets/data/VB-DOTR.xml @@ -0,0 +1,2290 @@ + + + + + + + + + + + The Vercelli Book: a machine readable transcription + Unknown + Roberto Rosselli Del Turco + + Conversion to TEI-conformant markup: + Raffaele Cioffi + Federica Goria + Roberto Rosselli Del Turco + + + General overview: + Roberto Rosselli Del Turco + + + Experimental style sheets: + Roberto Rosselli Del Turco + + + + [??] kilobytes + + + Digital Vercelli Project + 2004 + +

Not to ricirculate. Contact the Digital Vercelli Project researchers for more information.

+
+
+ + + + + Italy + Vercelli + Biblioteca e Archivio Capitolare di Vercelli + CXVII + Vercelli Book + Codex Vercellensis + + + The Codex Vercellensis, or Vercelli Book, as it is known in the Anglo-Saxon world and now also in + Italy, is a manuscript dating back to the end of the 10th century, containing miscellaneous religious + works, in verse and prose: 23 homilies in prose and 6 poetic works following the Anglo-Saxon alliterative metrics. + + + The primary language in this manuscript is Old English, with a few isolated Latin + words and phrases. + + + + + + + 1r - 9r + Homily I + ſceaþe for þan ne meaht ðu þa þrowunge gelettan + ain ecneꞅꞅe þurh eallra woruld aworuld AmeN abutan ende + + + + 9v - 12r + Homily II + MENÐALE OFESTAN. þæꞅ myclan dóm dægeꞅ worc bið ſwiðe egeꞅ lic ⁊andryꞅ + þurh ealra woruld aworuld aabutan ende am̄ + + + + 12v - 16r + Homily III + BRoðor þa leofestan ic cyðe þæt þreo þing ſynt ærest + á in ecneꞅꞅe þurh ealra woruld aworuld aabutan ende AMEN. + + + + 16v - 24v + Homily IV + Men þa leofestan, ıc eow bidde ⁊eaðmodlice lære + þær he leofað ⁊ricꞅað ın ealra worulda woruld abutan ende amen; + + + + 25r - 29r + Homily V + to middan wintra Oſtende nob̄ dne + we ureꞅ dryhtneꞅ naman hælendeꞅ criſteꞅ he leofað ⁊ricꞅað áábutan ende ; + + + + 29v - 52v + Andreas + Hwæt! We gefrunan on fyrndagum + ece mid englum. þæt is æðele cyning! + + + + 52v - 54r + Fates of the Apostles + Hwæt! Ic þysne sang siðgeomor fand + ece ond edgiong, ofer ealle gesceaft. + + + + 54v - 56r + Homily VI + INcipit narrare miracula quefacta fuerant ante aduentum saluatoris + gyldeð uꞅ god ece mede æt uꞅꞅum ende; + + + + 56v - 59r + Homily VII + BUTAN tweon lar iꞅ halig domeꞅ dæl ⁊ealleꞅ ſwiðoſt + ꞅynt onþã toweardan rice mid þam hælendan criſte. ⁊midþã halegan gaſte ınealra worulda woruld; + + + + 59r - 61r + Homily VIII + MENĐA leofeꞅtan manað uꞅ ⁊myngað onþyꞅꞅum bocum + ⁊ mid ðam godeꞅ ꞅuna ðam þe aliofað ⁊rixaþ mid fæder ⁊mid ꞅuna ato widan feore ameN + + + + 61r - 65r + Homily IX + MEN ðaleofestan manað uꞅ ⁊mingaþ þeoꞅ halige boc þæt + we mid him ⁊mid hiꞅ þam halegan gæꞅte wunigean ınealra worulda woruld ameN ; + + + + 65r - 71r + Homily X + HERsagað on þyꞅꞅum halegũ bocum be ælmihtigeꞅ + drihten criſt wunaþ ⁊rixað mid eallũ halegum abutan ende ameN + + + + 71v - 73v + Homily XI + ſpelto forman gang dæge. MEN ðaleofestan þiꞅ ꞅindon halige dagaꞅ ⁊halwendlice + gefultumige þe ofer uꞅ ealle liofað ⁊rixað. ameN + + + + 73v - 75v + Homily XII + ſpeltoðam oðrum gang dæge GIR ꞅan dæg we wæron manode menþa leofestan þiꞅꞅa haliga + midhim ⁊mid hiꞅ halgum ainealra worulda woruld on ecnesse  + + + + 75v - 76v + Homily XIII + ſpelto þriddan gangdæge ÐISISꞅe þridda dæg men þa leofeſtan þyꞅꞅe halgan tide þe uꞅ + world to widan feore midfæder ⁊mid ꞅuna ⁊midþam halgan gaſte in ecneꞅꞅe ameN  + + + + 76v - 80v + Homily XIV + lar ſpel to ſwylcere tide ſwa man wile . MEN ða leofestan þiꞅꞅynt halige dagaꞅ ⁊gaſtlice ⁊uꞅꞅũ + odeꞅ halgum onþone heofen lican eðel ⁊þæꞅ ꞅiððan brucan onecneꞅꞅe amen ; + + + + 80v - 85v + Homily XV + ALIA OMELIADEDI E IVDICII. M sægð us onþyꞅꞅum bocum huꞅe halga thomas godes apsł + ece gefean abutan ende ı scl̄a scl̄orum in secula seculorum ameN + + + + 85v - 90v + Homily XVI + OMELIA EPYFFANIA DNI M̄ sceolon we nú hwylcum hwegm wordum secgan be + rixað nú áþurh eallra woruld áworuld ábutan ende ın ꞅclā sclōrum ameN. + + + + 90v - 94v + Homily XVII + DEPURIFICATIO SCAMIA M[Men þa leofestan] sægeð uꞅ ⁊myngaþ þiꞅ halige god ſpel be þysse arwyrðan + aworuld abutan ende ınsca scorum am̄;in sæcula sæculorum, amen. + + + + 94v - 101r + Homily XVIII + DE SCO MARTINO CONF. M̄ magon we nu hwylcum hwego wordum asecgan + leofaþ ⁊rixaþ á ıneallra woruld aworld abutan ende ameN; + + + + 101v - 103v + Soul and Body I + Huru, ðæs behofað hæleða æghwylc + geþungen þrymlice þysses + + + + 104r - 104v + Homiletic Fragment I + sorh cymeð / manig ond mislic in manna dream. + eorðan lifes ende gewyrcan! + + + + 104v - 106r + The Dream of the Rood + Hwæt! Ic swefna cyst secgan wylle + ælmihtig god, þær his eðel wæs + + + + 106v - 109v + Homily XIX + MENða leofestan uꞅ gedafenaþ æreꞅt + ꞅuna . ⁊mid þam haligan gaſte . ábutan ende amen :, + + + + 109v - 112r + Homily XX + MMEMENNÐA leofestan þiſ ꞅyndon halige dagaꞅ ⁊hal + efen ecan haligan gafre abutan ende :, + + + + 112r - 116v + Homily XXI + MENĐALEOfestan usys mycel þearf þæt we god lufien of eallre + haligan gaſte onwuldre ⁊onwyrð mynde áábutan ende onecneꞅꞅe; + + + + 116v - 120v + Homily XXII + hER ſægð hu sc̄s isodorus spræc be ðære sawle gedale ⁊be + her on worulde ⁊on þære toweardan. seðe leofað ⁊ricsað aabutan ende in ecnesse + + + + 121r - 133v + Elene + þa wæs agangen geara hwyrftum + wuldorcyninges to widan feore. Amen. + + + + 133v - 135v + Homily XXIII + Wæꞅ þær inþam ſprecenan iglande sum mycel hlæw of eorþan ge + fona riceꞅ wuldre abutan ende onecneꞅꞅe amen fiat:, + + + + + + + + +

Parchment + codex with leather binding.

+
+ 135+1 leaves + 31 + 20 + + + + +

The Vercelli Book consists of 19 quires, marked with Roman numerals at the beginning of each quire, + and with letters at the end. Originally the quires were based on eight leaves of parchment, but many + leafs are missing and a few single leaves have been added sporadically. + 1(10,-7), + 2(12,-4,-8,-11), 3(8,-6,-8), 4(10,-3,-7), 5(10,-4,-8), 6(8,-3), 7(10,-4,-8), 8(12,-4,-8), + 9(10,-4,-8), 10(10,-5,-9), 11(10,-4,-6,-8,-10), 12(6), 13(10,-3,-7,-9), 14(8,-3,-7), 15(8,-6), + 16(10,-1,-4,-8), 17(4,-3,-4), 18(8), 19(8,-8) + + None Quires begin on fols. 1(1), [...]

+
+
+ + +

Text is written in a single column per parchment leaf.

+
+
+ +
+ + +

In the opinion of many scholars, the manuscript was written by a single scribe, who has been + particularly diligent and meticulous in using the writing of that period, the Anglo-Saxon square + minuscule.

+
+ +

The Vercelli Book is very simple in appearance, in fact only three initials are decorated (H on f. 49r, + M on ff. 106v and 112r) with new texts usually beginning with a larger, undecorated initial.

+
+ +
+ + + The manuscript was written in England, presumably in the South-Eastern area, and seems to have never + have left the country until the end of the eleventh century, since some notes in Old English were written into + the margins and can be dated back to that time. + It is still unclear how and when it came to Italy, a Latin verse of Psalm XXVI in neumatic + notation written in Italian handwriting can be dated to the early XII century and is then a reasonable + post-quem term. + + +
+
+ +
+ + + +

+ + + +

+ + +

+ + +

+ + +

Physical line breaks are rigidly observed.

+ + + + + + + + + LATIN SMALL LETTER DOTLESS I + U+0131 + ı + i + + + + LATIN CAPITAL LETTER A WITH MACRON + U+0100 + Ā + A + + + + LATIN ENLARGED LETTER SMALL A + U+EEE0 + + a + + + LATIN ENLARGED LETTER SMALL E + U+EEE6 + + e + + + LATIN ENLARGED LETTER SMALL DOTLESS I + U+EEFD + + i + + + + LATIN SMALL LETTER A WITH ACUTE + U+00E1 + á + a + + + LATIN SMALL LETTER O WITH ACUTE + U+00F3 + ó + o + + + + LATIN SMALL LETTER A WITH MACRON + U+0101 + ā + a + + + LATIN SMALL LETTER E WITH MACRON + U+0113 + ē + e + + + LATIN SMALL LETTER I WITH MACRON + U+012B + ī + i + + + LATIN SMALL LETTER O WITH MACRON + U+014D + ō + o + + + LATIN SMALL LETTER U WITH MACRON + U+016B + ū + u + + + LATIN SMALL LETTER Y WITH MACRON + U+0233 + ȳ + y + + + + LATIN SMALL LETTER Y WITH DOT ABOVE + U+1E8F + + y + + + + LATIN SMALL LETTER E WITH DOT BELOW + U+1EB9 + + e + + + + + + + LATIN SMALL LETTER Y WITH RIGHT MAIN STROKE + U+F233 + + y + + + + + + LATIN SMALL LETTER INSULAR G WITH MACRON + + + g + + + + LATIN SMALL LETTER INSULAR G WITH MACRON + + + G + + + + LATIN SMALL LETTER H WITH RIGHT DESCENDER + U+F23A + + h + + + + LATIN CAPITAL LETTER UNCIAL H + U+F110 + + H + + + + LATIN SMALL LETTER INSULAR S + U+A785 + + s + + + + LATIN SMALL LETTER LONG S + U+017F + ſ + s + + + + + + LATIN ABBREVIATION SIGN SMALL ET + U+204A + + + + + + + COLON WITH MIDDLE COMMA POSITURA + U+F1E5 + + + + + + MIDDLE DOT + U+00B7 + · + + + + + + +
+ + + + Latin + + + + + Moved from entity-based markup to use of the Gaiji module elements; replaced ms + and ss entities with choice-based element groups; cleaned up punctuation markup + Added element facsimile and all necessary stuff to do image-text + linking + First cross-revision + Conversion to the TEI P5 DTD + Experimental transcription using the Digital Scriptorium DTD + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The Dream of the Rood + + +
+

The Dream of the Rood, dating back to the first half of the 8th Century in its earliest + version, is one of the first Christian poems in the corpus of Old English literature and one of the main + examples of the genre of dream poetry in English. Due to its artistic qualities and overall relevance for + Anglo-Saxon studies it is considered one of the most important achievements of Old English poetry; it is also + one of the very few texts in this tradition that has been preserved in more than one witness. The complete + poem can be found in the late 10th Century Vercelli Book codex, but a fragment was carved in runes on the 8th + Century Ruthwell Stone Cross (Dumfriesshire, Scotland), and a small excerpt can be found also on the Brussels + Cross (St. Michael and St. Gudula Cathedral, Brussels, Belgium), an Anglo-Saxon cross-reliquary of the early + 11th century.

+ +

In the Vercelli Book the poem starts with the with the narrator having a dream: in this dream a wonderful + object, which is later to be identified with the Holy Cross, stands in the air and tells the story of the + crucifixion of Christ to the narrator.

+
+ +
+ + + + + + Swanton, M.J. + Ambiguity and anticipation in <title>The Dream of the Rood + + + Neuphilologische Mitteilungen + + 70.3 + 1969 + 407-425 + + + Studio sulla natura e sulla complessità linguistica del Sogno della Croce. + DOTR + + + + + Tale, George S. + Chiasmus as metaphor: the <title>figura crucis tradition and The Dream of the Rood + + + Neuphilologische Mitteilungen + + 79.2 + 1978 + 114-125 + + + DOTR + + + + + Wolf, Carol J. + Christ as hero in <title>The Dream of the Rood + + + Neuphilologische Mitteilungen + + 71.2 + 1970 + 203-210 + + + DOTR + + + + + Woolf, Rosemary + Doctrinal Influences on <title>The Dream of the Rood + + + Medium Ævum + + 27.3 + 1958 + 137-153 + + + DOTR + + + + + Bammesberger, Alfred + A Doubtful Reconstruction of the Old English Ruthwell Crucifixion Poem + + + Studia Neophilologica + + 74 + 2002 + 143-45 + + + Response to David Howlett. + DOTR + + + + + Gvozdetskaya, N. Yu + Semantika drevneangliyskoy poeticheskoy formuly (na materiale Beovul'fa i Videniya kresta) (The Semantics of the Old English + Poetic Formula, Based on Beowulf and The Dream of the Rood) + + + Lingvistika na rubezhe epoh. Idei i toposy. Sbornik statey: ( = Linguistics at the Turn of the Millennium: Ideas and Topoi: Essay + Collection) + + + Moscow + n.p. + 2001 + + 245-62 + + DOTR + + + + + Conti, Aidan + An Anonymous Homily for Palm Sunday, The Dream of the Rood, and the Progress of Ælfric's Reform + + + Notes and Queries n.s. + + 48 + 2001 + 377-80 + + + DOTR + + + + + Wheelock, Jeremy I. + The Word Made Flesh: 'engel dryhtnes' in <title>The Dream of the Rood + + + English Language Notes + + 37.3 + 2000 + 1-11 + + + DOTR + + + + + Sorrell, Paul + Word Alchemy: a Window on Anglo-Saxon Culture + + + Parabola + + 25.2 + 2000 + 62-68 + + + + + + + + Roberts, Jane + Some Relationships between <title>The Dream of the Rood and the Cross at Ruthwell + + + Stud. in Med. Eng. Lang. and Lit. (Tokyo) + + 15 + 2000 + 1-25 + + + DOTR + RC + + + + + Ó Carragáin, Éamonn + The Annunciation of the Lord and His Passion: a Liturgical Topos from St Peter's on the Vatican in <title>The Dream of the + Rood, Thomas Cranmer and John Donne + + + Essays on Anglo-Saxon and Related Themes in Memory of Lynne Grundy + Jane Roberts and Janet Nelson + + London + Centre for Late Antique and Medieval Studies, King's College, University of London + 2000 + + 339-81 + + King's College London Medieval Studies 17 + DOTR + + + + + Crawford, Robert + The Vision of the Cross + + + Stand n.s. + + 2.2 + 2000 + 143-46 + + + Traduzione. + DOTR + + + + + + Britt Mize. “The Mental Container and the Cross of Christ: Revelation and Community in The Dream of the Rood.” Studies in Philology 107.2 (2010): 131–178. Project MUSE. Web. + Galloway, Andrew. “Dream-Theory in The Dream of the Rood and The Wanderer.” The Review of English Studies 45.180 (1994): 475–485. Print. New Series. + Heckman, Christina M. “Imitatio in Early Medieval Spirituality: The Dream of the Rood, Anselm, and Militant Christology.” Essays in Medieval Studies 22.1 (2005): 141–153. Project MUSE. Web. + Irvine, Susan. “Adam or Christ? A Pronominal Pun in The Dream of the Rood.” The Review of English Studies 48.192 (1997): 433–447. Print. New Series. + LUISELLI FADDA, Anna Maria. “La Croce Nella Tradizione Poetica Anglosassone (sec. VIII-IX).” Romanobarbarica: Contributi allo studio dei rapporti culturali tra mondo latino e mondo barbarico 17 (2003): 333–359. Print. + Thieme, Adelheid L. J. “Gift Giving as a Vital Element of Salvation in ‘The Dream of the Rood.’” South Atlantic Review 63.2 (1998): 108–123. JSTOR. Web. + + + + + + The Mental Container and the Cross of Christ: Revelation and Community in The Dream of + the Rood + Britt Mize + + + Studies in Philology + 1543-0383 + 10.1353/sip.0.0050 + + 107 + 2 + 131-178 + 2010 + 2011-05-21 19:28:20 + http://muse.jhu.edu/journals/studies_in_philology/v107/107.2.mize.html + + + + + + Imitatio in Early Medieval Spirituality: The Dream of the Rood, Anselm, and Militant + Christology + Christina M.Heckman + + + Essays in Medieval Studies + 1538-4608 + 10.1353/ems.2006.0006 + + 22 + 1 + 141-153 + 2005 + 2011-05-21 19:36:24 + http://muse.jhu.edu/journals/essays_in_medieval_studies/v022/22.1heckman.html + + + + + + La Croce nella tradizione poetica anglosassone (sec. VIII-IX) + Anna MariaLUISELLI FADDA + + + Romanobarbarica: Contributi allo studio dei rapporti culturali tra mondo latino e mondo + barbarico + 0391-285X + + 17 + 333-359 + 2003 + + + + + + Gift Giving as a Vital Element of Salvation in "The Dream of the Rood" + Adelheid L. J.Thieme + + + South Atlantic Review + 0277335X + 10.2307/3201041 + + 63 + 2 + 108-123 + 1998 + 2011-03-23 13:42:10 + http://www.jstor.org/stable/3201041 + + + + + + Adam or Christ? A Pronominal Pun in The Dream of the Rood + SusanIrvine + + + The Review of English Studies + 00346551 + + 48 + 192 + 433-447 + 1997 + 2011-03-23 13:42:09 + http://www.jstor.org/stable/518491 + + + New Series + + + + Dream-Theory in The Dream of the Rood and The Wanderer + AndrewGalloway + + + The Review of English Studies + 00346551 + + 45 + 180 + 475-485 + 1994 + 2011-03-23 13:42:07 + http://www.jstor.org/stable/517806 + + + New Series + + + +
+ +
+ + + +
+ + + + + + + HOMILIARUM LIBER IGNOTI IDIOMATIS + SÆCULO X + CXVII + + + + + + + + + Roberto Rosselli Del Turco + First edition (2017) + + + + + Transcription and encoding by R. Rosselli Del Turco, R. Cioffi, F. Goria + Update to P5 TEI schemas by R. Rosselli Del Turco + + + + Powered by EVT - Edition Visualization Technology + EVT created by C. Di Pietro, J. Kenny, R. Masotti, R. Rosselli Del turco EVT home page: http://evt.labcd.unipi.it/ + + +
+ +
+ + + + + + Wæt ic wefna ct secgan wylle + + hæt + hwæt + + + mege mætte + me gemætte + + to midre nihte + syðþan + reord brnd + reordberend + reste wunedon. + þuhte me þæt ic + ge awe + gesawe + + yllicre treow + + onlyft + on lyft + lædan leohte + be wunden + bewunden + + beama beorhtot eall + þætbeacen wæ + + be goten + begoten + mid golde gimma + todon + fægereæt foldan ceatum + . + wylce þær fife wæron + uppe + onþam + on þam + + + eaxle ge panne + eaxlegespanne + + + be heoldon + beheoldon + þær engel + drhtne + ealle + fægere þurh + forð ge sceaft + forðgesceaft + + + newæ + ne wæs + + + ðærhuru + ðær huru + fracode gealga + . + + chine + ac hine + þær beheoldon halige gata + men ofer moldan + eall + and eall + þeo mære + ge ceaft + gesceaft + + + Syllic wæ + e + ige beam + sigebeam + + + c + and ic + + + ynn + synnum + fh + + for wunded + forwunded + mid + womm + wommum + + + ge seah + geseah + ic wuldre treow. + wædum geweorðode + wynn + wynnum + scinan + + ge gyred + gegyred + mid golde gimma hæfdon + + be wrigene + bewrigene + weorðlice + wealdes + wealdendes + treow + hwæðre icþurh þæt + gold ongytan meahte + earmra ærgewinþæt hit ærest ongan + wætan on þa wiðran healfe + eallic + eall ic + mid + urgum + sorgum + gedrefed + . + Forht + icwæ + ic wæs + forþære fægran + ge yhðe + gesyhðe + + + ge eah + geseah + ic þæt fue beacen. + + + + + + + + + + XV + 105. + + + + wendan wædum + bleom + and bleom + hwilum hit wæ mid wætan + be temed + bestemed + . + bewyledmid + wate gange + . + wilum mid ince gegyrwed + . + wæðre + icþær + ic þær + licgende lange hwile. + beheold + hreow cearig + hreowcearig + + . hælende treow. + oððæt + icgehyrde + ic gehyrde + þæt hit hleoðrode + ongan þa word precanwudu + elesta + þæt wæs geara iu + . + + cþæt + ic þæt + gyta + ge man + geman + + . + þæt ic + wæheawen holte + + onende + on ende + + atyred of tefne + min + minum + + .genaman + meðær + me ðær + + trange feonda + + ge worhton + geworhton + him þær to + wæfer yne + wæfersyne + heton me heora werga hebban + . + bæron + meðær + me ðær + beornaon eaxlum oððæt hie + me + onbeorg + on beorg + aetton + + gefæt nodon + gefæstnodon + meþær feonda genoge + . + + ge eah + geseah + ic þa frean + man cynnes + mancynnes + + eftanelne mycle + . + + þæt he me wolde + onge tigan + on gestigan + + . + þær + icþa + ic þa + + + nedorte + ne dorste + ofer + drhtne word + bugan oððe bertan .þa + icbifian + ic bifian + geeah + eorðan + ceata ealle ic mihte + feonda gefyllan hwæðre + icfæste + ic fæste + + tod. + Ongyrede hine þa geong hæleð þæt wæ + godælmihtig + trang + tið mod + and stiðmod + + . + + + ge tah + gestah + he + ongealgan + on gealgan + heanne + modig + onmanigra + on manigra + + + ge yhðe + gesyhðe + . þa he wolde + man cyn + mancyn + lyan + . + ifode + icþa + ic þa + me e beorn + mb clpte + ymbclypte + + . ne dorte ic + hwæðrebugan to eorðan + feallan + tofoldan + to foldan + + + ceat + sceatum + + . + c + icceolde + ic sceolde + fæstetandan. + Rod wæ + + icaræred + ic aræred + + . + hof ic ricne cyning + heofonahlaford. hyldan me ne dorte + . + + þurh drifan + þurhdrifan + + + hime + hi me + middeorcan + nægl + næglum + + . on me yndon þa dolg + geiene + gesiene + + opene + nwidhlemma + . + + ne dorte ic hira + nænig + nænigum + + ceððan + bymeredon hieunc butu + ætgædre eall ic wæ mid blode bestemed + .begoten + ofþæ guman idan + . + + iððan he hæfde hi gat + onended. + fealaic + onþam + on þam + beorge gebiden hæbbe + wraðra wyrda + . + + ge eah + geseah + ic werudagod + þearle þenian þytro hæfdon + + be wrigen + bewrigen + mid wolcnumwealdende + hræw. + cirne ciman ceadu + forð eode + forðeode + + . + wannunder wolcnum weop + ealge ceaft + eal gesceaft + + cwiðdon cyninge + fyllcrit + + onrode + on rode + + hwæðere þær fue feorran cwoman + toþam æðelinge + icþæt + ic þæt + eall + be heold + beheold + . + Sare ic wæ mid sorgum + gdrefedhnag ic hwæðre þam + ecg + secgum + to handa + + eað mod + eaðmod + elne mcle + ge namon + genamon + + hie þær ælmihtigne + god + God + + hofon hine of ðam + + + + + + hefian wite forleton + me þa + hilde rinca + hilderincas + + tandan teame + be drifnne + bedrifenne + eall ic wæ mid trælum + for wundod + forwundod + + ledon + hieðær + lim werigne + limwerigne + + + ge stodon + gestodon + him æt hi lice + + heafd + heafdum + + + be heoldon + beheoldon + hieðær heofene + drhten + he + and he + hine ðær hwile reste + meðe æfterðam + miclan gewinne , Ongunnon him þa mold + æ + e + rn wyrcan + beorna on banan + geyhðe curfon hie ðæt + ofbeorhtan + of beorhtan + + tane + geetton hie ðær on sigora + wealdend ongunnon him þa + orhleoð galan + earme + onþa + on þa + + + æfen tide + æfentide + þa hie woldon eft iðian + meðe fram þam mæran þeodne reste he ðær mæte + weorode + hwæðere + weðær + we ðær + + + reotende + greotende + gode hwile + . + todon on taðole + yððanstefn + + upge wat + up ge wat + + hilderinca + . hræw colode + fæger + feorg bold + feorgbold + þa uman fyllan ongan + . + ealle to eorðan þæt wæ eglic wyrd + + be dealf + bedealf + u man + ondeopan + on deopan + + eaþe hwæðre me þær + drhtneþegna + freonda gefrunon + ond gyredon me golde + eolfre + and seolfre + + , + . + + + Nuðu + Nu ðu + miht + ge hyran + gehyran + hæleð min e leofa + þæt ic bealuwaraweorc + ge biden + gebiden + hæbbe + sarra orga i nu æl cumn + þæt meweorðiað wide + ide + and side + + menn ofer moldan + eall + and eall + þeo mæregeceaft + . + + ge biddaþ + gebiddaþ + him + toþy + toþyssum + beacne on me + bearngode + bearn godes + + þrowode hwile forþan ic + þrm fæst + þrymfæst + nu. + hlifige under + heofen + heofenum + . + + ic + and ic + hælan mæg + . + + æg hwlcne + æghwylcne + anra þara þe + himbið + him bið + ega + tome + to me + + iu + icwæ + icwæs + geworden wita heardot + . + leodum laðot ærþan + ichim + ic him + lif weg + rihtne germde + reord + berend + reordberendum + + hwæt me + þageweorðode + þa geweorðode + wuldre ealdor + + oferholmwudu + ofer holmwudu + + + heofon rice + heofon rices + weard, + wylce + wahe + swa he + hi modor eacmarian + ylfe + ælmihtig + god + God + . for ealle menn + geweorðodeofer eall wifa cynn. + Nu + icþe + ic þe + hate hæleð + . + + min + seleofa + se leofa + . + þæt ðu þa + + ge yhðe + gesyhðe + + ecge + mann + mannum + + onwreoh + word + wordum + þæt hit + iwuldre beam + + eðe + se ðe + ælmihtig + god + God + + + onþrowode + on þrowode + . + + + formancynn + for mancynnes + + + maneg + manegum + + + ynn + synnum + . + + + and + + + adome + Adames + + + ealdge wyrht + ealdgewyrhtum + + deað heþær byrigde hwæðere eft + drhtn ara + mid hi miclanmihte + mann + mannum + + + tohelpe + to helpe + + + heða + he ða + on heofena atag . + hidereft fundaþ + + onþyne + on þy + + + middan geard + middangeard + + + man cynn + mancynn + + ecan + on + + + + + + + 106. + + + + dom dæge + domdæge + drhten lfa + ælmihtig + god + God + + + hi + and his + engla mid + . + þæt heþonne wile deman e ah + dome geweald + anra + ge hwylc + gehwylcum + + wa hehim ærur her + + onþyum + on þyssum + lænum life + ge earnaþ + geearnaþ + + . + ne mæg þærænig unforht wean + . + + forþam + for þam + worde + . þe e wealdend cwyð. + frineð he + forþære + for þære + mænige hwær e man ie + + eðe + se ðe + for + dr + htne + dryhtnes + naman deaðe + + wo,lde + wolde + + bitere onbyrigan wa he ær + onðam beame dyde + . + c hie þonne forhtiað + . + + fea þencaþ + hwæt + hieto + hie to + + crite + Criste + cweðan onginnen + . + + Neþearf + Ne þearf + ðær þonne ænig + unforhtwean + þe him ær + inbreot + in breostum + bereð beacna elest + . + + Acðurh + Ac ðurh + ða rode ceal rice + geecan + of + eorð wege + eorðwege + + + æg hwylc + æghwylc + sawl + eo þemid wealdende wunian + þnceð + + ge bæd + gebæd + ic me þa + toþan + to þan + beamebliðe + + + mode + elne mycle + þæric + þær ic + ana wæ + mæte wrede wæ + mod efa + modsefa + + afyed + onforð wege + on forðwege + feala ealra + ge bad + gebad + + langunghwila i me + nu life hyht + + þæt,icþone + þæt ic þone + + + ige beam + sigebeam + + ecan mote + ana oftor þonne ealle men + well weorþian me i willa + toðam + to ðam + + mycel + onmode + on mode + + + min + and min + + + mundbyrd + mund byrd + i + geriht + toþære + to þære + rode .Nah ic ricra + feala + freonda + onfoldan + on foldan + on + + chie + ac hie + forð heonon + gewiton of worulde dreamum + ohton him wuldre cyning + lifiaþ nu + onheofen + on heofenum + mid + heah fædere + heahfædere + + wuniaþ + onwuldre + on wuldre + + + icwne + and ic wene + me + daga + ge hwylce + gehwylce + hwænne me drhtnes rd + þe + icher + ic her + + + oneorðan + on eorðan + ær ceawode + + onþyon + + on þysson + lænan life + ge fetige + gefetige + + + me + and me + + + þn + þonne + gebrinþær + i bli mcel + dream on + heofon + heofonum + þær i drhtne folc + geeted to + mle þær i + ingal bli + + he + ond me + + + þn + þonne + aette þær + icyþþan mot + wunian + onwuldre + on wuldre + well + midþam + mid þam + + + halg + halgum + + dreamebrucan + ime + si me + drhten frond + + eðe + se ðe + her on eorþan + ærþrowode + ær þrowode + + + onþ + onþam + + + gealg treowe + gealgtreowe + + + forguman + for guman + + + ynn + synnum + + he u onlyde + u + and us + lif + for geaf + forgeaf + + heofonlicne ham hiht wæ + + ge niwad + geniwad + + mid + bled + bledum + + + midblie + and mid blisse + þ þe þær bryne þolodan. + + eunu + se Sunu + + + igor fæst + sigorfæst + on þ + fate + mihtig + pedig + and spedig + + . + + þa he mid manigeo com + gata weorodeo + ongode + on godes + rice + anwealda ælmihtig + engl + englum + + + toblie + to blisse + . + + eall + and eallum + ðam + halg + halgum + + + þamþe + þam þe + + + onheofon + on heofonum + ær + wunedon + onwuldre + on wuldre + þa heorawealdnd cwom + ælmihtig + god + God + þær hi eðel wæ + + +
+ + + +
+
+

The scribe here wrote a word, 'þrowode', that he later corrected in 'wolde' by erasing the first three + letters and adding an 'l'. In this image you can see the contours of the erased letters.

+
+ +
+
+
+
+
+ +
diff --git a/src/assets/data/pelavicino.xml b/src/assets/data/pelavicino.xml new file mode 100644 index 000000000..38334a03a --- /dev/null +++ b/src/assets/data/pelavicino.xml @@ -0,0 +1,27875 @@ + + + + + + + + + + Codice Pelavicino + Edizione Digitale + + Edizione critica di: + Enrica Salvatori + Edilio Riccardini + Franco Bonatti + Laura Balletto + + + Codifica di: + Alessio Miaschi + Chiara Alzetta + + + Revisione alla codifica di: + Roberto Rosselli Del Turco + Enrica Salvatori + + + + + Università di Pisa + Pisa + Da definire + +

Il progetto è realizzato per la libera consultazione. Tutti i contenuti sono + riproducibili a patto che se ne indichi la fonte.

+
+
+ + + + + + + Sarzana + Archivio del Capitolo della cattedrale + Codice Pelavicino + + + + + + Latino + Il codice si compone di 426 cc. numerate e 20 cc. non numerate; + contiene diversi testi tra cui il Liber Iurium della Chiesa di + Luni. Principale responsabile della sua redazione + fu il vescovo di Luni Enrico da Fucecchio, che salì al + soglio episcopale nel 1273 e vi rimase fino al 1289. Al fine di + salvaguardare i beni e i diritti della Chiesa di + Luni, il vescovo Enrico + riorganizzò infatti gli uffici della curia, fece compilare un inventario + generale dell’archivio ecclesiastico e attivò uno scrittorio nel quale + lavorarono diversi amanuensi, da cui uscì appunto buona parte del codice. Il + nome di Codice Pelavicino deriva da una piccola parte del + codice stesso, il cosìddetto Liber Magister, cioè il libro dei + redditi e dei proventi della Chiesa di Luni, che è + riportato nel codice nella copia tardoduecentesca, ma che originariamente + venne compilato al tempo di Uberto Pelavicino, vicario + in Lunigiana dell’imperatore Federico II nel quarto + decennio del secolo XIII. Il nome tuttavia si impose presto nell’uso per + indicare l’intero codice, compreso il Liber Iurium, come + testimonia un documento del 1487 trascritto nello stesso + manoscritto. + + + + + + + +

Il volume è rilegato in pelle con piatti in legno + (360 * 255 * 5mm); il + fondello presenta cinque nervature; la chiusura è data da una correggia + con fibbia in metallo. La guardia anteriore è formata da due fogli di + carta relativi al restauro del 1984, operato presso l’Istituto + centrale per la patologia del libro “Alfonso Gallo” di Roma + (ACS Corrispondenza 1982-1987, n.6). Seguono 5 fogli di + carta (10 cc.) con una fine vergellatura e filigrana a mezzaluna databile + alla seconda metà XVI-inizio XVII secolo. La risguardia è di un foglio di + carta di epoca recente incollato sulla coperta.

+

La guardia posteriore è formata da due fogli di carta recente e la + risguardia da un foglio di carta recente incollato alla coperta. + Precedono tre fogli di carta identici a quelli della guardia anteriore (6 + cc.) recanti la medesima filigrana, preceduti da un foglio irregolare di + pergamena con un crittogramma del secolo XVI numerato a matita 426. I + fogli cartacei del XVI-XVII secolo misurano 475 * + 335 mm.

+

Il codice conta 37 fascicoli. Molti fascicoli sono numerati con numeri + romani sia cardinali che ordinali.

+

Il 1° fascicolo è privo di indicazioni che ne stabiliscano la posizione + nel codice; il 2° non presenta indicazioni, ma originariamente possedeva + probabilmente la numerazione I(us) scomparsa in + seguito alla rifilatura; il 3° e il 4° presentano nel margine inferiore, + nel verso dell’ultima carta, II(us) e III(us) in inchiosto nero; il 5° fascicolo non + presenta indicazioni, ma possedeva probabilmente la numerazione IIII(us), scomparsa in seguito alla rifilatura.

+

La numerazione dei 6° al 20° è in inchiostro rosso, a cui segue dal 21 in + poi una numerazione in inchiostro nero. Il 21° fascicolo (XVI) presenta + una nota, probabilmente della medesima mano che ha numerato i fascicoli + del liber iurium, in cui si avverte di una lacuna: hic deficiunt + quatuor quinterni (in realtà sesterni) qui perpere ablati + fuerunt. A questo una mano più tarda ha aggiunto: in + quibus continebantur instrumenta n(umer)o 58 ut colligitur ex rubrica + precedente 158 et seguente 217, utcumque cartarum sive foliorum series + continuato numero currat. Vide retro carta 201 a t(ergo) in margine. + Vide etiam ante carta 401 postposita quedam instrumenta. + Effettivamente si registra un salto nella numerazione interna dei + documenti del liber da CLVIIII a CCXVII. La numerazione del + fascicolo seguente (il 22°) non è visibile così come quella successiva + (23°). Dato tuttavia che la numerazione dei documenti presenti all’inizio + del fascicolo 22° prosegue senza salti e che il fascicolo 24° presenta il + numero XXIII, se ne deduce che i fascicoli 22° e 23° recassero + originariamente la numerazione XXI e XXII. La lacuna riguarda quindi i + fascicoli un tempo contrassegnati dai numeri XVII – XX. Il 35° fascicolo + non è numerato e reca in calce la chiusura del liber iurium + con la sottoscrizione di maestro Egidio. Seguono i tre fogli centrali (6 + cc.) di uno dei fascicoli mancanti, quasi certamente il XVII della + primitiva redazione. Segue l’ultimo fascicolo (il 37°) composto di 6 + fogli (11 carte di cui la prima mancante) e contenente una altra versione + del liber magister.

+

Le carte dei fascicoli dal 1° al 36° misurano 345 * + 245 mm, ma presentano mozzature e rifilature; il 37° + fascicolo ha dimensioni maggiori 345 * 255 + mm, ritagliato irregolarmente nel margine inferiore.

+

I fogli di pergamena sono collocati dorso contro dorso e interno contro + interno.

+

Il codice non è un volume unitario, ma risulta composto di 4 parti, che + in origine formavano unità distinte e che sono state rilegate insieme in + età moderna:

+

La 1a parte (cc. 1r-8v), su supporto pergamenaceo, è + composta da un Indice e da una Memoria, in + pratica l’inventario dell’archivio vescovile lunense così come si + presentava all’epoca del vescovo Enrico da Fucecchio (fine XIII secolo). + Numerata in cifre romane da I a VIII. Copre interamente il primo + fascicolo.

+

La 2a parte (cc. 9r-56v), su supporto pergamenaceo, + è costituito in parte dal cosiddetto Liber Magister, cioè un + lungo elenco ricognitivo di beni, diritti, censi in denaro o in natura + spettanti al vescovo di Luni e in parte da altri documenti che sono in + corso di studio. Questa parte è numerata in crifre romane a partire da I; + la numerazione continua poi nella 3a parte senza soluzione di continuità + da I a CCCCVI. Copre interamente i fascicoli 2-5. Nella parte finale del + fascicolo 5, le ultime 3 cc. contengono ta trascrizione di un documento + del secolo XV (il n. 26, del 1487 agosto 9 e 30), il più recente + dell’intero codice.

+

La 3a parte (cc. 57r-414v.), su supporto + pergamenaceo, è la più consistente ed è costituita dal Liber + Iurium, dove sono trascritti 510 documenti di natura pubblica o + privata che al compilatore parvero importanti come prova della + legittimità dei diritti feudali e dei possessi patrimoniali della Chiesa + lunense. Una numerazione progressiva, in cifre romane, contrassegna i + documenti nel margine esterno ed è dovuta, molto probabilmente, allo + scriba che compilò l’indice della 1a parte.

+

La 4a ed ultima parte (cc.415r.-425v.) su supporto + cartaceo, è costituita da una seconda e più tarda redazione del + Liber Magister, databile alla fine del XIV secolo in base + alla scrittura. Le carte non sono state numerate.

+
+
+ +

Nel manoscritto sono riconoscibili diversi scrittori. Si elencano qui i + principali fino ad ora (ottobre 2015) riconosciuti. L’elenco definitivo + verrà pubblicato al termine del lavoro di trascrizione ed edizione + critica.

+

(1) Un amanuense di cui ignoriamo il nome ha iniziato a + scrivere il 12 dicembre 1287 e ha redatto i primi 22 documenti del + Liber Iurium (nn. 27-48, cc. 57r.-70r)., dopodiché il lavoro + fu interrotto; la scrittura di questo primo amanuense è riconducibile al + tipo della rotunda italiana, avvicinabile alla littera + bononiensis, propria dei manoscritti universitari bolognesi, ma + diffusa anche in molti altri centri italiani; è più tondeggiante, la + caratteristica del tratto spezzato, tipica della gotica, è poco avvertibile, + mentre le lettere sono più addossate l’una all’altra. Le principali + differenze rispetto alla scrittura n° 2 (di magister Egidio) + sono così riassumibili:

+

+ + la g rotonda, assomigliante ad un 8, l’occhiello + inferiore è rotondo anziché schiacciato a formare un triangolo; + la p con il significato di per reca il + taglio orizzontale alla base e non a metà dell’asta; + il segno tachigrafico per et è sempre a forma di 7, ma + non reca il taglio orizzontale; non compare mai il segno a forma di 9 + con significato di cum/con; + le i non presentano apici; + la y è priva di puntino al centro della + biforcazione; + accanto alla d onciale, con asta abbattuta e quasi + orizzontale, lo scriba adopera sovente la d diritta + pressoché assente in Egidio. + +

+

Ignoriamo i motivi per cui questo amanuense abbia interrotto il lavoro di + trascrizione poco tempo dopo averlo intrapreso. Dovette comunque trattarsi + di un’interruzione brusca, imputabile a cause di forza maggiore, perché non + ebbe neppure tempo e modo di apporre la propria sottoscrizione che valesse + come autentica globale dei documenti trascritti sino a quel momento.

+

(2) Il secondo amanuense era di origine e cultura + francese, il magister Egidio di Bligny sur Ouche, nella diocesi + di Autun (Borgogna). Ne conosciamo il nome grazie alla sottoscrizione che + egli appose a chiusura del suo lavoro durato dalla fine del 1288 alla fine + del 1289 (doc n. 531, c. 408v.) e al termine del Liber Magister + (c. 48r.). A maestro Egidio si deve quindi la parte più consistente del + Liber Iurium e la copia del Liber Magister. La + sua scrittura appartiene al tipo delle littere scholasticae + elaborate in ambiente universitario.

+

Tra le caratteristiche salienti della grafia di magister Egidio + meritano di essere segnalate:

+

+ + il largo, per non dire larghissimo, ricorso alle abbreviazioni, sia + per troncamento sia per contrazione; + la d è quasi sempre di tipo onciale con l’asta + ripiegata, talvolta con un trattino finale che gira verso + destra; + la g presenta l’occhiello inferiore schiacciato a + formare una sorta di triangolo; + la m e la n a fine di parola presentano + l’asta terminale cosiddetta “a proboscide”; + l’asta finale della h si prolunga sotto il rigo con + uno svolazzo a sinistra; + la l, la b, la h iniziano + con un tratto complementare a sinistra assai pronunciato; + la i è segnalata dalla presenza di segni diacritici + per differenziarla dalle aste di m e di n, + altrimenti non distinguibili; + la y presenta un puntino al centro della + biforcazione; + le aste delle lettere maiuscole raddoppiate; + frequenti nessi tra le lettere di forma rotonda (de, + po); + uso pressoché costante del segno tachigrafico di et, + che si presenta nella tipica forma a 7 con l’asta discendente tagliata + a metà altezza da un breve tratto orizzontale; + uso costante del segno tachigrafico a forma di 9 con il significato + di cum / con. + +

+

Via via che il copista procede con il suo lavoro lo specchio scrittorio + della pagina si dilata e si riduce lo spazio interlineare, aumenta il numero + di righe per ogni carta; viene meno l’uso dell’inchiostro rosso a scopo + ornamentale sino a scomparire nella seconda metà del codice, così come + diminuisce la cura del riprodurre i signa tabellionis dei notai + che avevano a suo tempo autenticato la copia trascritta.

+

Come detto, sempre alla mano sicura di Egidio da Bligny si deve l’intero + Liber magister, la cui redazione, sebbene non databile con + esattezza, dovette seguire a breve distanza di tempo – quasi una sorta di + logico complemento – la compilazione del Liber Iurium. Qui, in + verità, la scrittura appare più ariosa e meno compressa lateralmente, il + ductus palesa la tendenza ad una maggiore rotondità. + Tuttavia grafismi come la g acuta, il segno tachigrafico per + et, la l con trattino iniziale verso sinistra, + la y con puntino centrale, non lasciano spazio a dubbi circa + l’identità dello scriba.

+

(3) L’indice del Liber Iurium (cc. + 1r.-5r.) e la Memoria cartarum Lunensis curie (cc. 5v.-8v.) + sono invece riconducibili alla fatica di un terzo scriba, di cui purtroppo + ignoriamo il nome. Egli utilizza una minuscola di tipo italiano, piuttosto + accurata, dal ductus regolare e con un accentuato contrasto di + chiaroscuro. Tra le particolarità grafiche più significative spiccano:

+

+ + la g con occhiello inferiore non chiuso; + la s sigmatica; + la v acuta, anzi acutissima, ad inizio di + parola; + le aste in evidenza rispetto al corpo della scrittura (il che non + avviene né in Egidio né per l’anonimo scriba che ha copiato i primi 22 + documenti del Liber Iurium). + +

+

(4) Una quarta mano ha vergato una seconda e più tarda + versione del Liber Magister (cc.415r.-425v.). Siamo qui di + fronte ad una scrittura notarile tendente al corsivo, di corpo più minuto, + ricca di svolazzi, distribuita su due o tre colonne, databile forse ai + decenni finali del XIV secolo.

+

(5) Una quinta mano, anch’essa tarda, ha trascritto un + documento del 1297 dopo la chiusura del Liber Magister fatta da + maestro Egidio, utilizzando le carte rimaste bianche del fascicolo 5 (doc. + n. 25 cc. 49r-54r.).

+

(6) Una sesta mano, della fine del secolo XV, ha infine + trascritto il documento n. 26 del 1487, contenente l’autenticazione del + codice (cc. 54v-56v, n. 26), sempre nelle pagine finali del fascicolo 5.

+
+ +

Sono presenti le riproduzioni dei timbri notarili a volte con scopi + decorativi. Alcuni capilettera sono in rosso.

+
+
+ + + + +

Si compone di 426 carte e contiene in copia documenti dall’anno + 900 (diploma di Berengario re d’Italia a favore del vescovo + lunense) fino al 1289.

+
+ +

La maggior parte del manoscritto risale alla seconda metà XIII secolo.

+

Le diverse parti in cui ora è composto il codice vennero assemblate in una + prima rilegatura plausibilmente conservata nella sede del vescovo di Luni, + ossia nel castrum Sarzane, attuale + Sarzanello, prima del 1487.

+

Come ci informa un documento trascritto nello stesso codice (CP cc. 54v-56v, + n. 26), a quell’epoca il vescovo di Luni risiedeva temporameamente a + Pontremoli, presso la chiesa di S. Colombano, a causa della guerra di + Sarzana, 49-52). Da qui il vescovo Tommaso aveva indirizzato una supplica a + papa Innocenzo VIII affinché attribuisse ai documenti trascritti nel codice + valore di prova nelle contestazioni giudiziarie. Dietro mandato papale il + giureconsulto Tomaso Amadeo di Ferrara, in Modena, autenticò il + liber, già detto all’epoca Pelavicinus, il 9 + agosto 1487. In quest’atto il codice è detto composto di 408 carte, che + iniziano con l’indice (attuale c. 1, fascicolo 1) e terminano con un + documento del 1289 (attuale c. 408v., fascicolo 35): questo significa che + già nel 1487 mancavano dal volume i fascicoli dal XVII al XX. In un momento + successivo, non noto, furono recuperati alcuni fogli di un fascicolo + perduto, quasi certamente il XVII (attuali cc. 409r-414v. del fascicolo 36) + e quindi inseriti in una nuova rilegatura. In questa nuova composizione al + codice vennero probabilmente aggiunte le carte perdute che ora formano il + fascicolo 37 contenenti una redazione del Liber Magister + differente da quella copiata da maestro Egidio.

+

A una terza rilegatura dovrebbero appartenere i fogli di carta della guardia + anteriore e posteriore dotati di una filigrana databile a cavallo tra i + secoli XVI e XVII.

+
+
+ +
+ + + + Lista Persone + + + + Abraçalene + de Barbazano + + M + + + + Abraciator + quondam Armannini + + M + + + + Abraciatus + de Ponzano + + M + + + + Acaritus + + M + + + + Acciliana + + F + + + + Accursetus + quondam Vitalis de castro Sarzane + + M + + + + Acursus + quondam Petri + + M + syndicus et procurator communium et universitatum de Marola et de + Matrono + + + + Accursus / Acursus + filius Sermonuti + + M + + + + Acoltus + quondam Bonavite de Trebiano + + M + + + + Actocani + de Bibola + + M + nobiles + + + + Actocaninus + Actocaninus de Masio + + M + + + + Actocaninus + quondam domini Parentis de Terrarossola + + M + + + + Adalasia + quondam Lommannete + + F + + + + Adalgrinus + + F + + + + Adalbertinus + + M + + + + Adalbertinus + quondam Bonaiuti de Puleca + + M + + + + Adalbertinus + de Sarzana + + M + + + + Adiutus / Aiutus + + M + + + + Adiutus / Aiutus + + M + presbiter, capellanus domini Guilielmi + + + + Adiutus / Aiutus + de Lune + + M + + + + + Adiutus / Aiutus + + M + sacri palatii notarius + attestato dal 1230 al 1260 + + + + Adiutus / Aiutus + + M + presbiter + + + + Adiutus / Aiutus + de valle Ylioli + + M + presbiter + + + + Adiutus / Aiutus + quondam Dominici + + M + + + + Adornellus + domini Tranchedi comitis de Advocatis de Luca + + M + iudex ordinarius, notarius + attestato nel 1281 + + + + Adornetus + de Balognano + + M + + + + Advocatus + + M + + + + Advocatus + de Sarzana + + M + + + + Afflorata + filia Belmese + + F + + + + Agnellus + de Sarzana + + M + calçolarius + + + + Agnesia + uxor Gerardi + + F + domina de Falcinello + + + + Agnesia + uxor Guidonis + + F + domina de Falcinello + + + + Agnesia + filia quondam Iacopini, uxor Rollandi quondam Guilielmi de + Valdonega + + F + + + + Aicardellus + quondam Bosi + + M + + + + Aicardellus + quondam Venture Brageri + + M + + + + Aicardinus + + M + + + + Aidans + quondam Aimeline de Ponzanello + + M + + + + Aidans + de Amelia + + M + + + + Aidans + quondam Bottoni /quondam Botonis + + M + + + + Aidans + quondam Gondeti de Ponzanello + + M + consul de Ponzanello + + + + Aidans + quondam Meliorati + + M + + + + Aidans + quondam Pellini + + M + syndicus et procurator communium et universitatum de Marola et de + Matrono + + + + Aidans + de Ponzanello + + M + + + + Aidans + de castro Sarzane + + M + + + + Aidans + de Serra + + M + + + + Aidelina + + F + + + + Aimelina / Aymelina + + F + + + + Aimelina / Aymelina + quondam Bonfilioli + + F + + + + Aimelina / Aymelina + de Castronovo + + F + + + + Aimellus + + M + + + + Aimericus + + M + + + + Aitantellus + <filiius Aidantis de Ponzanello> + + M + + + + Aiutellus + Bonaiuti + + M + + + + Alamannus + de Malliola + + M + + + + Albanensis + + F + + + + Albercellus + + M + + + + Albergucius + quondam Formenti de castro Sarzane + + M + + + + Albergus + + M + + + + Albergus + de Fontenella + + M + + + + Albergus + de Valdonica + + M + + + + Albertellus + Albertellus de Pignoto + + M + + + + Albertinellus + + M + + + + Albertinellus + de Berzola + + M + + + + Albertinellus + frater Mauricii de la Cala + + M + + + + Albertinellus + de Supravia + + M + + + + Albertinucius / Albertinutius + + M + + + + Albertinus + + M + + + + Albertinus + + M + magister + + + + Albertinus + quondam Bernardi + + M + dominus de Falcinello + + + + Albertinus + de Castronovo + + M + + + + Albertinus + Ceolaschi + + M + + + + Albertinus + quondam Compagni + + M + + + + Albertinus + Cornachini + + M + + + + Albertinus + quondam Gerardini Veroni de Soleria + + M + + + + Albertinus + de Monte Franzo + + M + + + + Albertinus + de Orbagnano + + M + + + + Albertinus + de Piçolo + + M + + + + Albertinus + de donna Rossa + + M + + + + Albertolda + de Certiola + + M + + + + Albertonus + + M + + + + Albertonus + quondam Guidonis + + M + + + + Albertosca + filia quondam Petri olim domini Alberti + + F + + + + Albertus + + M + + + + Albertus + + M + magister, canonicus Lunensis, presbiter, + subdiaconus + + + + Albertus + + M + consul + + + + Albertus + + M + episcopus Lunensis + Alberto, vescovo di Luni, di cui non esistono testimonianze dirette; viene + detto successore di Gottifredo II (1129-1156) in un documento del 1181 e predecessore di Pietro + (1178-1190) in un documento del 1212; + viene poi citato in un documento del 1230. Il Podestà (PODESTÀ + 1895, pp. 38-42) lo pone tra l'ultima attestazione di Gottifredo II + (1156) e la prima di Andrea II (1160), + ma quest'ultima indicazione non è certa in quanto il prelato vi è indicato + dalla sola cifra iniziale. + + + + Albertus + + M + magister + + + + Albertus + + M + marchio + Alberto/Adelberto, III marchese di questo nome della stirpe obertenga, + figlio di Alberto/Adelberto II è attestato dal 1033 (CALLERI 1993 doc. 38, p. 66-67) + al 1077 ( FALCO 1916 XXIV). + Probabilmente già defunto nel 1080 ( + FALCO 1916 XXVI). + + + + Albertus + + M + notarius invictissimi Frederici imperatoris + attestato dal 1180 al 1200 + + + + Albertus + + M + presbiter + + + + Albertus + filius Albini + + M + + + + Albertus + de Amelia + + M + + + + Albertus + quondam Barendini + + M + + + + Albertus + Bellonis + + M + + + + Albertus + quondam filio Benedicti + + M + + + + Albertus + de Buiano + + M + + + + Albertus + de Calvo + + M + + + + Albertus + de Cruce + + M + + + + Albertus + quondam Ferri de Lacala + + M + + + + Albertus + de Formicoso + + M + + + + Albertus + filio Frederici de Carraria + + M + + + + Albertus + quondam Gandulphini / de Gandulfino + + M + + + + Albertus + quondam Gerardi + + M + nobilis, vicedominus episcopi + + + + Albertus + filius Gerardi de Carraria + + M + + + + Albertus + quondam domini Guidonis + + M + + + + Albertus + quondam Guilielmini de Lune + + + + + Albertus + filius quondam domini Opiçoni marchionis Malaspine + + M + Alberto marchese Malaspina, figlio di Opizzino capostipite dello Spino + Fiorito, fratello di Bernabò e Isnardo; è attestato dal 1255 (ASFi DM, n. 155), nel 1257 (FERRETTO 1909, n. DCCCCLV) è + ancora minorenne; già defunto nel 1281 (ASFi DM, n. 280). + + + + Albertus + Malvicinus + + M + vicarius Lunisiane pro communi Pisano + + + + Albertus + dictus Mascardus de Trebiano + + M + + + + Albertus + quondam Nobelini + + M + + + + Albertus + quondam Parentini de castro Sarzane / de Balzano + + M + + + + Albertus + quondam Parentis + + M + + + + Albertus + quondam Passarini / de Passarino de Sarzana + + M + + + + Albertus + de Rainerio + + M + + + + Albertus + de Carraria filius quondam Rodulfini + + M + + + + Albertus + qui dicor Ruffus, filius quondam Alberti marchionis + + M + marchio + Alberto Rufo, IV marchese di questo nome della stipe obertenga, figlio di + Alberto III. Nel 1080 risulta sposato a Iolicta, figlia di Uberto conte di + Parma (FALCO_1916, XXVI); è + menzionato l’ultima volta da vivo nel 1084 (doc. 184. Forse morto già nel 1085 (BERNOLDUS, pp. 443–444), lo è + certamente nel 1094 (FALCO_1916, + XXXIII). Cfr.BROOK-PAVONI + 1984 XXVI, 1. + + + + Albertus + filius quondam Ubaldi de Parente + + M + + + + Albertus + quondam Ubaldi de Valechia + + M + + + + Albertus + de Valle + + M + + + + Albertus + de Valle + + M + + + + Albertus + de Valle Stephani + + M + + + + Albertus + de Valporcara + + M + + + + Albizellus + de Veçale + + M + + + + Albizi + de Cazano + + M + + + + Alzadellus / Alçadellus + quondam Araldi + + M + operarius de curte Sarzane + + + + Alzadellus / Alçadellus + de castro Sarzane + + M + + + + Alcarinus + quondam Folcerii + + M + + + + Alcherius + de Luca + + M + notarius + attestato in numerose autentiche non datate ma ascrivibili alla seconda metà + del XIII secolo; probabilmente da identificare con il notaio Alcherius + Pagani + + + + Alcherius + Pagani + + M + vicarius province Lunisiane, imperialis aule iudex et + notarius + attestato dal 1271 al 1272; probabilmente da identificare con il notaio + Alcherius de Luca + + + + Aldebertinus + + M + + + + Aldebertinus + quondam Aliardi + + M + + + + Aldebertinus + quondam Armannini + + M + + + + Aldebertinus + de Bonafide + + M + + + + Aldebertinus + de Bursello + + M + + + + Aldebertus + nepos Çanforni + + M + + + + Aldebrandetus /Aldeprandetus + fiulius Aldeprandi vicedomini + + M + + + + Aldebrandetus / Aldeprandetus + de Soleria filius Guidolini de Fossato + + M + + + + Aldebrandetus /Aldeprandetus + de burgo Sarzane + + M + + + + Aldebrandinus / Aldeprandinus + + M + vicedominus + + + + Aldebrandinus / Aldeprandinus + de Castello Radaldo + + M + forse figlio di domina Diamante, certo fratello dei figli di lei + + + + Aldebrandinus / Aldeprandinus + quondam Catti de Trebiano / quondam Gatti + + M + + + + Aldebrandinus / Aldeprandinus + <filius Iohannini quondam Aldeprandi de Rapugnana> + + M + + + + Aldebrandinus / Aldeprandinus + Malanaca + + M + + + + Aldebrandinus / Aldeprandinus + de Miselia + + M + + + + Aldebrandinus / Aldeprandinus + de Oletto + + M + + + + Aldebrandinus / Aldeprandinus + filius Symoneti notarii + + M + notarius + Attivo nel 1279 + + + + Aldebrandinus / Aldeprandinus + Talliamelo + + M + dominus, vicarius provincie Lunisiane + + + + Aldebrandinus / Aldeprandinus + Veltri de Corvaria + + M + + + + Aldebrandus /Aldeprandus + + M + vicedominus + + + + Aldebrandus / Aldeprandus + filius quondam Alberti vicedomini + + M + vicedominus + + + + Aldebrandus / Aldeprandus + de Antiquo + + M + + + + + Aldebrandus / Aldeprandus / Aldibrandus / Aldevrandus + quondam Azo, filius quondam Rodolfi quondam Bonizoni de loco + Ponzano + + M + + + + Aldebrandus / Aldeprandus / Aldibrandus / Aldevrandus + quondam Brici/quodam Berci + + M + consul Sancti Terencii + + + + Aldebrandus / Aldeprandus / Aldibrandus / Aldevrandus + quondam Oliverii de castro Sarzane + + M + + + + Aldebrandutius + quondam Vinciguerre + + M + + + + Aldeitrandinus + <de Soleria> + + M + + + + Aldisia + uxor Vivaldi de Capriola + + F + + + + Aldoinus / Aldonus / Alduinus + + M + + + + Aldoinus / Aldonus / Alduinus + filius quondam domini Gibertini <de Herberia> + + M + + + + Aldoinus / Aldonus / Alduinus + quondam Guidi de Ubaldo + + M + + + + Aldoinus / Aldonus / Alduinus + quondam Petri + + M + + + + Alegranza / Alegrança + + F + + + + Alegretus + + M + + + + Alegretus + <de Apognana quondam Alberti> + + M + + + + Alegretus + filius quondam Cyceris de Magnano + + M + + + + Alegretus + quondam Tiniosi Barencini + + M + + + + Alexander + + M + episcous, servus servorum Dei + Papa Alessandro IV, eletto il 21 maggio 1254 e consacrato il 20 dicembre + successivo. Muore a Viterbo il 25 maggio 1261 come da scheda di Raul Manselli + nel Dizionario Biografico degli italiani, vol. 2 + (1960.) + + + + Aliottus / Aliotus + Marrontinus / quindam Marroncini de Luca + + M + notarius, scriba + attestato nel 1269 + + + + Alsaldellus + quondam Vitalis de Valmoro + + M + + + + Amatus + + M + + + + Amatus + de Orbagnano + + M + + + + Ambrosinus + de Orbagnano + + + + + Ambrosius + + M + episcopus Bergamensis + Ambrogio II, vescovo di Bergamo attestato dal 1023 e morto nel 1058 (SCHWARTZ 1913, p. 101). + + + + Amica + + F + + + + Amica + quondam Guidoli + + F + + + + Amezetus / Amizetus / Amigetus + + M + + + + Amezetus/Amizetus/Amigetus + de Sporliano + + M + + + + Amicus + + M + + + + Amicus + quondam Aicardini + + M + operarius de curte Sarzane + + + + Amicus + quondam Angelerii + + M + + + + Amicus + de Beduçano + + M + + + + Amicus + de Colle + + M + + + + Amicus + quondam Gerardi de Mezana + + M + + + + Amicus + quondam Gerardini + + M + consul comunis de Ponzanello + + + + Amicus + Martignoni de Barbaçano / de Barbaçano + + M + + + + Amicus + de Çugnaco + + M + + + + Amiliarinus + filius Parluntii + + M + + + + Andrea + + M + + + + Andrea + + M + episcopus Lunensis + Andrea II, vescovo di Luni, attestato in maniera non certa - perché indicato + con la sola iniziale del nome proprio - dal 26 gennaio 1160 al 3 aprile + 1164. + + + + Andrea + + M + massarius + + + + Andrea + + M + marchio de Massa + si tratta probabilmente di Andrea Bianco, marchese di Parodi e di + Massa-Corsica, figlio di Moruello + + + + Andrea + de Balognano + + M + + + + Andrea + Calvo + + M + + + + Andriolus + de Sancto Stephano + + M + + + + Androinus + + M + + + + Andrucius / Andrecius + + M + + + + Andrucius / Andrecius + Caciaguerra + + M + + + + Andrucius / Andrecius + de Poppio + + M + + + + Angelellus + + M + + + + Antonius + + M + canonicus Lunensis, presbiter, subdiaconus + + + + Antonius + Tursaccus + + M + + + + Anselmus + + M + Anselmo vescovo di Como attestato per la prima volta nel 1170 e morto + il 1° di aprile del 1193 o del 1194 come da scheda nel Dizionario Biografico degli italiani, vol. 3 + (1961). + + + + Aprile + quondam Sabrini + + M + + + + Ardengus + + M + + + + Arditio / Ardicio + + M + + + + Arditio / Ardicio + quondam Aicardi + + M + + + + Arditus + + M + + + + Arduinus + + M + + + + Arduinus + + M + consul Carrarie + + + + Arduinus + + M + ferrarius + + + + Arduinus + Çuffus + + M + + + + Arduinus + filius Guideti + + M + + + + Arduinus + de Herberia filius quondam Giberti de Herberia + + M + + + + Arduinus + de Petrognano + + M + dominus + + + + Arduinus + de Vallecla filio quondam Bononi + + M + + + + Arengus + filius Bonafidei de Castronovo quondam Aldebertini + + M + + + + Argunnitosus + de Moneta + + M + + + + Armannina + uxor Gibertini + + F + domina de Falcinello + + + + Armanninus + + M + + + + Armanninus + quondam Gibertini de Soleria + + M + + + + Armanninus + quondam Iacobini + + M + + + + Armanninus + quondam Michaelis + + M + + + + Armanninus + de Plebe + + M + + + + Armanninus + quondam Sabbatini de castro Sarzane + + M + + + + Armanninus + de Soleria + + M + + + + Armanninus + de Trebiano + + M + + + + Armannus + + M + diaconus, plebanus de Amelia + + + + Armannus + + M + imperialis aule iudex, notarius + attestato nel 1219 + + + + Armannus + de Iovello + + M + + + + Armingardina + + F + + + + Armniardula + + F + + + + Arnaldus + + M + + + + Arnaldus + quondam Ugolini + + M + operarius de curte Sarzane + + + + Arnaldus + de Castello + + M + + + + Arrigus + quondam Aldibertini + + M + + + + Assalitus + quondam Tiniosi de Sancto Stephano + + M + + + + Astexanus + de Torano + + M + + + + Atto / Azo + + M + + + + Atto / Azo + + M + iudex, advocatus + + + + Atto / Azo + Burgundius + + M + + + + Atto / Azo + de Cerro Alto + + M + + + + Atto / Azo + filius quondam Compagni + + M + + + + Atto / Azo + de Faucenova + + M + + + + Atto / Azo + filius Gerardi de Carraria + + M + + + + Atto / Azo + de Grangnano + + M + + + + + Atto / Azo + filius Villani + + M + + + + Attolinus + + M + + + + Attolinus + + M + castaldus + + + + Attolinus + + M + consiliarius Carrarie + + + + Attolinus + + M + sacri palatii notarius + attestato dal 1231 al 1265 + + + + Attolinus + quondam domini Alberti dicti Mascardi de Trebiano + + M + + + + Attolinus + quondam Armannini de Carraria + + M + + + + Attolinus + quondam Bandini + + M + consiliarius castri Sarzane + + + + Attolinus + quondam Belloti de Miselia + + M + + + + Attolinus + Cactii de Sarzana/quondam Catii de Sarzana/quondam Caccii /quondam + Caccii de burgo Sarzane + + M + dominus + + + + Attolinus + Frandalonis + + M + + + + Attolinus + de Gualdo + + M + operarius de curte Sarzane + + + + Attolinus + quondam Iuxtamontis + + M + + + + Attolinus + de Malliola + + M + + + + Attolinus + quondam Opiçonis de Pilodericio de Soleria + + M + + + + Attolinus + quondam Symonis de Soleria + + M + sacri palatii notarius + attestato nel 1197 + + + + Audixia + uxor Vivaldeti + + F + + + + Augustinus / Agustinus + + M + + + + Augustinus / Agustinus + de loco dicto Peretolo filius quondam Guilicionis + + M + + + + Augustinus / Agustinus + quondam Martinelli + + M + + + + Augustinus / Agustinus + Termeselli / Tremecellus + + M + + + + Augustus + + M + correrius + + + + Avitellus + quondam Bonaiuti + + M + + + + Avitus + de Sancto Vitali + + M + castaldus curie marchionis Sardi + + + + Azoansaldus + + M + + + + + + + Badinus + + M + + + + Baisa Casium + + M + + + + Balzanus + Bottacungo + + M + dominus de Falcinello + + + + Balzanus + de castro Sarzani + + M + + + + Baldancia + + M + canonicus Lunensis, cantor + + + + Baldancia + de Torano quondam Micheleti / quondam Michilleti + + M + + + + Baldicio + de Ponzanello + + M + + + + Baldiçonus filius Mandriani de castro Sarzane + + M + + + + Baldinellus + + M + + + + Baldinellus + + M + castaldus + + + + Baldinellus + de Amelia + + M + + + + Baldinetus + + M + + + + Baldinotus + + M + notarius + attetstato nel 1269 + + + + Baldinotus + Caldovillanus / Caldovillanus de Porticu civitatis Lucane + + M + imperii Romanorum iudex, notarius provincie Lunisiane, scriba + episcopi + Attestato nel 1269. + + + + Baldinotus + de Moneta + + M + consiliarius Carrarie + + + + Baldinotus + de Pulica + + M + operarius de curte Sarzane + + + + Balditio + + M + + + + Balditio + de Colle + + M + + + + Baldoinus + quondam Guilielmi + + M + + + + Baldoinus / Balduinus + + M + + + + Baldoinus / Balduinus + filius Facii + + M + + + + Baldolinus / Baldulinus + + M + + + + Balianus + + M + + + + Ballionus + filius Gibertini Coalimi + + M + + + + Balognanus + + M + + + + Balzanus + + M + + + + Balzanus + de Sarzana + + M + + + + Bambetus + + M + + + + Bambolus + + M + + + + Bandinetus + de Castro Sarzane + + M + + + + Bandinetus + quondam Guilielmi + + M + consiliarius castri Sarzane + + + + Bandinetus + quondam Guilielmi Rubei + + M + + + + Bandinus / Bamdinus + + M + + + + Bandinus / Bamdinus + Crassus de Pisis + + M + + + + Bandinus / Bamdinus + de Torgnano + + M + + + + Banicus + + M + + + + Bardellinus + de Viano + + M + + + + Bardiranus + de Cornilione + + M + + + + Barellus + de Aciliano + + M + + + + Barletus + de Sarzana + + M + + + + Baroccus + + M + + + + Baroncellus + quondam Nobelini + + M + + + + Barosellus / Barotellus + + M + + + + Bartholomeus + + M + notarius + attivo sotto il vescovo di Luni Pipino + + + + Bartholomeus + + M + presbiter, monacus + + + + Barus + + M + + + + Bastardus + quondam Guilielmi + + M + + + + Bastardus + quondam Guilielmi Blanci + + M + + + + Bastardus + de Cignano + + M + + + + Bastardus + de Valentino + + M + + + + Bastardus + de Veçano + + M + + + + Baudeçonus + + M + + + + Bazuchus + + M + + + + Beatrix + de Barbazano + + F + domina + + + + Beatrix + quondam Martini + + F + + + + Becatus + + M + + + + Beccus + + M + + + + Becotus + + M + + + + Befulketus + + M + + + + Begolus + + M + + + + Beivinum + + M + + + + Belerçus + + F + + + + Beliana + + F + + + + Bella + de Balognano + + F + + + + Bella + de Colle + + F + + + + Bella + de la Serra + + F + + + + Bellacrosa + + F + + + + Bellandellus + + M + + + + Bellandinus + filius quondam Cyceris de Magnano + + M + + + + Bellandus + + M + + + + Bellandus + quondam Vitalis escarii + + M + operarius de curte Sarzane + + + + Bellaserra + + F + + + + Bellenzonus + + M + + + + Belleronus + + M + magister + + + + Belletus + + M + + + + Bellinus + + M + clericus + + + + Bellomus + + M + + + + Bellomus + Cyte + + M + + + + Bellomus + quondam Pastenelli + + M + + + + Bellomus + de Torano + + M + + + + Bellomus + Tosabechi + + M + + + + Bellone + Codesorbolo + + M + + + + Bellonus / Bellon + + M + + + + Bellonus / Bellon + + M + consiliarius Carrarie + + + + Bellonus / Bellon + + M + sacri palacii notarius + attestato in un autentica non datata + + + + Bellonus / Bellon + de Abate + + M + + + + Bellonus / Bellon + Belleti + + M + + + + Bellonus / Bellon + Betus + + M + + + + Bellonus / Bellon + de Columpnata + + M + + + + Bellonus / Bellon + de Helena + + M + + + + Bellonus / Bellon + quondam Guicciardi de Gragnana de Carraria + + M + + + + Bellonus / Bellon + filius Guilielmi + + M + + + + Bellonus / Bellon + de Lara + + M + + + + Bellonus / Bellon + de Lato + + M + + + + Bellonus / Bellon + de Valle Stephani + + M + + + + Bellosa + + F + + + + Bellosus + + M + + + + Bellotus + + M + + + + Bellotus + de Aciliano + + M + + + + Bellucius / Bellutius + + M + + + + Bellucius / Bellutius + + M + consiliarius comunis de Ponzanello + + + + Bellucius / Bellutius + de Moneta + + M + + + + Bellucius / Bellutius + de Stabuo + + M + + + + Bellus + + M + + + + Belmese + quondam Girardini de Castilione de Varese + + F + + + + Benarellus + + M + consiliarius Carrarie + + + + Benedellus + + M + + + + Benedictus + + M + abbas de Avula + + + + Benedictus + + M + domnus + + + + Benedictus + + M + domnus, monacus monasterii de Capparana + + + + Benedictus + quondam Bono de Ponçano + + M + + + + Benedictus + de Monte Bello + + M + notarius + attestato nel 1236 + + + + Benedictus + de Toreclo + + M + + + + Benencasa + de Area + + M + + + + Benencasa + quondam Boneti de Ara + + M + consul de Micoarra + + + + Benencasa + <quondam Rodulfini de Vico> + + F + + + + Benesia + + M + + + + Benesia + + M + consiliarius de Ortonovo + + + + Benesia + quondam Benencase + + M + + + + Benesia + dictus Maccangnano + + M + consiliarius de Ortonovo + + + + Benesia + de Sorgnano + + M + + + + Benesia + quondam Ugolini + + M + + + + Benesia + de Vechio + + M + consiliarius de Ortonovo + + + + Benetinus + + M + ioculator + + + + Benevenus + quondam Castellani + + M + + + + Benfatta + + F + + + + Bennatus + + M + magister, archipresbiter de Marnasco + + + + Bennatus + de Spedizano + + M + mariscalcus + + + + Bennatus + de Spuliçano / de Speluçano de Garfagnanoa + + M + + + + Bentevegna / Bentevenia + + M + + + + Bentevegna / Bentevenia + de Sancto Stephano + + M + archipresbiter + + + + Bentevegna / Bentevenia + de Lacanova + + M + + + + Bentevegna / Bentevenia + de Lutignana + + M + + + + Benvenuta + <filia quondam Castellani> + + F + + + + Benvenutus + + M + + + + Benvenutus + + M + clericus Sancti Vitalis + + + + Benvenutus + + M + domini Ottonis quarti Romanorum imperatoris + notarius + attestato dal 1214 al 1226 + + + + Benvenutus + + M + notarius sacri palacii + attestato nel 1229 + + + + Benvenutus + quondam Beloti de Iuccano + + M + + + + Benvenutus + quondam Borgheri + + M + + + + Benvenutus + quondam Bonfilioli de Soleria de Luna + + M + calzolarius + + + + Benvenutus + de Codano + + M + consiliarius Carrarie + + + + Benvenutus + de Pectenato + + M + + + + Benvenutus + de Oliveto + + M + + + + Benvenutus + de Rainerio + + M + + + + Benvenutus + de Stazone + + M + + + + Benvenutus + de Turolo + + M + + + + Benzus + + M + + + + Beraimus + + M + + + + Berardus + + M + notarius sacri palacii, notarius et iudex sacri + palacii + attivo nel 998 + + + + Bercalitius + + M + + + + Berizus + + M + + + + Bernabos + filius quondam domini Opiçoni marchionis Malaspine / marchio + Malaspina + + M + marchio + Bernabò Malaspina, marchese, figlio del capostipite dello Spino Fiorito + Opizzino, è attestato dal 1247 (Annali + Placentini Gibellini, p. 495) all'agosto 1264 (ASFi DM, n. 190). Il Codice Pelavicino conserva un + estratto del suo testamento dell'8 settembre 1265, redatto quasi certamente in prossimità della morte, + certamente già avvenuta nel 1267 (ASFi + DM, n. 207). + + + + Bernardinus + + M + + + + Bernardinus + + M + consul + + + + Bernardinus + de Castro Sarzane + + M + + + + Bernardinus + de Fornoro + + M + + + + Bernardinus + de Gragnano + + M + + + + Bernardinus + filius Guidonis de Herberia + + M + + + + Bernarduccius + filius Maineti + + M + + + + Bernarduccius + de Sarzana + + M + + + + Bernardus + + M + + + + Bernardus + + M + massarius + + + + Bernardus + + M + notarius, iudex sacri palacii + attivo nel 1021 + + + + Bernardus + + M + imperialis aule notarius + attivo in un autentica non datata ma riconducibile alla prima metà del XIII + secolo + + + + Bernardus + quondam domini Bertoldi de Dallo + + M + + + + Bernardus + de la Cala + + M + + + + Bernardus + quondam Guiscardelli + + M + + + + Bernardus + de Lucio + + M + + + + Bernardus + quondam Moregnoli + + M + operarius de curte Sarzane + + + + Bernardus + + M + mulinarius + + + + Bernardus + quondam Rafanini + + M + operarius de curte Sarzane + + + + Bernardus + quondam Rollandini + + M + + + + Bernardus + de Summo Vico + + M + + + + Bernardus + de Tedisio + + M + + + + Bernardus + de Vallecla + + M + + + + Bernaçonus + + M + + + + Bernaçonus + filii Guilielmini Pilloti + + M + + + + Bernerius + de Verricula + + M + notarius sacri palacii + attivo nel 1265 + + + + Bernutius + + M + + + + Berra + de Tavola + + M + + + + Berta + + F + + + + Berta + Grassa + + F + + + + Bertola + + F + + + + Bertoldus + + M + marchio Istrie + Bertoldo IV d'Andechs, conte di Andechs, primo duca di Merania e marchese + d'Istria (dal 1175). Muore nel 1204. Si veda scheda di Heinrich Appelt su Neue Deutsche + Biographie , Band 2 (1955). + + + + Bertolotus + + M + + + + Bertolotus + Gilii + + M + dominus, iudex vicarii province Lunisiane + + + + Bertolotus + quondam Oliverii + + M + + + + Bertolus + + M + canonicus Lunensis + + + + Bertramus + + M + presbiter de Sancto Mauricio + + + + Bertucia + + M + + + + Bettus + Betti filii ser Castilionis quondam Betti de Correlia + + M + publicus imperiali autoritate notarius + attivo nel 1346 + + + + Biatella + + + + + Biliolus + olim Bremonis + + M + + + + Billa + filia quondam Galosnini + + F + + + + Binamonte + quondam Attolini de Sischia + + M + + + + Bisanus + + M + + + + Bius + + M + + + + Blanci + de Herberia + + M + + + + Blancus + + M + + + + Blancus + quondam Belloni de Codesorbo + + M + + + + Blancus + de Flumine + + M + + + + Blancus + de Posa + + M + + + + Blancus + quondam Sabrini + + M + + + + Blancus + quondam Ugolini + + M + + + + Blasius + quondam Viviani de Soleria + + M + + + + Blonda + quondam Giberti + + F + + + + Boccadecanis + quondam Codargollii de castro Sarzane + + M + + + + Boiccaccius + de Falcinello + + M + + + + Bolanetus + de Cuna + + M + + + + Bolanetus + de la Cobia + + M + + + + Boldroncinus + de burgo Sancti Stephani + + M + + + + Boldroncinus + de burgo Sarzane + + M + + + + Bolgarinus + de Guerceto + + M + + + + BonaGuidonis + quondam Guidonis + + F + + + + Bona + quondam Martini + + F + + + + Bona + de Serra + + F + + + + Bonabroca + + M + notarius sacri palacii + attivo dal novembre 1120 (Archivio di Stato di Lucca, Diplomatico S. + Frediano) al 1160 (n. 479-DXVI) + + + + Bonacaptus / Bonacattus + + M + + + + Bonacaptus + de Brasile + + M + + + + Bonacaptus + de castro Sarzane + + M + + + + Bonacaptus + filius Girardetti de castro Sarzane + + M + notarius + attivo nel 1269 + + + + Bonacaptus + quondam Girardi de Braisile + + M + + + + + Bonaccoltus + quondam Benvenuti + + M + + + + Bonacursellus + quondam Bendicase de Sarzana + + M + + + + Bonacursetus + filius Bonfancelli + + M + + + + Bonacursus + + M + + + + Bonacursus + + M + castaldus + + + + Bonacursus + + M + notarius sacri palacii + attivo dal 1243 al 1260 + + + + Bonacursus + + M + domini Frederici serenissimi Romanorum imperatoris + notarius + attivo nel 1273 + + + + Bonacursus + + M + notarius, sacri palacii notarius + attestato nel 1235 fino al 1241 + + + + Bonacursus + + M + sacri palacii notarius + attestato nel 1214 + + + + Bonacursus + filius Albertini de Nobelino + + M + + + + Bonacursus + quondam Alcarini + + M + + + + Bonacursus + filius Aldebrandi vicedomini + + M + + + + Bonacursus + de Arenano + + M + + + + Bonacursus + de Biduçano + + M + + + + Bonacursus + quondam Bontempi de Veçale + + M + notarius + attivo nel 1260 + + + + Bonacursus + de Buiano + + M + + + + Bonacursus + quondam Burgensis + + m + sindicus generalis de Nicola + + + + Bonacursus + quondam Carandi + + M + + + + Bonacursus + de Carrara + + M + + + + Bonacursus + de Factore + + M + + + + Bonacursus + de Ficola + + M + + + + Bonacursus + Fosse / Folle + + M + + + + Bonacursus + quondam Guilielmini de Germagnano + + M + + + + Bonacursus + quondam Guilielmini de la Padule + + M + + + + Bonacursus + de Lanigra + + M + + + + Bonacursus + quondam Levacastelli de Buçano + + M + + + + Bonacursus + quondam Longi de Avencia + + M + + + + Bonacursus + quondam Martini de Losio + + M + + + + Bonacursus + de Marzasio + + M + + + + Bonacursus + Muculi + + M + + + + + Bonacursus + de la Padule + + M + + + + Bonacursus + filius Petri notarii de castro Sarzane / filio Petri quondam Gentis de + castro Sarzane + + M + notarius sacri palacii + attivo nel 1283 + + + + Bonacursus + quondam Rollandini de Yliolo + + M + + + + Bonacursus + + M + scario + + + + Bonacursus + Tascacinta + + M + + + + Bonacursus + de Veçale + + M + + + + Bonacursus + quondam Vitalis + + M + molendinarius + + + + Bonacursus + quondam Vivelli + + M + + + + Bonafemina + + F + + + + Bonafemina + filia quondam Amati + + F + + + + Bonafesta + + M + + + + Bonafesta + de Debia + + M + + + + Bonafesta + quondam Durantis + + M + + + + Bonafesta + quondam Pellini de Marola + + M + + + + Bonafesta + de Ponzanello + + M + + + + Bonafesta + de castro Sarzane + + M + + + + Bonafides / Bonafe + + M + + + + Bonafides / Bonafe + de Castronovo quondam Aldebertini + + M + + + + Bonafides / Bonafe + quondam Buce + + M + + + + Bonafides / Bonafe + de Donna quondam Aldebertini + + M + + + + Bonafides / Bonafe + de Fonti + + M + + + + Bonafides / Bonafe + de Lasoro + + M + + + + Bonafides / Bonafe + quondam Molinarii de Posticio + + M + + + + Bonafides / Bonafe + quondam Molinarii de Monteçanne + + M + + + + Bonafides / Bonafe + dictus Pappaciçia de Castronovo + + M + + + + Bonagratia + quondam Thedeschi + + M + + + + Bonaiuncta + + M + + + + Bonaiuncta + + M + archipresbiter Lunensis, canonicus Lunensis + + + + Bonaiuncta + + M + presbiter de castro Sarzane + + + + Bonaiuncta + filius quondam Bonaiuti de Sarzana + + M + auctoritate imperiali notarius + attivo nel 1262 + + + + Bonaiuncta + quondam Bonosi de Germagnano + + M + + + + Bonaiuncta + de Cervarolo + + M + + + + Bonaiuncta + quondam Ferrucci + + M + + + + Bonaiuncta + quondam Iuvenelli + + M + + + + Bonaiuncta + de Luna + + M + + + + Bonaiuncta + quondam Machagnagni + + M + + + + Bonaiuncta + de Monti + + M + diaconus + + + + Bonaiuncta + dicto Pesticio / Pisticio / Pesticio de Luca + + M + + + + Bonaiuncta + de Podio de Luca + + M + iudex, dominus + attestato dal 1270 al 1272 + + + + Bonaiuncta + de Puleca + + M + consul de Puleca + + + + Binaiuncta + de Sorgnano + + M + consiliarius Carrarie + + + + Binaiuncta + de Summo Fonti + + M + + + + Bonaiuncta + quondam Tancredi + + M + + + + Bonaiuncta + quondam Ubertini + + M + + + + Bonaiuncta + quondam Veçii de Veçale + + M + + + + Bonaiutus + + M + + + + Bonaiutus + filius Bonfilioli de Sorgnano + + M + + + + Bonaiutus + de Camtellino + + M + + + + Bonaiutus + de Ciçerano + + M + + + + Bonaiutus + Maiesta + + M + + + + Bonaiutus + de Miselia + + + + + Bonaiutus + de Barbaçano quondam Paganelli + + M + + + + Bonaiutus + de Castillione de Varese quondam Porcarii + + M + + + + Bonalbergus + + M + + + + Bonalbergus + + M + castaldus episcopi + + + + Bonalbergus + + M + consul Carrarie + + + + Bonalbergus + + M + iudex + attestato nel 1217 + + + + Bonalbergus + + M + notarius + attestato nel 1235 + + + + Bonalbergus + + M + iudex ordinarius et notarius domini Ottonis + imperatoris + attivo nel 1215 + + + + Bonalbergus + filium quondam Gerardoni de castro Sarzane + + M + notarius + attivo prima del 1279 + + + + + Bonalbergus + quondam Alberti + + M + + + + Bonalbergus + filius Bonaiuncte + + M + + + + Bonalbergus + quondam Calderone + + M + + + + Bonalbergus + quondam Iohannis de Torano, de Carraria + + M + notarius + attestato dal 1263 al 1273. + + + + Bonalbergus + de Carraria + + M + domini Frederici invictissimi Romanorum imperatoris + notarius + attestato dal 1253 al 1255, padre di Tadeus de Carraria, apostolice + sedis auctoritate notarius + + + + Bonalbergus + de la Cobia + + M + + + + + Bonalbergus + de monte Xanne + + M + + + + + Bonalbergus + quondam Ogerini + + M + + + + Bonalbergus + de Prato + + M + + + + Bonalbergus + de Sancto Stephano + + M + + + + Bonamicus + de Cannovo + + M + + + + Bonamicus + de Covaclo + + M + + + + Bonandinus + + M + + + + Bonandinus + de Castello + + M + + + + Bonandus + de Butracanca + + M + + + + Bonannus + + M + consiliarius Carrarie + + + + Bonaora + de Veçale + + M + + + + Bonaparte + de Sarzana + + M + notarius + attivo nel 1269 + + + + Bonaparte + + M + presbiter + + + + Bonaparte + quondam Bonafidei + + M + + + + Bonaparte + de Ponchano + + M + correrius + + + + Bonardellus + + M + + + + Bonardinus + quondam Albertini de Arcula + + M + + + + Bonattus + de Capanna quondam Duranti + + M + + + + Bonaventura + + M + + + + Bonaventura + + M + notarius + presente in autentiche non datate + + + + Bonaventura + + M + vicarius Lucani episcopi, plebanus de Cropale + presente in autentiche non datate + + + + Bonaventura + de Iovello + + M + + + + Bonaventura + Luchese + + M + + + + Bonaventura + de Monte + + M + + + + Bonaventura + quondam Occletti + + M + + + + Bonaventura + quondam Ogerini + + M + + + + Bonaventura + de Roasia + + M + + + + Bonaventura + de la Treguana de Carcandula + + M + + + + Bonaventura + quondam Ubaldini de Felecta + + M + + + + + Bonavere + + M + + + + Bonavere + + M + consiliarius Carrarie + + + + Bonavere + quondam Aimeline de Castronovo + + M + + + + Bonavere + quondam Benencase + + M + + + + Bonavere + quondam Bonfilieti + + M + + + + Bonavere + quondam Cepelli + + M + consul de Marola + + + + Bonavere + quondam Grimandi + + M + + + + Bonavere + quondam Macognani + + M + operarius de curte Sarzane + + + + Bonavere + de Portasione + + M + + + + Bonavere + de castro Sarzane + + M + + + + Bonavia + quondam Dominici de Montedarmo + + M + operarius de curte Sarzane + + + + Bonavia + de Serra + + M + + + + Bonavita + + M + + + + Bonavita + + M + consiliarius Carrarie + + + + Bonavita + + M + presbiter, rector de Ponzanello + + + + Bonavita + de Balognano, filio quondam Iohannis + + M + + + + Bonavita + quondam Guidonis + + M + + + + Bonavita + quondam Guilielmi Tancredi / quondam Guilielmini de Tancredo + + M + + + + Bonburgensis + quondam Mançeti filius + + M + + + + Boncadosa + + F + + + + Bonconsellus + + M + + + + Bondeccia + de burgo Sarzane + + M + + + + Bondies + + M + castaldus + + + + Bondies + quondam Alberti de Factore + + M + + + + Bondies + quondam Charistoli de castro Sarzane + + M + + + + Bondies + de Cirisolo + + M + + + + Bondies + de Ciserano + + M + + + + Bondies + de Orbagnano + + + + + Bondies + Petorialis + + M + + + + Bondies + filius domini Rubei de burgo Sarzane + + M + iudex de Sarzana, sacri palacii notarius, iudex + ordinarius + attestato dal 1275 al 1283 + + + + Bonifacius + de Ardano + + M + + + + Bonifacius + de Castello Novo + + M + + + + Bonefacte + de Paterno + + F + + + + Bonellus + + M + + + + Bonencasa + + M + + + + Bonencasa + de Ara + + M + + + + Bonencontrinus + + M + + + + Bonencontrus + + M + + + + Bonencontrus + + M + magister + + + + Bonencontrus + + M + senescalcus + + + + Bonencontrus + quondam Bosonis de Montevallese + + M + + + + Bonencontrus + de Miselia + + M + consiliarius Carrarie + + + + Bonencontrus + Ottoboni + + M + operarius de curte Sarzane + + + + Bonencontrus + de Sarzana + + M + + + + Bonencontrus + quondam Sarzanelli + + M + operarius de curte Sarzane + + + + Bonencontrus + de Soleria + + M + imperialis aule notarius, sacri palacii notarius + attivo dal 1219 al 1237 + + + + Bonensegna + + M + consiliarius comunis de Ponçanello + + + + Bonensegna + de Cruce + + + + + Bonensegna + de Porreto + + M + + + + Bonensegna + de Quaragiota + + M + + + + Bonensegna + quondam Rainerii de Cortiola + + M + operarius de curte Sarzane + + + + Bonensegna + quondam Venutelli + + M + + + + Bonensegna + de Villiano + + M + + + + Bonetellus + + M + + + + Bonezetus + + M + + + + Bonfancellus / Bonusfancellus + + M + + + + Bonfancellus + + M + consiliarius Carrarie + + + + Bonfancellus + quondam Bernoli de Yliolo + + M + + + + Bonfancellus + quondam Pagani + + M + + + + Bonfante + de Amelia + + M + + + + Bonfante + quondam Martini + + M + + + + Bonfante + de Plazio + + M + + + + Bonfiletus + + M + + + + Bonfiletus + quondam Bonencase + + M + consiliarius comunis de Ponçanello + + + + Bonfiletus + de Iovello + + M + + + + Bonfiletus + de Ponzanello + + M + + + + Bonfiletus + quondam Ubertini de Boccognano + + M + + + + Bonfiliolus + + M + + + + Bonfiliolus + de Cornilione + + M + + + + Bonfiliolus + quondam Messerendi / quondam Messerandi de Apiola + + M + + + + Bonfiliolus + de Molino + + M + + + + Bonfiliolus + Uberti + + M + + + + Bonfiliolus + filius Uberti de Soleria + + M + + + + Bonfiliolus + de Veciale + + M + + + + Bonfilius + + M + archipresbiter Lunensis + + + + Bonfilius + + M + archipresbiter de Soleria + + + + Bonfilius + de Acola + + M + + + + Bonfilius + de Cervaria + + M + + + + Bonfilius + de Cruce + + + + + Bonfilius + de Morechello + + + + + Bonfivilla + + F + + + + Bonguido + + M + + + + Bonzannis / Boniannis + de Lune + + M + + + + Bonicinus + + M + + + + Bonifacius + + M + canonicus Lunensis + + + + Bonifacius + Gottoni + + M + iudex + + + + Bonifacius + de Herberia + + M + + + + Boniohannis + + M + + + + Boniornus + de Luca + + M + + + + Boniovannus + + M + + + + Bonissima + de Capagnana + + F + + + + Bonicus + de Mezana + + M + + + + Bonizo / Bonicio / Boniço / Boneço + + M + + + + Bonizo / Bonicio / Boniço / Boneço + + M + massarius + + + + Bonizo / Bonicio / Boniço / Boneço + filius quondam Eldeberti + + M + + + + Bonizo / Bonicio / Boniço / Boneço + de Furno + + M + + + + Bonizo / Bonicio / Boniço / Boneço + filius quondam Martini + + M + presbiter + + + + Bonizo / Bonicio / Boniço / Boneço + de Moneta + + M + + + + Bonomus / Bonommo / Bonomo + + M + + + + Bonomus / Bonommo / Bonomo + Antognolo / de Antognolo + + M + + + + Bonomus / Bonommo / Bonomo + de plebe Carrarie + + M + calzolarius + + + + Bonomus / Bonommo / Bonomo + de Occara + + M + + + + Bonomus / Bonommo / Bonomo + de Fontana + + M + + + + Bonomus / Bonommo / Bonomo + de Nichola + + M + + + + Bonone + + M + + + + Bonora + + M + + + + Bonsegnus / Bonsignus + quondam Gerardini de Bonfante + + M + operarius de curte Sarzane + + + + Bonsegnus / Bonsignus + quondam Annoboni + + M + + + + Bonsenior / Bonsengnore + + M + + + + Bonsenior / Bonsengnore + filius Bonaiuncte + + M + + + + Bonsenior / Bonsengnore + de Via + + M + + + + Bontempus + frater Bonacursi de Veçale + + M + + + + Bontempus + de Veçale + + M + + + + Bonus + + M + + + + Bonus + + M + prior sancti Fridiani + + + + Bonus + quondam Minoeti + + M + + + + Bonus + de Montexello + + M + + + + Bonus + de Sorgnano + + M + + + + Bondies + de Plaça + + M + + + + Bonusfilius / Bonusfiliolus + + M + + + + Bonusfilius / Bonusfiliolus + Ninnolus + + M + + + + Bonusinfans + + M + + + + Bonusiohannes + + M + + + + Bonusiohannes + de Montale + + M + + + + Bonussenior + + M + + + + Bonuzolus + + M + + + + Bonvalligus + de donno Nobilino + + M + + + + Bonvicinus + de Alamanno + + M + + + + Bonvicinus + + M + discipulus Conforti notarii + + + + Bonvicinus + quondam Bellandi de Monteçangni + + M + + + + Bonvicinus + filio Bonvicini + + M + + + + Bonvicinus + filius Calderoni de Castronovo + + M + + + + Bonvillanus / Bonusvillanus + + M + + + + Bonvillanus / Bonusvillanus + quondam Acursi, dicti Pape + + M + + + + Bonvillanus / Bonusvillanus + quondam Anniboni + + M + + + + Bordanus + de Bolano + + M + + + + Bordanus + de Quaroçola + + M + + + + Borgensis / Burgensis / Borgesius + + M + + + + Borgensis / Burgensis / Borgesius + quondam Bellotti + + M + consul de Micoarra + + + + Borgensis / Burgensis / Borgesius + de Capagnano + + M + consul de Micoarra + + + + Borgensis / Burgensis / Borgesius + de Nichola + + + + + Borgensis / Burgensis + de Pulica + + M + operarius de curte Sarzane + + + + Borgensis / Burgensis / Borgesius + de castro Sarzane + + M + + + + Borgese + uxor quondam Amati + + F + consiliarius castri Sarzane + + + + Borgesellus + + M + imperiali auctoritate notarius + attestato nel 1279; forse da identificare con il notaio Borgesetus de + Sarzana + + + + Borgesetus + quondam Manceti + + M + + + + Borgesetus + quondam Hubertini + + M + consiliarius castri Sarzane + + + + Borgesetus + de Sarzana + + M + notarius + attestato nel 1269; forse da identificare col notaio Borgesellus + + + + Borgetus + + M + + + + Borlengus + de Falcinello + + M + consul de Falcinello + + + + Borrelus + filius Ugonis + + M + + + + Borthesella + + F + + + + Boso + + M + + + + Boso + + M + archipresbiter de Amelia + + + + Boso + de Castello Novo + + M + + + + Boso + quondam Cicoli de Colle + + M + + + + Boso + quondam Gerardi de Casine + + M + + + + Boso + de Ortonovo + + M + + + + Boso + de la Torsella + + M + + + + Boso + de Viano + + M + + + + Boso + de Ugeto + + M + + + + Boso + filius Ugolini + + M + + + + Bosulinus / Bosulinus / Bosolinus + + M + + + + Botellus + + M + + + + Botrigellus + quondam Fantinelli de Monçolono + + M + operarius de curte Sarzane + + + + Botrigellus + de Gragnana + + M + + + + Bottaccius + filio Gerardi de Falcinello + + M + + + + Bottacungi + + M + Nome collettivo derivato probabilmente da Bottaccio, padre di Carbone, del + doc. 151. + + + + Bovesia + de Furno + + M + + + + Bozano + de + + M + domini + nome collettivo + + + + Boçarellus + + M + + + + Bozus + quondam Raimundini Marchodoro + + M + + + + Branchetus + + M + + + + Brendellus + + M + + + + Brescianus + quondam Iacopini, frater Agnesie + + F + + + + Bricaldus + + M + + + + Brictius + + M + + + + Brisiolus + de Ara + + + + + Bruna + + F + + + + Bruna + quondam Fortini + + F + + + + Bruna + quondam Venuti de Panicali et filia Belle de la Serra + + F + + + + Brunetus + + M + + + + Brunetus + de Monte + + M + + + + Bruniconus + + + + + Bruniconus + quondam Gerardini Labromeci + + + + + Brunus + + M + + + + Bucadecanis + + M + + + + Buconcus + + M + + + + Buiardus + quondam Gerardini de castro Sarzane + + M + + + + Buiardus + quondam Gerardini de Bonfante + + M + operarius de curte Sarzane + + + + Bulgarinus + de Sarzana + + M + + + + Bullionus / Bullione + + M + + + + Bullionus / Bullione + filio Rugerini de Sarzano + + M + + + + Bullionus / Bullione + de Sarzana + + M + + + + Burdonis + de Sarzana quondam Prefecti de Campiza + + M + + + + Burgisius + de Capagnano + + M + + + + Burgo + + M + iudex + + + + Burgundius + Malabura + + M + + + + Burnengi + de Cazano + + + + + Bursinus + + M + + + + Buscalinus + + M + + + + Buscallanus + + M + + + + Busimannus + + M + + + + Bussetus + quondam Martini de Tilia + + M + + + + Bussus + de Balognano + + M + + + + Buttafava + + M + + + + Buttafava + + M + episcopus Lunensis + Buttafava, vescovo di Luni. Forse già canonico lunense - dato che troviamo + un Buttafava in quel ruolo il 31 marzo + del 1206 - è attestato la prima volta il 14 luglio 1224 e l’ultima il 31 gennaio 1226. + + + + Buttafava + de Arcula + + M + + + + Buttafava + nepos domini Saladini + + M + + + + Butarellus + + M + + + + Buterus + + M + + + + Butrigellus + + M + + + + Buxus + filius quondam Tipi + + M + + + + + Cacciaguerra / Cacia Werra + + M + + + + Cacciaguerra + quondam Rollandini + + M + + + + Caccius + + M + + + + Caçialeta + + M + + + + Cafadiolus + + M + + + + Çafferrus + + M + + + + Cagnola + quondam Boccadecanis + + M + + + + Cagnolus + + M + + + + Cagonus + de Collecchio + + M + + + + Calandrinus + quondam Pagani de Brina + + M + + + + Calderolus + + M + + + + Calandronus + + M + + + + Calderonus + de Castronovo + + M + + + + Calderonus + de Marçano + + M + + + + Calvinus + + M + + + + Calvinus + + M + castaldus domini Lambertucii de Illano Pontis + + + + Calvucius / Calvutius + + M + + + + Campus + + M + + + + Cancellerius / Cancellarius + + M + + + + Cancellerius / Cancellarius + Mercadus de donna Roasia + + M + + + + Cancellinus + de Falcinello + + M + + + + Cancius + + M + + + + Cancius / Cançus + quondam Paganni / de Castronovo quondam Pagani + + M + + + + Canetus + + M + + + + Canorus + + M + canonicus Lunensis + + + + Cantillina + + F + domina de Falcinello + + + + Zapironellus + qui prenominatur Pirolus, quondam Actocanini de Masio + + M + + + + Carabona + + MF + + + + Caracosa + + F + + + + Caraita + + F + + + + Carandus + + M + + + + Caravita + + M + + + + Caravita + quondam Bonaçunte Parteconi + + M + + + + Carbo / Carbonus + + M + + + + Carbo / Carbonus + + M + massarius + + + + Carbo / Carbonus + de Falcinello /quondam Bottaccii + + M + dominus de Falcinello + + + + + Carbuncellus + + M + + + + Carentionus + + M + + + + Carenutus + + M + + + + Caretus + filius Bernardi + + M + + + + Carinbonus + Gerardini quondam Burnengii de Cazano + + M + + + + Carlaxarius + + M + + + + Carlinus + + M + + + + Carrarese + + F + + + + Carrerius + + M + + + + Carcedonius + + M + iudex de Vallecla + + + + Carus Amicus + + M + notarius sacri palacii + attestato dal 1075 al 1084 + + + + Carus + Vassallus + + M + + + + Casalinus + + M + + + + Casavetranus + quondam Martinelli de Casavetri + + M + + + + Casolinus + + M + + + + Castagnola / Castangnola + + F + + + + Castagnola / Castangnola + de Castronovo + + F + + + + Castagnolus + + M + + + + Castagnolus + de Summo Tranci quondam Talamelli + + M + + + + Castaldus + de Ficola + + M + + + + + Castellana + filia quondam Fancelli + + F + + + + Castellanus + + M + + + + Castellanus + quondam Gerardini de Veiano + + M + + + + Castellanus + de Monti + + M + operarius de curte Sarzane + + + + Castilio + de Castilione + + M + + + + Castilio + quondam Bondineti de castro Sarzane + + M + + + + Catenacius / Catenatius + + F + + + + Catia + Regis + + F + domina de Bozano + + + + Caudasius + qui prenominatur Albertus, quondam Actocanini de Masio + + M + + + + Cavallinus + + M + correrius, publicus nuntius + + + + Cecius + + M + + + + Çenepria / Zenepria + + F + + + + Çente / Zente + gener Iohannini de Agina + + M + + + + Ceredanus + + M + presbiter + + + + Cereolus + + M + cocus + + + + Ceretus + de Tendola + + M + + + + Cerrus + de Balano + + M + + + + Çica + + F + + + + Cichignolus + + M + + + + Cichinellus / Çikinellus + + M + + + + Cicolinus / Çicolinus + + M + + + + Cicolinus + filius quondam Tipi + + M + + + + Cicolus / Çicolus + + M + + + + Cicolinus / Çicolinus + de Cannebiano + + M + + + + Cicolus / Çicolus + de Conano + + M + + + + Ciconus + de Vallecla + + M + + + + Cita + quondam Compagni + + + + + Citellus + + M + + + + Citellus + <filius Ubaldini de Nichola> + + M + + + + Citus / Çitus + + M + + + + Citus / Çitus + + M + consiliarius Carrarie + + + + Citus / Çitus + de Campagnano + + M + + + + Clericus + + M + + + + Cobolus / Çobolus + + M + + + + Codargogius + quondam Biancheti + + M + consul castri Sarzane + + + + Codorgollius / Codorgollius / Codorgollus + + M + + + + Codorgollius / Codorgollius / Codorgollus + de castro Sarzane + + M + castaldus de Supra Luna + + + + Codevilla + + M + + + + Colin... + + M + + + + Collis + de Brusco + + M + + + + Çolombardo + + M + archiprebiter de Amelia + + + + Comes + + M + notarius + attestato nel 1234 + + + + Compagnola + quondam Compagni, uxor Valentini quondam Favalini + + F + + + + Compagnolus + + M + + + + Compagnonus + + M + consiliarius de Ponzanello + + + + Compagnonus + de Bertoloto + + M + operarius de curte Sarzane + + + + Compagnonus + de Lano + + M + + + + Compagnonus + Magistri + + M + + + + Compagnonus + de Malliola + + M + + + + Compangnonus + de Provinchale + + M + + + + Compagnus + + M + + + + Compagnus + + M + operarius de curte Sarzane + + + + Compagnus + de Favale + + M + + + + Conagettinus + + M + + + + Conettus / Conetus + + M + + + + Conettus / Conetus + de Casalechio + + M + sacri palacii notarius + + + + Confalonerius + + M + sacri palacii notarius + attestato nel 1231 + + + + Confortinus + Deteaide + + M + + + + Confortus + + M + + + + Confortus + + M + notarius, sacri palatii et Lunensis curie notarius, sacri + palatii iudex et notarius + attestato dal 1195 al 1212 (forse 1223) + + + + Confortus + de Cepparana + + M + notarius + attestato nel 1237 + + + + Confortus + de Fosdenova + + M + notarius + attestato nel 1230 + + + + Coniator + + M + + + + Corradina + + F + + + + Corradinus + + M + notarius illustris et summi Henrici regis + attestato nel 1275 + + + + Conradus / Corradus / Curradus + + presbytero ecclesie de Serravalle + + + + Conradus / Corradus / Curradus + + presbytero ecclesie de Serravalle + + + + Conradus / Corradus / Curradus + domini Çapironi de Terrarossola + + M + + + + Conradus / Corradus / Curradus + domini Çapironi de Terrarossola + + M + dominus + forse appartenente agli Obertenghi, figlio di Palodino e nipote di Guglielmo + Saraceno + + + + Conradus / Corradus / Curradus + de Tivegna + + M + + + + Contebonus + + + + + Contiatore + de Marola + + M + syndicus et procurator communium et universitatum de Marola et de + Matrono + + + + Corbellarius + + M + + + + Corsus + + M + + + + Corsus + de Amelia + + M + + + + Corsus + de Balognano + + M + + + + Corvarinus + + + + + Cosa + quondam Cançii de Castro Novo + + M + + + + Cosone + + M + + + + Costantinus + + M + notarius domini Frederici imperatoris + attestato nel 1178 + + + + Cothanellus + + M + + + + Cottivechia + + M + + + + Çuchanus + quondam domini Saladini de Fosdenova + + M + + + + Çukinus + + M + + + + Çucketus + + M + + + + Çucus + + M + + + + Çuffettus + + M + + + + Cumçaferrus + de Marçasio + + M + magister + + + + Çunta + de Maruco + + M + + + + Cuffus + de Malunto + + M + + + + Cunimundus + filius quondam Benzoni + + M + + + + Cunimundus + de Verazano + + M + + + + Cursus + quondam Alberti + + M + consul castri Sarzane + + + + Cursus + de Donnisia de castro Sarzane + + M + + + + Cursus + de Vezano quondam Vitalis de Campola + + M + + + + Curtis + de Carnea + + M + + + + + Dainense + + M + + + + Dalfinetus + + M + + + + Dallindusius + + M + + + + Damianus + de Camua + + M + + + + Daninus + + M + calzolarius + + + + Datius + gener quondam Rodolfini + + M + + + + Datus + + M + minister hospitalis Sanctissime Crucis siti iuxta ripam et iuxta + faucem Sarni + + + + Datus + + M + rector et minister ecclesie Sancti Mauricii + + + + Datus + filius quondam Bonacursi de Limite + + M + imperialis aule notarius + attestato nel 1270 + + + + Datus + filius Conforti + + M + iurisperitus, iudex + + + + Datus + quondam Guidonis de Montedarmo + + M + + + + Davinus + + M + + + + Declara + filia Ugerini de Petro + + F + + + + Delfinellus + + M + cocus + + + + Demeldede + de Balognano + + M + + + + Diamante + + F + domina + + + + Deotisalvi / Detesalve + + M + + + + Deotisalvi / Detesalve + de Portuveneris + + M + + + + Detefe + quondam Moreschi + + M + + + + Diamante + filia quondam Guiscardelli + + F + + + + Dido + de Carame + + M + + + + Divicia + + F + + + + Divicia + quondam Martini + + F + + + + Dolceamata + quondam Guirisii de Torano + + F + + + + Dolcebonus / Dulcebonus + + M + + + + Dolcebonus / Dulcebonus + de Miselia + + M + + + + Dolcebonus / Dulcebonus + quondam Pasqualini + + M + + + + Domalfollus + de Terrarossola + + M + + + + Dominicus + + M + + + + Dominicus + + M + presbiter + + + + Dominicus + de Area + + M + + + + Dominicus + de Biduçano + + M + + + + Dominicus + de Castagnetulo + + M + + + + Dominicus + Peraboche + + M + + + + Dominicus + Peralloca + + M + + + + Dominicus + de Ponzanello + + M + + + + + Dominicus + Secatelli + + M + + + + Dominicus + de Serravalle + + M + + + + Dominicus + quondam Viviani de Functi + + M + + + + Donamenta + quondam Veçi + + F + + + + Donatus + + M + + + + Donna + + + + + Donna + de Apiola + + F + + + + Donnellus + + M + massarius + + + + Donnetola + + F + + + + Dux + + M + + + + Dundetus + de Ponzanello + + M + + + + Durans / Durantus + + M + + + + Durans / Durantus + quondam Benencase + + M + + + + Durans / Durantus + quondam Bonaiute de Castronovo + + M + + + + Durans / Durantus + quondam Bonevite + + M + + + + Durans / Durantus + de Carame + + M + + + + Durans / Durantus + de Cepparana + + M + + + + Durans / Durantus + de Colle + + M + + + + Durans / Durantus + de Fornolo + + M + + + + Durans / Durantus + quondam Guilielmi + + M + + + + Durans / Durantus + quondam Porroneti de Porreto/quondam Pontonetti de Poreto + + M + + + + Durans / Durantus + de la Ripa + + M + + + + Durans / Durantus + quondam Rubaldi de la Caneva de Petroçuca + + M + + + + Durans / Durantus + de Posticio + + M + + + + Durans / Durantus + Simonis + + M + + + + Durans / Durantus + de Testa + + M + + + + Durans + quondam Ugolini de Rofiano + + M + + + + Durans / Durantus + de Valle + + M + + + + Durans / Durantus + de Valmoro + + M + + + + Durans / Durantus + de Veçale + + M + + + + Durans / Durantus + de Vitea + + M + + + + + Dutius / Dusius + + M + presbiter, rector Sancti Terencii + + + + Dionisus + + M + episcopus Placentinus + Dionigi, vescovo di Piacenza, attestato a partire dall'inizio del 1049, + venne deposto nel 1075 (SCHWARTZ + 1913, p. 191). + + + + + Egalinus + de la Ferrata + + M + + + + Egidius + de Cremona + + M + frater + + + + Egidius + quondam Durantis de Valle + + M + + + + Egidius + filius Rodulfi de Cervaria + + M + + + + Eldezo + + M + + + + Enulis + de Funti + + M + + + + Eugenius + + M + episcopus, servus servorum Dei + Papa Eugenio III, eletto il 15 febbraio 1145, muore a Tivoli l'8 luglio 1153 + come da scheda di Harald Zimmermann nel Dizionario Biografico degli italiani, vol. 43 + (1993) + + + + Ezo + de Bibola + + M + + + + + + Facius + quondam Garmignoni + + M + + + + Fancinellus + quondam Sinibaldi de Prato + + M + + + + Falco + + M + presbiter + + + + Fancellus + + M + + + + Fancinellus + quondam Rafanini + + M + operarius de curte Sarzane + + + + Fasianus + + M + presbiter, plabanus de Amelia + + + + Fatorensis + + M + + + + Fatennançus + + M + + + + Favalinus + + M + + + + Fellolus + + M + + + + Femenella + filia quondam Gerarducii de la Serra + + F + + + + Festa + filius Detesalve + + M + + + + Festa + quondam Pellini + + M + + + + Filimannus + + M + + + + Flobertus + de Ponçanello + + M + + + + Fortinus + de Ponçanello + + M + + + + Foscolus + + M + + + + Federicus / Fredericus + + M + castaldus de Carrara + + + + Federicus / Fredericus + + M + dux Suevie + Federico VI di Hohenstaufen, figlio di Federico Barbarossa, duca di Svevia + dal 1170 fino alla morte intervenuta nel 1191 durante l'assedio di S. Giovanni + d'Acri come da scheda di Hansmartin Schwarzmaier in Neue Deutsche Biographie, Band 5 (1961) + + + + Federicus / Fredericus + + M + imperator + Federico I imperatore, incoronato il 18 giugno 1155, morto il 10 giugno 1190 + come da CAPPELLI 1988, pp. 257-260. + + + + Federicus / Fredericus + + M + imperator + Federico II imperatore, incoronato il 22 novembre 1220, morto il 13 dicembre + 1250 come da scheda di Norbert Kamp nel Dizionario Biografico degli italiani, vol. 45 + (1995) + + + + Federicus / Fredericus + + M + sacri palacii notarius, iudex ordinarius + attestato in una autentica senza data + + + + Federicus / Fredericus + filis Comitis de Vezano + + M + + + + Federicus / Fredericus + filius Pelegrini de Carraria + + M + castaldus + + + + Feminella + filia quondam Amati de Orbagnano + + F + + + + Fercinus + + M + + + + Ferettus / Ferretus + + M + + + + Ferettus / Ferretus + de Ponzanello + + M + consul de Ponzanello + + + + Ferrarius + + M + + + + Ferrinus + + M + + + + Ferrinus + quondam Vivaldi de Donnisia + + M + + + + Ferrus + + M + + + + Ferrus + de Aventia + + M + + + + Ferrus + Bonaiuti de castro Sarzane + + M + + + + Ferrus + de Carrara + + M + + + + Ferrus + Dolcebene de Veçiali + + M + + + + Ferrus + quondam Dolcebene de Monteserino + + M + + + + Festa + quondam Venture + + M + + + + Festa + Vitalis + + M + + + + Fidancia + de Valporcara + + M + + + + Fidanzetus + + M + + + + Florentia + quondam Gualteroni de Carcandula + + F + + + + Floreta + + F + + + + Floretus + + M + + + + Fluminellus + + F + + + + Fluminellus + Pitecus + + F + + + + Focerius + de Cervara + + M + + + + Folbertinus + + M + + + + Folbertus + + M + + + + Folbertus + + M + consul comunis de Ponzanello + + + + Folcerius + quondam Cervaroli + + M + + + + Forinus + quondam Ugolini de Pilato + + M + operarius de curte Sarzane + + + + Forçore + de Sancta Maria Monte + + M + dominus + + + + Formentinus + + M + + + + Formentinus + de Calmesana + + M + + + + Formentinus + quondam Rafanini + + M + operarius de curte Sarzane + + + + Formentinus + de castro Sarzane + + M + + + + Formentinus + Tranpulii + + M + + + + Fornarius + + M + + + + Fornarius + de Furno + + M + + + + Fornarius + quondam Ianelli de Ponzanello + + M + + + + Fortinus + de Torano + + M + consul comunis Carrarie + + + + Fortis + quondam Gerardi de Picolo + + M + + + + Foscherius + de Fosdenova quondam Rustichelli + + M + + + + Foscolinus + + M + + + + Fosdenoctus + filius ipsius Guidonis + + M + + + + Francesca + quondam Bonefacte de Paterno + + F + + + + Franciscus + + M + castaldus de Carraria + + + + Franciscus + filius quondam domini Bernabovis <Malaspina> + + M + marchio + Francesco Malaspina, figlio di Bernabò, ramo dello Spino Fiorito, attestato + dal 1267 (ASFi DM, n. 207) al 1312 + (MGH CONST IV, II, pp. + 904-905). + + + + Francolus + + F + + + + Frandina + + F + domina de Falcinello + + + + + Frolinus + + M + + + + Fruminellus + Pitetus quondam Pugneti + + M + + + + Fromundinus + + M + + + + Fulcus + + M + + + + Fusca + filia quondam Galosnini + + F + + + + Fuscolinus / Foscolinus + de Nave quondam Balduini + + M + + + + Fuscolinus / Foscolinus + de Valle Stephani + + M + + + + Fuscolus / Fusculus + + M + + + + Fuscolus + de Yliolo + + M + + + + Fusculus + de Susano + + M + + + + Fuscus + Berte de Castronovo + + M + + + + Fuscus + quondam Cançii + + M + + + + Fuscus + de Ferrino de castro Sarzane + + M + + + + Fuscus + Guidi / quondam Guidi + + M + + + + Fuscus + quondam Guidonis Sagine + + M + + + + + G. + + M + presbiter de Ciserano + + + + G. + de Braçano + + M + + + + Gabardus + de Sarzana + + M + + + + Gabriel + marchio Malaspina, filius quondam domini Ysnardi marchionis + Malaspina + + M + marchio + Gabriele Malaspina, marchese, figlio di Isnardo dello Spino Fiorito, + attestato dal 1272 (ASFi DM, n. 238) al 1286 (ASFi DM, n. 311) è probabilmente già defunto nel + giugno del 1288 (ASFi DM, n. 318). + + + + Gaforetidus + + M + + + + Gaforius + + M + + + + Gaforius / Igaforius + de Faucenova + + M + + + + Gaideferus + + M + + + + Gaideferus + filius Guilielmi de Sancto Stephano + + M + + + + Gaideferus + quondam Pasqueti de Falcinello + + M + + + + Gaitanus + Pisanus + + M + iudex + + + + Galardus + quondam Homodei de Luca + + M + iudex, notarius + attestato nel 1260 + + + + Galeardus + filius Rapalli de Veraxano + + M + + + + Galganus + + M + + + + Galganus + quondam Bonosi de Germagnano + + M + + + + Galimarus + de Sarzana + + M + + + + Gallascus + de Summo Tranci + + M + + + + Galletus + + M + + + + Gallus + de Miselia + + M + + + + Gallicus + + M + + + + Gallicus + filius Michaelis + + M + + + + Galopinus + quondam Ricii de Montedarmo + + M + operarius de curte Sarzane + + + + Gandulfinus / Gandolfinus + + M + + + + Gandulfinus / Gandolfinus + de Carraria + + M + + + + Gandulfinus / Gandolfinus + quondam Gerardeti de Fontana + + M + + + + Gandulfus + filius quondam Henrici de Luca + + M + + + + Gandulfus + frater Stephani de la Crosa + + M + + + + Garindonus + + M + + + + Garminella + + ? + + + + Gavarrus + de Castronovo + + M + + + + Gedaldus + + M + + + + Genetius + quondam Rolandi + + M + + + + Genetius + quondam Rolandi + + M + + + + Georgius + + M + + + + Georgius + + M + sacri palacii notarius + presente in un autentica non datata ma attribuibile alla prima metà del XIII + secolo + + + + Gerardetus + + M + + + + Gerardetus + + M + diaconus + + + + Gerardetus + de Amelia + + M + + + + Gerardetus + dictus Capellus quondam Boccadecanis de castro Sarzane + + M + + + + Gerardetus + de Carraria + + M + + + + Gerardetus + quondam Dimandi de castro Sarzane + + M + + + + Gerardetus + quandam Gandolfini + + M + consiliarius Carrarie + + + + Gerardetus + filius Gibertini de Ponzanello + + M + + + + Gerardetus + de Monte Vallese + + M + + + + Gerardetus + qui nominor Montonus / Muntoni + + M + sacri palacii notarius, consiliarius castri Sarzane + + + + Gerardetus + Rossus + + M + escarius + + + + Gerardina + + F + + + + Gerardinellus / Girardinellus + + M + + + + Gerardinus / Girardinus + + M + + + + Gerardinus / Girardinus + + M + castaldus Lunensis curie + + + + Gerardinus / Girardinus + quondam Bettotii + + M + operarius de curte Sarzane + + + + Gerardinus / Girardinus + Bifulci + + M + + + + Gerardinus / Girardinus + de Boiardo + + M + + + + Gerardinus / Girardinus + de Bona + + M + + + + Gerardinus / Girardinus + de Bucciliano + + M + + + + Gerardinus / Girardinus + quondam Burnengii de Cazano + + M + + + + Gerardinus / Girardinus + de Butrone + + M + + + + Gerardinus / Girardinus + de Carola + + M + + + + + Gerardinus / Girardinus + de Cazacane + + M + + + + Gerardinus / Girardinus + de Cobiata + + M + + + + Gerardinus / Girardinus + de Çobolo + + M + + + + Gerardinus / Girardinus + Comitis + + M + + + + Gerardinus / Girardinus + quondam Coneti de Mommio + + M + + + + Gerardinus / Girardinus + filius quondam Cyceris de Magnano + + M + + + + Gerardinus + quondam Ferreti de Ponzanello / Feretti de Ponzanello + + M + + + + Gerardinus / Girardinus + de Fontana + + M + + + + Gerardinus / Girardinus + de Graçano + + M + + + + Gerardinus / Girardinus + quondam Guilielmoti de Viano + + M + + + + Gerardinus / Girardinus + de Guitone + + M + operarius de curte Sarzane + + + + Gerardinus / Girardinus + de Loran + + + + + Gerardinus / Girardinus + de Mandrola + + + + + Gerardinus / Girardinus + de Miselia + + + + + Gerardinus / Girardinus + de Mommio + + M + + + + Gerardinus / Girardinus + de Montione + + M + + + + Gerardinus / Girardinus + de Moritiola + + M + + + + Gerardinus / Girardinus + de Oliva + + M + + + + Gerardinus / Girardinus + de Ortonovo + + M + + + + Gerardinus / Girardinus + de Padule + + M + + + + Gerardinus / Girardinus + Pecagnosus + + M + + + + Gerardinus / Girardinus + de Pilloto + + M + consiliarius de Ortonovo + + + + Gerardinus / Girardinus + de Poncisone + + M + consiliarius de Ortonovo + + + + Gerardinus / Girardinus + de Posticio + + M + + + + Gerardinus / Girardinus + de Roza + + M + consiliarius de Micoarra + + + + Gerardinus / Girardinus + de San Martino + + M + + + + Gerardinus / Girardinus + de Traversara + + M + + + + Gerardinus / Girardinus + filius quondam Ugolini de Ponçano + + M + + + + Gerardinus / Girardinus + Veronus quondam Gerardini Veroni de Soleria + + M + + + + Gerardinus / Girardinus + de Via + + M + + + + Gerardus / Girardus + + M + + + + Gerardus / Girardus + de Marnasco + + M + magister, archipresbiter de Marnasco + + + + Gerardus / Girardus + + M + canonicus Lunensis + + + + Gerardus / Girardus + + M + clericus de Viano + + + + Gerardus / Girardus + + M + magister + + + + Gerardus / Girardus + + M + massarius + + + + Gerardus / Girardus + + M + presbiter + + + + Gerardus / Girardus + + M + presbiter de Sancto Venerio + + + + Gerardus / Girardus + quondam Acursi + + M + + + + Gerardus / Girardus + filii Aimonis de Bolano + + M + + + + Gerardus / Girardus + filius quondam Alberti vicedomini + + M + vicedominus episcopi + + + + Gerardus / Girardus + quondam Alberti + + M + + + + Gerardus / Girardus + quondam Alberti de Gandulfino + + M + dominus + + + + Gerardus / Girardus + quondam domini Aldebrandi + + M + vicedominus de Trebiano + + + + Gerardus / Girardus + Aletrine + + M + dominus + + + + Gerardus / Girardus + Beaigue de castro Sarzane + + M + + + + Gerardus / Girardus + de la Bella + + M + + + + Gerardus / Girardus + quondam Bellandini de Oliveto + + M + + + + Gerardus / Girardus + quondam Bonensingne + + M + + + + Gerardus / Girardus + filius Bonfilioli de Sorgnano + + M + + + + Gerardus / Girardus + quondam Borgeti + + M + + + + Gerardus / Girardus + quondam Bosi de Falcinello + + M + + + + Gerardus / Girardus + de Colle quondam Bosolini + + M + + + + Gerardus / Girardus + quondam Bottaccii + + M + dominus de Falcinello + + + + Gerardus / Girardus + de Bruscaliano + + M + + + + Gerardus / Girardus + de Carrara + + M + dominus + + + + Gerardus / Girardus + Carbonis + + M + consiliarius de Ponzanello + + + + Gerardus / Girardus + quondam Cicoli / Çicoli + + M + + + + Gerardus / Girardus + de Colle + + M + + + + Gerardus / Girardus + de Codesorbo + + M + + + + Gerardus / Girardus + de Cornilio + + M + presbyter Parmensis dyocesis, familiare ipsius domini + episcopi + + + + Gerardus / Girardus + filius domine Dyamantis + + M + + + + Gerardus / Girardus + quondam domini Gandulfini + + M + dominus + + + + Gerardus / Girardus + quondam domini Henrici de Trebiano + + M + + + + Gerardus / Girardus + dicto Ferro de Fosdenova + + M + nobilis + + + + Gerardus / Girardus + quondam Gerardini + + M + operarius de curte Sarzane + + + + Gerardus / Girardus + filius Guidictionis Morellini + + M + magister + + + + Gerardus / Girardus + quondam Guilielmini + + M + + + + Gerardus / Girardus + quondam Guiscardelli + + M + + + + Gerardus / Girardus + filius Imelle de Luca + + M + + + + Gerardus / Girardus + quondam Lealis de Sarzana + + M + + + + Gerardus + quondam Levacastelli de Bozano + + M + + + + Gerardus / Girardus + Lucanus + + M + magister + + + + Gerardus / Girardus + de Munzone + + M + + + + Gerardus / Girardus + de Pannesa + + M + + + + Gerardus / Girardus + de Petrognano + + M + consiliarius Carrarie + + + + + Gerardus / Girardus + quondam Rollandini de Masio + + M + + + + Gerardus / Girardus + Rubei + + M + + + + Gerardus / Girardus + de Carraria filius quondam Rodulfini + + M + + + + Gerardus / Girardus + Russus + + M + + + + Gerardus / Girardus + Rursus + + M + + + + Gerardus / Girardus + de Sarzana + + M + + + + Gerardus / Girardus + de la Serra + + M + + + + Gerardus / Girardus + de Traversara + + M + castaldus Lunensis + + + + Gerardus / Girardus + de Trebiano + + M + vicedominus + + + + Gerardus / Girardus + de Ulmeto + + M + + + + Gerardus / Girardus + Vernaccii / de Vernaccio de castro Sarzane + + M + + + + Gerardus + de Vezano + + M + + + + Gerardus / Girardus + quondam Villani /quondam Villani de Sarzana + + M + + + + Gerardus / Girardus + quondam Viviani de Gragnana + + M + + + + Gerardus / Girardus + Wulpilionis + + M + + + + Gerardutius + Maluso + + M + vicarius Lunisiane pro communi Lucano + + + + Gervasinus + + M + + + + Getreducius + Malusii + + M + vicarius pro communi Lucano et domini episcopi in provincia + Lunisiane + + + + Gibertina + filia quondam Bonacursi de Fontenella + + F + + + + Gibertinus + + M + + + + Gibertinus + de Bernaçone + + M + + + + Gibertinus + de Carpena / Bottacungo + + M + dominus + + + + Gibertinus + Coalimi + + M + + + + Gibertinus + quondam Code Iudei / Bottacungo/ quondam Codeindei de + Burcione + + M + dominus + + + + Gibertinus + de Fosdenova + + M + + + + Gibertinus + filius Hardunini <de Herberia> + + M + + + + Gibertinus + filius Henrici Blanci de Herberia + + M + + + + Gibertinus + de Mabilia quondam Butafabe + + M + + + + Gibertinus + de Porencario + + M + + + + Gibertus + + M + diaconus + + + + Gibertus + Fancellus Adorneti + + M + + + + Gibertus + quondam Bosi de Falcinello + + M + + + + Giliensis + quondam Vivaldi Parre + + M + + + + Giliola + + F + + + + Giliolus + + M + dominus + + + + Giliolus + quondam domini Alberti dicti Mascardi de Trebiano + + M + + + + Giliolus + quondam domini Parentis de Terrarossola + + M + + + + Giliolus + quondam Riçoli + + M + + + + Gislitiono + de Iovello, habitator burgi Sarzane + + M + + + + Gilius + quondam Ricioli + + M + + + + Giofredus + + M + + + + Giovagallus/ Çiovagallus + de Fonti + + M + + + + Girreus + + M + + + + Gircus + + M + + + + Girus + + M + + + + Gisla + + F + + + + Gisla + quondam Iohannis de la Fontana + + F + + + + Gislana + + F + + + + Gisleta + + F + + + + Gislucia + + F + + + + Giso + + M + + + + Giunta / Çunta + de laSerra + + F + + + + Glunus + de Verucola + + M + + + + Goggus + + M + + + + Gomitanus + + M + rector ecclesie Sancti Mauricii + + + + Gondetus + + M + + + + Gondetus + de Bolano + + M + castaldus + + + + Gordianus + + M + + + + Gordianus + quondam Dominici + + M + + + + Gordianus + quondam Gerardeti + + M + + + + Gordianus + de castro Sarzane + + M + + + + Gordianus + de la Serra + + M + + + + Gotefredus + + M + episcopus Lunensis + Gotifredo, vescovo di Luni, attestato per la prima volta in un privilegio di + Ottone II del 18 luglio 981 a + l'ultima in un documento del 14 ottobre + 998. + + + + Gotefredus + + M + episcopus Lunensis + Gotifredo II, vescovo di Luni, attestato probabilmente nel 1129 (FREGGIA 1989 p. 166), con + certezza dal 19 marzo 1134 fino al 13 + marzo 1156 (ASLu SF). + + + + Gotefredus / Gotifredus + + M + iudex, assessor pro communi Pisano in provincia + Lunisiane + + + + Gotefredus / Gotifredus + + M + imperialis aule cancellarius + Si tratta molto probabilmente di Goffredo da Viterbo, cappellano, notaio del + Sacro Palazzo e cancelliere con Corrado III, Federico I Barbarossa ed Enrico + VI, esponente di rilievo dell'entourage imperiale svevo, autore di compilazioni + storiche universali. Nacque probabilmente a Viterbo intorno al 1125 e morì + nell'ultimo decennio del XII secolo come da scheda di Gian Maria Varanini nel + Dizionario Biografico degli italiani, vol. 57 + (2001). + + + + Gotefredus / Gotifredus + frater Veltri quondam Guilielmi de donna Emma + + M + + + + Gotolus / Gottolus / Gotulus + + M + + + + Gotolus / Gottolus / Gotulus + quondam Bonensegne + + M + + + + Gotolus / Gottolus / Gotulus + filius quondam Amati de Ascletulo + + M + + + + Gotolus / Gottolus / Gotulus + de Sarzana + + M + + + + Gracianus + + M + + + + Graganellus + + M + + + + Grassus + + M + canonicus Lunensis + + + + Grecus + de Carraria + + M + + + + Grecus + de donna Gallitia + + M + + + + Grecus + de Petrognano + + M + + + + Gregorius + + M + + + + Gregorius + + M + vitrarius + + + + Gregorius + de Bozano + + M + + + + Grillus + + M + + + + Grillus + de Beriola + + M + + + + Grillus + + M + potestas Carrarie + + + + Grimaldus + + M + + + + Grimaldus + dela Trina + + M + + + + Grimaldus + de Vezano + + M + potestas dominorum de Vezano + + + + Grimaldus + frater Buconci + + M + + + + Grimolus + + M + + + + Grislus + + M + + + + Griutus + + M + + + + Grongnutus + + M + + + + Gromone + quondam Rollandini + + M + + + + Groppinus + + M + + + + Grugnus + + M + + + + Grumpus + de Vallecla + + M + + + + Guadagninus + + M + + + + Guadagnus + + M + sacri palacii notarius + attestato in una autentica non datata + + + + Gualandus + de Sporliano + + M + + + + Gualanginus + filius Opiçonis de Soleria + + M + + + + Gualardus + Melanense + + M + notarius + attestato nel 1260 + + + + Gualdus + + M + potestas Bolani + + + + Gualdus + de Sancto Stephano + + M + + + + Gualdus + de Verugula + + M + + + + Gualterius / Walterius + + M + + + + Gualterius + + M + episcopus Lunensis + Gualtiero II, vescovo di Luni, attestato la prima volta il 5 novembre 1193 e l'ultima il 2 aprile 1212. + + + + Gualterius + de Carcandula + + M + + + + Gualterone / Gualteronus + + M + + + + Gualterone / Gualteronus + de Barbaçano + + M + + + + Gualterone / Gualteronus + frater Hengerami + + M + + + + Gualterotus + + M + + + + Gualterotus + + M + canonicus Lucanus + + + + Gualterotus + + M + consiliarius Carrarie + + + + Gualterotus + <frater Peregrini archipresbyteri> + + M + + + + Gualterotus + quondam Mançeti + + M + + + + Gualterotus + de Soleria + + M + + + + Gualterotus + de Veçale + + M + + + + Guastapanis + quondam Gerardoni + + M + + + + Guelfus + + M + canonicus Lunensis, arcidiaconus + + + + Guercius + + M + episcous Lucanus + Guercio Tebalducci, di origine senese, vescovo di Lucca dal 1236 al 1255. + Cfr. MANSI BARSOCCHINI 1836 + , p. 326 + + + + Guerinus / Werinus + + M + + + + Guerinus / Werinus + de Cobiata + + M + + + + Guerinus / Werinus + de Sarzana + + M + + + + Guerisius / Werisius + + M + + + + Guerrisietus + + M + + + + Guerrolus + + M + + + + Guibertus + + M + + + + Guibertus + de Burcione, quondam Gotezonis de Burzone + + M + + + + Guicardus + quondam Favalini + + M + + + + Guicholinus / Guiçolinus + + M + + + + Guicholinus / Guiçolinus + + M + hescarius, consiliarius de Micoarra + + + + Guicholinus / Guiçolinus + quondam Rusticoni de castro Sarzane + + M + + + + Guicholinus / Guiçolinus + Strivane + + M + + + + Guicholinus / Guiçolinus + quondam Surni + + M + + + + Guicholinus / Guiçolinus + quondam Iuncte de Lacapanna + + M + + + + + Guicholinus / Guiçolinus + de Nichola + + + + + Guiçolus + + M + + + + Guiçolus + quondam Çunte + + M + + + + Guiçolus + de Cuscugnano + + M + + + + Guiconis + + M + + + + Guidarellus + quondam Bonacursi + + M + + + + Guidetus + + M + + + + Guidetus + + M + camparius + + + + Guidetus + de Amelia + + M + + + + Guidetus + de Miliaciola + + M + + + + Guidetus + Ymilia + + M + + + + Guidetus + Rubeus quondam Venture + + M + + + + Guido + + M + + + + Guido + + M + archiepiscopus Mediolanesis + Guido da Velate, arcivescovo di Milano dal 1045 al 1068, morto nel 1071 (si + veda Guido da Velate nel Dizionario Biografico degli + Italiani). + + + + Guido + + M + abbas abbatie de Caparana + + + + Guido + + M + archipresbiter Lunensis + + + + Guido + + M + archipresbiter de Santo Stephano + + + + Guido + + M + episcopus Lunensis + Guido, vescovo di Luni, primo con questo nome, attestato la prima volta nel + gennaio 1021 e l'ultima il 7 aprile 1027 + + + + Guido + + M + episcopus Lunensis + Guido, secondo vescovo di Luni a portare questo nome. Attestato la prima + volta il 5 maggio 1055 e l'ultima + il 14 giugno 1078. + + + + Guido + + M + marchio + Guido, primo marchese di questo nome della stipe obertenga, figlio di + Alberto III. Attestato dal 1051 (FALCO + 1916, III) al luglio 1060 (FALCO 1916, XVIII). + + + + Guido + + M + sacri palacii notarius + attestato in due autentiche non datate + + + + Guido + + M + presbiter de Ponzanello + + + + Guido + Alberti + + M + + + + Guido + de li Albizi + + M + + + + Guido + de Bibula + + M + + + + Guido + Biteccio + + M + + + + Guido + quondam Bonacursi de Veçale + + M + + + + Guido + Bulgius / Bulçius de Aventia + + M + + + + Guido + de Burgo + + M + ferrarius + + + + Guido + de Cassano + + M + + + + Guido + de Cergnano + + M + + + + Guido + quondam Dominici Lucano + + M + + + + Guido + de Donna de Vezano quondam Franciescini + + M + arbiter + + + + Guido + filius Fancelli + + M + + + + + Guido + de Ficario + + M + + + + Guido + frater Guilliemi episcopi + + M + + + + Guido + filius Gerardi de Tancredino / Bottacungo + + M + dominus de Falcinello + + + + Guido + de Herberia quondam Gerardi Blanki + + M + + + + Guido + de Canneto quondam Guilielmi + + M + + + + Guido + filius Guilielmini marchionis de Massa + + M + + + + Guido + de Henricino + + M + + + + Guido + Henrigeti / quondam Henrigeti + + M + + + + Guido + de Herberia + + M + dominus + + + + Guido + quondam Iacopini + + M + + + + Guido + Lucanus quondam Dominici + + M + dominus + + + + Guido + de Lucia + + M + consiliarius Carrarie + + + + Guido + de Montedarmo quondam Dominici + + M + operarius de curte Sarzane + + + + Guido + Muri + + M + + + + Guido + de Nizola + + M + + + + Guido + filius quondam Oliverii + + M + + + + Guido + quondam Pandulfini + + M + consiliarius comunis de Ponzanello + + + + Guido + de Petrognano + + M + + + + Guido + de Piculo + + M + + + + Guido + de Ponçanello + + M + + + + Guido + de Porta + + M + + + + Guido + de Puzolo + + M + + + + Guido + de Riolo + + M + + + + Guido + quondam Rolandi + + M + + + + Guido + Runtius + + M + + + + Guido + Ringus filius Gerardi de Vexana / Runcius quondam Gerardi de + Vafana + + M + + + + Guido + Saçine / Sazine, filio Boti de Minizano + + M + + + + Guido + de Soleria + + M + + + + Guido + quondam Tiniosi + + M + + + + Guido + Ugolinus quondam Brancii + + M + + + + Guido + de Valle Stephani + + M + + + + Guido + de Vallechia + + M + + + + Guido + quondam Venture de Codesorbo + + M + + + + Guido + de Vexano + + M + + + + Guidobonus + + M + + + + Guidobonus + + M + consul comunis de Ponzanello + + + + Guidobotus + + M + + + + Guidolinus + + M + + + + Guidolinus + de Foscherio + + M + + + + Guidolinus + de Malliola + + M + + + + Guidolinus + de Peravulpe + + M + + + + Guidolinus + de Peretolo + + M + + + + Guidolinus + Pretelli de Cazano + + M + + + + Guidolinus + de Tancredo + + M + + + + Guidolinus + de Via + + M + + + + Guidolinus + Zanza + + M + + + + Guidolotus + + M + + + + Guidolotus + quondam Ioboli de Miselia + + M + + + + Guidolus + de Loiso + + M + + + + Guidolus + de Popio + + M + + + + Guiducius + filio Rubei de Carpina + + M + + + + Guilia + + F + + + + Guilicionellus + de Scoriso + + M + + + + Guiliecio / Guilicio + + M + + + + Guiliecio / Guilicio + de Amelia + + M + + + + Guilielmetus + + M + + + + Guilielmina + + F + + + + Guilielmina + quondam Bonaiuncte de Castronovo + + F + + + + Guilielminus + + M + + + + Guilielminus + quondam Accursi + + M + + + + Guilielmus + Albus de Vezano + + M + + + + Guilielminus / Wilielminus + de Annobono + + M + + + + Guilielminus / Wilielminus + Barbadegati + + M + + + + + Guilielminus / Wilielminus + quondam Bastardi de Amelia + + M + da identificarsi con Guilielmus quondam Bastardi de Amelia + + + + Guilielminus / Wilielminus + quondam Belli de Columnata + + M + + + + + Guilielminus / Wilielminus + dictus Boscus + + M + consiliarius Carrarie + + + + Guilielminus / Wilielminus + quondam Burriani + + M + + + + Guilielminus / Wilielminus + de la Cala + + M + + + + Guilielminus / Wilielminus + de Carraria + + M + + + + Guilielminus / Wilielminus + de Clarella + + M + + + + Guilielminus / Wilielminus + Ferri de Ortonovo + + M + + + + Guilielminus / Wilielminus + de Fontana + + M + + + + Guilielminus / Wilielminus + de Gragnano + + M + + + + Guilielminus / Wilielminus + quondam Lumbardi + + M + + + + Guilielminus / Wilielminus + marchio de Massa + + M + Guglielmo marchese di Massa, obertengo, figlio di Alberto Corso, attestato + dal 1173 (LIBRI IURIUM, I.3, n. + 562) al 1202. + + + + Guilielminus / Wilielminus + de Moneta + + M + + + + Guilielminus / Wilielminus + de Oletulo + + M + + + + Guilielminus / Wilielminus + de Capannara quondam Picerii + + M + + + + Guilielminus / Wilielminus + Pilloti + + M + scarius + + + + Guilielminus / Wilielminus + de Povici + + M + + + + Guilielminus + de Rivo + + M + + + + Guilielminus / Wilielminus + de Rivo + + M + + + + Guilielminus / Wilielminus + de Tedesca + + M + + + + Guilielminus / Wilielminus + de Tilloia + + M + + + + Guilielminus / Wilielminus + filius Ugolini quondam Armannini + + M + + + + Guilielmolus + + M + + + + Guilielmus + + M + + + + Guilielmus + + M + archipresbiter de Viano + + + + Guilielmus + + M + archipresbiter, canonicus Lunensis + + + + Guilielmus + + M + castaldus + + + + Guilielmus + + M + episcopus Lunensis + Guglielmo vescovo di Luni, attestato dal + 17 maggio 1228 al 3 aprile + 1272. + + + + Guilielmus + + M + episcopus Lucensis + Guglielmo II di Monte Albano, vescovo di Lucca dal 1330 al 1349 MANSI BARSOCCHINI 1836 + , p. 327. + + + + Guilielmus + + M + episcopus Astensis + Guglielmo da Capriano, nato intorno all 1130-1135, fu secondo vescovo di + Asti con questo nome dal 1173 al 1191 e in seguito arcivescovo di Ravenna, come + da scheda di Giuseppe Mazzanti nel Dizionario Biografico degli italiani, vol. 60 + (2003) + + + + Guilielmus + + M + magister, fisicus + + + + Guilielmus + quondam Symonis Asinelli + + M + iudex + + + + Guilielmus + quondam Guidonis Pisani + + M + notarius sacri palacii + attestato dal 1233 al 1252 + + + + Guilielmus + + M + notarius sacri palacii + attestato nel 1055 + + + + Guilielmus + + M + notarius sacri palacii + attestato nel 1168 + + + + Guilielmus + + M + notarius sacri palacii, scriba publicus communis + Carrarie + attestato nel 1260 + + + + Guilielmus + + M + sacri palacii et Lunensis curie notarius + attestato nel 1198 + + + + Guilielmus + + M + prepositus Lunensis, canonicus Lunensis + + + + Guilielmus + + M + presbiter de Pegaçano + + + + Guilielmus + + M + presbiter de Pegaçano + + + + Guilielmus + + M + vicedominus episcopi + + + + Guilielmus + Acorseti + + M + + + + Guilielmus + quondam domini Alberti dicti Mascardi de Trebiano + + M + + + + Guilielmus + de Albrico + + M + + + + + Guilielmus + quondam Attolini de Gragnana + + M + + + + Guilielmus + Baldineti + + M + + + + Guilielmus + quondam Bastardi de Amelia / filio quondam Bastardi de Guilielmo + Blanco de Vezano + + M + da identificarsi con Guilielminus quondam Bastardi de Amelia + + + + + Guilielmus + de Bianca + + M + + + + Guilielmus + de Bleccoe + + M + + + + Guilielmus + quondam Bonacursi Tascacincte de Sorgnano + + M + + + + Guilielmus + quondam Bonensigne + + M + + + + Guililemus + quondam Bonfilioli + + M + + + + Guilielmus + Brancasicce + + M + vicarius + + + + Guilielmus + dicto Canuto quondam Bordoni + + M + + + + Guilielmus + de Cafazo + + M + + + + + Guilielmus + de Codano + + M + magister + + + + Guilielmus + Cornachie/Corvachie + + M + + + + Guilielmus + Corsus + + M + forse appartenente ai marchesi di Massa-Corsica, identificazione possibile + in Guglielmo Bianco figlio di Opizzino + + + + Guilielmus + quondam Dainensis de Burçone + + M + + + + Guilielmus + de donna Emma + + M + + + + Guilielmus + de Factore + + M + + + + Guilielmus + Ferri de Ortonovo + + M + + + + + Guilielmus + de Fosdenova + + M + nobilis + + + + Guilielmus + frater Gerardi Russi + + M + + + + Guilielmus + de Gragnano + + M + + + + Guilielmus + quondam Gerardi de Monzone + + M + + + + Guilielmus + filius quondam Gerardini de Monçone + + M + + + + Guilielmus + Graffi + + M + + + + Guilielmus + de Groppollo + + M + + + + Guilielmus / Guillermus + de Gragnana + + M + + + + Guilielmus + quondam Gualteroni + + M + consiliarius Carrarie + + + + Guilielmus + quondam Guidonis Pisani de la Plebe + + M + + + + Guilielmus + de Gragnana + + M + donnus, monacus + + + + Guilielmus + de Lamura + + M + + + + Guilielmus + Lombardus + + M + + + + Guilielmus + de Luna + + M + consiliarius Carrarie + + + + Guilielmus + Ma... + + M + + + + Guilielmus + de Marcucio + + M + + + + Guilielmus + quondam Martinelli de Rafanino + + M + operarius de curte Sarzane + + + + Guilielmus + Mascardus filius quondam domini Alberti vicedomini de Trebiano + + + M + + + + Guilielmus + de Mezana + + M + + + + Guilielmus + Nigro de Castello + + M + dominus + + + + Guilielmus + Parentini + + M + + + + Guilielmus + quondam Patiti de Ortale + + M + + + + Guilielmus + Pisani de Ponte de Carraria + + M + + + + Guilielmus + de la Plebe + + M + consiliarius Carrarie + + + + Guilielmus + de Poncellana + + M + + + + Guilielmus + quondam Ramundini / domine Emme + + M + consul comunis Carrarie + + + + Guilielmus + de Renario + + M + + + + Guilielmus + quondam Rolandi + + M + + + + Guilielmus + de Sarrevallo + + M + + + + Guilielmus + de Sorgnano + + M + consiliarius castri Sarzane + + + + + Guilielmus + quondam Testafortis / Testaforte + + M + consiliarius castri Sarzane + + + + Guilielmus + de Torano, filius quondam Spinelli + + M + dominus de Carrara + Si veda RICCI 2012, pp. + 42-45 + + + + Guilielmus + de la Trina + + M + + + + Guilielmus + Ugolini de Nichola + + M + + + + Guilielmus + de Vallechia + + M + + + + Guilielmus + de Veçale + + M + iudex + + + + Guilielmus + de Viano + + M + + + + Guilielmus + Guilielmi de Vicino + + M + + + + Guilielmus + quondam Vidaleti + + M + + + + Guilielmus + quondam Vitaleti + + M + + + + Guilieta + + F + + + + Guirisecta + quondam Guirisii de Torano + + F + + + + Guirisius + + M + presbiter, canonicus Lunensis + + + + Guirisius + + M + notarius sacri palacii + attestato nel 1161 + + + + Guiscardellus + + M + + + + Guiscardellus + de Ysembardo Befulki de Soleria + + M + + + + Guiscardus / Wiscardus + + M + + + + Guiterninus + de Trebiano + + M + + + + Guitholinus + Schivane de castro Sarzane + + M + + + + Guizolus + de Monciculo + + M + + + + Guizolus + quondam Paganini de Stazone + + M + + + + Guizolus + Rusticoni de castro Sarzane + + M + + + + Gumpulus + de Pegazana + + M + + + + Gunforutus + + M + + + + Guntardus + de Caricino + + M + + + + Gunsmaretus + + M + + + + + Hengeramus + + M + + + + Hengeramus / Hengeramutius + + M + notarius sacri palacii + attestato nel 1267, fratello di Tignoso + + + + Hengeramus + + M + rector hospitalis de Ponte Tecto + + + + Hengeramus + filio Attolini de Cacio + + M + + + + Hengeramus + frater Gualteroni + + M + + + + Hengeramus + quondam Parentis de castro Sarzane + + M + notarius sacri palacii + attetstato nel 1274, quasi certamente da identificare con Hengeramus + notarius, fratello di Tignoso, attestato nel 1267 + + + + Hengeramus + de Padule + + M + + + + Hengeramus + filio Attolini de Caço + + M + + + + Hengolins + + M + + + + Henricolus + de Soleria + + M + + + + Henricolus + filius Ysembardi de Soleria, + + M + + + + Henricus + + M + + + + Henricus + + M + becarius + + + + Henricus + + M + castaldus episcopi + + + + Henricus + + M + Enrico da Fucecchio, vescovo di Luni, nominato da Gregorio X poco prima del + 4 aprile 1273, resignò la carica + tra il 24 ottobre 1296 e l’inizio del 1297 (cfr. VECCHI 2011, p. 70 nota 3). + + + + Henricus + + M + imperator + Enrico II imperatore, detto il Santo (Hildesheim 973 -Göttingen, + 1024). + + + + Henricus + + M + imperator + Enrico III detto il Nero assunse il titolo di tertius rex; alla + morte del padre il 4 giugno 1039; venne poi incoronato imperatore a Roma il 25 + dicembre 1046 e da quel momento lo troviamo citato come tercius rex, + secundus Romanorum imperator augustus; (MGH DD HIII, pp. XXII-XXXI). Muore nel 1056 (si veda + Enrico III su l’Enciclopedia Treccani ). + + + + Henricus + + M + presbiter, plebanus de Monte Libero + + + + Henricus + + M + prior de Carraria / domnus + + + + Henricus + + M + vicedominus episcopi + + + + Henricus + quondam Ardoini + + M + + + + Henricus + de Balzano + + M + + + + Henricus + Blancus quondam Ardoini <de Herberia> + + M + potestas + + + + Henricus + quondam Boni de Vignola + + M + operarius de curte Sarzane + + + + Henricus + de Dies + + M + comes + Forse da identificare con Enrico II conte di Diez (Rheinland-Pfalz) nato + intorno al 1142 e morto nel 1189. Si veda SCHIEFFER 2001 + + + + Henricus + de Falcinello + + M + legum doctor, notarius + + + + Henricus + filius Gerardi + + M + + + + Henricus + quondam Guerini + + M + + + + Henricus + filius Guiterni + + M + + + + Henricus + quondam domini Henrici vicedomini de Trebiano + + M + + + + Henricus + de castro Sarzane + + M + notarius sacri palacii + attestato in numerose autentiche non datate + + + + Henricus + filius Sorete / Sorecte + + M + + + + Henruicus + de Ysembardo + + M + + + + Henrigenus + <de Debicoe> / <de Debbice> + + M + + + + Henrigetus + + M + + + + Henrigetus + + M + correrius + + + + Henrigetus + quondam Guidonis + + M + + + + Henrigetus + de Prato + + M + medicus, castellanus Amelie + + + + Henrigucius + quondam Henrici de Canneto + + M + + + + Hermannus + + M + episcopus Monasteriensis + Ermanno II di Katzenelnbogen, vescovo di Münster dal 1173 al 1203 come da + scheda di Hugo Stehkämper in Neue Deutsche Biographie (NDB), 8 (1969) + + + + Herbellus + filius quondam Trebianelli de la Cala + + M + + + + + Iacopinus / Iacobinus + + M + + + + Iacopinus / Iacobinus / Iacominus / Iacopus + + M + archipresbiter de Amelia + + + + Iacopinus / Iacobinus + + M + clericus de Monte + + + + Iacopinus / Iacobinus + + M + consiliarius + + + + Iacopinus / Iacobinus + + M + ferrarius + + + + Iacopinus / Iacobinus + + M + presbiter, cappellanus Lunensis capituli + + + + Iacopinus / Iacobinus + quondam Albertini + + M + consul + + + + Iacopinus / Iacobinus + de Ara + + M + + + + Iacopinus / Iacobinus + filio quondam Bernardi + + M + + + + Iacopinus / Iacobinus + quondam Bonvisi Lucanus + + M + + + + Iacopinus / Iacobinus + de Boso / quondam Bosi + + M + + + + Iacopinus / Iacobinus + de Caçano + + M + + + + Iacopinus / Iacobinus + de Carraria + + M + + + + Iacopinus / Iacobinus + quondam Curadeti de Tivegna + + M + + + + Iacopinus / Iacobinus + de donna Diamante + + M + iudex + + + + Iacopinus / Iacobinus + Donnisi curie Lucane + + M + + + + Iacopinus / Iacobinus + de donna Faina / quondam Faine + + M + castaldus de Supraluna + + + + Iacopinus / Iacobinus + quondam Formentini de Cepparana + + M + + + + Iacopinus / Iacobinus + de Fosdenova + + M + + + + Iacopinus + de Sarzana quondam Ienuini calçolarii de Felegaria + + M + magister, fisico + + + + Iacopinus / Iacobinus + Lucanus + + M + + + + Iacopinus / Iacobinus + dictus Maledice + + M + + + + Iacopinus / Iacobinus + domini Noradini + + Dei gratia Lunensis curie iudex + M + attivo nel 1223 + + + + Iacopinus / Iacobinus + de la Padule + + M + + + + Iacopinus / Iacobinus + quondam Pegolotti + + M + sindicus de Nicola + + + + Iacopinus / Iacobinus + domini Salomonis + + M + + + + Iacopellus + Santeno + + M + + + + Iacopinus / Iacobinus + de Soleria + + M + + + + Iacopinus / Iacobinus + Talliavacha + + M + notarius, sindicus, actor, procurator episcopi + + + + Iacopinus / Iacobinus + de Veçale + + M + iudex + + + + Iacopellus + quondam Bonvassalli de S..ano + + M + + + + Iacopinellus + + M + + + + Iacobucius / Iacopucius + + M + potestas Carrarie + + + + Iacobucius / Iacopucius + quondam domini Alberti de Carraria / de Gandulfino + + M + dominus + + + + Iacobucius / Iacopucius + dictus Piçofridus + + M + + + + Iacopus / Iacobus + + M + medicus + + + + Iacobus / Iacopus + + M + presbiter rector ecclesie sancti Terentii + + + + Iacobus / Iacopus + + M + dominus, vicedominus de Trebiano + + + + Iacobus / Iacopus + quondam domini Aldebrandi de Trebiano + + M + + + + Iacobus / Iacopus + quondam Curadi de Brina + + M + + + + Iacopus / Iacobus + Finuccij de sancto Miniate + + M + publicus imperiali autoritate notarius + attestato nel 1346 + + + + Iacopus / Iacobus + de Prato + + M + frater de ordine Fratrum Minorum / frater de ordine Minorum + + + + + Ianninus + de Gropo + + M + + + + Iannis + de Roberto + + M + + + + Iannonus + de Burgonovo + + M + notarius sacri palacii + attestato nel 1253 + + + + Ianuensis + de Ylice + + M + + + + Ieronimus + + M + domnus + + + + Imiliola + + F + + + + ...inerius + quondam Bonaiuti + + M + + + + Incuntro + quondam Monteseni de Monte + + M + + + + Ingelese + + M + + + + Ingo + filius Otberti + + M + + + + Ingolinus + de Miselia + + M + + + + Innocentius + + M + episcous, servus servorum Dei + Papa Innocenzo IV, al secolo Sinibaldo Fieschi, eletto il 25 giugno 1243; + muore a Napoli il 7 dicembre 1254 come da scheda di Agostino Paravicini + Bagliani nel Dizionario Biografico degli italiani, vol. 62 + (2004) + + + + Iocolus + + M + massarius + + + + Iohannellus + de Colle + + M + + + + Iohannellus + de Valcava + + M + + + + Iohannes + + M + + + + Iohannes + + M + abbas monasterii de Cepparana + + + + Iohannes + + M + custos episcopi + + + + Iohannes + + M + massarius + + + + + Iohannes + + M + prepositus + + + + + Iohannes + + M + prepositus, subdiaconus + + + + Iohannes + qui est Amezo seu Gotezo + + M + + + + Iohannes + Iohanni, qui est Amizoni + + M + + + + Iohannes + Anagninus + + M + presbyter cardinalis tituli Sancti Marci + Giovanni d'Anagni, nato poco dopo il primo quarto del secolo XII dalla + famiglia dei conti di Segni. Alessandro III lo elevò al titolo presbiteriale di + S. Marco alla fine del 1167 o agli inizi del 1168. Attestato l'ultima volta il + 22 marzo 1196 come da scheda di Gabriele Archetti nel Dizionario Biografico degli italiani, vol. 55 + (2001). + + + + Iohannes + de Bithazano + + + + + Iohannes + filius quondam Bonezi + + M + + + + Iohannes + Bonus + + M + + + + Iohannes + Bonus + + M + consul de Ponzanello + + + + Iohannes + de Collichia + + M + + + + Iohannes + Formichella de Luca + + M + + + + Iohannes + quondam Francisci de Flammis + + M + publicus imperiali autoritate notarius + attestato nel 1346 + + + + Iohannes + Lombardus + + M + + + + Iohannes + filius quondam Parentini de Mançeto + + M + + + + Iohannes + de Pisis + + M + priorem capituli et conventus S. Fridiani + attestato nel 1346 + + + + Iohannes + Ricio de Sorgnano + + M + + + + Iohannes + de Sancto Martino + + M + + + + Iohannes + Scocosagolli + + M + vicarius potestatis Carrarie + + + + Iohannes + Stado + + M + + + + Iohannetus / Iohanetus + + M + + + + Iohannetus / Iohanetus + de Montale + + M + + + + Iohanninellus + + M + + + + Iohanninus + + M + + + + Iohanninus + + M + magister + + + + Iohanninus + de Sancto Martino filius quondam Alberti + + M + + + + Iohanninus + quondam Aldeprandi de Rapugnana + + M + + + + Iohanninus + de Gropo + + M + + + + Iohanninus + de Quaroçola + + M + stiparius + + + + Iohanninus + de Piciolo + + M + + + + Ionas + de Portuveneris + + M + sacri palacii notarius + attestato nel 1235 + + + + Iordanellus + + M + + + + Iordanus / Iordanis + + M + + + + Iordanus / Iordanis + de Balognano + + M + + + + Iordanus / Iordanis + + M + frater, monacus monasterii de Capparana + + + + Iovenetus + + M + correrius + + + + Isa + + F + + + + Itta + filia quondam Cari Amici de Sarzana + + F + + + + Iulita + + F + + + + Iulita + de Sarzana + + F + + + + Iuncta + + M + + + + Iuncta + + M + notarius + attestato nel 1258 + + + + Iuncta + quondam Brunete + + M + + + + Iuncta + quondam Cerri de Beriola + + M + castaldus domini Curradi Corsi + + + + Iuncta + quondam Guilielmini de Serraursi + + M + operarius de curte Sarzane + + + + Iuncta + filius Madii + + M + + + + Iuncta + quondam Malagonelle de Vezano + + M + + + + Iuncta + quondam Petri de Montemarcello + + M + + + + Iuncta + de Terria + + M + operarius de curte Sarzane + + + + Iuncta + Ugolini de Soleria + + M + + + + Iuncta + de Vallerano + + M + + + + Iunctarellus + quondam Gerardi Cacciarute de Torano + + M + + + + Iunctus + quondam Alineti + + M + + + + Iuncuncellus + de Stabio + + M + + + + Iurnis + + M + + + + Iuso + + M + + + + Iustamonte + quondam Ruffinelli de Marçano + + M + + + + Iustamons / Iuxtamons / Iustamonte / Iuxtamonte + + M + + + + Iustamons / Iuxtamons / Iustamonte / Iuxtamonte + + M + correrius vicarie, nuncius + + + + Iustus + quondam Guidi + + M + + + + + Laborans + + M + + + + Laborans + quondam Borgeti + + M + + + + Laborans + quondam Pancie + + M + + + + Labrutus + + M + + + + Lazarellus + quondam Calderoni + + M + + + + Lambernonus + de Vallecla + + M + + + + Lambertucius + + M + + + + Lambertucius + de Illano Pontis + + M + dominus + probabilmente legato per via familiare ai marchesi di Massa Corsica, ma si + ignora come + + + + Lamberzonus + + M + consiliarius de Ortonovo + + + + Landus + quondam Gerardini de Gualterono de Luca + + M + sindicus + + + + Lanfranchetus + + M + + + + Lanfranchinus / Lanfrankinus + + M + + + + Lanfranchinus / Lanfrankinus + + M + calzolarius + + + + Lanfranchinus / Lanfrankinus + quondam Albertini de Levacastello + + M + + + + Lanfranchinus / Lanfrankinus + de Colle + + M + consiliarius Carrarie + + + + Lanfranchinus / Lanfrankinus + quondam Guidonis Sagine + + M + + + + Lanfranchinus / Lanfrankinus + quondam Ugonis de Herberia / de Herberia + + M + + + + Lanfranchinus / Lanfrankinus + quondam Meliorati + + M + + + + Lanfranchinus / Lanfrankinus + de Petrognano nepos <Bonacursi> + + M + + + + Lanfranchinus / Lanfrankinus + de Sancto Terencio + + M + + + + Lanfranchinus / Lanfrankinus + de Stabulo + + M + + + + Lanfrancus + + M + + + + Lanfrancus + + M + clericus + + + + Lanfrancus + de Herberia + + M + + + + Lanfreducius + + M + + + + Lanfredus + Bonacursi + + M + vicarius in provincia Lunisiane + + + + Lanfredus + quondam domini Bonacursi Lanfredi de Luca + + M + vicarius in provincia Lunisiane, dominus + + + + Laurentius / Lorencius + de Bona + + M + + + + Laurentius / Lorencius + de Via + + M + + + + Laurentius / Lorencius + quondam Vitalis + + M + + + + Lazarellus + de Castro Novo + + M + + + + Lazarinus + quondam Bonsegnori de castro Sarzane + + M + + + + Lealis + de Ara + + M + + + + Leo + de Buto + + M + castaldus domini Andree marchionis de Massa + + + + Leo + de Torano + + M + consiliarius Carrarie + + + + Likese + + M + + + + Lillus + + M + + + + Lingus + de Torano + + M + + + + Litelda + + M + + + + + Lombardellus + de Soleria, filius quondam Ubertini + + M + + + + Lombardellus + quondam Guilielmi + + M + dominus de Falcinello + + + + Lombardetus + de Blecce + + M + + + + Lombardia + + F + + + + Lombardinus + + M + + + + Lombardinus + de Ciserano + + M + + + + Lombardus / Lumbardus + + M + + + + Lombardus / Lumbardus + + M + domini imperatoris et Lunensis curie notarius + in attività dal 1180 al 1190 + + + + Lombardus / Lumbardus + de Aventia + + M + + + + Lombardus / Lumbardus + de Corfezano + + M + + + + Lombardus / Lumbardus + quondam Ugolini de Ticçano + + M + + + + Losignolus + + M + + + + Losius + + M + + + + Losus + de Rivo + + M + + + + Lucanus + + M + consiliarius Carrarie + + + + Lucanus + quondam Bonacursi + + M + + + + Luciana + de Paxano + + F + + + + Lusiardus + + M + + + + + Maccius + de Rio + + M + + + + Machetus + + M + + + + Machetus + de Quaroçola + + M + + + + Macionus + de Castro + + M + + + + Madonina + + F + + + + Magister + de Albano + + M + + + + Magistrellus + + M + + + + Magnetus + de Amelia + + M + castaldus + + + + Mainardus + + M + + + + Mainelda + + F + + + + Mainetus + + M + + + + Maior + filia quondam Amorosi de Arcula + + F + + + + Malabranca + + M + + + + Malabranca + de Petrognano quondam Tiniosi + + M + + + + Malabuca + de Treblano + + M + + + + Malamensis + + M + + + + Melanese + + M + senescalcus episcopi + + + + Malrasus + Ritius + + M + + + + Mançetinus + de Amelia / quondam Panigacii de Amelia + + M + + + + Mançetus / Manzetus / Mangetus / Mangettus + + M + castaldus + + + + Mançetus / Manzetus / Mangetus / Mangettus + de Miliaciola + + M + + + + Mançetus / Manzetus / Mangetus / Mangettus + de Tivenia / de Tivegna + + M + + + + Mançolinus + + M + + + + Manehesellis + + M + + + + Manfredinus + + M + + + + Manfredus + de Luca + + M + potestas Carrarie + + + + + Manfredus + olim principis Tarentini + + M + + + + Mangenus / Mançetus / Manzetus + + M + castaldus / castaldus curie de Sarzana + + + + Mannolus + + M + + + + Mannutius + + M + + + + Mansilius + quondam Baldeçonis de Barbaçano + + M + frater + + + + Mansuetus + de Sarzana + + M + frater + + + + Mantectus + de Amelia + + M + castaldus + + + + Mantignonus + + M + + + + Manzetinus + + M + + + + Manzetus + + M + + + + Maorus + + M + massarius + + + + Marabotus + + M + + + + Marabotinus + de Petrognano + + M + + + + Marapicus + + M + + + + Marcellus + de Cisirano + + M + + + + Marchese / Markese + + M + + + + Marchese / Markese + filius Alberti quondam Hengolini de Miselia + + M + + + + Marchesellus / Markesellus + + M + + + + Marchesellus - Markesellus + quondam Rusticelli de Utilia + + + + + Marchesellus - Markesellus + de Turano + + + + + Marchesellus - Markesellus + de Carraria quondam Venture Batigiati + + + + + Marchesina / Markesina + + F + + + + Marchesinus / Markesinus + + M + + + + Marchesinus / Markesinus + de Colinezolo + + + + + Marchesinus / Markesinus + filius Gibertini + + + + + Marchesinus / Markesinus + de Vallecla + + M + + + + Marchetus / Marketus + + M + + + + Marcollinus + + M + + + + Marcus + de la Via + + M + + + + Maria + + F + + + + Maria + quondam Gerardini de Ruffino + + F + + + + Marinellus + + M + + + + Marinus + de Placentia + + M + iudex + + + + Marrucius + + M + + + + Martellus + + M + + + + Martignonus + quondam Bonacursi de Veçale + + M + + + + Martignonus + de Barbazano quondam Bonaventure + + M + + + + Martignonus + Corsi de Amelia + + M + + + + Martignonus + quondam Martini + + M + + + + Martignonus + de Miliaciola + + M + + + + Martinella + quondam Martini de Pera + + F + + + + Martinellus + + + + + Martinellus + de Ara + + + + + Martinellus + Cavallus + + M + + + + Martinellus + Martinellus de Orbagnano + + + + + Martinellus + de Plano + + M + + + + Martinellus + de Rio + + M + + + + Martinellus + de Robiano + + + + + Martinetus + + + + + Martinetus + de Valporcara + + + + + Martinoçus + + + + + Martinonus + + + + + Martinus + + M + + + + Martinus + + M + massarius + + + + Martinus + + M + presbiter + + + + Martinus + quondam Acursi + + M + + + + Martinus + quondam Alegre + + M + + + + Martinus + quondam Alineti + + M + + + + Martinus + de Ara + + M + + + + Martinus + Becone + + M + + + + Martinus + Bondonnus + + M + + + + Martinus + filius quondam Bonezi + + M + + + + Martinus + quondam Buce + + M + + + + Martinus + Cerrianus + + M + + + + Martinus + de Codena + + M + + + + Martinus + de Colle + + M + + + + Martinus + de Corano + + M + + + + Martinus + Drago de Codana + + M + + + + Martinus + Durans + + M + + + + Martinus + Fantonus + + M + + + + Martinus + de Foravino / de Foravino de Monteçanne + + M + + + + Martinus + Gerardini quondam Burnengii de Cazano + + M + + + + Martinus + de Gezo + + M + + + + Martinus + de donna Greca + + M + castaldus episcopi + + + + Martinus + quondam Guerini + + M + operarius de curte Sarzane + + + + Martinus + de Losio + + M + + + + Martinus + de Maliola + + M + + + + Martinus + quondam Marcheselli + + M + + + + Martinus + de Mezana + + M + + + + Martinus + de Miselia + + M + + + + Martinus + quondam Molinarii de Posticio + + M + + + + Martinus + de Pera + + + + + Martinus + de Peroza + + M + consiliarius + + + + Martinus + de la Plaça + + M + + + + Martinus + de lo Podio + + + + + Martinus + de Porcilliola + + M + + + + Martinus + de Oliveto + + M + + + + Martinus + de Ravenna + + M + + + + Martinus + de Sancto Paulo + + M + magister, fisicus + + + + Martinus + de la Serra + + M + + + + Martinus + quondam Soboli de Montechio + + M + + + + Martinus + de Stabio + + M + + + + Martinus + Tinellus + + M + + + + Martinus + Venture + + M + + + + Martinus + quondam Vitaleti + + M + + + + Matronis + + M + canonicus Lucensis + + + + + Marzericolus + + M + + + + Marzuccus + + M + episcopus Lunensis + Marzucco, vescovo di Luni, attestato la prima volta il 26 marzo 1214, anche se un documento + del 5 febbraio 1213 (ASLu SF) fa + pensare che l’avvicendamento fosse già avvenuto a quella data o poco dopo; + l'ultima attestatzione è del 25 marzo + 1220. + + + + Marzuccus + Pisanus + + M + + + + Mascarius + de Panicale + + M + + + + Masnerius + + M + + + + Masnerius + de Trebiano + + M + + + + Massaria + + F + + + + Matelda + quondam uxori Oliverii de canale Ianni + + F + + + + Matelda + de Orbagnano + + F + + + + Matelda + quondam Pagani de Balognano, uxor quondam Gregorii vitrarii, uxor + Faime quondm Sinibaldi de Prato + + F + + + + Matolinus + + M + + + + Mattolus + de Aciliano + + M + + + + Mauricius + de la Cala + + M + + + + Maurus + + M + + + + Mazarasius + de Rezola + + M + + + + Mazencollus + + M + + + + Mectarellus + quondam Bernardi + + M + + + + Mediuslombardus + + M + archipresbiter de Amelia + + + + Melanese + + M + + + + Melanese + + M + senescalcus episcopi + + + + Melanese + Brixiolini, civis Lucano + + M + + + + Melanese + quondam Grossoli de Platia + + M + + + + Meldeprata + + F + + + + Melioratus / Melioretus + + M + + + + Melioratus / Melioretus + de Amelia + + M + + + + Melioratus / Melioretus + de Fornoro + + M + + + + Melioratus / Melioretus + de Moneta + + M + + + + Meliore + + F + + + + Meliore + quondam Aiuti de Serravalle + + M + + + + Meliore + quondam Bonaiute de Castronovo + + M + + + + Meliore + quondam Bonensingne + + M + + + + Meliore + quondam Bonevite + + M + + + + Meliore + + M + consul + + + + Meliore + de Roncio + + M + + + + Meliore + quondam Venuti de Ortonovo + + M + sindicus generalis + + + + Melioretus + quondam Richeti + + M + sindicus generalis + + + + Meliorinus + + M + + + + Mellodia + mulier Ugolini Marzoli + + F + + + + Menabos + + M + + + + Mercadante / Mercadantus / Mercatantus + + M + + + + Mercadante / Mercadantus / Mercatantus + quondam Armannini + + M + + + + Mercadante / Mercadantus / Mercatantus + de Carraria + + M + + + + Mercadante / Mercadantus / Mercatantus + de la Felecta + + M + + + + Mercadante / Mercadantus / Mercatantus + filio Gerardini de Panicali + + M + + + + Mercadante / Mercadantus / Mercatantus + quondam Rainaldini de Fosdenova + + M + + + + Mercadante / Mercadantus / Mercatantus + de Sancto Stephano + + M + + + + Mercadellus + + M + + + + Mercadellus + filius Benvenuti + + M + + + + Mercadellus + de la Via + + M + + + + Mercadus + Bonnannus + + M + + + + Mercadus + filius Rose + + M + + + + Mercator + quondam Rollandini dicti Pecçamecçane de Sarzana + + M + + + + Mercadus + de Valdonica + + M + + + + Mercadus + de Via + + M + + + + Messandinus + + M + + + + Messeretus + + M + + + + Messerotus + de la Serra + + M + + + + Messerus + + M + + + + Messerus + de Casaposi + + M + + + + Michael + quondam Albertoni de Balognano + + M + + + + Michael + de Pozolo + + M + + + + Micheletus + + M + + + + Miletus + de valle Stephani + + M + + + + Milium + + M + + + + Mimonus + de Vallecla + + M + + + + Minicucius + + M + + + + Molinarius + + M + + + + Molinarius + de Campilia + + M + + + + Molinarius + de Veciale + + M + + + + + Molioretus + + M + + + + Monachellus + + M + + + + Montaninus + + M + + + + Montaninus + Muçagallina + + M + + + + Montaninus + de Sporliano + + M + + + + Montecellus + de Capagnano + + M + + + + Monteclese + + M + + + + Montesanus + + M + + + + Morandus + de Arcula + + M + + + + Morectus / Moretus + + M + + + + Morectus / Moretus + de Sarzana + + M + + + + Moregnanus + + M + + + + Morengnolus + quondam Gerardini de Terria + + M + operarius de curte Sarzane + + + + Morescus + de Bracelli + + M + + + + Morruellus + Malaspina + + M + vicarius, marchio + Moroello marchese Malaspina, figlio di Corrado l’Antico, capostipite del + ramo di Mulazzo (Spino Secco). La prima attestazione certa è del 1266 (FERRETTO 1901, p. 39, doc. CX); + nel 1269 è vicario del vescovo Guglielmo in provincia Lunisiane; + (Codice Pelavicino 140 e 141). Muore nel 1285 in Sardegna + (FHP, col. 693). + + + + Mulinarius + + M + + + + Muscius + + M + + + + Musus + + M + + + + Muzeconus + + M + + + + + Natalicius + + M + + + + Nicholaus + + M + advocatus Lunensis curie + + + + Nicholaus + + M + iudex domini episcopi + + + + Nicholaus + + M + presbyter, cappellanus plebis Sancti Michelis de + Trebiano + + + + Nicholaus + de Flisco + + M + comite Lavanie + Niccolò Fieschi, appartenente al ramo ligure dei conti di Lavagna, è + attestato dal 1247 al 1307 (si veda Niccolò Fieschi nel Dizionario Biografico degli + Italiani). + + + + Nicholaus + filius Gerardini Mercati + + M + imperialis aule iudex et notarius et scriba publicus + + + + + Nicholaus + Maconis + + M + notarius, locum tenens absentis vicarii et iudicis provincie + Lunisiane + attestato nel 1271 + + + + Nicholaus + Plontodoris + + M + iudex ordinarius et notarius + attestato nel 1277 + + + + Nicholaus + Vinciguerre filius de Sancto Stephano + + M + iudex ordinarius, notarius sacri palacii + attestato nel 1261 + + + + Nicholetus + + M + + + + Nicholetus + quondam Martini Grassi + + M + + + + Nicholetus + de castro Sarzane + + M + castaldus episcopi + + + + Nicholetus + quondam Ugolini Blanci de Soleria + + M + procurator, castaldus + + + + Nicholosius + + M + + + + Nicholosius + + M + notarius + + + + Nicholosius + de Castro Sarzane + + M + + + + Nicholosius + Bonaccursi de Biana + + M + consiliarius Carrarie + + + + Nicholosius + quondam Claramici de Orto + + M + + + + Nigronus + quondam Bonomi + + M + consul + + + + Nigrus / Niger + + M + + + + Nigrus / Niger + de Capriliola + + M + + + + Nigrus / Niger + de la Serra + + M + + + + Nobilinus + + M + + + + Norandinus + + M + episcopus Lunensis + Norandino, vescovo di Luni, attestato da pochissimi documenti, uno del gennaio 1222, uno del maggio successivo e uno non datato, forse redatto nel + 1221. + + + + Normanninus + + M + iudex, assessor, vicarius pro episcopo + + + + Normanninus + de Bernanduccis de Luca + + M + iudex + + + + Normanninus + de Luca + + M + iudex + + + + Nuvelonus + + M + + + + Nux + de Lune + + M + + + + + Ochetus + de Avencia + + M + + + + Octoflos + filius quondam Domalfolli + + M + + + + Octonellus + natus Ponçanini quondam Folberti + + M + consul comunis de Ponzanello + + + + Octonellus + de Noceto + + M + + + + Odecio + de Ysola + + M + + + + Odo + + M + + + + Odo + + M + presbiter del Calesa + + + + Odo + de Bibola + + M + + + + Odo + de Casapoci + + M + + + + Odo + filius Mascari + + M + + + + Odo + de Sarzana + + M + + + + Odolinus + + M + + + + Ogerius + de Contebono + + M + + + + Ogerius + de Cuna + + M + + + + Ogerius + de Propezo + + M + + + + Olgerius + de Pontremulo quondam Aldeberti + + M + arbiter + + + + Oliverius / Uliverius + + M + + + + Oliverius / Uliverius + + M + presbiter, cappellanus Lunensis episcopi + + + + Oliverius / Uliverius + de Barbazano de Lamica + + M + + + + Oliverius / Uliverius + de Blarono + + M + + + + Oliverius / Uliverius + de la Cala + + M + + + + Oliverius / Uliverius + de Canale Iannis + + M + operarius de curte Sarzane + + + + Oliverius / Uliverius + filius Gervaseti, qui fuit de Gassano + + M + + + + Oliverius / Uliverius + de Milliacia + + M + + + + Oliverius / Uliverius + de Puleca + + M + + + + Oliverius / Uliverius + filius quondam Tesi + + M + + + + Oliverius / Uliverius + de Valdonica + + M + + + + Omodeus + quondam Aldebertini + + M + + + + Oncomus + + M + magister, canonicus Lunensis + + + + Opecinus / Opicinus / Opizinus + + M + balistarius + + + + Opecinus / Opicinus / Opizinus + + M + balistarius + + + + Opecinus / Opicinus / Opizinus + + M + iudex + + + + Opicellus + de Silva Maiori + + M + + + + Opizus / Oppizus / Opeçus + + M + + + + Opizus / Oppizus / Opeçus + + M + custos, canonicus Lunensis + + + + Opizus / Oppizus / Opeçus + de Seravalle + + M + notarius + attivo nel XIII secolo + + + + Opizus / Oppizus / Opeçus + qui moratur Selvaricie + + M + presbiter + + + + Opizus / Oppizus / Opeçus + dictus Bastardo de Olivola + + M + + + + Opizus / Oppizus / Opeçus + Gerardi Lealis + + M + iudex + + + + Opizus / Oppizus / Opeçus + quondam Peregrini de la Padule + + M + + + + Opizus / Oppizus / Opeçus + filius Pili + + M + + + + Opizus / Oppizus / Opeçus + de Sarzana + + M + dominus, iudex + + + + Opizus / Oppizus / Opeçus + de Soleria + + M + + + + Opizus / Oppizus / Opeçus + de Vernatio + + M + canonicus Lunensis + + + + Oradinus + quondam Bellomi/quondam Bellomi de Fonci + + M + + + + Obertus + filius quondam item Otberti, itemque marchio + + M + marchio + Oberto II marchese della stirpe obertenga, figlio di Oberto I e capostipite + della linea detta Obertina. Attestato dal 975 (MURATORI 1773, I, coll. 631-636) al 1014 (CALLERI 1997, n. 21). + + + + Otto + + M + + + + Otto + + imperator + Ottone III, imperatore e re di Germania (Kessel, Cleve, 980 - Castel Paterno + 1002). + + + + Otto + + dux Bawarie + Ottone I di Wittelsbach, duca di Baviera, nato intorno al 1120, conte + palatino, fedele partigiano di Federico I imperatore. Morì a Pfullendorf l'11 + luglio 1183 come da scheda di Ludwig Holzfurtner nel Neue Deutsche Biographie, Band 19 (1999). + + + + Otto + de Ronciliolo + + M + + + + Ozegnolus + de Sancto Stephano + + M + + + + + Paganella + filia quondam Amati / filia quondam Amati de Orbagnano + + F + + + + Paganellus + + M + + + + Paganellus + quondam Bernardi de Valmori + + M + + + + Paganellus + de Padule + + M + + + + Paganellus + quondam Petri + + M + + + + Paganellus + Çaccangni + + M + + + + Paganetus + de Cornilione + + M + + + + Paganetus + filius quondam Paganelli de Linario + + M + + + + Paganinus + de Antognolo + + M + + + + Paganinus + quondam Boni + + M + + + + Paganinus + quondam Boni de Oliveto + + M + operarius + + + + Paganinus + quondam Dannacini + + M + + + + Paganinus + quondam Iohannis + + M + consuls de Marola + + + + Paganinus + quondam Mainardi + + M + + + + Paganinus + de Oliva + + M + + + + Paganinus + de Piazo + + M + + + + Paganinus + de Ponçano + + M + + + + Paganucius + de Padule + + M + + + + Paganinus + de Sancto Stephano + + M + notarius; syndicu, actor et procurator ac negociorum gestor + episcopi Lunensis + attestato dal 1253 al 1255 + + + + Paganinus + + M + domini Frederici secundi Romanorum imperatoris + notarius + attestato in una autentica non datata + + + + Paganus + + M + + + + Paganus + + M + notarius sacri palacii + presente in diverse autentiche non datate, posteriori al 1230 + + + + Paganus + de rivo de Armo + + M + + + + Paganus + de Balognano + + M + + + + Paganus + filius Matelde de Balognano et Faime quondam Sinibaldi de + Prato + + M + + + + Paganus + Ramundini + + M + + + + Palmeria + quondam Bonfilioli + + F + + + + Palmerinus + de Avula quondam Çanni + + M + + + + Palmerinus + filius Guidonis de Herberia + + M + + + + Palmerius + + M + + + + Palmerius + + M + consiliarius Carrarie + + + + Palmerius + quondam Acursi + + M + + + + Palmerius + de Savia + + M + + + + Palmerolus + de Fontana + + M + + + + Pançera + + M + + + + Panicacius + de Vallecla + + M + + + + Panicia + + + + + Panicolus + + M + + + + Panigacius + + M + + + + Paninus + + M + + + + Pansutus + + M + + + + Papa + + M + + + + Parcis + + M + correrius + + + + Parens + + M + + + + Parens + + M + iudex de Vallecla + + + + Parens + + M + magister + + + + Parens + de Capriliola + + M + + + + Parens + quondam Pasqualini / quondam Pasqualini de castro Sarzane + + M + castaldus + + + + Parens + quondam Patrisii de Bibola + + M + + + + Parens + quondam Pellini + + M + castaldus + + + + Parens + de Terrarossa + + M + + + + Parens + quondam Upecini de castro Sarzane + + M + + + + Parens + de Vallecla + + M + + + + Parenstina + de Terrarossola + + F + + + + Parentinus + + M + + + + Parentinus + + M + domini Frederici Dei gratia Romanorum imperatoris + notarius + attivo nel 1253 + + + + Parentinus + de Balzano + + M + + + + Parentinus + quondam Guilielmini de Serravalle + + M + + + + Parentinus + quondam Mançeti / quondam Manceti / quondam Manzeti + + M + castaldus curie Amelie + + + + Parentinus + frater Peregrini + + M + + + + Parentinus + Todeschie + + M + + + + Parisius + de Regnano + + M + + + + Pasquale + quondam Acursi de Barbaçano + + M + + + + Pasqualinus + + M + notarius sacri palacii, scriba publicus provincie + Lunisiane + attestato dal 1260 al 1272 + + + + Pasqualinus + de Brasile + + M + operarius + + + + Pasqualinus + de castro Sarzane + + M + notarius + + + + Pasqualinus + filius Parentis de Pasqualino de castro Sarzane + + M + + + + Passador + + M + + + + Passaventus + quondam Bonsengni de castro Sarzane + + M + + + + Pastor + + M + pastor Lunensis ecclesie + + + + Paulus + + M + + + + Paulus + + M + frater, minister hospitalis Sancte Crucis ad Faucem Arni + + + + Paulus + + M + frater, monacus monasterii de Capparana + + + + Paunessa + + F + + + + Pedone + quondam Bonaventure de Cepparana + + M + + + + Pegolotus + + M + + + + Pelerinus + filius Uberti de Soleria + + M + + + + Peradellus + + M + + + + Perasonus + de Aventia + + M + + + + Percival + quondam Guilielmi + + M + + + + Percival + Guilielmini de Portoverio + + M + + + + Peregrinus + + M + archipresbiter de Soleria + + + + Peregrinus + + M + canonicus Lunensis + + + + Peregrinus + + M + castaldus + + + + Peregrinus + filius Bonalbergi notarii / filius Bonalbergi de Carraria + notarii + + M + summi pontificis auctoritate notarius, iudex + ordinarius + attestato nel 1267 + + + + Peregrinus + de Apognana quondam Alberti + + M + + + + Peregrinus + filio Capreti de Popellano + + M + + + + Peregrinus + de Caria + + M + canonicus Lunensis + + + + Peregrinus + de Carraria + + M + castaldus + + + + Peregrinus + de Cotto + + M + + + + Peregrinus + de Burcione, filius quondam Gotezonis + + M + + + + Peregrinus + de Palude / de la Padule + + M + castaldus + + + + Peregrinus + de Puleca + + M + + + + Peregrinus + de Torano + + M + + + + Perosius + de castro Sarzane + + M + notarius + + + + Persona + de castro Sarzane + + M + + + + Persona + quondam Ubertini de Seraursi + + M + operarius de curte Sarzane + + + + Personeta + de castro Sarzane + + M + + + + Pesellus + + M + + + + Petrus + + M + dominus, canonicus Sancti Fridiani + + + + Petrus + + M + consiliarius + + + + Petrus + + M + episcopus Lunensis + Pietro vescovo di Luni, attestato probabilmente la prima volta nell'ottobre 1178; con certezza nell'aprile 1179 e l'ultima nel febbraio 1190. In un documento del + novembre 1180 è detto vescovo e + conte (Dei gratia Lunensi episcopo et eiusdem comitatus + comite). + + + + Petrus + + M + iudex domini imperatoris + roga alla metà del XII secolo + + + + Petrus + + M + iudex sacri palacii + roga alla metà del XII secolo + + + + + Petrus + + M + massarius + + + + Petrus + + M + magister, medicus + + + + Petrus + + M + notarius sacri palacii + attestato dal 1209 al 1229 + + + + Petrus + + M + presbiter de Soleria + + + + Petrus + Adalaxie de Sarravalle + + + + + Petrus + quondam Alberti + + M + + + + Petrus + de Ançelina + + M + + + + Petrus + de Arcula + + M + iudex de Vallecla + + + + Petrus + quondam domini Bernardini de Herberia + + M + + + + Petrus + quondam Blanci de Marçano + + M + + + + Petrus + <filius Bonacursi> + + M + + + + Petrus + de Brancheto + + M + + + + Petrus + de Capagno + + M + + + + Petrus + de Capriliola + + M + + + + Petrus + Cibiliani + + M + + + + Petrus + + M + presbiter de Cuscugnano + + + + Petrus + Dalportone + + M + + + + Petrus + de Donata + + M + + + + Petrus + de Florino + + M + + + + Petrus + filius quondam Gentis de castro Sarzane + + M + notarius sacri palacii + attestato nel 1267 + + + + Petrus + quondam Gibertini + + M + + + + Petrus + quondam domini Girardini <de Herberia> + + M + + + + Petrus + quondam Gualteroti de Soleria + + M + notarius sacri palacii + attestato dal 1255 al 1278 + + + + Petrus + quondam Henrigoli + + M + + + + Petrus + de Herberia + + M + + + + Petrus + Iordani + + M + consiliarius + + + + + Petrus + de Lamusca de Soleria + + M + + + + Petrus + quondam Macchangnani de Canaleçensi + + M + + + + + Petrus + de Orbagnano + + + + + Petrus + quondam Panicacii + + M + + + + Petrus + filius quondam Petri + + M + + + + Petrus + de Pontremulo + + M + + + + Petrus + de Porreto + + M + + + + Petrus + de Pullola + + M + + + + Petrus + quondam Sabrini + + M + + + + Petrus + de la Serra + + M + + + + Petrus + de Soleria + + M + notarius sacri palacii + attestato nel 1267 + + + + Petrus + de Summo Vico + + M + + + + Petrus + de Valdonnica + + M + + + + Petrus + de Valença + + M + + + + Petrus + quandam Villaneti de Soleriade Luna + + M + + + + Pettenarius + de Cervaria + + M + + + + Philamannus + + M + + + + Philippinus + + M + + + + Philippucius + de Sarzana + + M + + + + Philippus + + M + + + + Philippus + + M + episcopus Lunensis + Fiippo vescovo di Luni, secondo con questo nome, attestato un'unica volta + nel marzo 1096. + + + + Philippus + + M + domini Ottonis quarti Romanorum serenissimi imperatoris + notarius + attestato dal 1215 al 1225 + + + + Philippus + filius Maccii + + M + + + + Philippus + de Prato + + M + + + + Philippus + de Soleria + + M + + + + Philippus + de Viciale + + M + + + + Picus + + M + + + + Piciolbonus / Piçolbonus / Pizolbonus + + M + + + + Piciolbonus / Piçolbonus / Pizolbonus + + M + archipresbiter + + + + Piciolbonus / Piçolbonus / Pizolbonus + quondam Ugolini de Arcula, de loco dicto Monte + + M + + + + Piçolus + + M + + + + Pildiritius + filius Opiçonis de Soleria + + M + + + + Pilinketus + + M + + + + Pilius + de Susano + + M + + + + Pillitius + + M + + + + Pillotus + de Ortonovo + + M + + + + Pilosus + + M + + + + Piluchus + filius Guidonis de la Feletta + + M + + + + Pilus + + M + + + + Pilus + de Campagnano + + M + + + + Pilus + Ricii + + M + + + + Pina + filia quondam Rogerini de Maretima + + F + + + + Pinus + Compagneti + + M + + + + Pinosius + nomine Iacopinus + + M + Romanorum imperatoris notarius + attestato nel 1231 + + + + Pipinus + + M + episcopus Lunensis + Pipino, vescovo di Luni, attestato la prima volta nell'agosto 1970 e l'ultima nel febbraio 1176. + + + + Pisanella + + F + + + + Pisanus + + M + + + + Pisanus + de Monteclo + + M + + + + Piscialaqua + + M + + + + Pizolus + filius Albertide Follis de Barzi + + M + + + + Pizus + Iordanis + + M + + + + Placentia / Plasentia + + F + + + + Placentinus + de Vallecla + + M + + + + Plebanetus + quondam Aldebertini + + M + consul castri Sarzane + + + + Plebanus + + M + consiliarius Carrarie + + + + Plebanus + quondam Ugolini de Veçale + + M + + + + Pocobella + de Molino + + F + + + + Podestas + de Fliolino + + M + + + + Poletus + de Polo + + + + + Polletus + frater Mellodie + + M + + + + Ponçaninus + + M + + + + Ponçius / Pontius + + M + + + + Ponçius / Pontius + quondam Albertinelli pecciatoris + + M + + + + Pontremulus + + M + domnus, clericus monasterii de Capparana + + + + Porcarinus + + M + + + + Portenarius / Portonarius + + M + presbiter + + + + Portenarius / Portonarius + de Tivegna + + M + + + + Prebosus + + M + + + + Prefectus + + M + domini imperatoris atque Lunensis curie notarius + attivo dal 1198 al 1227 + + + + Prefectus + + notarius domini Henrici imperatoris invictissimi + attestato in attività nel 1197 + + + + Proculus + de Amelia + + M + + + + Prodominus + + M + + + + Prodomus / Prodohomo + + M + + + + Prodomus / Prodohomo + quondam Alcarini + + M + + + + Prodomus + + M + + + + Pucius + de Soleria + + M + + + + Pugnetus + de Orbagnano + + + + + + Rafiolus + + M + + + + Rafiolus + quondam Guidonis Calmangarii + + M + + + + Raimençus + + M + + + + Raimondus + + M + episcopus Lunensis + Raimondo, vescovo di Luni, attestato la prima e ultima volta nel febbraio + 1168 come electus, ossia eletto ma non ancora consacrato. + + + + Raimundinus / Raimondinus / Ramondinus + + M + + + + Raimundinus / Raimondinus / Ramondinus + quondam Formentini de Corciola + + M + operarius de curte Sarzane + + + + Raimundinus / Raimondinus / Ramondinus + Gerardini + + M + + + + Raimundinus / Raimondinus / Ramondinus + quondam Guidonis de Opizo + + M + operarius de curte Sarzane + + + + Raimundinus / Raimondinus / Ramondinus + de Petrognano + + M + + + + Rainardus + + M + presbiter + + + + Rainerius / Raynerius/ Reinerius + + M + pelliciarius + + + + Rainerius / Raynerius/ Reinerius + + M + presbiter Sancti Mauricii + + + + Rainerius / Raynerius/ Reinerius + + M + scarius + + + + Rainerius / Raynerius/ Reinerius + quondam Aicardini de Orto + + M + + + + Rainerius / Raynerius/ Reinerius + filius Bottomini de Rofianus + + M + + + + Rainerius / Raynerius/ Reinerius + de Castronovo + + M + + + + Rainerius / Raynerius/ Reinerius + de Corvaria + + M + + + + Rainerius / Raynerius/ Reinerius + de Fosdenova + + M + + + + Rainerius / Raynerius/ Reinerius + Gualteroti + + M + vicarius pro comuni Pisano in provincia Lunisiane + + + + Rainerius + quondam Guilielmini de Guertio + + M + + + + Rainerius / Raynerius/ Reinerius + quondam Rustichini + + M + + + + Rainerius / Raynerius/ Reinerius + filius quondam Salli de Ripa Arni + + M + domini Henrici serenissimi Romanorum imperatoris iudex et + notarius + attestato in autentica non datata + + + + Rainerius / Raynerius/ Reinerius + quondam Tancredi + + M + + + + Rainerius / Raynerius/ Reinerius + de Terençoliis + + M + + + + Ramanenseus + de Sarzana + + M + + + + Ramengus + + M + + + + Ramengus + de Casapoci + + M + + + + Ramundetus + + M + + + + Ramundetus + de Iovello + + M + + + + Rainaldus + Franciscus + + M + + + + Rangolellus + de Lacanova + + + + + Rangone + + M + + + + Ranucinus + de Carraria + + M + miles + + + + Ranucinus + <filius Henricoli> + + M + + + + Ranucius + quondam Iacobi Quiviquii + + M + + + + Rapallus + quondam Barçi de Guaraçano + + M + + + + Rapallus + de Veraxano + + M + + + + Ravanellus + + M + + + + Rapestra + + F + + + + Recordatus + de Sarzana + + M + + + + Reigetus / Rigettus + + M + + + + + Remburça + + F + + + + Renanus + + M + frater de ordine Fratrum Predicatorum + + + + Retondalus + de Castronovo quondam Gerardini + + M + + + + Retondolus + de Colle + + M + + + + Retondolus + de Vallecla + + M + + + + Retondus + de Castronovo quondam Gerardini de Colle + + M + + + + Ribellus + + M + + + + Ricandus + + M + notarius + attestato nel 1236 + + + + Ricardellus + de Castello Novo + + M + + + + Riccadonna + + F + + + + Riccadonna + filia quondam Bonacapti + + F + + + + Riccadonna + quondam Henrici de castro Sarzane + + F + + + + Riccius + de Montemarcello + + M + + + + Riccolus + + M + + + + Riccomannus + quondam Monaci de Ponzanello + + M + + + + Riccomannus + quondam Vitaleti + + M + + + + Riccomannus + Bolgarini de Luca + + M + vicarius in provincia Lunisiane + + + + Riccovillanus + de Veçale + + M + consiliarius Carrarie + + + + Riccus + de castro Sarzane + + M + + + + Richelda / Richalda + + F + + + + Richelda + filia Amate + + F + + + + Richelda + quondam Bonici + + F + + + + Richelda + magistri Fancelli + + F + + + + Richelda + de Minuçano + + F + + + + Richelda + <quondam Rodulfini de Vico> + + F + + + + Richelda + filia quondam Vicini de Vico + + F + + + + Ricius + quondam Bottocii de Oliveto + + M + operarius de curte Sarzane + + + + Ricobaldus + + M + + + + Ricolus + de Trebiano + + M + + + + Ricomannus + + M + consiliarius + + + + Ricomannus + de Colle + + M + + + + Ricourus + Gaberthus quondam Oradini de Avula + + M + + + + Rigalporus + de Amelia + + M + + + + Rippellus + + M + + + + Ripus + + M + + + + Robertus + de Sarzana + + M + + + + Rodulfinus + + M + + + + Rodulfinus + de Carersto + + M + + + + Rodulfinus + de Vico + + M + + + + Rodulfus + + M + + + + Rodulfus + + M + arcidiaconus Lunensis + + + + Rodulfus + + M + camemarius + Da indentificarsi probabilmente con Rodolfo di Castelmur, sul quale CASTELMUR_1978 + + + + Rodulfus + + M + domini imperatoris notarius + attestato tra 1139 e 1141 + + + + Rodulfus + de Panzano / Ponzano + + M + + + + Rodulfus + de Sancto Stephano + + M + castaldus domini Gualterii Lunensis episcopi + + + + Rodulfus + de Torano + + M + + + + Rodulfus + quondam Ugolini + + M + consiliarius + + + + Roffinellus + de Marzano + + M + + + + Rofinellus + de Colle + + M + + + + Rofinus + + M + dominus de Bozano + + + + Rogerinus + + M + + + + Rogerinus + quondam Advocati + + M + + + + Rogerinus + Sinischie de castro Sarzane + + M + + + + Rogerius + + M + + + + Rognosus / Rongnosus + + M + + + + Rolandetus + de Fosdenova quondam Gerardi + + M + + + + Rolandinus / Rollandinus + quondam Guilielmi de Folo + + M + + + + Rolandinus / Rollandinus + + M + + + + Rolandinus / Rollandinus + + M + canonicus Lunensis + + + + Rolandinus / Rollandinus + <quondam Bonadoni> + + M + + + + Rolandinus / Rollandinus + quondam Code Iudei / Bottacungo + + M + dominus de Falcinello + + + + Rolandinus / Rollandinus + quondam Gualdi + + M + operarius de curte Sarzane + + + + Rolandinus / Rollandinus + quondam Guilielmini + + M + operarius de curte Sarzane + + + + Rolandinus / Rollandinus + de Marola + + M + + + + Rolandinus / Rollandinus + de Montecello + + M + operarius de curte Sarzane + + + + Rolandinus / Rollandinus + de Monteclaro + + M + + + + Rolandinus / Rollandinus + de la Padule + + M + + + + Rolandinus / Rollandinus + de Portesone + + M + + + + Rolandinus / Rollandinus + filio quondam Torselli + + M + + + + Rollandus + + M + + + + Rollandus + + M + abbas de Cepparana + + + + Rollandus + + M + canonicus Lunensis, diaconus + + + + Rollandus + + M + castaldus + + + + Rollandus + + M + diaconus + + + + Rollandus + + M + diaconus, monacus + + + + Rollandus + + M + ferrarius + + + + Rollandus + + M + presbiter de Castro Novo + + + + Rollandus + + M + vicecomes + + + + Rollandus + de Carraria + + M + miles + + + + Rollandus + <frater Peregrini archipresbyteri> + + M + + + + Rollandus + filius quondam Gerardini de Monçone + + M + + + + Rollandus + quondam Guilielmi de Valdonega + + M + + + + Rollandus + quondam domini Henrici Blanci de Herberia + + M + + + + Rollandus + de Panigale + + M + clericus + + + + Rollandus + de Soleria + + M + castaldus + + + + Rollandus + quondam Ugolini de Veçale + + M + + + + Rollandus + quondam Tebaldini de Soleria + + M + + + + Rollandus + de Torano + + M + + + + Rollandus + filius Ugolini de Valcava + + M + + + + Rolandus + Vagus de Luca / Vagus / Vagus Lucanus / Vagi + + M + + + + Rolandinus / Rollandinus + de Vezano + + M + + + + Rollandutius + + M + + + + Romanus + + F + abbas abbatie Sancti Venantii Cepparane + + + + Romea + + F + + + + Romea + filiam quondam Gerardini de Sorbo + + F + + + + Romeus + + M + + + + Romeus + quondam Brancheti + + M + + + + Romeus + + M + consul de Falcinello + + + + Romeus + Lazarelli de Castronovo + + M + + + + Romeus + Morsellere de burgo Sarzane + + M + + + + Romeus + de Soleria + + M + + + + Romeus + quondam Vitalis escarii + + M + operarius de curte Sarzane + + + + Rondarella + quondam Formenti de castro Sarzane + + F + + + + Rosa + + F + + + + Rosa + de Balognano + + F + + + + Rosada + mater filiorum quondam Alberti + + F + + + + Rubeus / Rossus + + M + + + + Rubeus / Rossus + + M + iudex, assessor in provincia Lunisiane + + + + Rubeus / Rossus + quondam Philippi + + M + consiliarius Sancti Terencii + + + + Rubeus / Rossus + de Fosdenova + + M + + + + Rubeus / Rossus + quondam Iacomini + + M + iudex + + + + Rubeus / Rossus + de Sarzana + + M + iudex, dominus + Probabilmente da identificarsi con Rossus iurisperitus presente + in diversi altri documenti nella seconda metà del XIII secolo. + + + + Rubeus / Rossus + quondam Gerardi + + M + + + + Rubeus / Rossus + de Sarzana + + M + iurisperitus + Probabilmente da identificarsi con Rubeus / Rossus iudex presente in diversi + altri documenti nella seconda metà del XIII secolo. + + + + Rubeus / Rossus + de Ysola + + M + + + + Rossolus + de Favale + + M + + + + Rustichinus + de Orbagnanno + + M + + + + Rubbertus + + M + pistor + + + + + Ruffaldus + + M + + + + Ruffinus + + M + + + + Rugelettus + + M + + + + Rundanellus + + M + + + + Rustegonus + + M + + + + Rustichellus / Rusticellus / Rustigellus + + M + + + + Rustichellus / Rusticellus / Rustigellus + de loco dicto Peretolo filius quondam Guilicionis + + M + + + + Rustichellus / Rusticellus / Rustigellus + Rogete Stiporto + + M + + + + Rustichellus / Rusticellus / Rustigellus + de Sanctomeniaco + + M + + + + Rustichellus / Rusticellus / Rustigellus + de Vignola + + M + + + + Rustichellus / Rusticellus / Rustigellus + quondam Vitalis escarii + + M + operarius de curte Sarzane + + + + Rustichinus / Rustiginus + + M + + + + Rustichinus / Rustiginus + de Castro Novo + + M + + + + Rustichinus / Rustiginus + de Gisla + + M + + + + Rusticus + + M + + + + Rusticus + + M + magister Sancte Crucis de ripa Sarni + + + + Rusticus + + M + presbiter, cappellanus domini episcopi + + + + + Sabbatinus + + M + + + + Sabbatinus + quondam Albertacii + + M + operarius de curte Sarzane + + + + Sabbatinus + de Apiola filius quondam Donne de Apiola + + M + + + + Sabbatinus + quondam Durantis Ravolati + + M + operarius de curte Sarzane + + + + Sabbatinus + de Monteçanne + + M + + + + Sabbatinus + de Plaza + + M + + + + Sabbatinus + de castro Sarzane + + M + + + + Sabbatinus + de Seraursi + + M + operarius de curte Sarzane + + + + Sabbatellus + <filius Bonguidi> + + M + + + + Sachinus + quondam domini Gualdi de Sancto Stephano + + M + + + + Sachinus + filius Nuveloni + + M + notarius + attivo nel 1279 + + + + Saconus + + M + + + + Safarone + Picialboni + + M + + + + Saladinellus + filius quondam Iacopini Malaraice + + M + + + + Saladinus + + M + magister, archipresbiter de Viano + + + + Saladinus + + M + magister + + + + Saladinus + de Fosdenova + + M + + + + Saladinus + quondam domini Saladini de Fosdenova + + M + + + + Saladus + quondam Actocanini de Masio + + M + + + + Salamoncellus/Salomone + Baratella + + M + dominus + Probabilemnte da identificare con Salamone Lucano presente in numerosi + documenti + + + + Salicia + + M + domina + + + + Salomon + Lucanus + + M + dominus, nobilis + Probabilemnte da identificare con Salamone o Salamoncellus Baratella Lucano + presente in altri documenti + + + + Salvagius + de Marciasio + + M + dominus + + + + Salve + quondam Alberti + + M + + + + Salve + de Fontenella + + M + + + + Salve + de Montia + + M + + + + Salvetus / Salvettus + + M + + + + Salvetus / Salvettus + de Castronovo + + M + + + + Salvetus / Salvettus + de Fontenella + + M + + + + Salvetus / Salvettus + de Petrognano + + M + + + + Salvetus / Salvettus + quondam Ugolini de Ortonovo + + M + + + + Salvus + quondam Carençoli + + M + operarius de curte Sarzane + + + + Samuel + quondam Blanci de Marçano + + M + + + + Samuellus + quondam Blanci + + M + + + + Saracinus + Colmezano + + M + + + + Saracina + + F + + + + Sarda + + F + + + + Sardus + + M + + + + Sardus + + M + marchio + da identificare col marchese di Massa attestato nel 1213 come detentore di + Castello Aghinolfi e poi ancora nel 1216 + + + + Saricinus + + M + + + + Sarzanensis + quondam Gandolfi + + M + operarius de curte Sarzane + + + + Sarzanensis + de castro Sarzane + + M + + + + Savarisius + + M + consul de Ponzanello + + + + Scoita + + F + + + + Segnorellus / Seniorellus + + M + + + + Segnoretus / Senioretus + + M + + + + Segnoretus / Senioretus + + M + consiliarius + + + + Segnoretus / Senioretus + de Ponzano + + M + consiliarius + + + + Segnoretus / Senioretus + quondam Rainerii de Cortiola + + M + + + + Segnoretus / Senioretus + de Vallecla + + M + + + + Segnorinus + + M + + + + Segnorinus / Seniorinus + de Vallecla + + M + + + + Selveradus + filius quondam Enzoni + + M + + + + Sembardus + + M + + + + Sensus + + M + + + + Septembrina + + F + + + + Septembrina + filia quondam Guilielmi de la Trina + + F + + + + Septembrina + de castro Sarzane + + F + + + + Sibilia + + F + + + + Sibilia + quondam Mansi + + F + + + + Sibilia + quondam Venture + + F + + + + Sifredus + + M + + + + Sygenaldus + de Orbagnano + + M + + + + Sikinus + + M + + + + Sigezo + + M + + + + Simona + + F + + + + Simon / Symon + quondam Iuncte de Sancto Stephano + + M + + + + Simon/Symon + + M + scarius + + + + Simon / Symon + Asinellus de Carraria + + M + + + + Simon / Symon + de Porta + + M + + + + Simonetus / Symonetus + + M + operarius de curte Sarzane + + + + Simonetus / Symonetus + + M + notarius, sacri palacii notarius + attestato dal 1255 al 1279 + + + + Simonetus / Symonetus + quondam Gerardini de Terriola + + M + operarius de curte Sarzane + + + + Simonetus / Symonetus + quondam Sabrini + + M + + + + Simonetus / Symonetus + de Serra + + M + + + + Simonetus / Symonetus + quondam Vite + + M + + + + Sismundus + + M + camerlengus + + + + Sismundus + + M + canonicus Lunensis, custos + + + + Soldanus + frater Norandini episcopi + + M + + + + Spagnolus + Bonfantis + + M + + + + Spinelli + + M + nome collettivo + + + + Spinellus + + M + + + + Spinellus + quondam Baldicioni de Ponzanello + + M + + + + Spinellus + filius Caruccii + + M + + + + Squasius + + M + + + + Stancius + + M + massarius + + + + Statius + + M + + + + Stephanellus + de Summo Tranci quondam Bessi + + M + + + + Stephanetus + de Cepparana + + M + + + + Stephanus / Stevanus + + M + + + + Stephanus / Stevanus + de la Crosa + + M + + + + Stephanus / Stevanus + de Guerceto + + M + + + + Stephanus / Stevanus + de Ponzanello + + M + + + + Sticius + Conforti de Mulathuso + + M + + + + Stoplius + de burgo Sarzane + + M + + + + Stoppus + quondam Alberti de burgo Sarzane/ filio Alberti Corbellarii + + M + corbellarius + + + + Stoppus + de Sarzana + + M + speciarius + + + + Strapatus + + M + + + + Strapatus + de Padule + + M + + + + Suscarius + de Trebiano + + M + + + + + + T. + + M + presbiter de Biliolo + + + + Taddeus + de Carraria Bonalbergi notarii filius + + M + apostolice sedis auctoritate notarius + attestato in una autentica non datata + + + + Tancredinus + + M + + + + Tancredinus + quondam Bernardi + + M + dominus de Falcinello + + + + Tancredinus + filius Gerardi de Tancredino / Bottacungo + + M + dominus de Falcinello + + + + Tancredinus + de Vallechia + + M + + + + Tancredus + + M + + + + Tancredus + Lucanus + + M + iurisperitus + + + + Tancredus + de Padule + + M + + + + Tegrinus + filio Albertini de Nirono + + M + + + + Tedaldinus + + M + + + + Tedaldus + quondam Pagani + + M + + + + Tedora + + F + + + + Tedora + + F + domina de Falcinello + + + + Tedora + de Ficola quondam Franceschini + + F + molendinaria + + + + Tegrinus + + M + iudex + + + + Tempanellus + + M + iudex provincie Lunisiane + + + + Temus + + M + cantor + + + + Terraforte + + M + + + + Testa + + M + + + + Testa + de plano Carrarie + + M + + + + Testaforte + de Sarzana + + M + imperii sacri iudex, notarius, syndico et procuratori episcopi + Lunensis + attestato nel 1255 + + + + Teuzo + + M + presbiter + + + + Thebaldinus + + M + + + + Thebaldinus + de Debicoe / de Debbice /de Bobice + + M + + + + Thebaldinus + de Padule + + M + + + + Thebaldinus + quondam Robertini + + M + + + + Thebaldinus + de Soleria + + M + castaldus + + + + Thodescus + quondam Beccafabe + + M + + + + Theopoldus + de Leschemunde + + M + comes + Forse identificabile con Diepold conte di Lechsgemünd, nato intorno al 1140 + e morto nel 1192 come da scheda di Doris Pfister pubblicata il 14.05.2012 nel + Historisches Lexikon Bayerns + + + + Thodescus + quondam Bonizi + + M + operarius de curte Sarzane + + + + Tholomeus + + M + archipresbiter de Castello + + + + Tholomeus + de Congia + + presbiter + + + + Tholomeus + de Fonticlo + + + + + Thomas + de Ponçano + + M + + + + Tillora + + F + + + + Timpus + + + + + Tiniosus / Tignosus / Tigniosus + + M + + + + Tiniosus / Tignosus / Tigniosus + de Baldolino + + M + + + + Tiniosus / Tignosus / Tigniosus + Buraio + + M + + + + Tiniosus / Tignosus / Tigniosus + de Fontanella + + M + + + + Tiniosus / Tignosus / Tigniosus + quondam Gerardini + + M + operarius de curte Sarzane + + + + Tiniosus / Tignosus / Tigniosus + de Maroalco + + M + + + + Tiniosus / Tignosus / Tigniosus + + M + consuli de Moncicolo + + + + Tiniosus / Tignosus / Tigniosus + quondam Parentis de castro Sarzane + + M + castaldus episcopi + + + + Tiniosus / Tignosus / Tigniosus + de Ripola + + M + castaldus episcopi + + + + Tinnisius + + M + + + + Tiralducius + + M + + + + Todescha + quondam Gualteroni de Carcandula + + F + + + + Todeschinus + + M + + + + Todeschus / Todescus + + M + + + + Todeschus / Todescus + + M + rector ecclesie Sancti Mauricii + + + + Todeschus / Todescus + quondam Guilielmi + + M + + + + Torisendus + filius quondam domini Gibertini <de Herberia> + + M + + + + Torreculus + + M + + + + Torsellero + de Sarzana + + M + + + + Tosus + de Calesana + + M + consul de Marola + + + + Trafanellus + quondam Gerardini de Ysola + + M + + + + Trampulius + quondam Dominici cortesiani + + M + operarius de curte Sarzane + + + + Trapedecinus + quondam Gonforuti de Beduçano + + M + + + + Trebaldinus + + M + + + + Trumbolus + de Amelia + + M + + + + Tudiscus + quondam Bonapartis + + M + + + + Turchius / Turcus + + M + + + + Turpha + + M + + + + Tursaccus + + M + Lunensis canonicus + + + + Tursus + + M + magister + + + + Tursus + de Tivennia + + M + + + + Tuscanus + + M + + + + Tutobonus + + M + + + + + Ubaldettus + + M + + + + Ubaldinus + + M + + + + Ubaldinus + de Nichola + + M + + + + Ubaldus + + M + cantor, canonicus Lunensis + + + + Ubaldus + filius Guidonis de la Feletta + + M + + + + Ubaldus + de Parente / quondam Parentis + + M + + + + Ubertellus + + M + + + + Ubertinus + + M + + + + Ubertinus + de la Cala + + M + + + + Ubertinus + Grassus de Sarzana / Crassi / Crassus + + M + + + + Ubertinus + de Rio + + M + + + + Ubertinus + de la Serra + + M + + + + Ubertinus + de Thufara + + M + + + + Ubertinus + de Valmoro + + M + + + + Ubertus + + M + + + + Ubertus + + M + magister + + + + Ubertus + de Boiano, Pagani filius + + M + magister + + + + Ubertus + de Formicoso + + M + + + + Ubertus + Rossus + + M + + + + Ubertus + de Soleria + + M + + + + Ubertus + de Torano, filius quondam Spinelli + + M + dominus de Carrara + Si veda RICCI 2012, pp. + 42-45 + + + + + Ubertus + quondam Çurri / Çurri Lucano + + M + + + + Uguicius + de Fano + + M + + + + Ugerinus + + M + + + + Ugerinus + de Petro + + M + + + + Ugetus + + M + + + + Ugitius + + M + + + + Ugitius + + M + archipresbter ecclesie sancti Stephani + + + + Ugitius + + M + camerarius + + + + Ugo + + M + + + + Ugo + + M + archidiaconus + + + + Ugo + + M + archipresbyter de Colognola + + + + Ugo + + M + presbiter de Ponzanello + + + + Ugo + < filius quondam Alberti marchionis> + + M + marchio + Ugo, marchese della stipe obertenga, figlio di Alberto III; risulta già + defunto nel 1080 (FALCO 1916, + XXVI). + + + + Ugo + filius quondam Azonis + + M + + + + Ugo + de Casapoli + + M + + + + Ugo + de Herberia + + M + + + + Ugo + Machetus filio quondam Guidonis Rubei + + M + + + + Ugo + Melice + + M + + + + Ugo + de Pilato + + M + + + + Ugolinus + + M + + + + Ugolinus + + M + canonicus Lunensis, subdiaconus + + + + Ugolinus + + M + consiliarius Carrarie + + + + Ugolinus + + M + sacri palacii et Lunensis curie notarius + sacri palacii notarius + ativo dal 1204 al 1230 + + + + Ugolinus + de Amelia + + M + + + + Ugolinus + quondam Annoboni + + M + + + + Ugolinus + Armannini /quondam Armannini + + M + + + + Ugolinus + dictus Bellapença de Castronovo + + M + + + + Ugolinus + de Bellosa + + M + + + + Ugolinus + Bicus de Vezano + + M + + + + Ugolinus + de Bonaora + + M + + + + Ugolinus + quondam Bonfilioli + + M + + + + Ugolinus + quondam Bonusii + + M + consiliarius + + + + Ugolinus + de Carraria + + M + + + + Ugolinus + de Columba + + M + + + + Ugolinus + quondam domini Dati iudicis, olim filii Conforti notarii /quondam + domini Dati iudicis de Sarzana + + M + + + + Ugolinus + Dominice + + M + consiliarius + + + + Ugolinus + de Ficaro, quondam Falconi + + M + + + + Ugolinus + frater Botrigellus quondam Fantinelli de Monçolono + + M + operarius de curte Sarzane + + + + Ugolinus + de Ficolungo + + M + + + + Ugolinus + de Genestulo + + M + + + + Ugolinus + filium Girardi de Saleceto + + M + + + + Ugolinus + quondam Gualteronis de Petrognano + + castaldus + M + + + + Ugolinus + quondam Grilli + + M + + + + Ugolinus + quondam domini Guidonis + + M + + + + Ugolinus + quondam Guilielmi de Carboncello de castro Sarzane + + M + + + + Ugolinus + quondam Henrigeti + + M + + + + Ugolinus + quondam Lanfranchini / filio Lanfranchini / quondam Lanfranchini de + Ponzanello + + M + consiliarius + + + + Ugolinus + <Lucanus> + + M + + + + Ugolinus + de castro Sarzane quondam Macchangnani de Canaleçensi + + M + + + + Ugolinus + de Marciasio quondam He....i + + M + + + + Ugolinus + de Marzeno + + M + + + + Ugolinus + Marzolus + + M + + + + Ugolinus + de Monte + + M + forse da identificarsi con Ugolinus Sambucus + + + + Ugolinus + de Padule + + M + + + + Ugolinus + Philippi + + M + + + + Ugolinus + Recçani + + M + + + + Ugolinus + de Rizola + + M + + + + Ugolinus + de Roselmino + + M + + + + Ugolinus + quondam Sabbatini + + M + + + + Ugolinus + dictus Sambucus de Monte + + M + frse da identificarsi con Ugolinus de Monte + + + + Ugolinus + de Valechia + + M + + + + Ugolinus + quondam Venuti + + M + consul de Ponzanello + + + + Ugolinus + de Veçale + + M + + + + Ugolinus + de Vexana + + M + + + + Ugolinus + Ymelde + + M + consiliarius + + + + Ugolinus + de Zucheto + + M + + + + Uguito + + M + + + + Urdidio + quondam Arcardi + + M + + + + Ursettus + filius quondam Bellucii de Cacano + + M + + + + Ursolus/Urçolus + de Burçono + + M + + + + Ursus + de Drivi + + M + notarius + + + + Ursus + quondam Durantis + + M + + + + Ursus + filius quondam Gerarducii de la Serra + + F + + + + Ursus + quondam Laçarelli + + M + + + + Ursus + quondam Marsilii + + M + + + + Ursus + quondam Ruffinelli de Marçano + + M + + + + + Valentina + + F + + + + Valentinus + + M + + + + Valentinus + de Carpeneto + + M + + + + Valentinus + de Castegneto + + M + + + + Valentinus + filius Descaltii de castro Sarzane + + M + + + + Valentinus + quondam Favalini + + M + + + + Valentinus + de La Fontana + + M + cocus + + + + Valletus + + M + + + + Vassallus + de Ficaro, quondam Falconi + + M + + + + Veçale + quondam Ugonis Rubei de Veçale / quondam Guidonis Rubei de + Veçale + + M + + + + Veçalinus + + M + + + + Veclus + + M + + + + Veltrus + quondam Guilielmi de donna Emma + + M + + + + Vegnante + + M + + + + Vegnutus / Venutus + + M + + + + Vegnutus / Venutus + de Torano + + scarius + M + + + + Vegnutus / Venutus + Basiadore de Torano + + M + forse da identificarsi con Venutus de Torano + + + + Vegnutus / Venutus + filio Bellutii de Moneta + + M + + + + Vegnutus / Venutus + quondam Bianchi de castro Sarzane + + M + + + + Vegnutus / Venutus + filius Bonaiuncte + + M + + + + Vegnutus / Venutus + quondam Carentani de Puleca + + M + + + + Vegnutus / Venutus + Corroçatus + + M + + + + Vegnutus / Venutus + qui nuncupor Gallotollus de Beriola + + M + + + + Vegnutus / Venutus + quondam Musini + + M + consiliarius + + + + Vegnutus / Venutus + de Ponzanello + + M + + + + Vegnutus / Venutus + quondam Ramondini de castro Sarzane + + M + + + + Vegnutus / Venutus + de Torano + + M + forse da identificarsi con Venutus Basiadore + + + + Vegnutus / Venutus + quondam Viviani + + M + + + + Veido / Guido + + M + + + + Veltro + de Avencia + + M + + + + Veltro + de castello Aginulfi + + M + + + + Veltro + quondam Guilielmi de donna Hemina + + M + + + + Veltro + de Corvaria quondam Guilielmi + + M + + + + Veltro + de Petrognano + + M + + + + Venacius + + M + abbas Sancti Caprasii + + + + Venenus + filius quondam Martini + + M + + + + Ventitus + de Torano + + M + consiliarius Carrarie + + + + Ventralinus + quondam Monaci de Ponzanello + + M + + + + Ventura + + M + + + + Ventura + quondam Alberti + + M + + + + Ventura + filius Aldeberadi + + M + + + + Ventura + de Aventia + + M + consiliarius Carrarie + + + + Ventura + de Balognano + + M + + + + Ventura + Basiadore + + M + + + + Ventura + Batigiati + + M + + + + Ventura + quondam Bellomi de Codena + + M + + + + Ventura + quondam Benedicti + + M + + + + Ventura + quondam Bernardi + + M + + + + Ventura + de Biduçano + + M + magister + + + + Ventura + de Ciserano + + M + + + + Ventura + de Colle de Gragnana + + M + + + + Ventura + quondam Gandolfini + + + + + Ventura + quondam Guilielmi de Codesorbo + + M + + + + Ventura + quondam Martini Brageri + + M + + + + Ventura + quondam Molinarii de Posticio + + M + + + + Ventura + quondam Monteseni de Monte + + M + + + + Ventura + de Oratorio + + M + domini Frederici Romanorum imperatoris notarius et postea + excellentissimi Henrici imperatoris iudex + attestato in autentica non datata + + + + Ventura + de Plaça + + M + + + + Ventura + de Puleca + + M + consul de Puleca + + + + Ventura + quondam Rollandini + + M + + + + Ventura + de Sarzana + + M + + + + Ventura + de Thufara / de Tufara + + M + + + + Venturellus + + M + + + + Venturellus + quondam Bonaiuti + + M + + + + Venturentus + de Fontanella + + M + + + + Venturolus + quondam Portonarii + + M + + + + Verdilia + + F + + + + Verdilia + de Castronovo + + F + + + + Vernacius + + M + archipresbiter de Offiano + + + + Vernacius + + M + presbiter, canonicus Lunensis + + + + Vernacius + quondam Guilielmi de Cantio + + M + operarius de curte Sarzane + + + + Verrinus + + M + + + + Versavinus + + M + + + + Versus + quondam Gordiani de Castronovo + + + + + Vescontinus + quondam Bonencontri de Trebiano + + M + + + + Vesina + filia Bonissime de Capagnana + + F + + + + Vessosa + quondam Petri de Florino + + F + + + + Vestitus + + M + + + + Vetius + + M + + + + Viciale + quondam Ugolini de Ventura + + + + + Vicina + + F + + + + Vicinus + quondam Agustini de Casapoci + + M + + + + Vicinus + de Vico + + M + + + + Vidalis + de Busco + + M + + + + Vidalnus + + M + + + + Villana + + F + + + + Villanellus + de Vallecla + + M + + + + Villanetus + filius quondam Attolini de Soleria + + M + + + + Villanus + + M + + + + Villanus + quondam Alioti Lucanus + + M + + + + Villanus + + M + archipresbiter + + + + Villanus + + M + massarius + + + + Villanus + Lucanus + + M + + + + Villanus + filius Philippi de Prato + + M + + + + Villanus + Pitiani + + M + + + + Villanus + quondam Porroneti de Porreto/quondam Pontonetti de Poreto + + M + + + + Villanus + de Portu Veneris + + M + + + + Villanus + de Sarzana + + M + + + + Villanus + quondam Tancredi de la Sala + + M + + + + Villanus + de Vallecla + + M + + + + Vincentius + de Carraria Proyni filius + + M + Sancte Romane Sedis auctoritate notarius ac iudex + ordinarius + attivo nel 1272 + + + + Vinciguerra + <filius Aldeprandi vicedomini> + + M + + + + Viridis + + F + domina de Falcinello + + + + Vita + Sicco + + M + + + + Vitale + de Martinella + + M + + + + Vitaletus + + M + + + + Vitaletus + de Bonno + + M + operarius de curte Sarzane + + + + Vitaletus + Capusoli + + M + operarius de curte Sarzane + + + + Vitaletus + de Perbeçola + + M + + + + Vitaletus + de Pira + + M + + + + Vitaletus + de Plaça + + M + + + + Vitalis + + M + + + + Vitalis + de Beagua + + M + operarius de curte Sarzane + + + + Vitalis + quondam Belseris + + M + operarius de curte Sarzane + + + + Vitalis + quondam Benedicti + + M + + + + Vitalis + quondam Bernardi + + M + + + + Vitalis + quondam Boneti + + M + operarius de curte Sarzane + + + + Vitalis + de Donnolina + + M + operarius de curte Sarzane + + + + Vitalis + frater Martini de lo Podio + + + + + Vitalis + de Gragnano + + M + consiliarius Carrarie + + + + Vitalis + quondam Lumbardi + + M + + + + Vitalis + quondam Oliverii + + M + + + + Vitalis + quondam Oliverii de castro Sarzane + + M + + + + Vitalis + de Plaça + + M + + + + Vitalis + de Porta + + M + + + + Vitalis + de Torano + + M + + + + Vitalis + quondam Vindemioli de Tortiliano + + M + operarius de curte Sarzane + + + + Vita + quondam Piçolboni + + M + + + + Vitarellus + de Galisingna + + M + + + + Vitus + + M + + + + Vivalda + filia quondam Anselmi de Antoxuolo + + F + + + + Vivaldetus + + M + + + + Vivaldetus + filius Bonvisini de Caprilliola + + M + + + + Vivaldus / Wivaldus + + M + + + + Vivaldus / Wivaldus + + M + consiliarius Carrarie + + + + Vivaldus / Wivaldus + + M + notarius + atttivo prima del 1263 + + + + Vivaldus / Wivaldus + Adiuti + + M + + + + Vivaldus / Wivaldus + quondam Ardoini Mignochia de Veçale + + M + + + + Vivaldus / Wivaldus + de Avencia + + M + + + + Vivaldus / Wivaldus + de Capriola + + M + + + + Vivaldus / Wivaldus + + M + consul de Ponzanello + + + + Vivaldus / Wivaldus + quondam Ferreti de Ponzanello / Ferreti + + M + + + + Vivaldus / Wivaldus + filius Ferrini + + M + + + + Vivaldus / Wivaldus + + M + consiliarius de Ponzanello + + + + Vivaldus / Wivaldus + quondam Pagani de Balognano + + M + + + + Vivaldus / Wivaldus + de Polverara quondam Pugneti + + M + + + + Vivaldus / Wivaldus + quondam Rollandina de Agina + + M + + + + Vivasinus + + M + Lunensis canonicus + + + + Vivasinus + de Cepparana + + M + + + + Vivasinus + + M + Lunensis cumcanonicus + + + + Vivelda + quondam Salveti uxor Nicholosii + + F + + + + Vivianus + + M + + + + Vivianus + + M + notarius sacri palacii + attivo nel 1263 + + + + Vivianus + Boniçi de Ortonovo + + M + + + + Vivianus + de Bidiçano + + M + + + + Vivianus + quondam Bosi + + M + operarius de curte Sarzane + + + + Vivianus + de Ficula + + M + + + + Vivianus + filio Prodomi de Ponzanello + + M + + + + Vivolus + de Puzolo + + M + + + + Volta + de castro Sarzane + + M + + + + Vualcausus + + M + + + + Guibertus + + M + + + + Wçeronus + + M + + + + + + Yliolo + de Yliolo + + M + + + + Ymelda / Ymeldina + + F + + + + Ymelda / Ymeldina + quondam Dominici + + F + + + + Ymelda / Ymeldina + + F + + + + Ymelda / Ymeldina + quondam Tancredi de Miselia + + F + + + + Ymeldola + de Noceto + + F + + + + Isnardus + filius quondam domini Opiçoni marchionis Malaspine + + M + Isnardo marchese Malaspina, figlio di Opizzino capostipite dello Spino + fiorito, fratello di Bernabò e Alberto, è attestato dal 1250 (ASFi DM, n. 135) al 1271 (ASFi DM 235); nel 1257 (FERRETTO 1909, n. DCCCCLV) è + ancora minorenne; già defunto nell'agosto del 1276 (ASFi DM 238). + + + + Zanbonus + + M + + + + Zazon + + M + + + + Zencius + de Boiano + + M + + + + Zikinus + + M + + + + Zitus + de li Albizi + + M + + + + Zugnus + de Balognano + + M + + + + + + Lista dei luoghi + + Aciliano + Si propone in via ipotetica l'identificazione con l’attuale località + Argigliano (Casola di Lunigiana, MS), come da REPETTI 1846, I, p. 132, col. 2 e dalla Cartografia + topografica conservata presso l'Archivio di Stato di Genova, in particolare + ASGe Topographia, Toponimi, Massa (MS) 25: La Lunigiana (ca. + 1770); ASGe Topographia, Toponimi, Pontremolese (MS), pagina 3 di 3, 1: + La Riviera di Levante, Stato di Genova ed altri.... Altra forma + antica attestata: Arziliano nel 1748. Il paese è situato a circa 3 + km. a sud-est di Casola. Segnalazione di Sergio Mussi. + + + Acola + + + Agina + + + Aguto + Luni + + + Aitenetulo + + + Albano + + + Albrico + + + Alione + Aglione + Castelnuovo Magra + Si può identificare nella attuale località Aglione, oggi parte del comune di + Castelnuovo Magra (SP), situata a nord di Luni Mare, a nord-ovest di + Colombiera-Molicciara. Cfr. SALVATORI 2007, + p. 9. Segnalazione di Sergio Mussi. + + + Alpes + Alpi Apuane + + + Amelia + Ameglia + Ameglia + + + Amola + Amola o Falcinello, torrente che nasce dal monte Boscoleto (m590); affluente + di sinistra del fiume Magra nel piano di Ponzano. + + + Anagni + Anagni + Anagni + + + Antognolo + Antoniolo + Fosdinovo + Sebbene il contesto dei documenti non consenta una localizzazione certa, è + molto probabile che si tratti della attuale località di Antoniolo, a sud-est di + Carignano e a nord-ovest di Giucano (comune di Fosdinovo, MS). Cfr. BALDASSARRI - ANDREAZZOLI 2007, + p. 9, r.10. Segnalazione di Sergio Mussi. + + + Antoniano + Antoniano + La Spezia + Si tratta molto probabilmente dell'area dove sorge la pieve di S. Venerio + detta appunto in Antoniano a La Spezia. Cfr. VECCHI 1986. + + + Antoxuolo + + + Apiola + + + Apognana + Pognana + Fivizzano + Ipotesi di identificazione in Pognana, frazione di Fivizzano di Sergio + Mussi. + + + Aqua Fredola + + + Aquavivola + + + Aque Nigre + Fosdinovo + + + Angarecia + + + Ara/Area + Fosdinovo + + + ala Valentina/Ara Valentina + Fosdinovo + + + Aramonte + + + Arenale + + + Arcinasia + + + Arcola/Arcula + Arcola + Arcola + + + Ardano + + + Arena + Luni + + + Armo / rivo Armo + + + Arno + Arno + L'Arno è il principale fiume della Toscana. + + + Ascletulo + + + Assento + + + Asta + Asti + Asti + + + Atilliano + + + Avula + Aulla + Aulla + + + Avencia/Avenza + Avenza + Carrara + + + Balano + + + Balognano + Ameglia + + + Banco + + + Balzano + + + Bantiola + + + Barbaçano + Barbazzano + Lerici + + + Barci/Barzi + Fivizzano + Secondo FORMENTINI 1970, + p.10 la villa di Barci si trovava tra l’attuale Collecchia e il santuario di + Santa Maria dei Colli, dove è attestato ancora il toponimo + Bargia. + + + Bardano + Fosdinovo + + + Bargi + + + Basano + + + Bawaria + Baviera / Bayerns + Baviera / Bayerns + + + Beagua + + + Bebulo + + + Becarolo + Carrara + + + Beduçano + + + + Bergamo + Bergamo + Bergamo + + + Beriola + Carrara + nei pressi di Carrara come da documento n. 274. Probabilmente da identificarsi con l'attuale Bergiola + Foscalina, sopra Carrara (suggerimento di Stefano Landini) + + + Berzola + + + Bertrame/Bertemme/Bertani + Lago di Porta + Montignoso + località oggi identificabile con Lago di Porta, come si evince da REPETTI_1846. La torre detta + Porta Betrame o Porta Bertrami, oggi scomparsa, si + trovava in località Salto della Cervia (oggi comune di + Pietrasanta), segnalata come ancora esistente alla data del 1810 dal Repetti. + La torre era situata sull'antico confine che correva tra il Lago di Porta e + Monte della Rocca di Montignoso, precisamente nel distretto di Castel + Aghinolfi, sulla strada romana che da Massa conduceva a Lucca. La prima + attestatazione del toponimo si trova in un placito di Enrico III emanato il 15 + maggio 1055 a favore del vescovo di Luni che rivendicava alcuni possedimenti in + quella zona. Si ringrazia Sergio Mussi per le precisazioni. + + + Betigna + + + Biana + + + Bianca + + + Bibola + Bibola + Aulla + + + Bicarro + + + Biduçano/Biduzzano + Carrara + Nei pressi di Carrara come da documento in ASLU_DA, 1393 agosto 27. + + + Bifurca + Fosdinovo + + + Biliolo + Bigliolo + Aulla + + + Bioran + + + Bistioleta + Sarzana + + + Bithazano / Bitusanum + + + Blecce/Deblecce/Bleccoe + + + Bocco + + + Boccognano + + + Boinaculo + Fosdinovo + + + Bolano + Bolano + Bolano + + + Bollesne + + + Bonaco + La costa di Bonaco / Bonacho è situata a ovest di Carignano di Ponzano e + detta anche Costa di Carlassaro del Pianza; nominata costa di Benaco dagli + abitanti di Fosdinovo ASGe_MAPPA_33. Segnalazione di Sergio Mussi. + + + Bonasculo + Carrara + + + Burgonuovo + + + Bostiola + + + Botognano + + + Bovetulo + + + Bradia + + + Branzoli + + + Bracellis + Bracelli + Beverino + + + Brasile + + + Brina + Sarzana + + + Brissiana + + + Broilo / Brolo + Carrara + + + Bruscaliano + + + Buçano / Buzano / Bozano + + + Buiano, Boiano + Buggiano + Pistoia + + + Burcione Burçone + Burcione + Aulla + + + Burçono + + + Burculum/Burculo + Fosdinovo + + + Bursello + + + Busco + + + Butracanca + + + Butracanca + + + Caço / Cacio + + + Cafaçaro + Fosdinovo + + + Cafaçola + + + Cafadio + + + Cafadio Baruçoli + Fosdinovo + + + Cafazo + Fosdinovo + + + Cafilectata + + + Cala + + + Calasobtana + Lerici + + + Calesa + + + Calesana + + + Calmesana + + + Calvo + + + Camisiano + + + Campacolle + + + Campilia + + + Campiza + Parma + + + Campo Honeste + + + Campo de la Stella + + + Campo de la Plata + + + Campodonico + + + Campola + Vezzano + + + Campolo + + + Camporaqua + + + Campotendoli + + + Camtellino + + + Camua + + + Canale + + + Canale Iannis + + + Canapariolo + + + Caneva + + + Caneva de Petroçuca + + + Cannebiano + + + Canneto + Ameglia + + + Capagnana + + + Capagnano + Fosdinovo + + + Capagno + + + Capanella + Fosdinovo + + + Capanna + + + Capanna Martina + Fosdinovo + + + Capannara + + + Caporaqua + + + Capo Corvo + nei pressi di Ameglia e Lerici + detta anche punta Corvo, è la propaggine sul mar Ligure del monte Marcello + tra Bocca di Magra e il golfo della Spezia. Il promontorio costituisce il + limite orientale della Riviera Ligure, andando a dividerla geograficamente + dalla costa apuana. + + + Caprilliola + Caprigliola + Aulla + + + Capriola + Fosdinovo + + + Caprione + + + Capranello + Carrara + nei pressi di Carrara come da doc. n. + 274 + + + Caprognano + + + Carame + + + Carbonara + Fosdinovo + + + Carbovario + + + Carcandola / Carcandula + Sarzana + + + Carersto + + + Caria + + + Caricino + + + Carnea + Carnea + Follo + + + Carola + + + Carpena/Carpina + Carpena + Bolano + + + Carpeneta + + + Carpeneto + + + Carpenetulo + + + Carraria + Carrara + Carrara + + + Casalechio + Carrara + nei pressi di Carrara come da doc. n. + 274 + + + Casaliclo / Casaleclum + + + Casapoci/Casaposi/Casapoli + Castelpoggio + Carrara + Identificazione con Castelpoggio proposta sulla base del REPETTI_1846, I, p. 580. + Segnalazione di Sergio Mussi. + + + Casavetri + + + Casella + + + Casine + + + Cassiola + + + Castagneto + Sarzana + + + Castagneto Plano + + + + Castagnetulo + + + Castagno + + + Castellano + + + Castello + + + Castellum Aginulfi/castrum Aginulfi + Castello Aghinolfi + Montignoso + + + Castello Radaldo + + + Castelnuovo + + + Castrum Novum de Barci/de Barzi + Fivizzano + + + Castelnuovo/Castrum Novum + Castelnuovo Magra + Castelnuovo Magra + + + Castilione + + + Castillione de Varese + + + Capanana + + + Castangna Robbia + Carrara + + + Cavallo + + + Cazacane + + + Cazano / Caçano / Cacano + + + Cepparana + Ceparana + Bolano + + + Ceppata + + + Ceppato + + + Cergnano + + + Cernetorio/Cernitoris + Fosdinovo + + + Cernitere + + + Cerreto + + + Cerro Alto + + + Cerro Suvero + + + Cervaria/Cervara + + + Cervarolo + Sarzana + + + Cesari + + + Cisirano/Ciçerano + Ceserano + Fivizzano + + + Cetulo + + + Chisicto + + + Cignano + + + Cirisolo + + + Clarella + + + la Cobia + + + Cobiata + + + Codena / Codano / Codana + Codena + Carrara + + + Codesorbo + Fosdinovo + + + Codesorbolo + + + Colignolo + Fosdinovo + + + Colimento/Colintenti + Fosdinovo + forse identificabile con l'attuale Colletto, nel comune di Fosdinovo + + + Colinezolo + + + Coliusciola + + + Colla + Fosdinovo + + + Colle + Fosdinovo + + + Collecchia/Collicclum/Collechio + Fivizzano + + + Colle de Gragnana + + + Colle de Marci + + + Colle Mezaitum + + + Collentento + + + Colli + + + Colmezano + + + Colognola + Colognola + Fivizzano + + + Columnata + Colonnata + Carrara + + + Comum + Como + Como + + + Conano + + + Concula + + + Congia + + + Consi + + + Contebono + + + Corano + + + Corchiola + + + Corfeciano/Corfezano + + + Cornilio + + + Cornilione + + + Corsetula + + + Cortiola / Certiola + + + Corvaia + Serravezza + + + Corvaxana + Fosdinovo + Toponimo collocabile tra Falcinello e Ponzanello, da legarsi probabilmente + alla curte de Curvasano nominata nel diploma di Ottone I del 963 (GENTILE 2000, p. 7-8). + + + Corvo + Ameglia + + + Costa + + + Costancia + Kostanz + Baden-Württemberg + + + Cothalo + + + Cremona + Cremona + + + Cropale + Groppoli + Pistoia + + + Cruce + Fosdinovo + + + Çuchi + + + Cuna + + + Çunseto + + + Cuscugnano + + + Cute + Fosdinovo + + + Dallo + + + Debia + + + Debicoe / Debbice / Debioce + forse Debicò nei pressi di Soliera (suggerimento di Stefano Landini) + + + Deblola + Fosdinovo + + + Dies + Diez + Rheinland-Pfalz + + + Draggiare + + + Dremone + + + Ecclesia Nova + Chiesanuova + Levanto + + + Erberia/Herberia + + + Fabiano + La Spezia + + + Falcinello + Sarzana + + + Fano + + + Fatorense + + + Faucem de Montorbolo + + + Favale + + + Fayto + Fosdinovo + + + Façeto + Fosdinovo + + + Felegaria + + + Felicina/Filicina + + + Felicta/Feletta/Felecta + + + Ferrata + + + Feschalino + + + Ficaro / Ficario + + + Ficola / Ficula + + + Ficolungo + + + Ficortiçola + Fosdinovo + + + Figadia + + + Finili + + + Fivizano/Fiveçano + Fivizzano + Fivizzano + + + Fliolino + + + Florino + + + Flumine + + + Flumeneço + Carrara + + + Follo + Follo + Follo + + + Fontana + + + fontana Romana + + + Fontanella + + + Fonte + + + Fontenella + + + Fonti/Fonci/Functi + Carrara + nei pressi di Carrara come da documento n. 274 + + + Fonticlo + + + Fontola + + + Forano + + + Foravino + + + Foresto + + + Formicoso / Formicosa + + + Fornoro + + + Fornolo + Sarzana + + + Fosdinovo/Fosdenova/Fauce Nova/Faucenova + Fosdinovo + Fosdinovo + + + Fossa Ceca + Fosdinovo + + + Fossa Lupara + Fosdinovo + + + Fossato + + + Fotigero + + + Frederciana + + + Fridiano + Carrara + + + Furno + + + Garfagnana + Garfagnana + + + Gassano + Gassano + Fivizzano + + + Genestitulo + + + Genestulo + + + Germagnano + + + Gezo + + + Iuccano + Giuncano + Fosdinovo + + + Gnaulo + + + Graçano + + + Gragnana + Carrara + + + Gragnano + + + Gragnola + Fivizzano + + + Grazano / Graçano + Carrara + + + Gropario + Sarzana + + + Gropo + + + Groppino de Lutignano + Carrara + nei pressi di Carrara come da doc. n. + 274 + + + Groppo Talliato + Carrara + nei pressi di Carrara come da doc. n. + 274 + + + Groppolo + Groppolo + Bolano + + + Gropolo + + + Guaraçano + + + Guado de Insula + + + Guardia + + + Guecçola + Fosdinovo + + + Guerceta + + + Guercia + Carrara + + + Ianua + Genova + Genova + + + Illano Pontis + + + Iovello + + + Isola / Ysola / Insula + Nei documenti medievali della Lunigiana si trovano più luoghi chiamati + Isola - Ysola ad esempio presso Ortonovo, vicino ad Ameglia e + sulle colline della Spezia. + + + Isolella + + + Istria + Istria + Istria + + + Lacanova + + + Lacapanna + + + Lamura + + + Langolo + + + Lanigra + + + La Sallica + + + Lasoro + + + Lavadarium + Carrara + + + Leschemunde + Burgstall Lechsend / Lechsgemünd + Donau-Ries + + + Levacastello + + + Lignaro + Legnaro + Levanto + + + Lilice + Lerici + Lerici + + + Limite + + + Linari + + + Lintignana + + + Lorano + + + Losio + + + Lotignano / Lutignana / Lotignana / + Lutignano + + + Luca + Lucca + Lucca + + + Lucia + + + Lucio + + + Luna/Luni + Luni + Ortonovo + + + Lunesana + Lunigiana + + + Lupura + + + Magnano + + + Macra / Magra + Magra + La Magra è il principale fiume della Liguria per portata media alla foce, + nasce tra il Monte Borgognone ed il Monte Tavola e scorre tra Toscana e Liguria + bagnando le province della Spezia e di Massa-Carrara. + + + Malliano + Magliano + Fivizzano + + + Malliola + Bolano + + + Mandria + + + Mandriale + Fosdinovo + + + Mandrola + + + Matiçola + + + Marciano + Fosdinovo + + + Marciaso/Marçasio + Marciaso + Fosdinovo + + + Maretema / Maretima + + + Margubio + + + Marlamoça + Lerici + + + Marmore + + + Marola + Marola + La Spezia + + + Marola de Predore + La Spezia + + + Marnasco + + + Marossa + + + Marzano/Marçano + + + Marzeno + + + Maruco + + + Masio + + + Massa + Massa + Massa + + + Materia + + + Matrono / Mathono + La Spezia + + + Mediolano + Milano + Milano + + + Melaro + Carrara + + + Mezana + + + Mezana + Lerici + + + Micoria/Micoarria + Ortonovo + + + Miliaciola / Milliacia + + + Minizano + + + Minuçano + Minucciano + Minucciano + + + Miro + Sarzana + + + Miselia + Miseglia + Carrara + + + Mitifoci + + + Molino + + + Mommio + Mommio + Fivizzano + + + Monasterium + Münster + Nordrhein-Westfalen + + + Moncigoli / Monciculi / Monciculo / Monte + Ciculo + Moncigoli + Fivizzano + + + Moneta + Moeta + Castelnuovo Magra + + + Montale + + + Monte + Sarzana + + + Montexello + + + Monte Bello + Montebello + Bolano + + + Monteclo / Montecchio / Monceto + Montecchio + Castelnuovo Magra + + + Montedarmo + + + Monte Franci + + + Monte Franzo + + + Monte Forca + Il Monte Forca, già citato dal REPETTI + 1846, I p. 486, va identificato con l'attuale Monte Pizzacuto secondo il + CONTI 1976. + + + Monte Ianni/Monteçanne + + + Monte Iudice + + + Monte Leone/Monleone + Fosdinovo + + + Monte Libero + Monte Olivero + Carrara + + + Montemarcello + Montemarcello + Ameglia + + + Monte Martili + + + Monte Orbulo + + + Monte Raso + + + Monte Rossolo + + + Monteserino + + + Montevallese/Monte Vallese + + + Monteverde + Carrara + + + Monti + + + Montia + + + Montirone + Sarzana + + + Montorbo + Fosdinovo + + + Montorbolo + + + Monçolono + + + Monzone/Munzone/Monçone + Monzone + Fivizzano + + + Moritiola + + + Mulathuso + + + Mulnato + Carrara + nei pressi di Carrara come da doc. n. + 274 + + + Neapolis + Napoli + Napoli + + + Natara + + + Nava/Nave + Nave + Sarzana + + + Navola + Fosdinovo + + + Naçano + Carrara + + + Neblone/Nibiono + Fosdinovo + + + Nicola + Nicola + Ortonovo + Micoarra-Nicola. Nel VII secolo Giorgio di Cipro nella Descriptio + orbis romani, trattando delle fortificazioni della zona nella pianura + lunense e aree limitrofe, cita il kastron di + Mikaurìa, che Ubaldo Formentini (FORMENTINI 1936) ha identificato nell’attuale abitato di + Nicola (Ortonovo). Nel Codice Pelavicino il toponimo Micoria - Micoarra si + trova in due atti, rispettivamente del (1096 e del (1226, mentre il + toponimo Nicola è già attestato in uso nel 1219: questa apparente + contraddizione ha spinto Mario Niccolò Conti (CONTI 1960) ha criticare l’ipotesi, che tuttavia è stata + confremata da ulteriori studi (GENTILI 1988 e ZOPPI + 2008). + + + Niça + + + Nirono + + + Nizola + + + la Noce + + + Noceto + Noceto + Carrara + nei pressi di Carrara come da documento n. 274. + + + Occara + + + Oletto/Oleto + + + Oletulo + + + Oliveto + + + Olivetoaimo Sopoçio + Sarzana + + + Olivola + Olivola + Aulla + + + Oratorio + Oratoio + Pisa + + + Orbagnanno/Orbagnano + + + Ortale + Fosdinovo + + + Orto + + + Ortomorano + Carrara + + + Ortonovo + Ortonovo + Ortonovo + + + Ortoriano/Toriano + + + Oserone/Isolone + Si tratta probabilente dell'attuale torrente Isolone (MS-SP), che nasce dal + monte La Foce presso Fosdinovo e affluisce nel Magra a sinistra presso la + foce. + + + Padule/Palude + + + Palanceta + + + Pallaroso/Palleroso + + + Palmerie + + + la Palmia + Ameglia + + + Pannesa + + + Panicale / Panigale + Panicale + Licciana Nardi + + + Pantaleo + + + Parentore + + + Parma + Parma + Parma + + + Parmignola + Torrente, scorre nelle province di Massa Carrara e La Spezia. Nasce dal + monte Pizzacuto col nome di torrente Iara. Sfocia nel Tirreno a + Marinella. + + + Parsano + + + Passana + + + Passano / Paxano + Passano + Deiva Marina + + + Pastena + + + Paternulo/Paterno + Paterno + Sarzana + + + PecteCavallino + Fosdinovo + + + Pectenato + + + Pegaçano + + + Pegazana + Paghezzana + Fosdinovo + L'identificazione tra Pegazana e Paghezzana è stata suggerita da Giorgio + Saporiti (che ringraziamo), sulla base della seguente bibliografia: FORMENTINI 1953, p. 7; PISTARINO 1961, p. 112. + + + Pera + + + Peravulpe + + + Perbeçola + + + Peretolo + + + Peroza + + + Pesiola + + + Petra Cava + Fosdinovo + + + Petrognano/Perrognano + Petrognano di Carrara + Carrara + + + + Placentia + Piacenza + Piacenza + + + Piazo + + + Picaro + + + Picceta + + + Piculo / Piçolo / Piciolo + + + Pignoto + + + Pilla + + + Pilloto + + + Pira + + + Pisa + Pisa + Pisa + + + Pistoria + Pistoia + Pistoia + + + Pizone + + + Plaça/Plaza + + + Planello de Casalina + + + Plano + + + Platia + + + Platula + + + Plaula + + + Plastra + + + Plazio + + + la Plebe + + + Plolo + + + Poçio de Castronovo + + + Podio + + + Podio de Luca + Lucca + + + Pogio + + + Polo + + + Polverara + + + Ponciano + + + Poncisone + + + Ponte di Carrara + + + Ponte Cimatico + Pontecimato + Carrara + + + Pontesella + Pontesella + + + Ponte Tecto Lucano + Pontetetto + Lucca + + + Pontremulo + Pontremoli + Pontremoli + + + Ponzanello/Ponçanello + Ponzanello + Fosdinovo + + + Ponchano / Ponzano / Ponciano + Ponzano Magra + Santo Stefano + + + Poppio/ Popio + + + Porcaria + + + Porchano + + + Porcilliola + + + Porencario + + + Porreto/Poreto + + + Porta + + + Portesone / Portasione / Portexono + + + Portoverio / Portus Veneris + Portovenere + Porto Venere + + + Pasa + + + Posticio + Fosdinovo + + + Posticio de Fontola + + + Povici + + + Pozio + + + Pozzo + + + Prata + Fosdinovo + + + Prato + + + Pratesiana + + + Preiutese + + + Propezo + + + Puleca + Pulica + Fosdinovo + + + Pullola + Pugliola + Lerici + + + Pusterla/Pustella + + + Puzolo + + + Quaragiota / Quaroçola + + + Quarrapane + + + Querca + + + Querceto / Guerceto + + + Querçola + Fosdinovo + + + Raboi + + + Ramaro + + + Rapugnana + + + Regnano + Regnano + Casola di Lunigiana + + + Rezola + + + Ripa d'Arno + Pisa + + + Rio + + + Riolo + + + RiodeVeste + + + Rivo + + + Rizola + + + Roasia + + + Robbiano/Robiano + + + Rofiano + + + Roma + Roma + Roma + + + Romola + Fosdinovo + + + Ronciliolo + + + Roncio + + + Rosarolo + + + Roselmino + + + Rosetulo/Rosseculo + Fosdinovo + + + Rosiano + + + Roza + + + Roncaglia + + + Ruffino + + + Sala + + + Saleceto + + + Saletto + + + + Salungnolo + + + Sancto Miniato + San Miniato + San Miniato + + + Sancto Terencio + Bardine di San Terenzo + Fivizzano + + + Sancto Vitale + + + Santa Maria Monte + + + Sancto Martino + + + Sancto Paolo + + + Sancto Petro + + + Sancto Stephano + Santo Stefano + Santo Stefano + + + Saniconcula + + + Sansile + + + Santomeniaco + + + Sarzana + Sarzana + Sarzana + + + castrum Sarzane + Sarzanello + Sarzana + + + Savia + + + Scara + + + Schiaretulo + + + Sclogneto Veclo + + + Scoriso + + + Scusia + + + Secalaro Subtano + Fosdinovo + + + Segalaria + + + Selvaricia + + + Serra + la Serra + Lerici + + + Serra + Fosdinovo + + + Serram Treçanam + Fosdinovo + + + Serraursi + + + Serravalle / Seravalle + + + Serrade Vecheto + Fosdinovo + + + Sertulo + Fosdinovo + + + Setalaro + Fosdinovo + + + Sevino + + + Silva Maiori + + + Sischia + + + Solario + + + Soleria + Soliera + Fivizzano + + + Soleria de Luna + + + Somo Foresto + Montemarcello + + + Surano + + + Sorbolo + + + Sorbolo Suprano + + + Sorgnano + + + Sorolo + + + Spedizano + + + Sporliano + + + Spuliçano + + + Stanca Caballo / Stancavallo + Fosdinovo + + + Stabio / Stabulo + + + Stazone + + + Strata Romea + + + Succisa + Santo Stefano + + + Suevia + Svevia / Schwaben + Svevia / Schwaben + + + Summo Fonti + + + Summo Lama + + + Summo Prato + Fosdinovo + + + Summo Tranci + + + Summo Vico + + + Supra Luna + + + Supravia + + + Susano + + + Suvero + + + Tapillionica + Fosdinovo + + + Tavola + Fosdinovo + + + Tebiola + Fosdinovo + + + Tendola + + + Terrachium / Torrachium + Luni + + + Terrarossola + + + Terre dei Bianchi + + + Terria + + + Thufara / Tufara + + + Ticçano + + + Tillia + + + Tilloia + + + Tivenia + Tivegna + Follo + + + Torano / Turano + Torano + Carrara + + + Toreclo + + + Torgnano + + + Torrecla + + + Torsella + + + Tortiliano + + + Traversara + + + Trebiano + Trebiano + Arcola + + + Treponçum/Trepuncio + Carrara + localiotà oggi scomparsa ma posta tra la zone di Marinella (Ortonovo) e + Carrara, presso la costa, come si vede da una mappa databile tra i secoli XVII + e XVIII conservata nell'Archivio di Stato di Genova (Pianta o sia tipo + per i confini fra Ortonuovo e Castelnuovo fra i territori di Massa e Sarzana + (XVII - XVIII) dove si vede un fabbricato e il toponimo + l'antiqua Traponcio.. Si ringrazia Sergio Mussi per la + segnalazione. + + + La Trina + + + Trulliano + + + Fontana + + + Ulmeta + Rometta + Fivizzano + + + Ulmeto + + + Urciola + + + Utiola + + + Valcava + + + Valdonica/Valdonega + + + Valença + + + Valerano / Vallerano + Valeriano Lunense + Vezzano Ligure + + + Valle + + + Valle Stephani + + + Valechia/Vallecla + Vallecchia + Pietrasanta + + + Valechia/Vallecla + Vallecchia + Castelnuovo Magra + + + Valentino + + + Valli / Valle + + + Valmaiore + Fosdinovo + + + Valmori + + + Valmoro + + + Valpata + + + Valporcara + + + Vechieta Suprana + + + Velleia + Lugagnano Val d'Arda + + + Venelia + Venelia Monti + Licciana Nardi + + + Ventura + + + Verazano + Lerici + + + + Vernaccio / Vernatio + + + Venicula Bosorum/Verrucola + Bosorum/Verrugula + Verrucola de'Bosi + Fivizzano + + + Veçale + Vezzala + Carrara + + + Vexana/Vafana + + + Vexano/Vezano + Vezzano + Vezzano Ligure + + + Via + + + Viano/Veiano + Viano + Fivizzano + + + Viciale / Veçiali / Veçiale + + + Vico + + + Vignola + Vignola + Fivizzano + + + Villiano + + + Virgareto + + + Vitea + + + Voldano + + + Volpara + + + Volpilione + Volpiglione + Ortonovo + + + Vulporio + + + Xago + + + Xerbio + + + Ylice + Lerici + Lerici + + + Yliolo + + + Zucheto + + + Çugnaco + + + + + + + Istituti religiosi + + Cappella di Caprognano + Chiesa di cui non si conosce titolazione né collocazione. A Caprognano + (comune di Fosdinovo, provincia di Massa Carrara) è attestato un oratorio + dedicato a S. Lucia, ma edificato nel XVII secolo. Bibliografia: FRANCHI LALLAI 2000, II, p. + 65. + + + Cappella di Vallecchia + Chiesa di cui non si conosce titolazione né collocazione entro l'abitato di + Vallecchia (comune di Castelnuovo Magra, provincia di La Spezia) + + + S. Andrea Apostolo di Carrara + Chiesa plebana di Carrara attestata per la prima volta nel maggio 1099 (ASLU SF). Bibliografia: FRANCHI LALLAI 2000, I, pp. + 177-185; BUSELLI 1972; BERTOZZI 1989. + + + S. Andrea diFabiano + *** + + + S. Andrea di Sarzana + Chiesa attestata con certezza la prima volta il 3 giugno 1137 (ASLU SF), poi elencata come pieve nella + bolla di Egugenio III del 1148 e nelle bolle + successive. Gli studiosi non sono concordi nello stabilire quando la chiesa + avrebbe assunto il ruolo di pieve ripsetto alla vicina pieve di S. Maria di + Sarzana. Bibliografia: FRANCHI + LALLAI 2000, I, pp. 187-194; FORMENTINI 1951; CONTI 1963; PISTARINO + 1961a, p.25; BONATTI + RATTI 1991, p. 14. + + + S. Bartolomeo di Ceserano + Chiesa attestata per la prima volta nelle Decime Bonifaciane del 1296/97 + (PISTARINO 1961a , p. 81) + come cappella de Cisirano sotto la pieve di Soliera; non è chiaro + quando sia attestata per la prima volta la titolatura (FRANCHI LALLAI 2000, II, p. + 151). + + + S. Basilio di Sarzana + Chiesa cattedrale e pieve attestata per la prima volta nella bolla di Egugenio III del 1148 e nelle bolle + successive. Gli studiosi non sono concordi nello stabilire quando la chiesa + avrebbe assunto il ruolo di pieve rispetto alla vicina pieve di S. Andrea di + Sarzana. Nel 1204 vi si trasferì la sede episcopale, fatto che determinò + probabilmente la titolazione alla Madonna e la progressiva decadenza della + titolazione a S. Basilio. Bibliografia: FRANCHI LALLAI 2000, I, pp. 187-194; FORMENTINI 1951; CONTI 1963; PISTARINO 1961a, p.25; BONATTI RATTI 1991, p. + 14. + + + S. Caprasio di Aulla + Monastero di S. Maria e S. Caprasio ad Aulla (MS) fondato nell'884 con la + titolatura alla Madonna a cui si aggiunse quella a Caprasio probabilmente tra X + e XI secolo. Nel 378 venne trasformato in commenda secolare di collazione dei + Malaspina. Trasformato nel 1817 in parrocchia col titolo di prepositura. + Bibliografia: BASSI 1927; MUSSI 1946; FORMENTINI 1955; PISTARINO 1983; PISTARINO 1986; RICCIG 1986 + RICCIG 1989a; FRANCHI LALLAI 2000, + pp.291-294. + + + S. Croce del Corvo + Monastero fondato dal vescovo di Luni Pipino nel luogo in cui sarebbe + approdato il Volto Santo; venne ceduto nel 1186 dal vescovo Pietro + al monastero di S. Michele di Orticaria di Pisa. I monaci lo abbandonarono alla + metà del XIV secolo per trasferirsi nella cappella dipendente di S. Croce. Nel + 1453 papa Niccolò V annesse la chiesa di S. Croce e S. Nicodemo del Corvo con + tutti i suoi bene al Capitolo della cattedrale di Sarzana. Bibliografia: MAZZINI 1970; FRANCHI LALLAI 2000, + pp.192, 202. + + + S. Croce alla Foce dell'Arno + Ospedale e monastero cistercense presso Pisa, alla foce dell'Arno. + Bibliografia: COLOMBINI + 2010. + + + + S. Frediano a Lucca + Chiesa oggi in stile romanico ma edificata su un luogo di culto precedente + che la tradizione fa risalire allo stesso San Frediano, presbitero irlandese + eletto vescovo di Lucca tra il 560 e il 588. Intorno all chiesa si raccolse una + comunità di canonici. Nel 1104 papa Pasquale II confermò i canonici affidandoli + al clero di San Giovanni in Laterano. Bibliografia: COTURRI 1974 + + + S. Leonardo al Figido + Sorto nel luogo dove più autori collocano la stazione di età antica di + Taberne frigide o Taberna frigida nella + Tavola Peutingeriana si veda REPETTI 1846, I, pp. 346, 680; 
 SFORZA + 1878; FORMENTINI 1949, 
 pp. + 16-189).
 Nel 1950 alcune ricerche archeologiche hanno portato al rinvenimento, + nell’area 
 antistante l’attuale chiesa di S. Leonardo, di tre selciati romani + sovrapposti, 
 fondazioni murarie e frammenti di lapidi romane e medioevali + (
 LEVEROTTI 1982, p. 112), 
 l’ospedale + medievale serviva di appoggio all’unico ponte che attraversava il fiume 
 + Frigido in pianura 
(LEVEROTTI 1982, p. + 111). È ricordato per la prima volta da 
 una cronaca inglese che descrive il + ritorno dalla terza crociata di Filippo Augusto 
 nel 1191 (per Seint + Leonard; MGH_SS_XXVII p. 131). 
 + Nel XIV secolo è di pertinenza dell’Ordine di S. Giovanni di Gerusalemme,
 ma + non è certo 
 se agli stessi cavalieri gerosolimitani si debba ascrivere anche + la sua fondazione. 
 Per Ubaldo Formentini la risposta al quesito deve essere + positiva: lo proverebbe il fatto 
 che le sculture del portale della chiesa + annessa all’edificio ospedaliero, oggetti attualmente 
 conservati al + Metropolitan Museum of Art di New York, 
sono opera di maestro + 
 Biduino, artista della seconda metà del XII secolo, che ha decorato con le + medesime scene 

 scolpite a S. Leonardo (in particolare l’entrata trionfante + di Cristo a Gerusalemme) un bassorilievo 
 della pieve di san Casciano nel Val + d’Arno pisano. Formentini suppone che le murature 
 della chiesa possano essere + state ordinate direttamente dal priorato degli Ospitalieri di Pisa a 
 questo + stimato artista. 
Si deve tuttavia notare che secondo Bertozzi le sculture del + portale, 
 databili intorno al 1175-1180, stridono con l'impianto + architettonico della chiesa, 
 che sembra anticipare a prima del X la sua + edificazione, mentre secondo l'archeologo Quiros Castillo 
 queste potrebbero + appartenere all'XI (AMBROSI + BERTOZZI MANFREDI 1989
 , p. 42; Juan Antonio Quiros Castillo, che + ringraziamo, ha espresso la sua opinione verbalmente, in forza 
 della sua + ormai lunga esperienza di scavi medievali nell'area lucchese e lunigianese). + Entrambe le 
 datazioni, comunque, precedono uno o due secoli gli anni di + attività di maestro Biduino: 
 quindi si deve ritenre che la fondazione + dell'ospedale sia da anteporsi a quella della decorazione 
 del portale. Quanto + alla committenza gerosolimitana è solo ipotetica. 
 L'ospedale di S. Leonardo, + tuttavia, è attestato nelle decime bonifaciane, nell’estimo di Massa Lunense 
 + del 1398-1401, fino all’estimo della Chiesa di Luni del 1470-71 come ente + esente, quindi era indubbiamente 
 gestito, fin dalla fine del XIII secolo, da + un ente diverso dal vescovato o dalla canonica di Luni. 
 Dal punto di vista + documentario solo un testo del 1333, frammento di un catasto dei beni + dell’Ordine ospitaliero 
 di Gerusalemme, fornisce la prima prova certa + dell’appartenenza della struttura ai gerosolimitani. 
 Il frammento elenca + tutte le pertinenze dell'ospedale, beni che trovianmo ancora numerosi + nell'estimo della 
 vicaria di Massa del 1398-1401 (LEVEROTTI 1974, III, pp. 626-635; le + proprietà del 1333 sono state 
 esaminate da POGGI + 1957). Nel 1433 la chiesa e l’ospedale di S. Leonardo e la cappella di + S. Margherita 
 di Montignoso ad esso pertinente, erano amministrati da frate + Ludovico degli Enrighini dell’Ordine gerosolimitano 
 della commenda di + Pontremoli, sottoposto al priorato di Pisa. 
 Nel corso del XV secolo la + giurisdizione dell’Ordine sull’ospedale e le due chiese di Massa e di + Montignoso fu contestata 
 dai monaci olivetani di san Venerio del Tino, che + identificarono erroneamente S. Leonardo con il loro distrutto ospedale di 
 S. + Maria Maddalena de Cerbaria. I monaci vinsero la causa e ottennnero il + controllo della struttura e dei suoi beni 
 fino al 1773 quando li cedettero a + Domenico Ricci di Sarzana, provvisioniere dei soldati modenesi
 (SALVATORI 2001). + + + S. Leonardo in Padule + Ospedale ai piedi del colle di Castelnuovo, tra Luni e Sarzana, nella + località detta ancora oggi Ospedale. Attestato per la prima volta + nel marzo 1151 quando il vescovo di Luni donò l’ospedale in capite + paludis, con la cappella di san Leonardo, ai canonici di S. Frediano + a Lucca, insieme all'ospedale di Monte Forca (ASLU SF 11 marzo 1151). Entrambi gli ospedali rimasero + alle dipendenze di S. Frediano fino al 1204, dopo di cui le loro vicende si + diversificarono. Nel 1204 il vescovo di Luni cedette la chiesa di S. Pietro di + Avenza ai canonici di san Frediano per recuperare l’ospedale di S. Leonardo + (ASLU SF 1204 agosto 23). Anche se + nel documento in questione l’ente è detto semplicemente ecclesia Sancti + Leonardi de Padule l’ospedale doveva ancora sussistere: lo prova il documento di un solo anno anteriore in cui + il vescovo di Luni affittava terre presso l’hospitale de Palude. + Bibliografia: FERRARI 1912, p. + 25; PISTARINO 1961a, p. 50; + CONTI 1976 ; FRANCHI LALLAI 2000, I, pp. + 141-142 e 180-181. + + + S. Lorenzo di Paghezzana + Secondo PISTARINO 1961a la + cappella di Paghezzana è citata nelle collette del 1269 come capella de + Pegaciana e in quelle del 1298/99 come capella de + Pegaçiana. La prima attestazione pare sia de 1211 (LUPO GENTILE 1912, n. 504. + Apparteneva al Capitolo della Cattedrale. Dovrebbe corrispondere all’odierno + oratorio di Santa Burlanda, nella valle della Calcandola. Bibliografia: FORMENTINI 1953 a p.7); PISTARINO 1961a, p.146 nota 3). + Contributo di Giorgio Saporiti che ringraziamo. + + + S. Maria Assunta di Soliera + Chiesa plebana attestata per la prima volta nel + 998, si trovava nel centro dell'abitato dio Soliera ma venne demolita + alla metà del XX secolo e ricostruita in posizione diversa. Bibliografia: FORMENTINI 1970; MANFREDI 1989; RICCI G. 1989; FRANCHI LALLAI 2000, + pp.272-275. + + + + S. Maria di Luni + La cattedrale di Luni, matrice di tutte le chiese dell'omonima diocesi, ha + lasciato tracce archeologiche di età paelocristiana e bizantina; la notizia + documentaria più antica risale tuttavia all'879; nel 1204 la sede episcopale si + trasferì nella chiesa di S. Maria di Sarzana. Bibliografia: FRANCHI LALLAI 2000, I, pp. + 187-194; LUSUARDI SIENA + 2003 + + + S. Maria Assunta di Parma + *** + + + S. Maria di Pontetetto + Ospedale suburbano di Lucca. Si veda REPETTI 1946, I, p. 538. + + + S. Maria di Sarzana + Chiesa cattedrale e pieve sorta sull'area e sulle strutture dell'antica + pieve di San Basilio. In quanto pieve è attestata per la prima volta nella bolla di Egugenio III del 1148 e nelle bolle + successive. Gli studiosi non sono concordi nello stabilire quando la chiesa + avrebbe assunto il ruolo di pieve rispetto alla vicina pieve di S. Andrea di + Sarzana. Nel 1204 vi si trasferì la sede episcopale, fatto che determinò + probabilmente la titolazione alla Madonna e la progressiva decadenza della + titolazione a S. Basilio. Bibliografia: FRANCHI LALLAI 2000, I, pp. 187-194; FORMENTINI 1951; CONTI 1963; PISTARINO 1961a, p.25; BONATTI RATTI 1991, p. + 14. + + + S. Martino di Iliolo + Cappella dipendente dal capitolo della Cattedrale, oggi S. Martino di Casano + nel comune di Ortonovo. Si veda FRANCHI LALLAI 2000, I, pp.50, 141, 144, 337, 375 e II pp. + 54-56. + + + S. Martino di Ponzanello + cappella attestata per la prima volta nel 1255come ecclesia nova, ossia costruita o ricostruita da + poco; poi nelle Decime Bonifaciane della fine del XIII secolo. Bibliografia: + FRANCHI LALLAI 2000, + II, p. 67. + + + S. Martino di Viano + La pieve di Viano, intitolata a san Martino, è attestata per la prima nel + 1140 e poi nelle bolle pontificie di conferma al vescovo di Luni. sorge isolata + nel comune di Fivizzano in località Pieve di Viano. Bibliografia: + FRANCHI LALLAI 2000, + I, pp. 268-271. + + + S. Maurizio + Cappella e ospedale posti alla foce del Magra, prima appartenenti + alL’abbazia di San Venanzio di Ceparana e poi donati nel 1189 all'ospedale + pisano di Santa Croce a Bocca d’Arno. Bibliografia: AMBROSI 1992; FRANCHI LALLAI 2000, pp. 48., 51, 139-140. + + + S. Michele di Montecchio + Chiesa oggi scomparsa nell'abitato di Montecchio, ora comune di Castelnuovo + Magara (SP). + + + S. Michele di Trebiano + Pieve di Trebiano, attestata per la prima volta dalla bolla di Eugenio III + del 1148. Bibliografia: FRANCHI + LALLAI 2000, I, p. 201-205. + + + Ospedale di Monte Forca + Ospedale posto circa un chilometro sopra Castelpoggio vicino al valico detto + La Maestà sulla via che congiungeva la valle del torrente Carrione con quella + del Bardine.Dipendente inizialmente dal vescovo di Luni, nel 1151 venne da + questo ceduto a S. Frediano di Lucca insieme all’ospedale di S. Leonardo + in capite paludis. Rimase alle dipendenze del monastero lucchese fino + al 1204. pare attestato ancora nel 1218. Bibliografia: FRANCHI LALLAI 2000, I, p. + 180; CONTI 1976 + + + + S. Pacrazio + cappella dipendente dall'ospedale di Monte Furca, localizzazione + ignota. + + + S. Paolo a Ripa d'Arno + Chiesa, monastero e ospedale a Pisa. Bibliografia: STIAFFINI 1983. + + + S. Paolo + Pieve attestata per la prima volta nella bolla di Eugenio III del 1148, si + trova anche oggi in posizione isolata nella località Pieve di San + Paolo nel comune di Fivizzano presso il borgo di Vendaso + Bibliografia: FRANCHI LALLAI + 2000, I, pp. 276-279. + + + S. Pietro + ente religioso non identificato, forse S. Pietro di Luni. + + + S. Pietro di Luni + Chiesa oggi scomparsa ubicata fuori dalle mura settentrionali di Luni, nella + località oggi detta San Pero. Bibliografia: DADA 2012, pp. 69-75 + + + S. Pietro di Avenza + cappella attestata per la prima volta nel 1187. Bibliografia: FRANCHI LALLAI 2000, II, p. + 39. + + + S. Sebastiano alle Fabbriche Maggiori + chiesa pisana, attestata dal 1074, si trovava nell'attuale piazza dei + Cavalieri. Bibliografia: GARZELLA + 1991, pp.*** + + + S. Sila + ente religioso non identificato + + + S. Sisto di Monte Forca + cappella dipendente dall'ospedale di Monte Furca, localizzazione + ignota. + + + S. Stefano di Magra + *** + + + S. Terenzo + Cappella dell'omonima località di S. Terenzo al Bardine, pieve di Viano, + oggi comune di Fivizzano. La prima attestazione è incerta: un tale Transualdo + nel 728 o 729 fonda una chiesa dedicata a San Terenzio in Vico + Coloniensis, che Pier Maria Conti (CONTIP 1967, p. ***) identifica con San Terenzo nella + valle del Bardine; nel 981 Ottone II conferma al vescovo di Luni + ecclesiam Sancti Terentii in loco qui dicitur Carrellia che Ubaldo + Fomentini identifica con S. Terenzo al Bardine, ma che Romeo Pavoni ritiene + essere la cappella di Careola, presso Pontremoli (PAVONI 1987, p. 33). + + + S. Venanzio di Ceparana + Abbazia benedettina di S. Venanzio di Ceparana, i cui resti sono attualmente + inglobati nel complesso architettonico del palazzo Giustiniani, edificato nel + XVIII secolo. Bibliografia: CAVALLI GHERARDI 1975-76, POLONIO 1979, BONATTI 1984, BONATTI + 1986, VECCHI 2003, BALDASSARRI ANDREAZZOLI + 2005. + + + S. Venerio + *** + + + S. Vincenzo di Ameglia + chiesa plebana di Ameglia, nominata per la prima volta nella bolla di + Eugenio III del 1148. Bibliografia: FRANCHI LALLAI 2000, I, pp. 201-203. + + + S. Vitale + ente religioso non identificato, forse pieve di S. Vitale presso + Massa. + + + S. Vto di Marola + *** + + + + + + +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ + +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ + +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+ +
+ (S.T.) + + +
+
+
+ +
+
+
+ + + + + + + + + + + + + + + + 118 + CI + + + 1212 aprile 2-3, + Sarzanello (in palatio castri de + Sarzana). + + +
+

Il vescovo di Luni Gualtiero, col consiglio di Gerardo visdomino del fu Alberto, + conferma e rinnova agli operarii della corte di + Sarzana - nominalmente elencati - alcune concessioni fatte dai suoi predecessori + Alberto e Pipino. Nella concessione precedente, fatta dal vescovo Pipino e + redatta dal notaio Bartolomeo, si stabiliva che nessuno fosse costretto a + ricevere le tasse relative alla caneva, alla castaldia e alla iscaria, a meno che non lo desiderasse e a patto che uno di loro + fosse una volta all’anno iscarius, ricevendone in + cambio un feudo. I diritti di placitum, districtum, offensiones e amasiamenta rimanevano + del vescovo e gli operarii erano tenuti a dare + venti moggi di frumento all’anno alla caneva o al + granaio e cento congi di vino al palmento e lavorare le bradie e il cafadium, dando metà dei + frutti alla curia e consegnandoli alla caneva. Il + vescovo doveva dare agli operarii gli animali in + soccida e, nel caso non avesse bestie, doveva concedere solo la terza parte + delle bradie, col patto che, se ne facevano le + stoppie, dovevano consegnarne la terza parte. Gli operarii dovevano inoltre portare il fieno del prato al fienile, + mangiando due volte al giorno pane di frumento, vino e formaggio, e dovevano + prendere pane e vino, carne, granaglie e biade dalle corti di Soliera, Bolano, + Carrara, Luni per portarle a Sarzana o ad Ameglia, mangiando una volta al + giorno. In casi peculiari dovevano fare questa raccolta per tutta la diocesi e, + nel caso fossero fatte richieste alle comunità, anch’esse dovevano + parteciparvi.

+

A differenza del patto precedente Gualtiero stabilisce che gli obblighi relativi + al fieno e al recupero di beni dalle corti sopra elencate vengano meno. Il + pagamento annuale viene modificato in ventitre moggi, calcolando venti staia per + moggio alla misura corrente dello staio, da consegnarsi nel mese di agosto; i + congi di vino rimangono cento, ma alla misura corrente del congio. Se qualche + straniero si insedia nel podere di un operario + deve giurare di dare al vescovo quanto dovuto e di abitare nel castrum di Sarzana. Per la conferma del patto il + vescovo riceve un pagamento di venti lire di imperiali, a seguito del quale + libera dal pignoramento la curia di Bolano, che + era stata presa a pegno da Iuncta de + Vallerano.

+
+ +
+ +
+

Copia di copia autentica [C] CP c. 214v. - 216r., c. CCVIv.- CCVIIIr. secondo + la numerazione originale.

+
+ +
+

Edizione pressoché integrale in: LUPO + GENTILE, 1912, n. 101, pp. 132-134.

+ +
+ +
+

Nel margine esterno, di mano moderna: Obligazione che gli operari di + Sarzana debbano pagare ogni anno vinti moggi di grano mondi e cento + condi (condi corretto su precedente scrittura) di vino al vescovo lunese pro tempore. Un’altra + mano ha aggiunto: È equivoco di chi non ha ben capito.

+
+ +
+

+

+ +
+
+ + +
+ +

De castro + SarzaneDe castro Sarzane + in inchiostro rosso..

+

In eterni + Dei nomine, amen. Quemadmodum in instrumento publico manu Bartholomei notarii + confecto, quod ego Confortus + notarius vidi et legi, continebatur, + dominus Pipinus, Dei gratia olim Lunensis + episcopus, renovellavit, fecit et firmavit per se + et successores suos, consilio curie, tale pactum et talem constitutionem quale + et qualem fecerat dominus Albertus, bone memorie + Lunensis episcopus, predecessor suus, cum + operariis omnibus de curte SarzaneiSarzanei: così + nel testo.. Uterque enim eorum, velut in + eodem instrumento legebatur, condonavit et remisit per se et suos successores + omnibus suprascriptis operariis dona et opera atque quod nullus eorum cogatur ad + canevam recipiendam nec ad castaldiam neque ad iscariam, nisi per voluntatem, + excepto quod omni anno debet unus eorum esse iscarius, si + fuerit voluntas episcopi, et debet suum feudum habere. Placita, districta, + offensiones, amasiamenta omnia retinuerunt in se et successores suos predicti + domini episcopi et pro suprascripto pacto et conventione debent suprascripti + operarii omni anno dare viginti modia frumenti mundi et deferre usque ad canevam + vel ad granarium et centum congia vini ad palmentum et deferre usque in canevam + et debent laborare bradias et cafadium et reddere medietatem curie et portare + usque in canevam. Et episcopus debet eis dare bestias ad socerandum et ipsi + debent socerare; et, si non habuerint bestias ad socerandum, non debent dare + nisi terciam partem bradiarum, et si restopplaverint, terciam partem reddere + debent; fenum de prato debent portare ad fenile et debent bis in die comedere + panem frumenti et vinum, caseum, et episcopus debet facere coadunare fenum in + prato; et alios attractus debent facere, scilicet panem et vinum, carnes et + annonam et fruges, de curte de Soleria, de + curte de Bolano, de curte de Carraria, de curte de Luna ad Sarzanam + vel ad Ameliam, et semel in die comedere. + Pro facto pape vel imperatoris vel cardinalis vel cancellarii debent facere + attractus, si opus fuerit, per totum episcopatum; si pro facto pape vel + imperatoris vel guerre alii homines communiter dederint, atque ipsi dare debent. + Cum autem hec omnia suprascripta in predicto instrumento continerentur:

+

§ Nos Gualterius, Dei + gratia Lunensis episcopus, consilio + Gerardi, vicedomini + nostri, quondam Alberti vicedomini, nobiscum presentis, + renovamus, facimus et confirmamus predicta + pacta et conventiones et constitutiones, addendo tamen et minuendo et mutando + seu commutando quedam ex ipsis, prout dicetur inferius, pro bono et utilitate + atque melioramento nostri episcopatus et nostre curie. Et hanc renovationem + atque confirmationem et commutationem et hec omnia que infra leguntur, facimus + infrascriptis et cum infrascriptis operariis, recipientibus pro se et omnibus + aliis operariis de curte + Sarzane et suo et eorum nomine per nos et nostros + successores. Quorum operariorum nomina sunt hec: Vernacius quondam Guilielmi de Cantio, + Ramundinus quondam Guidonis de + Opizo, Bonavere quondam + Macognani, Compagnonus de + Bertoloto, Formentinus + quondam Rafanini, Ricius quondam + Bottocii de Oliveto, + Sabbatinus quondam + Albertacii, Vitalis quondam + Boneti, Baldinotus de + Pulica, Compagnus, Sarzanensis quondam Gandolfi, Ramondinus quondam Formentini de Corciola, Thodescus quondam Bonizi, Martinus quondam Guerini, Symonetus quondam Gerardini de Terriola, Gerardinus quondam Bettotii, Bonencontrus Ottoboni, Vitalis de Donnolina, Vitalis de Beagua, Burgensis + de Pulica, Oliverius de Canale Iannis, Vitaletus de Bonno, Amicus + quondam Aicardini, Attolinus de + Gualdo, Morengnolus quondam + Gerardini de Terria, + Buiardus quondamquondam: nel + testo segue depennato ed espunto + de Gerardini de + Bonfante, Paganinus quondam + Boni de Oliveto, Fancinellus quondam Rafanini, + Guilielmus quondam Martinelli de + Rafanino, Vitalis quondam + Vindemioli de Tortiliano, Bernardus + quondam Rafanini, Bellandus + quondam Vitalis escarii, Vitalis + quondam Belseris, Guido de + Montedarmo quondam + Dominici, Galopinus quondam Ricii + de Montedarmo, TrampuliusTrampulius: T + corretta su precedente B quondam Dominici + cortesiani, Salvus quondam Carençoli, Bonensegna quondam Rainerii de Cortiola, Botrigellus quondam Fantinelli de Monçolono, Ugolinusfrater eius, Bernardus quondam Moregnoli, Rollandinus quondam Gualdi, Arnaldus quondam Ugolini, Rollandinus de Montecello, Iuncta de Terria, Iuncta + quondam Guilielmini de Serraursi, Forinus + quondam Ugolini de Pilato, Persona quondam Ubertini de Seraursi, Romeus + quondam Vitalis escarii, Sabbatinus de Serraursi, + Rollandinus quondam + Guilielmini, Vivianus quondam + Bosi, Bonavia quondam Dominici + de Montedarmo, Bonencontrus quondam Sarzanelli, + Bonsegnus quondam Gerardini de + Bonfante, Sabbatinus quondam + Durantis Ravolati, Henricus quondam + Boni de Vignola, Alçadellus quondam Araldi, Rustigellus quondam Vitalis escarii, + Gerardus quondam Gerardini, + Tiniosus frater eius, + Pasqualinus de Brasile, Castellanus de Monti, + Gerardinus de Guitone.

+

§ Remittimus enim nos suprascriptus episcopus + atque condonamus omnibus suprascriptis hominibus, recipientibus pro se et + omnibus aliis operariis de curte + Sarzane et suis et eorum heredibus suoque et + eorum nomine, per nos et successores nostros, de hiis que in prefacto + instrumento manu Bartholomei notarii + scripto continebantur, ut de cetero non debeant nec teneantur portare fenum ad + fenile neque facere attractusattractus: nel + testo la terza t corretta su l, scilicet + panem aut vinum vel carnes vel annonam seu fruges, de curte de Soleria vel de curte de + Bolano aut de curte de + Carraria seu de curte de Luna + ad Sarzanam vel ad Ameliam, set pro facto pape et imperatoris vel + cardinalis vel cancellarii debeant facere attractus, si opus fuerit, per totum + episcopatum de pane, vino, carne, annona et frugibus tantum; et insuper pro + facto pape et imperatoris vel guerre debent dare, si alii homines communiter + dederint. Placita vero et districta, offensiones et amasiamenta omnia retinemus + in nos et nostros successores, sicut fecerunt predecessores nostri. De facto + vero bradiarum et cafagii et iscarie et castaldie sit sicut in predicto + instrumento continebatur. Verumptamen pro predictis omnibus que eis remittimus + et condonamus et facimus debeant dare curie nostre annuatim illud affictum quod + in dicto instrumento continebatur et soliti fuerant, et tantum amplius quod + frumentum sit modia viginti tria, ad staria viginti per modium ad starium quod + nunc currit, et vinum debeat esse congia centum, ad congium quod nunc currit, + atque ordeum debeat esse + tantum quantum erat prius, set debet dari de cetero ad starium quod nunc currit, + et starium vel congium quod nunc currit numquam crescere debeat nec minui, set + sicut in eodem statu perpetuo permanere, et totum hoc affictum deferatur ad + granarium et ad canevam nostram de Sarzana; frumentum detur per totum augustum mundum et siccum omni + anno et vinum ad palmentum. Omnes suprascripti homines ad sancta Dei evangelia + iuraverunt dare annuatim curie totum illud quod additum est in predicto afficto + secundum quod cuilibet pro sua contingerit portione. Et si aliquis foretanus de + cetero intraverit in aliquo podere alicuius operariorum, debeat iurare dare + curie semper totum affictum illius poderis ad voluntatem domini episcopi atque + stare precise habitator in castro + Sarzani. Ad horum quoque omnium confirmationem confitemur nos + recepisse ab omnibus predictis operariis bonorum imperialium libras viginti, renuntiando + exceptioni non numerate pecunie, quos et nos et dictus Gerardus, vicedominus + noster, atque ipsimet operarii predicti confitemur fore + datos et spenditos in expignoranda curia de + Bolano, que cuidam Iuncte de + Vallerano fuerat nomine pignoris obligata. Sub pena centum librarum + imperialium. Promiserunt sibi ad invicem contrahentes hec omnia + rata habere, attendere et observare et in nullo contravenire, rato manente + pacto, post penam solutam parti fidem servanti ab altera parte, obligando + dominus episcopus se et suos successores et predicti + operarii se atque alios pro quibus hec faciebant et + suos et eorum heredes, et ita sibi ad invicem, ut supra legitur, per omnia et in + omnibus sunt stipulantistipulanti: così nel testo. + antedicti contrahentes.

+

Acta sunt hec omnia in palatio castri de Sarzana, anno a nativitate Domini M°CCXII, indictione XV, die lune, secundo intrante + mense aprilis, sollempniter. Ibi fuerunt rogati testes presbyter Bonaiuncta de + eodem castro, + Armanus dyaconus atque + plebanus de Amelia, Gibertinus quondam CodeindeiCodeindei + così nel testo per + Code Iudei (cfr. doc. 160-CXXXIV). + de Burtione, Aldebrandetus de + Soleria filius Guidolini de Fossato, Assalitus quondam Tiniosi de sancto + Stephano et Vescontinus quondam Bonencontri de Trebiano.

+

§ + Sequenti proximo die martis, tercio eiusdem + mensis, in eodem castro, in + domo Ferrini, in presentia Vivaldi filii Ferrini et Bonacursi filii Albertini de Nobelino, + rogatorum testium. Alcarinus quondam + Folcerii, pro se et investitus a Gerardo quondam Bellandini de Oliveto, Alberto quondam Nobelini, Baroncello fratre eius, Nicolosio quondam Claramici de Orto, Rainerio quondam Aicardini de Orto, Datio + genero quondam Rodolfini, Gerardo quondam Rollandini de Masio, Segnoreto + quondam Rainerii de Cortiola, Spinello quondam Baldicioni de Ponzanello, Guilielmo quondam Patiti de Ortale, Melanesi + quondam Grossoli de Platia + et Amiliarino filio Parluntii, + et supra suam et eorum animam iuravit et pariter cum omnibus eis promisit + Tinioso de Maroalco et + Ferrino, recipientibus pro dicto domino + episcopo et suis successoribus, omnia que superius leguntur, prout suprascripti + omnes alii operarii iuraverunt et promiserunt, perpetuo + rata habere, attendere et observare atque in nullo contravenire simul atque + quisque pro se, approbantes totum et quicquid predicti fecerant cum dicto domino + episcopo, ut supra legitur, obligando etiam se suosque heredes, sicut predicti + fecerant et ad eamdem penam. Ego Confortus, + sacri palatii et Lunensis curie + notarius, hiis omnibus interfui rogatus et de voluntate + contrahentium de isto contractu plures cartas uno tenore scripsi.

+

Ego + Pinosius nomine Iacopinus, + Romanorum imperatoris notarius, + auttenticum huius exempli vidi et legi et ut in eo continebatur in hoc scripsi, + nichil addens vel minuens quod mutet sensum vel minuat intellectum.

+

+ Ego Prefectus, domini imperatoris atque Lunensis curie + notarius, huius exempli autenticum vidi atque legi + et in eo subscripsi, signum proprium apponendo.

+

Ego + Bonencontrus de Soleria, aule sacre + notarius, auttenticum huius exempli vidi et legi, + in quo continetur ut in isto legitur, atque rogatus subscripsi, signum proprium + apponendo.

+
+ +
+ + + + + + 119 + CII + + + 1234 novembre 20 - 1235 marzo + 23, Sarzanello (in palatio castri + Sarzane). + + +
+

Convenzioni tra il vescovo di Luni Guglielmo, tre consoli e cinque rappresentanti + del consiglio del castrum di Sarzana. Si + stabiliscono: le norme per l’elezione dei consoli, del gastaldo e dei + consiglieri; il contenuto del giuramento dei consoli e dei consiglieri e le + relative tempistiche; le pene e le multe (banna) + in caso di omicidio premeditato (excogitatum) e + non premeditato (non excogitatum), incendio, + tradimento, furto, mancata denuncia di furto, inosservanza dei mandati e dei + doveri, insulti, violenze, danni alla proprietà o contrarie al decoro; + l’ammontare delle tasse per fuoco (fumum); le + regole in caso di eredità con e senza testamento, di debito insoluto, di + richiesta di appello e di partecipazione alle adunate pubbliche o alle + compagnie. Nel corso del presente mandato i consoli devono porre le fondamenta + della porta in monte Iudicis e costruire le mura + da qui per la lunghezza di quattro braccia e l’altezza di un ponte, e poi + procedere al completamento dell’opera costruendo un ponte all’anno.

+
+ +
+ +
+

Copia [C] CP cc. 216v.- 218r., cc. CCVIIIv-CCXr. secondo la numerazione + originale

+
+ +
+

Edizione in LUPO GENTILE 1912 n. 102, + pp. 135-138; CONTI 1979-1988, I, doc. + XV, pp. 71-78.

+
+ +
+ Nel margine esterno, di mano moderna: Eletione di + consoli e numero, da farsi per gli homini di Sarzanello ogni anno il + giorno di Santo Martino. Alle convenzioni, stabilite nel novembre + 1234, è stata fatta una breve aggiunta nel marzo successivo: il notaio + Gerardeto la data con la frase eodem anno et + indictione, ma più correttamente, usandosi lo stile della + natività, avrebbe dovuto scrivere sequenti + anno. Essendo marzo, l’indizione era comunque la medesima del + novembre precedente. Il testo delle delle additiones inizia verso la fine di c. 218r. e prosegue, con + segno di richiamo a forma di croce, nel margine inferiore di c. 217v. Una + parte del documento è stata letta con l’ausilio della lampada di + Wood. + +
+ +
+

+

+ +
+
+ + +
+ +

In Ihesu Christi eterni nomine, amen. + Anno a nativitate ipsius M°CC trigesimo quarto, indictione VII. + Infrascripte constitutiones statute sunt de voluntate et consensu venerabilis + patris domini Guilielmi, Dei gratia + Lunensis episcopi, atque voluntate + Plebaneti quondam + Aldebertini, Codargogii + quondam Biancheti et Cursi quondam + Alberti, consulum castri + Sarzane, Attolini quondam Bandini, Guilielmi quondam Testafortis, + Borgeseti quondam Hubertini, + Bandineti quondam Guilielmi + et Gerardetti Muntoni + notarii, electorum a consilio + ipsius castri, + perpetuo valiture, ita videlicet quod nec mutari vel removeri nec addi vel + adiungi seu minui non possint, in toto vel parte, sine consensu et voluntate + episcopi et sine consensu et voluntate + consulum et consiliariorum, qui + pro tempore fuerint. Et si quid diminutum, mutatum fuerit vel additum secundum + predictum modum, de addito teneantur atque de diminuto absolvantur.

+

§ Tres consules annis + singulis, per VIII dies ante festum sancti Martini, eligantur per illos + consules qui tunc fuerint, cum consilio et consensu et + voluntate dicti domini episcopi et successorum eius, qui pro tempore fuerint, + vel castaldionis eius, si episcopus presens non fuerit. Et + tales consules eligantur qui iuramento fidelitatis domino + episcopo sint astricti contra omnes homines, et hoc sine fraude. Et electi + consules, facto iuramento istius brevis secundum quod + inferius continetur, a festo sancti Martini usque ad unum annum dominentur, + secundum formam istius brevis. Et nullus eligatur in + consulem, qui fuerit consul infra + tres annos preteritos.

+

§ Item nullus eligatur in + consulem qui sit pater vel filius, patruus vel + avunculus vel nepos, frater, cognatus ex uxore vel sorore, vel consobrinus in + secundo gradu vel socer consulum, qui debent eligere cum episcopo pro sequenti + anno.

+

§ + Castaldio sit semper quartus consul et + dominetur ut unus aliorum consulum et nullum feudum habeat pro consulatu, + excepta quarta parte datie et de IIIIor denariis pro + lamentatione ut unus aliorum consulum, ita tamen quod, si + non fuerit ipse castaldio castellanus suprascripti castri, non sit consul, vacante + sede episcopali. Et quandocumque intraverit vel mutatus fuerit + castaldio, iuret pro toto tempore sui castaldionatus, + sicut iuraverint consules suprascripti, ad istud breve.

+

§ Veteres consules et + castaldio eligant quindecim + consiliarios, qui per totum annum debeant esse + consiliarii suprascripti castri cum + novis consulibus electis, ut dictum est supra. Et mutentur + consiliarii anno quolibet, sicut melius videbitur veteribus + consulibus et castaldioni, in + eorum arbitrio.

+

§ Iuramentum autem consulum + hoc erit: iurabunt enim bona fide, sine fraude, ad honorem Dei et Domini Ihesu + Christi et gloriose matris eius Virginis Marie, sancti Martini et omnium + sanctorum, et ad honorem suprascripti venerabilis patris domini Guilielmi, Lunensis + episcopi, et successorum eius, tam nominicetam nominice: così nel + testo., quod ab hac festivitate sancti Martini usque ad aliam + festivitatem eiusdem confessoris, revoluto anno, regent consulatum castri Sarzane ad + salvamentum hominum eiusdem castri et + curtis qui sub nostro consulatu consistunt, secundum quod melius + cognoverint, dominante Deo, sine fraude atque secundum has constitutiones. Et quod + eligent consiliarios meliores et utiliores quos cognoverint pro ipso episcopo et commune suprascripti castri, secundum predictum modum. + Et facient de lamentatiis, que ad eos devenerint, iusticiam, ita parvo sicut + magnoita + parvo sicut magn: così nel testo., absque + personarum acceptione. Et quod non recipient aliquod precium vel aliquid loco + precii pro aliqua causa + que vertatur coram ipsis, excepta datia, videlicet uno denario de quolibet soldo ab eo qui + perdet causam tantum et IIIIor denariis pro reclamo: et + ipsi IIIIor denarii et datia non accipiantur + nisi post litem contestatemcontestatem: così nel testo per contestatam per negationem. + Passim, ante litem contestatam et post sententiam, liceat cuilibet appellare + atque consules, quocumque modo fuerit appellatio, non se intromittant; set, a + lite contestata usque ad sententiam latam, nulli liceat appellare. Et quod + eligent consules omni anno per VIII dies antequam exeant, + secundum modum superius denotatum. Et quod accipient banna inferius denotata et + non restituent, et medietatem assignabunt curie et aliam medietatem communi vel + sibi retinebunt pro communi. Et teneantur facere banniri per totum castrum + quolibet mense quod, si quis voluerit dicere et probare quod consules iniuste + abstulerint sibi pignus, per mensem sequentem debeat id probare coram + episcopo, si presens fuerit, vel coram + castaldione, si fuerit absens + episcopus; et si infra mensem hoc non probaverit, non + audiatur postea, set solvatsolvat: segue depennato con inchiostro + rosso pignus bannum pro quo + pignus fuerit ablatum.

+

§ Iurabunt consiliarii consulere + consulibus; de hiis, de quibus ab eis fuerint + requisiti, dare rectum consilium, sicut melius cognoverint, ad honorem et + salvamentum suprascripti domini episcopi + et hominum dicti castri.

+

§ + Consules veteres, per IIIIor + dies ante festum sancti Martini, teneantur facere parlamentum et publicent + consules in communi qui electi fuerint secundum + predictum modum atque precipiant per sacramentum ut omnes iurent sequimentum + omnium consulum, de quibus dictum est supra in precedentibus capitulis.

+

§ Banna sunt hec:

+

§ Quicumque fecerit excogitatum homicidium de + aliqua persona suprascripti castri sit perpetuo banno subpositus, de quo non + possit exire nisi concordaverit cum heredibus vel proximis propinquis defuncti + et cum episcopo, qui pro tempore fuerit, atque preterea + nisi solverit soldos C + imperialium, quorum medietas erit domini episcopi et alia medietas + consulum vel communis. Item totum mobile confiscetur et + per medium dividatur inter dominum episcopum et consules + vel commune. Et melior domus, quam habuerit in castro, funditus eradicetur, + excepto muro castellano, et lignamen et copertura extra castrum comburantur. Et + hec omnia fiant, non obstante aliquo debito dotis vel alterius cuiuslibet + obligationis. Item uxor eius et filii non habitent infra castrum predictum, nisi + prius fuerit pax et concordia homicidii suprascripti. Si alias de aliqua persona + suprascripti castri fieret homicidium non excogitatum, puniatur arbitrio domini + episcopi et consulum, qui pro tempore fuerint.

+ +

§ Item si aliquis fecerit vel facere fecerit + excogitatum incendium alicuius domus vel capanne alicuius castellani suprascripti castri, emendet dampnum ad + deffensionem prestiti iuramenti eius cui factum fuerit incendium, et perdat + soldos XL + imperialium pro banno. Et si non habuerit unde dampnum emendet et + solvat penam, sit in banno, sicut homicida, quousque satisfecerit de dampno et + pena.

+

§ Traditores domini episcopi et loci puniantur + secundum leges.

+

§ Quicumque fecerit nocte furtum ad valorem sex + imperialium vel ultra, furtum emendet in quadruplumquadruplum: qua aggiunto in + sopralinea., et perdat soldos X imperialium pro banno. Si in + die fecerit furtum, emendet in duplum furtum, et perdat soldos V + imperialiumsoldos V imperialium: nel testo + soldos imperialium V + con segno di richiamo per invertire l’ordine delle + parole. pro banno. Si autem valuerit furtum infra sex + imperialium, perdat soldos + II imperialium pro banno, et emendet furtum de nocte in quadruplum + et de die in duplum.

+

§ Quilibet iuratus teneatur iuramento + manifestare furem, si viderit vel invenerit; et si non manifestaverit et fuerit + inde convictus, puniatur ut latro.

+

§ Quicumque non obedierit mandato + consulum vel eorum nuncii, quando + factum ei fuerit sub debito iuramenti, perdat soldos V imperialium atque iterato + reficiat iuramentum.

+

§ Item quicumque percusserit aliquem excogitate, + ita quod ex percussione illa perdat membra magna corpulentia, id est manum vel + pedem vel decoredecore: così nel testo, forse errore per + aurem vel oculum vel nasum, perdat + soldos XL + imperialium pro banno; si vero os ex percussione fregerit vel + cassale vulnus fecerit, perdat soldos XX imperialium pro banno. Si alias excogitate + vulneraverit aliquo genere armorum et ex illo vulnere percussus perdiderit + operas quas facere non possit, perdat soldos V imperialium pro banno, atque si alias + fecerit perdat soldos III + imperialium pro banno. Si vero fecerit lividum, perdat soldos II imperialium + pro banno; si aliter percusserit excogitate, non faciendo lividum vel sanguinem, + perdat soldos II + imperialium pro banno. Preter hec banna suprascripta, quicumque + fecerit excogitate suprascriptas percussiones emendet operas percusso, solvat + medicaturam et iniuriam + emendet ad estimationem domini episcopi et consulum, qui + pro tempore erunt.

+

§ Quicumque fecerit assaltum ad domum alicuius + cum armis, capitaneus soldos X, et sequentes cum armis et sine armis pro ipso malo + faciendo soldos III + imperialium pro bannoQuicumque ... banno: alla frase manca + un predicato verbale come perdat o solvat..

+

§ Quicumque arma excogitate acceperit contra + iuratum vel iuratos suos pro malo faciendo perdat soldos II imperialium pro banno.

+

§ Item quicumque excogitatum assaltum fecerit + contra iuratum vel iuratos suos perdat II imperialium pro banno.

+

§ Quicumque improperaverit alicui suo iurato vel + iuratis homicidium, unde pax fuerit vel pacem homicidii, perdat soldos V imperialium + pro banno; qui de alio malo improperavit perdat soldum I pro banno.

+

§ Quicumque percusserit excogitate alicuius + uxorem, absque sanguine vel livido, perdat soldos V imperialium pro banno; si + fecerit sanguinem vel lividum, puniatur ut supra de omnibus percussionibus + dictum est, preter suprascriptos soldos V.

+

§ Quicumque vel quecumque dixerit alicui: cucurbita vel spernitus, perdat imperialium XII.

+

§ Quicumque vel quecumque dixerit alicui mulieri + maritatePotrebbe mancare + l’indicazione dell’ingiuria, ma si può anche intendere il termine maritate come imperativo. vel + consimile verbum iniuriosum perdat denarios imperialium XII.

+

§ Quicumque vel quecumque excogitatum vastum + fecerit, de die vel de nocte, a sex denariis infra vel ultra puniatur ut fur, et + quicumque viderit vastantem et non manifestaverit, et inde convictus fuerit, + puniatur ut latro, sicut determinatum est supra.

+

§ Quicumque traxerit aliquem de tenuta rei + immobilis et contempserit coram consulibus, dicens ad se pertinere, soldos V perdat pro + banno, in clam vel precario.

+

§ Quicumque habet facere murum castellanum et + non fecerit unum pontem per annum, infra mensem + septembris, perdat soldos V imperialium pro banno; et si fecerit duos + pontes vel plures uno anno, non cadat in bannum sequentis vel sequentium annorum + secundum numerum factorum pontium muri faciendi et facti.

+

§ + Consules teneantur iuramento suo facere solvi per + unumquemque fumum suorum iuratorum capellano sancti Martini + de suprascripto castro unam minam boni, + mundi et sicci frumenti infra mensem septembris, annis + singulis, eodem capellano mittente ad domum singulorum pro + ipso frumento, exceptis omnibus consulibus et duobus nunciis Communis, qui non + debeant illud solvere.

+

§ Si autem consules vel + eorum aliquis incurrerint excogitate maleficia suprascripta, puniantur ut + supra.

+

§ Si autem minores XII annorum incurrerint + excogitate maleficia suprascripta, puniantur arbitrio + episcopi et consulum.

+

§ Si autem pauperes incurrerint ipsa maleficia + excogitate et non habuerint unde solvant dicta banna, puniantur extraordinarie + arbitrio episcopi et consulum, + exceptis homicidiihomicidiis: così nel testo, + incendiariis et traditoribus, super quorum pena non habeatur remedium, preter quod superius + est notatum.

+

§ Si quis incurrerit aliquod maleficium, quod in + hoc breve non sit scriptum, puniatur arbitrio domini + episcopi et consulum.

+

§ Quicumque perdiderit vel fraudem commiserit in + perdendo statutum istud, perdat soldos XX pro banno, et breve reficiat suis + expensis.

+

§ Super omnibus iniuriis et dampnis + suprascriptis, si querimonia delata fuerit ad dominum + episcopum vel eius vicarium, ipse puniat + secundum suprascripta statuta; et si delata fuerit apud + consules, puniant secundum suprascripta statuta, nisi + per appellationem ad episcopum devenerint, ita tamen quod + si episcopus punierit, consules non puniant, atque si + consules punierint, non puniat + episcopus.

+

§ Medietas omnium suprascriptorum bannorum sit + domini episcopi et alia medietas sit consulum vel communis; preterea medietas + omnium bonorum, que consules habuerint preter hec et sine + scriptis, sit episcopi et alia medietas consulum vel + communis.

+

§ Quicumque advena obierit in suprascripto castro vel eius districtu sine + legitimis heredibus et ab intestato, eius mobilia dividantur per medium inter + episcopum et commune vel consules; si autem fecerit + testamentum, teneatur iudicare denarios XII episcopo et totidem consulibus vel + communi et eius teneat testamentum.

+

§ + Consul teneatur precipere ei qui confessus fuerit in iure + debitum ut infra XV dies illud solvat et, si non solverit et querimonia relata + fuerit consuli, faciat pro banno dari de quolibet soldo denarius I atque, + quamdiu steterit ad solvendum, in qualibet octava solvat eodem modo de quolibet + soldo denarium + I, ita tamen quod, si creditor prorogaverit terminum, inde non cadant + in bannum; consul tamen terminum prorogare tertium non possit.

+

§ Si dominus domus non venerit ad parlamentum + quando sonaverit, perdat denarios IIII pro banno, nisi steterit parabola consulum.

+

§ Si consiliarius non venerit ad consilium + quando sonaverit, perdat denarios sex, nisi steterit parabola consulum.

+

§ Quicumque non redierit ad castrum vel ad + rumorem traxerit quando sonaverit ad sturmum, perdat soldos II, et si traxerit ad rumorem et + erit discordia inter iuratos, teneatur bona fide partiri discordes et non + accipere partem quod, si partem acceperit vel non diviserit, perdat soldos II; si autem + fuerit discordia inter iuratos et alios, teneatur adiuvare iuratos, ita quod non + possit habere iniuriam bona fide, et si non adiuveritadiuverit: nel testo + adiuvaverit con va depennato ed + espunto., perdat soldos II pro banno.

+

§ Quicumque intra castrum fuerit et audierit tintinnabulum pro mortuis pulsare, + teneatur ire ad locum ubi fuerit corpus defuncti et ire cum ipso defuncto ad + sepeliendum; atque, si non iverit, perdat denarios IIII, nisi steterit parabola + consulum.

+

§ Nullus faciat iuramentum compagnie, nisi + fuerit de mercadancia, nec iuram nec obligationem iure, preter iuramentum + communis, atque quicumque fecerit perdat soldos XX, capitaneus et ceteri perdant + soldos XI et + iura destruantur.

+

§ Nullus dominus vel domina intret in ortum + alterius pro dampno faciendo; atque, si intraverit, perdat soldum I, et alia + familia perdat denarios + sex et emendet dampnum, ut de furto superius dictum est.

+

§ Nullus deportet ultra sex cervatinas et, si + aportaverit, perdat denarios VI, excepto quando ligantur vinee, et tunc non portet nisi proprias.

+

§ Quicumque inciderit remondantosremondantos: così nel testo. malo modo, nisi + faceret retortas ad boves vel vernale, perdat denarios VI pro banno.

+

§ Si ficus vel alia arbor pependerit super + terrenum alterius, ille cuius erit terra super qua pependerit colligatur de sua + terra quod poterit et sit suum quod collegerit; si vero per debatituram + ceciderint fructus in alterius terrenum, dividantur per medium inter eum cuius + est arbor et terrenum in quo ceciderint; et si per ventum vel per maturitatem + ceciderint in terrenum alterius, sint eius in cuius terra ceciderint.

+

§ Nemo de suprascripto castro, qui accusatus fuerit de dictis + offensionibus, possit appellare ad episcopum, nisi prius + dederit pignora vel cautiones fecerit coram consulibus de dictis bannis, salvo + iudicio eorumdem episcopum. In aliis autem et super aliis + mandatis que non sunt in hoc breve expressa, si consules + fecerint seu preceperint alicui et visum fuerit quod gravetur, liceat cuilibet + appellare et consules ab appellatione facta non contra + procedant, excepto quod si per sacramentum preceperint, teneanturteneantur: + così nel testo per + teneatur dare pignus soldorum V ille qui + appellaverit et iudicium appellationis salvum sit domino episcopo + suprascripto.

+

§ Nullus ponat linum ad macerandum in rivo + Pucio, a via de Fracta supra in aliquo loco rivi; et quicumque posuerit perdat + denarios + XII pro banno et non teneat ultra et, si tenuerit, per quemlibet + diem quo tenuerit perdat denarios sex.

+

§ Teneantur etiam consules + iuramento hoc anno fundamentum facere porte in monte Iudicis et murare hinc inde + per brachia IIIIor murum ad unum pontem super terram + atque bonum murum ad calcinam factum, et donec compleatur opus fiat unus pons + boni muri annis singulis.

+

§ Nullum aliud statutum fiat preter communem + voluntatem domini episcopi, consulum et consilii dicti loci.

+

<§> Confirmatum est et approbatum istud + breve per omnes consiliarios + dicti castri + XII kalendas decembris, in palatio castri Sarzane, presentibus Salamoncello Baratella, Rolando Vago de Luca, Hugolino + Philippi et multis aliis.

+

§ + Eodem anno et indictione, in camera suprascripti episcopi apud + suprascriptum castrum, X kalendas + aprilis, coram Bonafesta quondam + Durantis et Iacopino + Talliavacha notario, decretio eodemdecretio + eodem: lettura incerta. suprascriptorum + quorumdam capitulorum et additum hoc factum de voluntate et consensu + suprascripti episcopi et consulum et consilii dicti + loci.

+

§ Quando pulsaverint tintinnabula pro mortuis, + si fuerit mortuus in Gropario, vadant + tantum illi de Gropario cum eo ad + sepeliendum; si fuerit de Miro, vadant illi + de Miro; si in Monte, vadant illi de Monte; et, si alii voluerint ire, vadant ad voluntatem suam. Item + consules, elapsis XV diebus, super debito confesso in + iure dominiidominii: inchiostro sbiadito. eis precipiant + per iuramentum debenti ut ab inde ad octo dies id solvat. Item cuilibet de + castro incidenti ficum suam liceat, quandocumque inciderit, proprias deportare + cervatinas. Item nullus faciat fossatum in aliquo ponte Parola illeggibile a + causa dell’inchiostro sbiadito. tocius castri iuxta viam + per quod via possit corrui; et, si fecerit, perdat soldos III et infra duos dies repleat + ipsum fossatum et viam reficiat.

+
+

Item nullus faciat stallam vel aliud excogitatum + impedimentum in viis tocius districtus + suprascripti castri atque, si fecerit, perdat denarios XII; + verumptamen tempore messis, quando in estate tondetur triticum, ordeum atque + similia, a kalendis iulii usque ad kalendas septembris liceat hiis, qui habent aras + et capannas iuxta vias, propter necessitatem deicere paleas et ruscum in + viam, ita tamen quod infra dictos duos menses paleam, ruscum et letamen de + via removeant et deportent; et si non fecerint et si dimiserint, perdant denarios XII.

+

Ego + Gerardetus, qui nominor Montonus, + palatii sacri notarius, hiis omnibus + interfui et rogatus duo instrumenta uno tenore scripsi, de voluntate et + mandato domini episcopi, consulum et consilii predictorumItem nullus-consilii + predictorum: scritto nel margine inferiore di c. + CCVIIIIv. con segno di richiamo in inchiostro + rosso..

+
+
+ +
+ + + +
+ + + +
+ + AMBROSI 1992: A.C. Ambrosi, Sulla via dei + pellegrini in Lunigiana e sul porto di s. Maurizio, in Il + pellegrinaggio medievale per Roma e Santiago de Compostela. Itinerari in Val di + Magra, Aulla, pp. 33–67. + + AMBROSI BERTOZZI MANFREDI 1989: A.C. + Ambrosi, M. Bertozzi e G. Manfredi, Massa Carrara. Pievi e territorio della + Provincia Pisa 1989. + + Annales Placentini Gibellini,in Monumenta + Germaniae Historica. Scriptores, XVIII, Hannover 1863, pp. + 457-581 + + ASFi, Diplomatico Malaspina, Spoglio 100. + + Copia della pianta dei confini fra il Serenissimo + Senato di Genova e l'Illustrissimo Signor Marchese di Fosdinovo data in Camera + l'anno 1587 (ca. 1625), Archivio di Stato di Genova, Raccolta dei Tipi, + disegni e mappe, Fondi cartografici originari, Mappe e tipi della Repubblica di + Genova, Miscellanea di carte non riconducibili all'ordinamento originario, n. + 33. + + Archivio di Stato di Lucca, San Frediano. + + Archivio di Stato di Lucca, Diplomatico + Arnolfini. + + BALDASSARRI ANDREAZZOLI 2005: M. + Baldassarri – F. Andreazzoli, Per l’archeologia dell’Abbazia di San Venanzio + di Ceparana: dalla prima analisi ad un progetto per il futuro, in + «Giornale Storico della Lunigiana», LVI, pp. 233–254. + + BALDASSARRI ANDREAZZOLI 2007: M. + Baldassarri – F. Andreazzoli, Fosdinovo (MS). Per la Carta Archeologica comunale: + le ricognizioni di superficie 2005-2006, in «Notiziario della Soprintendenza per i + Beni Archeologici della Toscana, 2» (2006), pp. 6–12. + + BALUZE 1761: É. Baluze, Stephani Baluzii ... + Miscellanea novo ordine digesta et non paucis ineditis monumentis opportunisque + animadversionibus aucta. Opera ac studio Joannis Dominici Mansi, 4 + vols., Apud V. Junctinium 1761-1764 + + BASSI 1927: S. Bassi, Il castello e l’abbazia + dell’Aulla nella storia della Lunigiana, Aulla. + + BERNOLDUS: Bernoldi, Chronicon, in Monumenta Germaniae + Historica Scriptores, V, ed. G. H. Pertz, Hannoverae, 1844, pp. + 385–467. + + BERTOZZI 1989: M. Bertozzi, Pieve di s. Andrea + Apostolo di Carrara, in Massa Carrara. Pievi e territorio della + Provincia, a cura di A. C. Ambrosi, M. Bertozzi e G. Manfredi, Pisa, pp. + 43–66. + + BÖHMER 1931: J.F. Böhmer, Regesta + chronologico-diplomatica regum atque imperatorum Romanorum inde a Conrado I. + usque ad Henricum VII. Die Urkunden der römischen Könige und Kaiser von Conrad + I. bis Heinrich VII. (911 - 1313) in kurzen Auszügen mit Nachweisung der + Bücher, wo solche abgedruckt sind, Frankfurt a. M. + + BONATTI 1984: F. Bonatti (a cura di), Ceparana + storia e tradizioni, Pisa 1984. + + BONATTI 1986: F. Bonatti, Vicende storiche + dell’abbazia di San Venanzio di Ceparana nel secolo XV, in Società + civile e società religiosa in Lunigiana e nel vicino Appennino dal IX al XV + secolo, Atti del Convegno (Aulla 1984), Aulla, pp. 47-60. + + BONATTI RATTI 1991: F. Bonatti e M. Ratti, + Sarzana, Genova + + BROOK PAVONI1984: L.L. Brook e R. Pavoni, + Tavola XXVI. Obertenghi di Massa e Parodi, in Genealogie + medievali di Sardegna, Cagliari-Sassari. + + BUSELLI 1972: F. Buselli, S. Andrea Apostolo duomo + di Carrara, Genova. + + CALLERI 1997: M. Calleri (a cura di), Le carte del + monastero di San Siro di Genova (952 - 1224), Genova. + + CALLERI 2003, Calleri M. (a cura di), Codice + diplomatico del monastero di Santo Stefano di Genova (965-1200), + Genova. + + CAPPELLI 1988: A. Cappelli, Cronologia, + cronografia e calendario perpetuo dal principio dell'era cristiana ai nostri + giorni, 6a ed., Milano 1988. + + CASTELMUR 1978: L. de Castelmur, Rodolfo de + Castelmur e la Valle Bregaglia: Editto di Federico I Barbarossa del 12 maggio + 1179, in "Quaderni grigionitaliani", 47, pp. 7-16. + + CAVALLI GHERARDI 1975-1976: R. Cavalli + Gherardi, L’Abbazia di Ceparana in base alle fonti documentarie,in + “Giornale Storico della Lunigiana”, n.s., XXVI-XXVII, 1-4, pp. 230-240. + + COLOMBINI 2010: G. Colombini, Il primo monastero + cistercense della diocesi di Pisa: Santa Croce alla foce dell’Arno e San + Bernardo in Carraiola (XIII-XIV secolo), in «Bollettino Storico Pisano», + LXXIX (2010), pp. 207–227. + + CONTI 1960: M.N. Conti, Gli statuti quattrocenteschi + di Nicola, in “Memorie dell’Accademia Lunigianese di Scienze e Lettere + ‘G. Capellini’”, XXXI, pp. 183–284. + + CONTI 1976: M.N. Conti, Degli ospedali di Monte Forca + e “in capite paludis” in Lunigiana, in "Atti e Memorie della Deputazione + di Storia Patria per le Antiche Province Modenesi", s. 10ª, XI, pp. 101–110 + + CONTI 1978-1988: M.N. Conti (a cura di), Corpus + statutorum lunigianensium, 3 voll., La Spezia + + CONTI 1988: M.N. Conti, Le carte anteriori al 1400 + nell’archivio malaspiniano di Caniparola nel repertorio del 1760, + Pontremoli. + + CONTIP 1963: P.M. Conti, Il castrum, il burgus e le + due pievi di Sarzana, in "Memorie dell’Accademia Lunigianese di Scienze + e Lettere ‘G. Capellini’" , XXXIV, pp. 3–26. + + CONTIP 1867: P.M. Conti, Luni nell’alto + medioevo, Padova + + COTURRI 1974: E. Coturri, La canonica di S. + Frediano a Lucca dalla prima istituzione (metà del sec. XI) alla unione alla + congregazione riformata di Fregionaia (1517), pp. 47-80. + + DADA 2012: M. Dadà,Archeologia dei monasteri in + Lunigiana. Documenti e cultura materiale degli enti monastici della diocesi di + Luni dalle origini al XII secolo, Pisa 2012. + + FALCO 1916: G. Falco (a cura di),Le carte del + monastero del Tino, I (1050-1220), Pinerolo. + + FALCO PISTARINO 1955: G. Falco e G. Pistarino, + Il cartulario di Giovanni di Giona di Portovenere (sec. XIII), + Depultazione Subalpina di Storia Patria, CLXXVII, Torino. + + FERRARI 1912: M. Ferrari, L'origine di Castelnuovo + Magra, Barga. + + FERRETTO 1901: A. Ferretto, Codice diplomatico + delle relazioni tra la Liguria, la Toscana e la Lunigiana ai tempi di + Dante, in “Atti della Società Ligure di Storia Patria”, XXXI, fascicoli + I e II (1901, 1903). + + FERRETTO 1909: A. Ferretto, Documenti genovesi di + Novi e Valle Scrivia in “Bollettino Storico Bibliografico Subalpino”, + LI, LII. + + L. A. Muratori a cura di), Guido Da Vallecchia, ‘Historiae + Pisanae fragmenta’, in Rerum italicarum Scriptores, XXIV, + Mediolani 1738, coll.*** + + FORMENTINI 1922: U. Formentini, Una podesteria + consortile nei secoli XII e XIII (Le terre dei Bianchi), in «Giornale + Storico della Lunigiana», XII, pp. 195-224. + + FORMENTINI_1936: U. Formentini, Micaur–a + (Georg.Cyprii 533), in Atti del V Congresso Internazionale di + Studi Bizantini, Roma pp. 167-175. + + FORMENTINI_1949: U. Formentini, Le tre pievi del + Massese e le origini della città di Massa, in "Atti e Memorie della + Deputazione di Storia Patria per le Province Modenesi", s. 8ª, II (1949) + + FORMENTINI 1951: U. Formentini, Sarzana (dalla + pieve alla Polis), in "Giornale Storico della Lunigiana, n.s., II, pp. + 1–11. + + FORMENTINI 1953: U. Formentini, La "plebs + civitatis" e il capitolo dei canonici della cattedrale di Luni, in + "Giornale Storico della Lunigiana, n.s. IV, pp. 1–9. + + FORMENTINI 1955: U. Formentini, Aspetti della + storia d’Aulla secondo nuove indagini archeologiche, linguistiche e + storico-politiche, in "Giornale Storico della Lunigiana", n.s. VI, pp. + 109-*** + + FORMENTINI 1970: U. Formentini, La pieve di + Soliera, in «Giornale Storico della Lunigiana e del territorio lucense», + n.s., XXI, pp. 5–19 (postumo). + + FRANCHI LALLAI 2000: G. Franchi e M. Lallai, + Da Luni a Massa Carrara - Pontremoli. Il divenire di una diocesi fra + Toscana e Liguria dal IV al XXI secolo , 3 voll., Modena-Massa. + + FREGGIA 1989: E. Freggia (a cura di),I documenti + dell’Archivio Capitolare di Sarzana dal 1095 al 1776, La Spezia. + + GARZELLA 1991: G. Garzella, Pisa com’era. + Topografia e insediamento dall’impianto tardoantico alla città murata del + secolo XII, Napoli 1991 + + GENTILI 2000: E. Gentili, Falcinello. Origini, + sviluppo e decadenza di un piccolo comune della Lunigiana, Agorà. + + HPM CHARTARUM: Historiae Patriae Monumenta, + Chartarum, Torino 1853. + + HÜBNER 1893: R. Hübner, Gerichtsurkunden der + fränkischen Zeit. 2., in «Zeitschrift der Savigny-Stiftung für + Rechtsgeschichte: Germanistische Abteilung», 14, Deskriptoren: Italien, + Frühmittelalter, Hochmittelalter, Urkunden und Regesten. + + LEVEROTTI 1974: F. Leverotti, L’estimo di Massa + Lunense (1398-1401), tesi di laurea, Università degli Studi di Pisa, + Dipartimento di Medievistica, a.a. 1973-1974. + + LEVEROTTI 1982: F. Leverotti, Massa di Lunigiana + alla fine del Trecento. Ambiente, insediamenti, paesaggio, Pisa + 1982 + + + LIBRI_IURIUM: I libri Iurium della Repubblica di + Genova. 1. Antonella Rovere and Dino Puncuh (eds.), I libri Iurium + della Repubblica di Genova. Introduzione, (Roma, 1992). I.1. Antonella + Rovere, I libri Iurium della Repubblica di Genova, (Ministero per i + beni culturali e ambientali - Ufficio centrale per i beni archivistici: Roma, + 1992) I.2 Dino Puncuh (ed.), I libri iurium della Repubblica di + Genova, (Genova, 1996), I-2. I.4 Sabina Dellacasa (ed.), I libri + Iurium della Repubblica di Genova, (Ministero per i beni culturali e + ambientali - Ufficio centrale per i beni archivistici: Roma, 1998) I.3 Dino Puncuh + (ed.), I libri iurium della Repubblica di Genova, (Genova, 1998), + I-3. I.5 Elisabetta Madia (ed.), I libri Iurium della Repubblica di + Genova, (Ministero per i beni culturali e ambientali - Ufficio centrale + per i beni archivistici: Roma, 1999), I-5. I.6 Maria Bibolini (ed.), I libri + Iurium della Repubblica di Genova, (Ministero per i beni culturali e + ambientali - Ufficio centrale per i beni archivistici: Roma, 2000). + + LÜNIG 1725: J.C. Lünig (a cura di), Codex Italiae + Diplomaticus, Francoforte - Lipsia. + + LUPO GENTILE 1910: M. Lupo Gentile, Le origini + del comune di Carrara, in «Giornale storico della Lunigiana», 11. + + LUPO GENTILE 1912M. Lupo Gentile, Il regesto + del codice Pelavicino, in «Atti della Società Ligure di Storia Patria», + XLIV. + + LUSUARDI SIENA 2003: S. Lusuardi Siena, Gli + scavi nella Cattedrale di Luni nel quadro della topografa cittadina tra tarda + antichità e medioevo, in Roma e la Liguria marittima: secoli + IV-X. La capitale cristiana e una regione di confine , Genova - + Bordighera, pp. 195–202. + + MANFREDI 1989: G. Manfredi, Pieve di + Soliera, in Massa Carrara. Pievi e territorio della + Provincia, a cura di A.C. Ambrosi, M. Bertozzi e G. Manfredi, Pisa, p. + 135 e ss. + + MANSI BARSOCCHINI 1836: G.D. Mansi e D. + Barsocchini, Diario sacro delle chiese di Lucca di mons. Giovan Domenico + Mansi, accomodato all’uso dei tempi presenti ed accresciuto di molte notizie + del nostro paese dall’ab. D. Barsocchini, Firenze. + + MAZZINI 1909: U. Mazzini, Il monastero di Santa + Croce del Corvo, in Dante e la Lunigiana. Nel sesto centenario + della venuta del Poeta in Val di Magra MCCVI-MDCCCCVI, a cura di U. + Mazzini, Milano, pp. 208–231. + + MAZZINI1914: U. Mazzini, Correzioni critiche di + alcune date del Regesto del Codice Pelavicino, Genova. + + MGH DD FI: >Die Urkunden Friedrichs I (Friderici I + diplomata) 1181-1190 , eds. H. Appelt, Hannover 1975-1990 + + MGH DD HIII: Die Urkunden Heinrichs III (Heinrici + III. Diplomata), eds. Harry Bresslau e Paul Fridolin Kehr, in + Monumenta Germaniae Historica. Diplomata, V, Berlin 1931. + + Constitutiones et acta publica imperatorum et regum + inde ab a. MCCXCVIII usque ad a. MCCCXIII (1298-1313), ed. J. Schwalm, 2 + vols, Hannoverae, Lipsiae, 1906-1908. + + Ex gestis Henrici II. et Ricardi I., ed. F. + Liebermann, in Monumenta Germaniae Historica. Scriptores, XXVII, + Hannoverae 1885, pp. 81–132. + + MONTORZI 1991: M. Montorzi, Diritto feudale nel + basso medioevo, Torino. + + MURATORI 1738: L. A. Muratori, Antiquitates + Italicae medi aevii, Mediolani, 1738-1742. + + MURATORI 1773: L. A. Muratori, Delle antichità + estensi, Modena 1773-1780. + + MUSSI 1946: L. Mussi, L’abbazia benedettina di S. + Caprasio di Aulla , Aulla. + + NERI 1882: A. Neri, La cucina del vescovo di + Luni, in «Giornale ligustico di archeologia, storia e letteratura», IX, + pp. 161–169. + + NOBILI 1985: M. Nobili, L'abbazia di Polirone e le + famiglie signorili lunigianesi, in L'Italia nel quadro della + espansione europea del monachesimo cluniacense. Atti del convegno + internazionale di storia medievale (Pescia, 26-28 novembre 1981), Cesena, pp. + 173-186; ora anche in NOBILI 2006, + pp. 385-407. + + NOBILI 1987: M. Nobili, Signorie e comunità nella + Lunigiana orientale fra XII e XIII secolo, in Alle origini della + Lunigiana moderna. Settimo centenario della redazione del Codice Pelavicino + (1287-1987). Atti del convegno, La Spezia 1990, pp. 63-90 - numero + monografico di «Memorie dell'Accademia di Scienze e Lettere 'G. Capellini'», + LVII-LVIII (1987-88); ora anche in NOBILI 2006, + pp. ***. + + NOBILI 1992:M. Nobili, I signori di Buggiano in + Lunigiana, in Signori e feudatari nella Valdinievole dal X al XII + secolo. Atti del convegno, Buggiano, pp. 133–155, ora anche in NOBILI 2006, pp. ***. + + NOBILI 1997:M. Nobili, Le signorie territoriali + degli Obertenghi in Lunigiana, in La signoria rurale nel medioevo + italiano, I, a cura di A. Spicciani e C. Violante, Pisa, pp. 19-37; ora + anche in NOBILI 2006, pp. ***. + + NOBILI 2001: M. Nobili, Il termine capitanei in due + documenti lunigianesi degli inizi dei secoli XII e XIII, in La + vassallità maggiore nel Regno Italico: l'ordo feudale dei capitanei (secoli + XI-XII). Atti del convegno, a cura di A. Castagnetti, Verona, pp. + 285-299; ora anche in NOBILI 2006, pp. + ***. + + NOBILI 2005: M. Nobili, Le 'malae consuetudines' in + Lunigiana: il documento del vescovo Eriberto per gli 'homines' di Trebbiano del + 4 novembre 1039, in «Memorie dell’Accademia Lunigianese di Scienze e + Lettere 'G. Capellini'», LXXV, 129-138. + + NOBILI 2006: M. Nobili, Gli Obertenghi e altri + saggi, Spoleto. + + NOBILI 2009: M. Nobili, La liberazione di un gruppo + di rustici della Chiesa di Luni a Carrara alla metà del Duecento, in + «Atti e memorie della Deputazione di Storia Patria per le Antiche Provincie + Modenesi», ser. 11, 31, pp. 31-42. + + NOCCHI FORZANI 1970: B. Nocchi Forzani, Il + borgo scomparso di Volpiglione, in «Giornale Storico della Lunigiana e + del territorio lucense», XXI, pp. 166–170. + + PAVONI1987: R. Pavoni, La signoria del vescovo di + Luni, in «Memorie dell’Accademia Lunigianese di Scienze e Lettere ‘G. + Capellini’», LVII–LVIII (1987-1988), pp. 29–59. + + PAVONI 1999: R. Pavoni, Ameglia: i vescovi di Luni, + i vicedomini, i Doria e il Comune di Genova, in Ameglia e il suo + territorio nel Medioevo. Atti della giornata di studio, numero + monografico del «Giornale storico della Lunigiana e del territorio lucense», n.s., + XLIII-XLV (1992-1994), La Spezia, pp. 9-170. + + PENNOTTO 1623: G. Pennotto, Historia tripartita + sacri ordini Clericorum Canonicorum, Romae. + + PIEROTTI 1972: P. Pierotti, Urbanistica: storia e + prassi, Firenze + + PISTARINO 1942: G. Pistarino, Un crittogramma nel + Codice Pelavicino dell’Archivio Capitolare di Sarzana, in «Giornale + Storico e Letterario della Liguria», XVIII-3/4, pp. 186-187. + + PISTARINO 1944: G. Pistarino, Le carte del + monastero di San Venerio del Tino relative alla Corsica (1080-1500), + Deputazione Subalpina di Storia Patria, CLXX, Torino. + + PISTARINO 1950: G. Pistarino, Le carte del + monastero di San Venanzio di Ceparana (1185-1441), in «Giornale Storico + della Lunigiana»”, n. s., I.3/4, luglio-dicembre 1950, pp. 34-37; II.1/2, + gennaio-giugno 1951, pp. 12-13; II.3/4, luglio-dicembre 1951, pp. 31-32; III.1/2, + gennaio-giugno 1952, pp. 10-11; III.3/4, luglio-dicembre 1952, pp. 24-28; IV.1/2, + gennaio-giugno 1953, pp. 9-11; IV.3/4, luglio-dicembre 1953, pp. 29-31 (ediz. + separata, La Spezia, 1951). + + PISTARINO 1953: G. Pistarino, Il crittogramma del + Codice Pelavicino, in «Giornale Storico della Lunigiana» n. s., IV.3/4, + p. 29. + + PISTARINO 1955; G. Pistarino, L’ultimo documento + di San Caprasio di Aulla, in «Giornale Storico della Lunigiana», n. s., + VI.2, pp. 48-50. + + PISTARINO 1956: G. Pistarino, Il problema del + “Liber instrumentorum” di Saladino “de castro Sarzane”, in «Giornale + Storico della Lunigiana», n. s., VII.1/1, pp. 42-43. + + PISTARINO 1957: G. Pistarino, Gli scrittori del + Codice Lunense (Pelavicino), in «Bollettino Ligustico», IX, pp. + 3-20. + + PISTARINO_1958a: G. Pistarino, Una fonte + medievale falsa e il suo presunto autore: Saladino “de castro Sarzane” e + Alfonso Ceccarelli, Università di Genova, Istituto di Storia Medievale e + Moderna, Fonti e Studi, II, Genova. + + PISTARINO 1958b: G. Pistarino, Le carte + portoveneresi di Tealdo “de Sigestro” (1258-59), Notai Liguri dei secoli + XII e XIII, VII, Genova. + + PISTARINO 1961a: G. Pistarino, Le pievi della + diocesi di Luni, parte I, C.S.L.O., II, Bordighera - La Spezia. + + PISTARINO 1961b: G. Pistarino, Tre lettere sulle + origini di Sarzana, in “Bollettino Ligustico per la Storia e la Cultura + Regionale”, XIII.3/4, pp. 169-174. + + PISTARINO 1963: G. Pistarino, Il Codice + Pelavicino, il “Registrum Vetus” e gli antichi statuti di Sarzana e di + Sarzanello, in «Giornale Storico della Lunigiana e del Territorio + Lucense», n. s., XIV.1/4,1963, pp. 81-91. + + PISTARINO 1965: G. Pistarino, Il “Registrum + Vetus” del Comune di Sarzana, Università di Genova, Istituto di + Paleografia e Storia Medievale, Istituto di Storia Moderna e Contemporanea, Fonti + e Studi, VIII, Sarzana. + + PISTARINO1983: G. Pistarino, Insediamenti + medievali in Lunigiana : il monastero di Aulla, in Studi dedicati + a Carmelo Trasselli, Messina, pp. 517–532. + + PISTARINO 1986: G. Pistarino, Medioevo ad + Aulla , in Società civile e società religiosa in Lunigiana e nel + vicino Appennino dal IX al XV secolo. Atti del convegno, Sarzana, pp. + 93–132. + + PISTARINO 1990: G. Pistarino, Per una nuova + edizione del Codice Pelavicino, in Alle origini della Lunigiana + moderna. Settimo centenario della redazione del Codice Pelavicino + (1287-1987). Atti del convegno, La Spezia, pp. 9-18. + + PODESTÀ 1895: L. Podestà, I vescovi di Luni + dall'anno 895 al 1289. Studi sul Codice Pelavicino nell'Archivio Capitolare di + Sarzana, in «Atti e Memorie della Reale Deputazione di Storia Patria per + le Province Modenesi», s. 6,, pp. *** + + POGGI 1957: A.G. Poggi, Le terre di San Leonardo “de + Frigido” , in "Giornale Storico della Lunigiana", n.s. VIII (1957). + + POLONIO 1979:V. Polonio, + Bolano.SanVenanziodiCeparana, in Liguria monastica. Italia + benedettina II, Cesena, p. 54. + + REPETTI 1846: E. Repetti, Dizionario geografico, + fisico, storico della Toscana contenente la descrizione di tutti i luoghi del + Granducato di Lucca, Garfagnana e Lunigiana, Firenze 1833-1846. + + Regesta Imperii, V. Die Regesten des Kaiserreiches, + ed. Johann Friedrich Böhmer, J. Ficker e E. Winkelmann, Innsbruck, + 1881-1882. + + RICCIG 1986: G. Ricci, I possessi dell’abbazia di S. + Caprasio dell’Aulla , in Società civile e società religiosa in + Lunigiana e nel vicino Appennino dal IX al XV secolo. Atti del convegno, + Sarzana, pp. 183-190. + + G. Ricci, Aulla e il suo territorio attraverso + secoli. I: dalla preistoria al Quattrocento, Aulla 1989). + + RICCIG 1989: G. Ricci, Nuove fonti per la storia + ecclesiastica della Lunigiana. Un registro della Pieve di Soliera, in + "Giornale Storico della Lunigiana e del territorio lucense", n.s. XL, pp. 51–58. + + RICCI 2012: R. Ricci, Medioevo senza città: la + società medievale carrarese (secoli XII-XIII), Carrara. + + SALVATORI 2007: E. Salvatori, Poteri locali e + popolamento in Lunigiana tra XII e XIII secolo, in Da Luni a + Sarzana 1204 - 2004. Ottavo Centenario della Traslazione della Sede + Vescovile (Sarzana 30 Settembre - 2 Ottobre 2004), Roma, pp. + 255–272. + + SCHIEFFER 2001: R. Schieffer, Graf Heinrich II. + von Diez, in Italia et Germania: Liber Amicorum Arnold + Esch, a cura di H. Keller, W. Paravicini e W. Schieder, Walter de Gruyter, + pp. 425–438. + + SCHWARTZ 1913: G. Schwartz, Die Besetzung der + Bistümer Reichsitaliens unter den sächsischen und salischen Kaisern mit den + Listen der Bischöfe, 951-1122, Leipzig-Berlin. + + SFORZA 1867: G. Sforza, Memorie storiche di + Montignoso, Lucca 1867, ristampa anastatica, Modena. + + SFORZA 1878: G. Sforza, La stazione romana “ad + taberna frigida” e lo spedale di S. Leonardo al Frigido, testo del 1878 + presso la Biblioteca Civica della Spezia + + SFORZA 1890-1891: G. Sforza, Castruccio + Castracani degli Antelminelli , in «Atti e memorie delle RR. Deputazioni + di Storia Patria per le Provincie Modenesi e Parmensi», serie III, vol. VI, parte + II, pp. 300-572. + + SFORZA 1894: G. Sforza, Enrico, vescovo di Luni, e + il Codice Pelavicino dell'Archivio Capitolare di Sarzana, in «Archivio + Storico Italiano», s. 5ª, XIII, pp. 81-88. + + SFORZA 1902: G. Sforza, La vendita di Portovenere a + Genova e i primi signori di Vezzano, in «Giornale Storico e Letterario + della Liguria», n.s., III (1902), pp. 338–368. + + STIAFFINI 1983: D. Stiaffini, La chiesa e il + monastero di S. Paolo a Ripa d’Arno di Pisa, in «Rivista dell’Istituto + Nazionale d’archeologia e storia dell’arte», ser.3,6-7 (1983), pp. 237–284. + + STUMPF BRENTANO 1865: K.F. Stumpf-Brentano (a + cura di), Acta imperii inde ab Heinrico 1. ad Heinricum 6. usque adhuc + inedita: Urkunden des Kaiserreichs aus dem 10., 11. und 12. Jahrhundert, + erstmals herausgegeben, Innsbruck, 1865-1881. + + UGHELLI 1644: F. Ughelli, Italia sacra sive de + episcopis Italiae et insularum adiacentium rebusque ab iis preclare + gestis, I, Roma. + + UGHELLI 1717: F. Ughelli, Italia sacra sive de + episcopis Italiae et insularum adiacentium rebusque ab iis preclare + gestis, a cura di N. Coleti, Venezia 1717-1722. + + VECCHI 1986: E. M. Vecchi, La chiesa di San Venerio + in Antoniano, in S. Venerio del Tino: vita religiosa e civile tra + isole e terraferma in età medievale. Atti del Convegno, La + Spezia-Sarzana, pp. 249–308. + + VECCHI 2003: E. Vecchi, Contributo all’archeologia + cristiana nella diocesi di Luni. Frammenti marmorei di reimpiego a San Venanzio + di Ceparana, in «Giornale Storico della Lunigiana», n.s. LIV, pp. + 117-160. + + VECCHI 2011: E. M. Vecchi, «Ad pacem et veram et + perpetuam concordiam devenerunt». Il cartulario del notaio Giovanni di Parente + di Stupio e l’instrumentum pacis del 1306, in Il + nostro Dante, il Dante di tutti. 1306-2006. Atti del convegno, num. + monografico del «Giornale Storico della Lunigiana», LIX (2008), Pisa, pp. + 69–194. + + ZOPPI 2008: A. Zoppi, Due documenti inediti per + servire alla storia di Nicola di Val di Magra, in «Studi Lunigianesi», + XXXVII-XXXIX (2008-2009), pp. 89–96. + + +
+
+ +
+ +
diff --git a/src/assets/data/pseudoEdition.xml b/src/assets/data/pseudoEdition.xml new file mode 100644 index 000000000..cd2cfb9c8 --- /dev/null +++ b/src/assets/data/pseudoEdition.xml @@ -0,0 +1,253 @@ + + + + + + + Confessiones [pseudo-edition for testing purpose] + Augustine + + Text Encoding by + Marjorie Burghart + + + + Marjorie Burghart + +

This document is being made available for demonstration and testing purposes + only.

+
+
+ +

The base text is the beginning of Augustines Confessiones, as + found here: http://faculty.georgetown.edu/jod/latinconf/1.html. But please make + notice that the critical apparatus is purely invented for testing purpose and + reflects in no way the tradition of this text. This document is being made + available for demonstration and testing purposes only.

+

+ + + + +

The apparatus of this document is meant to illustrate various cases, including + some mistakes. Details about each apparatus entry are listed in a note following + each entry.

+ + + +
+ + +
+ + Manuscript A + + Example of group + Manuscript B + Manuscript C + + Manuscript D + Manuscript E + Manuscript G + +
+
+ +
+ + + + + + + Liber I + +
+ CAPUT 1 +

Magnus es, domine, et laudabilis valde: + + + magna + + magma + maga + + + laudabilis + laudablis + + In this apparatus entry... + + + virtus tua, et sapientiae tuae non est numerus et laudare te vult homo, aliqua portio + + creature tue + creatr ae tuae + creaturas tuas + creaturarum tuarum + This is a note + , et homo circumferens + + mortalitem + fragilitatem + In this apparatus entry, the editor has not decided yet which lectio + should be considered the lemma. The app contains only rdg elements. They + are therefore displayed in a different way from the other apparatus + entries. suam, circumferens testimonium peccati sui et + testimonium, quia superbis resistis: et tamen laudare te vult homo, + + aliqua + aliquando + aliquo + This is a note inside the apparatus. + + portio creaturae tuae. Tu excitas, ut laudare te delectet, quia fecisti nos + ad te et inquietum est cor nostrum, donec requiescat in te. Da + + mihi + nobis + + A most banal apparatus entry. domine, scire et + intellegere, utrum sit prius invocare te an laudare te, et scire te prius + sit an invocare te. sed quis te invocat nesciens te? Aliud enim + + pro alio + + A most banal apparatus entry. potest invocare nesciens. An + potius + + invocaris + invocatis + A most banal apparatus entry. ut sciaris? + + + In + + Quomodo + Qui + Qua + Quando + This apparatus entry is nested within the lemma of another apparatus entry. + + autem invocabunt, + in quem non crediderunt? Aut quomodo credent sine praedicante? + + + + This apparatus entry contains another apparatus entry. + + Et laudabunt dominum qui requirunt eum. Quaerentes enim inveniunt eum et invenientes + + laudabunt + laudabant + In this apparatus entry, all the @wit have been forgotten, so there is + no indication where to find each reading. eum. Quaeram te, + domine, invocans te, et invocem te credens in te: praedicatus enim es nobis. + Invocat te, domine, fides mea, quam dedisti mihi, quam inspirasti mihi per + + humanitatem + humilitatem + In this apparatus entry, I have introduced two mistakes: witness B is + not mentioned, while witness E is mentionned two times, in the @wit of + the lemma and of a reading. filii tui, per + ministerium + mysterium + A most banal apparatus entry. + + praedicatoris tui + praedicatorum tuorum + praedicatorum tuorum + .In this apparatus entry, the editor has not decided yet which + lectio should be considered the lemma. The app contains only rdg + elements. They are therefore displayed in a different way from the other + apparatus entries. I have also introduced two mistakes: there is no + mention of witness B, while witness C is mentioned twice. +

+
+ +
+ CAPUT 2 +

+ + + + Et quomodo invocabo deum meum, deum et dominum meum, quoniam utique inme + ipsum eum invocabo, cum invocabo eum? Et quis locus est in me, quoveniat in + me deus meus? quo deus veniat in me, deus, qui fecit caelum et terram? + itane, domine deus meus, est quiquam in me, quod capiat te? An vero caelum + et terra, quae fecisti et in quibus me fecisti, capiuntte? An quia sine te + non esset + + + + quidquid est, fit, ut quidquid est capiat te? + quoniam itaque et ego sum, quid peto, ut venias in me, quinon essem, nisi + esses in me? + + + + + Non enim ego iam in + + inferis + infernis + infernis + ,A most banal apparatus entry et tamen etiam ibi es. Nam + etsi descendero in infernum, ades. non ergo essem, deus meus, non omnino + essem, nisi esses in me. An potius non essem, nisi essem in te, ex quo + omnia, per quem omnia, in quo omnia? + + + + A lacuna in witness C starts here. + + Etiam sic, domine, etiam sic. quo te + + + + + invoco, cum in te sim? aut unde venias in me? + Quo + Quomodo + A most banal apparatus entry. Note that since this entry occurs within a lacuna in witness C, this witness is not mentioned in this entry, and this is not an error. enim recedam extra caelum et + terram, ut inde in me veniat deus meus, qui dixit: caelum et terram ego + impleo?

+
+ +
+ CAPUT 3 +

Capiunt ergone te caelum

+

et terra, quoniam tu imples ea? An imples et restat, + quoniam non te capiunt? et quo refundis quidquid impleto caeloet terra restat ex te? An non opus habes, ut quoquam + continearis, qui contines omnia, quoniam quae imples continendo + + imples + implebis + ?In this apparatus entry, the lemma bears no @wit. This is a + perfectly acceptable form of encoding, implying that all witnesses not + listed in the rdg bear by default the reading of the lemma. But since in + this document the apparatus is elsewhere recorded in a "positive" + fashion, listing each reading of each manuscript explicitly, it might be + useful to point out that this entry does not follow the same practice, + which could be a mistake in the context. Non enim vasa, quae te + plena sunt, stabilem te faciunt, quia etsi frangantur non effunderis. Et cum + effunderis super nos, non tu iaces, sed erigis nos, nec tu dissiparis, sed colligis nos. sed quae imples omnia, te toto imples + omnia. An quia non possunt te totum capere omnia, partem tui capiunt et + eandem partem simul omnia capiunt? An singulas singula et maiores maiora, minores + + minora + maio maiora + maiora + A most banal apparatus entry capiunt? Ergo est aliqua pars tua + maior, aliqua minor? An ubique totus es et res nulla te totum capit? + + + A lacuna in witness C ends here. +

+
+ +
+ + +
+
diff --git a/src/assets/data/saba.xml b/src/assets/data/saba.xml new file mode 100644 index 000000000..483ee2115 --- /dev/null +++ b/src/assets/data/saba.xml @@ -0,0 +1,1348 @@ + + + + + + + + + + Il Canzoniere + Edizione digitale + Umberto Saba + + Edizione critica e codifica di: + Giulia Tancredi + Ersilia Russo + + + Revisione della codifica di: + Roberto Rosselli Del Turco + + + + + + Varianti alternative. + + + + + Biblioteca Civica Attilio Hortis + + + + Manoscritto del Canzoniere 1919. + + Trieste + Biblioteca Civica Attilio Hortis + RP MS 1-18 + + + + Edizione princeps del Canzoniere 1921. + + + + + + + Stesura base del testo, in inchiostro blu piombo; presenza di varianti + immediate + Primo strato di varianti apportato con penna ad inchiostro blu chiaro + Secondo strato di varianti e correzioni apportate in matita grigia + Terzo strato di varianti e correzioni annotate a matita copiativa + Quarto strato di varianti e correzioni annotate in penna blu oltremare + Quinto strato scrittorio con correzioni e varianti in matita viola + + + Strato scrittorio con indicazioni tipografiche in penna rossa + + + + + Testo base in penna nera. + Penna ocra? O penna del testo base scarica? + Penna grigio-azzurra. + + + + + + + + + + + + + + + + R. P. MS + 1-18 + + + + + + 1 + + + + + Umberto Saba + + + + + + + + Il Canzoniere + + 1900*1920 + + + + + + + +
+ + 2 +
+ +
+
+ + 4 + Ai miei sei lettori + +

+ Vi devo qualche parola di gratitudine, miei cari lettori. - Ad uno ad uno io vi ho + scelti; + quindi, comesi sceglie la moglie, come si scelgono gli + amici + + + + e come si sceglie la moglie, + + + + + e + come si sceglie la moglie, + + + io ho scelto da me i miei lettori; non troppi a dire il vero, ma nemmeno troppo + pochi; siete oggi esattamente sei. Quelli siete cioè che di quando in quando, per un'usanza che + mi è cara da vent'anni, ricevete qualche mia poesia manoscritta. E se non tutti siete + ugualmente atti ad intendere ed apprezzare per istinto la difficile arte del verso, siete + + + + però tutti fra + però fra + + + però + tutti fra + + + le anime migliori che io abbia conosciute, alle quali più di una volta ho avvicinata la + mia, come chi ha freddo + avvicina al fuoco le dita intirizzite. Spesso - troppo spesso forse - ho sentit + a + o + la vita come una landa tutta ghiacciata; oh allora, poter chiacchierare con uno + di voi, seduti tra il volgo dei consumatori ad uno dei miei + a- + adorati caffeucci, o pensarvi, o mandarvi dei versi, è stata per me la salvezza.

+ +

+ E vi devo anche qualche parola di chia- rimento. Non tutte le poesie di questa + raccolta vi riusciranno ugualmente nuove; alcune (la terza parte circa) sono già + state stampate nei precedenti volumi "Poesie" e "Coi miei occhi". Ma, per + quanto riguarda il primo (Poesie) esse vi apparvero non sol + o + a + + in una disposizione + cronologicamente falsa, così da togliere ogni linea al lavoro, ma + molte (tutte per esempio le quelle dell'adolescenza, e le giovanili e le fiorentine; così necessarie + + + a comprendere + ad + far intendere + la genesi e i graduali sviluppi, gli svincolamenti ed i ritorni alle + origini della mia arte) vi furono ommesse; altre poi (che è peggio ancora) siffattamente + alterate

+
+
+

+ + 6 + + + dalla loro forma primitiva, da essere diventate + + tutta un'altra cosa, e non una cosa migliore. Come abbia potuto commettere questo + imperdonabile delitto contro + + quella cosa delicata, delicata e vitale che è lo + stile + me stesso, anzi contro la parte + migliore di me stesso + non lo so precisa- mente: + fu per un eclissi totale della mia coscienza? O ero forse troppo giovane ancora per compiacermi, come me ne com- piaccio + + + adesso + ora + , dell'inoppugnabile derivazione Petrarchesca e Leopardiana + di quei + dei miei + primi sonetti e canzoni (non ho capito Dante che verso i venti + tre + quattro + ventiquattrocinque anni); + quasi che l'aver ritrovato da + solo + me + , nella mia stanzetta a Trieste e nell'ambiente di "Fra chi sa + d'amarmi", dove nessu- no aveva parlato a me di buoni e di cattivi autori, il filo d'oro della tradizione italiana, non + sia + fosse + il mio mag- gior + titolo di nobiltà, la migliore testimonianza che + + uno possa avere + io mi abbia + di non essere un + comue + comune + illuso verseggiatore! Voglio insomma si sappia che, dove ci sono modificazioni profon- + de, e tali che potrebbero, senza questa confessione, riuscire stupefacenti, non è + ora che le ho aportate; ho dovuto anzi compiere un lavoro non breve e non facile per ritrovare + nella mia mente i versi originali. Due anni + + + + + speso + messo + + + + + perso + speso + + + a compiere questo lavoro, benché difficilmente io dimentichi i versi che una volta ho scritti. Ma .... "sono passate tante cose da quel + tempo in qua" + + +

+ + Trieste; 1919 + + + Il vostro riconoscente + Saba + + +
+ +
+ +
+ + 7 + Poesie dell'adolescenza + + + e giovanili + + + + (1900 * 190 + + 7 + 3 + + 7 + ) + + + + + Fra chi pensa d'amarmi, e in cor m'è ostile, + io consumo la dolce età minore, + e celo, vergognando, ogni non vile + pensiero che m'accenda gli occhi e il cuore. + + + +
+ +
+ +
+ + 8 +
+ +
+ + Poesie dell'adolescenza + 9 + + + + + + + + Vedi fogli + + + Vedi + fogli + +
+ Ammonizione + + + Che fai tu del sereno + nell'azzurra distesa, + o nuvoletta, accesa + dall'aurora del dì? + + + Cangi tue forme, e perdi + quel fuoco, veleggiando; + ti spezzi, e dileguando + + m' + m' + ammonisci così : + + + «Tu pure + + + - dici - o + , o altero + + + - dici - o + giovane, + cui suonan liete l'ore; + + + + che + + e + il dolce, il primo ardore + fa + nno a + ad + un sogno fedel; + + + scolorerai, chiudendo + le stanche luci, un giorno; + mai più vedrai d'intorno + gli amici e il patrio ciel + + » + . + +
+
+
+ + 10 + Poesie dell'adolescenza + + +
+ La casa della mia nutrice + + + La casa della mia nutrice posa, + memore, in faccia alla Cappella antica; + ed al basso riguarda, e par pensosa + da una collina alle caprette amica. + + + Da lei si va, per torta via sassosa, + fin presso al chiostro che in vetta s'abbica; + hai, dalle sue finestre, hai la spaziosa + vista del mar, della campagna aprica. + + + È il vespro amato: su per l'erta ancora + salgo alla casa, che uno strano affetto + nella mestizia m'infonde dell'ora. + + + Viver mi sembra + + + in quell' + nell' + + + in quell' + età serena; + quando, sazio di giochi, uscir dal tetto + guardavo il fumo azzurro della cena. + + + + + ← Vedi foglietto unito +
+ + + + + + + + + Dopo la "Casa della mia nutrice" + + + + + + + + +
+ Da un colle + + + Era d'Ottobre; l'ora mattutina + di pace empiva e di dolcezza il cuore; + più lieve a me, il sentier della collina + saliva, appresso ai buoi, l'agricoltore. + + + Giunto alla vetta, scorsi nell'albore + Trieste, con le chiese e la marina; + e tra un boschetto (ove i miei occhi Amore + + di là + tosto + rivolse) una rossa casina. + + + Delle squille + saliva + giungeva + a me il richiamo; + e quando all'orizzonte il sol levato, + fece della casina i vetri ardenti; + + + d'un pino al tronco io m'appressai beato; + come a festa ne svelsi un verde ramo, + e sospirando dissi un nome ai venti. + +
+ + + +
+ + + In riva al mare + Canzonetta + + La lirica si trova su un ritaglio incollato a p. 10 del ms. lungo il + margine sx attraverso un pezzo di nastro adesivo. Nell'edizione del Canzoniere 1921, al contrario, la + poesia apre la sezione con il titolo Canzonetta e precede La casa della mia + nutrice. + + + + + Ero solo in riva al mare, + solo in riva + l + l + al mar natio; + là pensando a te, amor mio, + + + prese + il cuore a palpitar. + + + Era il vespro, era nel mare + + + + + presso a scender + sceso a mezzo + + + presso a scender + l'astro d'oro; + d'onda in onda un rivol d'oro + si vedeva folgorar. + + + + E + D + i tra i monti + in ciel lo spicchio + della bianca luna nacque; + si vedeva in un sull'acque + il suo argento tremolar. + +
+ +
+
+ + Poesie dell'adolescenza + 11 + + +
+ Sonetto di primavera + + + Città paesi e culmini lontani + sorridon lieti al sol di primavera; + torna serena la natia riviera, + e son pieni di luce il mare e i piani. + + + Ed io perché di desideri vani + t'esalto, o mia inesperta anima altera; + e solo mi riduco in sulla sera + alla mia stanza, e incerto del domani? + + + Là seggo sovra il bianco letticciolo; + e ripenso a un'età già tramontata, + a un amor che mi strugge, all'avvenire. + + + E se nell'ombra odo la voce amata + di mia madre appressarsi e poi morire, + spesso col pianto vo addolcendo il duolo. + +
+
+ Glauco + + + Glauco, un fanciullo dalla chioma bionda, + dal bel vestito di marinaretto, + e dall'occhio sereno, con gioconda + voce mi disse (nel natio dialetto): + + + «Umberto, ma perché senza un diletto + tu consumi la vita, e par nasconda + o un dolore o un mistero ogni tuo detto? + Perché meco non vieni sulla sponda + + + del mare, che in sue azzurre onde c'invita? + Qual + ' + + è il pensiero che non dici, ascoso, + e che da noi, come un ladro, t'invola? + + + Tu non sai come sia dolce la vita + agli amici che fuggi, e come vola + a me il mio tempo, allegro e immaginoso!» + +
+
+ +
+ + 12 + Poesie dell'adolescenza + + Tra la folla + + + Tra la folla, ove il mal d'altri è l'obbietto + di tanto scherno, di tanta allegria; + orribilmente trascinato via + guardo (ed onta ne provo) un fanciulletto. + + + Lacer + a + o + , senza pan forse né tetto, + egli crebbe, d'uguali in compagnia; + non mai la faccia d'una madre pia + potè celar nell'anelante petto. + + + Solo errava pel porto e senza meta: + poche frutta dal sacco ivi ha levato, + o in tasca all'ebbro piccola moneta. + + + Dal mio remoto il suo destin m'opprime, + e darei, per vederlo liberato, + pur care a me, le mie povere rime. + +
+
+ + Ad un amico pianista, studente al Conservatorio di Liegi + + + Aldo, ricordi il + buon + + bel + tempo gentile, + l'amicizia fraterna, + che ci univa, pel gioco, nel cortile + della casa paterna. + + + Eran chiassi, eran salti; un tal nasceva + suon d' allegria crescente, + che alle finestre intorno si vedeva + affacciarsi la gente; + + + fin quando (muto rimprovero) un lume + nell'interno brillava; + e della sera con le fredde brume + l'ombra nera calava. + +
+
+ + Poesie dell'adolescenza + 13 + + + + Ma spesso tu sedevi + + + pensieroso + grave in volto, + + + + pensieroso + + + al + + tuolo + + tuo + studio sonoro; + ed io in un canto udivo + + il grazïoso + , in me raccolto, + + il + grazïoso + dilettoso + + il dilettoso + + + + + + il tuo dolce lavorodi tue dita lavoro. + + + + di tue dita + il tuo dolce + lavoro. + di tue dita lavoro. + + + + + Le tue ditae + + + variavanrendevan + + + + + rendevan + variavan + + + + rendevan + la canzone + dell'amor, della vita; + e s'accendeva i + + n + me la visïone + d'una pace infinita. + + + O uno strano presagio il cor m'empiva, + un'ebbrezza profonda: + ed ecco sorridendo a noi veniva + una signora bionda; + + + una bella signora, di cui gli anni + già volgevano a sera; + ch'era buona e severa, + che ti celava del suo cor gli affanni, + + + ch'era tua madre!... Aldo, + + + l'hai tu presente + è al tuo cor vicina + + + l'hai tu presente + + quella + + + dolce + bionda + + + dolce + signora + + + : + ? + + + : + + + + + + e nel sonno, o con gli occhi della mente + d’April, nei sogni di prima mattina + + + e nel sonno, o con gli occhi della mente + + + + + + + la rivedi talora? + t’ammonisce ellaella + Qui Saba riscrive e cerchia "ella" per maggiore chiarezza. + ancora? + + + la rivedi talora? + + + + Come tutto mutò! Come la vita + diversa oggi m'appare! + Quante immagini care + m'hanno, fuggendo, l'anima impaurita; + + + quanta dolcezza, quanta ingenua fede + l'ha in brev'ora lasciata; + come + + + + spezzarsi, dileguar + talvolta con stupor + + Qui Saba recupera la prima versione della penna di + stesura. + + + + + talvolta con stupor + spezzarsi, dileguar + + + talvolta con stupor + si vede + nube in cielo rosata + + + , + . + + + , + + + + + + Poesie dell'adolescenza + 14 + + + va bene + + + + veleggiare tranquilla, a un tratto forme + cangiar, perder sua tinta, + in due spezzarsi, dileguar sull'orme + d'altra, lì appena estinta. + + + lasciare questa strofa + + + + + + Pace ha tua madre giù nel cimitero; + quasi a trarne conforto, + a lei va reverente il mio pensiero, + poi tosto a te lo porto, + + + che sei lontano; estranee vie d'intorno + empiendo vai di suoni; + né , + + + + da che nasce a quando muore + fin che al tutto non sia spento + + da che nasce a quando muore + il giorno + l'istrumento abbandoni. + + + Ancor quest'anno... e poi la tua stanzetta + lascerai per il mondo; + è il tuo sogno giocondo + tornar cinto d'alloro a chi t'aspetta. + + + O + + h + + + r + + potessi sedermi a te d'accanto, + udire i tuoi tranquilli + arpeggi, le tue fughe, quel tuo canto, + quei tuoi limpidi trilli + + + di rosignolo!... Io scorderei di certo + di mia vita l'errore; + e tornerei fanciullo, ed inesperto + dell'umano dolore; + + + per te il buon tempo rivivrei gentile, + l'amicizia fraterna + che ci univa - ricordi? - nel cortile + della casa paterna. + +
+ + + Poesie dell'adolescenza + 15 + + +
+ Fra chi pensa d'amarmi + Si può + omettere? + + + + Fra chi pensa d'amarmi, e in cor m'è ostile + io consumo la bella età minore; + e celo, vergognando, ogni non vile + pensiero che m'accend + e + a + gli occhi e il cuore. + + + Rider sento di me: in un vano ardore + spendo, di sogni, il tempo giovanile; + ed io lo veggo, e soffro, e dal dolore + mio novello ricreo l'antico stile. + + + E ben lo so che il secolo, volgendo + a più fulgida meta l'occhio ardito, + passa e non guarda il mio gentil lavoro. + + + + + + + + Spesso dal mondo io fuggirei, piangendo + ciò che non torna, ad un lontano lito, + senza baci a morirvi e senza alloro. + + + + + Per cui soletto io me ne vo, piangendo + ciò che non torna, ov'è più solo il lito, + senza un bacio d'amante e senz'alloro. + + + + + + + + Spesso dal mondo io fuggirei, piangendo + ciò che non torna, ad un lontano lito, + senza baci a morirvi e senza alloro. + + + + + + +
+
+ Nella sera della + d + D + omenica di Pasqua + + + Solo e pensoso dalla spiaggia i lenti + passi rivolgo alla casa lontana. + È la sera di Pasqua; una campana + piange, dal borgo, sui passati eventi. + + + L'aure son miti, son tranquilli i venti + crepuscolari: una dolcezza arcana + piove dal ciel sulla progenie umana, + le passïoni sue fa meno ardenti. + + + Oblïando, io penso alle leggende + di Fausto, che a quest'ora era inseguito + dall'avversario... un docile barbone. + + + E mi par di vederlo, sbigottito + fra i campi, dove ombrosa umida scende + la notte, e lungi muore una canzone. + +
+ + + 16 + Poesie dell'adolescenza + + +
+ Sul canto d'un violino + + + + + + + + Quando + Or più + + + + + + + + Or più + Quando + + + + Or più + non piangi sul dolore umano, + scherzi al lume di luna in fra le frondi, + + + + + dolce + chiaro + + + dolce + istrumento, che di suoni innondi, + da una villa solinga, i colli e il piano. + + + Chi in te parli non so, so che all'arcano + della vita col tuo canto rispondi; + ed il pensiero agli stellati mondi + m'innalzi, e all'armonia del ciel lontano. + + + Oh quante notti, il mio dolore e quello + + + + + cui nascemmo + dei miei cari + + + cui nascemmo + scordando, in dolce attesa, + di tua villa sostai presso al cancello. + + + + + + Che + + E + tu solo con me dell'amor mio + parlavi, d'un pallente volto e bello, + del lunare a fior d'acque tremolio. + +
+
+ Nella notte di Natale + + + Io scrivo nella mia dolce stanzetta, + d'una candela al tenue chiarore; + ed una forza indomita d'amore + muove la stanca mano che s'affretta. + + + Come timido e dolce il suon dell'ore! + Forse il Bene invocato oggi m'aspetta. + Una serenità quasi perfetta + calma i battiti ardenti del mio cuore. + + + Notte fredda e stellata di Natale, + sai tu dirmi la fonte onde zampilla, + improvvisa, la mia speranza buona? + + + È forse il + sogno + mito + di Gesù che brilla + nell'animo paziente eddolente, ma immortale, + del giovane che ama, che perdona? + +
+ + + Poesie dell'adolescenza + 17 + + +
+ Così passo i miei giorni + + Così passo i miei giorni, i mesi, e gli anni; + altro non chiedo in gioventù piacere, + che tessere, nell'ombra, vuoti inganni, + care immagini si, ma menzognere. + + + Sol talvolta discendo fra le altere + genti del mondo; ivi quei loro affanni + provo, non cure tacite severe, + ma dile lotte crudeli, + e l'onte e i danni. + + + Onde poi ritornando all'ozïosa + pace dei sogni miei lunghi e fatali, + trovo ancora più dolci i colli + + aprichi + , + il mar, gli interminabili vïali, + ove al rezzo dei grandi alberi antichi, + il mio cuore si addome e si riposa. + +
+ +
+ Autunno + + Quanta malinconia di foglie morte + nei deserti vïali, + dove anch'esse appassirono le frali + gioie, che al sogno mio dava la sorte. + Oh, una malinconia grande, infinita + quasi, un dolor d'ogni gioia più forte. + che ben sa la mia vita, + simile all'ingiallita + foglia, ad un buio di giorni autunnali. + + + +
+ + + + 18 + Poesie dell'adolescenza + + + +
+ Canzoncine + +
+ I + + Omettere? + + + Egli vi disse: "V'amo, + e + muoio + soffro + , mia signora." + Voi rispondeste: "Taci, + sei un fanciullo ancora." + Egli vi disse: "In cuore + vincer saprò il desio." + Voi rispondeste: "T'amo, + t'amo, fanciullo mio." + + +
+
+ II + + Io trassi dalla polvere + la pietra prezïosa; + ma... dalla grazïosa + tua bocca un solo detto, + che possa entro il mio petto + placar chiusa tempesta; + volgere d'una mesta + ora in sorriso i guai, + Donna, non trassi io mai. + +
+
+ III + + Quando nel cimitero + una pietra qualunque + dirà, come un qualunque + altro nome, il mio nome al passeggero; + + + + + quando + + + + e + qui + a te + + + + del mio pensiero + rimarran, nel tuo seno custodite, + brevi canzoni dal tempo ingiallite, + io saprò dirti allora + quello che al mondo ho amato, + perchè invano ho lottato ed ho sofferto; + solo in quel colle fiorito deserto, + sentirai + + + di mia + della + + + di mia + vita + + + la dolcezza nascosta ed infinita! + + +
+ + +
+ + + Poesie dell'adolescenza + 19 + + + +
+ + A Pag.23 + Alla Morte + + Dolce cosa è per me fra le tue braccia, + Morte, in sogno approdar fra le tempeste; + non vidi ancor dappresso la tua faccia, + non cingo te di fantasie funeste. + + + Speranza ho in cor che d'ore gravi e meste, + che d'un pensiero che in bando mi caccia + sul volgo errante al gran silenzio agreste, + tuo ch'io divenga, rimarrà una traccia; + + + che un + i + ' + ignota creatura a me pensando + andrà quando s'accendono i fanali; + che gli amici nei dì belli, tornando + + + + da campagne sui monti o in riva al mar, + me rivedran, fra l'ombre dei viali, + ombra lieta e pensosa trasvolar. + +
+
+ +
+ + + 20 + Poesie giovanili (pisane) + + + +
+ + La Pace + + O Pace, che ciascuno ama, che spera + dal primo sole all'ultima giornata, + non sei tu pure un'ombra, una chimera + a cui dietro gran turba erra affannata? + + + A che cercar fra i monti + il tuo + la tua + + + tracc + conforto + + + o in riva al mare, o in estranea terra; + a che sperar fra le tue braccia un porto, + nel tuo seno un oblio d'interna guerra; + + + se Dante ti cercò, di mondo in mondo + esule stanco affaticando il piè; + se Fausto per un tuo bacio all'immondo, + (inutilmente come a Dio) si diè? + + + Più della gloria, più della Fortuna + nei miei giovani sogni io t'invocai, + o Pace... e tu sei simile alla luna, + che il sole insegue, e non raggiunge mai. + + +
+ +
+
+
+ + +
+
diff --git a/src/assets/data/schema/tei-vbd.rng b/src/assets/data/schema/tei-vbd.rng new file mode 100644 index 000000000..5b919a456 --- /dev/null +++ b/src/assets/data/schema/tei-vbd.rng @@ -0,0 +1,12048 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + high + medium + low + unknown + + + + + 0 + 1 + + + + + + + (\-?[\d]+/\-?[\d]+) + + + + + + + + 0 + + regular + irregular + unknown + + + + + + + + + + + + + + + + + + + + + + + + unknown + inapplicable + + + + + + + + + + + + + + [\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm) + + + + + + + + (\-?[0-9]+\.?[0-9]*,\-?[0-9]+\.?[0-9]*) + + + + + + + + [\d]+(\.[\d]+){0,2} + + + + + [\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3} + + + + + + + + (\p{L}|\p{N}|\p{P}|\p{S})+ + + + + + + + + + + + + + + + + + + + + + + + + + + [0-9.,DHMPRSTWYZ/:+\-]+ + + + + + + + + + + indicates the person, or group of people, to whom the element content is ascribed. + + + + + + + + + + + + + + + + provides an externally-defined means of identifying the entity (or entities) being named, using a coded value of some kind. + + + + + + + + (reference) provides an explicit means of locating a full definition for the entity being named by means of one or more URIs. + + + + + + + + + + + + + + + + + + + gives a minimum estimated value for the approximate measurement. + + + + + + + + gives a maximum estimated value for the approximate measurement. + + + + + + + + where the measurement summarizes more than one observation or a range, supplies the minimum value observed. + + + + + + + + where the measurement summarizes more than one observation or a range, supplies the maximum value observed. + + + + + + + + specifies the degree of statistical confidence (between zero and one) that a value falls within the range specified by min and max, or the proportion of observed values that fall within that range. + + + + + + + + + + + + + + + + names the unit used for the measurement +Suggested values include: 1] cm(centimetres) ; 2] mm(millimetres) ; 3] in(inches) ; 4] lines; 5] chars(characters) + + cm + (centimetres) + mm + (millimetres) + in + (inches) + lines + lines of text + chars + (characters) characters of text + + + + + + + + + specifies the length in the units specified + + + + + + + + indicates the size of the object concerned using a project-specific vocabulary combining quantity and units in a single string of words. + + + + + + + + characterizes the precision of the values specified by the other attributes. + + + + + + + + where the measurement summarizes more than one observation, specifies the applicability of this measurement. +Sample values include: 1] all; 2] most; 3] range + + + + + + + + + + + + + + + in the case of damage (deliberate defacement, inking out, etc.) assignable to a distinct hand, signifies the hand responsible for the damage by pointing to one of the hand identifiers declared in the document header (see section ). + + + + + + + + categorizes the cause of the damage, if it can be identified. +Sample values include: 1] rubbing; 2] mildew; 3] smoke + + + + + + + + provides a coded representation of the degree of damage, either as a number between 0 (undamaged) and 1 (very extensively damaged), or as one of the codes high, medium, low, or unknown. The damage element with the degree attribute should only be used where the text may be read with some confidence; text supplied from other sources should be tagged as supplied. + + + + + + + + + + + assigns an arbitrary number to each stretch of damage regarded as forming part of the same physical phenomenon. + + + + + + + + + + + indicates whether or not the element bearing this attribute should be considered to mark the end of an orthographic token in the same way as whitespace. + + + + + + + + + + + (canonical reference) specifies the destination of the pointer by supplying a canonical reference expressed using the scheme defined in a refsDecl element in the TEI header + + + + + + + + + + + + + + + supplies the value of the date or time in a standard form, e.g. yyyy-mm-dd. + + + + + + + + specifies the earliest possible date for the event in standard form, e.g. yyyy-mm-dd. + + + + + + + + specifies the latest possible date for the event in standard form, e.g. yyyy-mm-dd. + + + + + + + + indicates the starting point of the period in standard form, e.g. yyyy-mm-dd. + + + + + + + + indicates the ending point of the period in standard form, e.g. yyyy-mm-dd. + + + + + + + + + + + + + + + indicates the system or calendar to which the date represented by the content of this element belongs. + + + + + + + +@calendar indicates the system or calendar to which the date represented by the content of this element +belongs, but this element has no textual content. + + + + + + supplies a pointer to some location defining a named period of time within which the datable item is understood to have occurred. + + + + + + + + + + + + contains a PID (persistent identifier) that aligns the given element with the appropriate Data Category (or categories) in ISOcat. + + + + + + + + + + + + contains a PID (persistent identifier) that aligns the content of the given element or the value of the given attribute with the appropriate simple Data Category (or categories) in ISOcat. + + + + + + + + + + + + + + + indicates whether or not this element is selected by default when its parent is selected. + + true + This element is selected if its parent is selected + false + This element can only be selected explicitly, unless it is the only one of its kind, in which case it is selected if its parent is selected. + + + + + + + + + + + identifies one or more declarable elements within the header, which are understood to apply to the element bearing this attribute and its content. + + + + + + + + + + + + + + + specifies whether or not its parent element is fragmented in some way, typically by some other overlapping structure: for example a speech which is divided between two or more verse stanzas, a paragraph which is split across a page division, a verse line which is divided between two speakers. + + Y + (yes) the element is fragmented in some (unspecified) respect + N + (no) either the element is not fragmented, or no claim is made as to its completeness. + I + (initial) this is the initial part of a fragmented element + M + (medial) this is a medial part of a fragmented element + F + (final) this is the final part of a fragmented element + + + + + + + + + + + + + (organization) specifies how the content of the division is organized. + + composite + no claim is made about the sequence in which the immediate contents of this division are to be processed, or their inter-relationships. + uniform + the immediate contents of this element are regarded as forming a logical unit, to be processed in sequence. + + + + + + + + indicates whether this division is a sample of the original source and if so, from which part. + + initial + division lacks material present at end in source. + medial + division lacks material at start and end. + final + division lacks material at start. + unknown + position of sampled material within original unknown. + complete + division is not a sample. + + + + + + + + + + + describes the status of a document either currently or, when associated with a dated element, at the time indicated. +Sample values include: 1] approved; 2] candidate; 3] cleared; 4] deprecated; 5] draft; 6] embargoed; 7] expired; 8] frozen; 9] galley; 10] proposed; 11] published; 12] recommendation; 13] submitted; 14] unfinished; 15] withdrawn + + + + + + + + + + + + + (certainty) signifies the degree of certainty associated with the intervention or interpretation. + + + + + + + + (responsible party) indicates the agency responsible for the intervention or interpretation, for example an editor or transcriber. + + + + + + + + + + + + + + + + + + indicates the nature of the evidence supporting the reliability or accuracy of the intervention or interpretation. +Suggested values include: 1] internal; 2] external; 3] conjecture + + + + internal + there is internal evidence to support the intervention. + external + there is external evidence to support the intervention. + conjecture + the intervention or interpretation has been made by the editor, cataloguer, or scholar on the basis of their expertise. + + + + + + + + + + + indicates whether this is an instant revision or not. + + + + + + + + + + + + + + + + + + + + + + (identifier) provides a unique identifier for the element bearing the attribute. + + + + + + + + (number) gives a number (or other label) for an element, which is not necessarily unique within the document. + + + + + + + + (language) indicates the language of the element content using a tag generated according to BCP 47. + + + + + + + + (rendition) indicates how the element in question was rendered or presented in the source text. + + + + + + + + + + + + contains an expression in some formal style definition language which defines the rendering or presentation used for this element in the source text + + + + + + + + points to a description of the rendering or presentation used for this element in the source text. + + + + + + + + + + + + provides a base URI reference with which applications can resolve relative URI references into absolute URI references. + + + + + + + + signals an intention about how white space should be managed by applications. + + default + signals that the application's default white-space processing modes are acceptable + preserve + indicates the intent that applications preserve all white space + + + + + + + + + + + + + + + + gives a name or other identifier for the scribe believed to be responsible for this hand. + + + + + + + + points to a full description of the scribe concerned, typically supplied by a person element elsewhere in the description. + + + + + + + + + + + + characterizes the particular script or writing style used by this hand, for example secretary, copperplate, Chancery, Italian, etc. + + + + + + + + + + + + points to a full description of the script or writing style used by this hand, typically supplied by a scriptNote element elsewhere in the description. + + + + + + + + + + + + describes the tint or type of ink, e.g. brown, or other writing medium, e.g. pencil + + + + + + + + + + + + specifies how widely this hand is used in the manuscript. + + sole + only this hand is used throughout the manuscript + major + this hand is used through most of the manuscript + minor + this hand is used occasionally in the manuscript + + + + + + + + + + + (MIME media type) specifies the applicable multimedia internet mail extension (MIME) media type + + + + + + + + + + + + + + + + + + Where the media are displayed, indicates the display width + + + + + + + + Where the media are displayed, indicates the display height + + + + + + + + Where the media are displayed, indicates a scale factor to be applied when generating the desired display size + + + + + + + + + + (uniform resource locator) specifies the URL from which the media concerned may be obtained. + + + + + + + + + + + + indicates what kind of phenomenon is being noted in the passage. +Sample values include: 1] image; 2] character; 3] theme; 4] allusion + + + + + + + + (instances) points to instances of the analysis or interpretation represented by the current element. + + + + + + + + + + + + + + + + + indicates the units used for the measurement, usually using the standard symbol for the desired units. +Suggested values include: 1] m(metre) ; 2] kg(kilogram) ; 3] s(second) ; 4] Hz(hertz) ; 5] Pa(pascal) ; 6] Ω(ohm) ; 7] L(litre) ; 8] t(tonne) ; 9] ha(hectare) ; 10] Å(ångström) ; 11] mL(millilitre) ; 12] cm(centimetre) ; 13] dB(decibel) ; 14] kbit(kilobit) ; 15] Kibit(kibibit) ; 16] kB(kilobyte) ; 17] KiB(kibibyte) ; 18] MB(megabyte) ; 19] MiB(mebibyte) + + m + (metre) SI base unit of length + kg + (kilogram) SI base unit of mass + s + (second) SI base unit of time + Hz + (hertz) SI unit of frequency + Pa + (pascal) SI unit of pressure or stress + + (ohm) SI unit of electric resistance + L + (litre) 1 dm³ + t + (tonne) 10³ kg + ha + (hectare) 1 hm² + + (ångström) 10⁻¹⁰ m + mL + (millilitre) + cm + (centimetre) + dB + (decibel) see remarks, below + kbit + (kilobit) 10³ or 1000 bits + Kibit + (kibibit) 2¹⁰ or 1024 bits + kB + (kilobyte) 10³ or 1000 bytes + KiB + (kibibyte) 2¹⁰ or 1024 bytes + MB + (megabyte) 10⁶ or 1 000 000 bytes + MiB + (mebibyte) 2²⁰ or 1 048 576 bytes + + + + + + + + + specifies the number of the specified units that comprise the measurement + + + + + + + + indicates the substance that is being measured + + + + + + + + + + + + + + + + + may be used to specify further information about the entity referenced by this name in the form of a set of whitespace-separated values, for example the occupation of a person, or the status of a place. + + + + + + + + + + + + (reference to the canonical name) provides a means of locating the canonical form (nym) of the names associated with the object named by the element bearing it. + + + + + + + + + + + + + + + specifies where this item is placed +Suggested values include: 1] below; 2] bottom; 3] margin; 4] top; 5] opposite; 6] overleaf; 7] above; 8] end; 9] inline; 10] inspace + + + + below + below the line + bottom + at the foot of the page + margin + in the margin (left, right, or both) + top + at the top of the page + opposite + on the opposite, i.e. facing, page + overleaf + on the other side of the leaf + above + above the line + end + at the end of e.g. chapter or volume. + inline + within the body of the text. + inspace + in a predefined space, for example left by an earlier scribe. + + + + + + + + + + + + + + + characterizes the element in some sense, using any convenient classification scheme or typology. + + + + + + + + provides a sub-categorization of the element, if needed + + + + + + + The element should not be categorized in detail with @subtype + unless also categorized in general with @type + + + + + + + + + + + specifies the language of the content to be found at the destination referenced by target, using a language tag generated according to BCP 47. + + + + + + + @targetLang can only be used if @target is specified. + + + + + + specifies the destination of the reference by supplying one or more URI References + + + + + + + + + + + + specifies the intended meaning when the target of a pointer is itself a pointer. + + all + if the element pointed to is itself a pointer, then the target of that pointer will be taken, and so on, until an element is found which is not a pointer. + one + if the element pointed to is itself a pointer, then its target (whether a pointer or not) is taken as the target of this pointer. + none + no further evaluation of targets is carried out beyond that needed to find the element specified in the pointer's target. + + + + + + + + + + + + + + optionally specifies the identifiers of the elements within which all elements indicated by the contents of this element lie. + + + + + + + + + + + + + + (target function) describes the function of each of the values of the target attribute of the enclosed link, join, or alt tags. + + + + + + + + + + + + + + + + + + + characterizes the function of the segment. + + + + + + + + + + + supplies the sort key for this element in an index, list or group which contains it. + + + + + + + + + + + + (edition) supplies a sigil or other arbitrary identifier for the source edition in which the associated feature (for example, a page, column, or line break) occurs at this point in the text. + + + + + + + + + + + + (edition reference) provides a pointer to the source edition in which the associated feature (for example, a page, column, or line break) occurs at this point in the text. + + + + + + + + + + + + + + + indicates the end of a span initiated by the element bearing this attribute. + + + + + + + +The element indicated by @spanTo () must follow the current element + + + + + + + + + + + identifies the language used to describe the rendition. + + css + Cascading Stylesheet Language + xslfo + Extensible Stylesheet Language Formatting Objects + free + Informal free text description + other + A user-defined rendition description language + + + + + + + + supplies a version number for the style language provided in scheme. + + + + + + + + @schemeVersion can only be used if @scheme is specified. + + + + + + + + + + + + indicates the kind of information held in this cell or in each cell of this row. +Suggested values include: 1] label; 2] data + + label + labelling or descriptive information only. + data + data values. + + + + + + + + + indicates the number of rows occupied by this cell or row. + + + + + + + + (columns) indicates the number of columns occupied by this cell or row. + + + + + + + + + + + + indicates the location within a temporal alignment at which this element begins. + + + + + + + + indicates the location within a temporal alignment at which this element ends. + + + + + + + + + + + + + + + indicates the hand of the agent which made the intervention. + + + + + + + + indicates the effect of the intervention, for example in the case of a deletion, strikeouts which include too much or too little text, or in the case of an addition, an insertion which duplicates some of the text already present. +Sample values include: 1] duplicate; 2] duplicate-partial; 3] excessStart; 4] excessEnd; 5] shortStart; 6] shortEnd; 7] partial; 8] unremarkable + + + + + + + + documents the presumed cause for the intervention. + + fix + repeated for the purpose of fixation + unclear + repeated to clarify a previously illegible or badly written text or mark + + + + + + + + (sequence) assigns a sequence number related to the order in which the encoded features carrying this attribute are believed to have occurred. + + + + + + + + + + + specifies the date on which the source text was extracted and sent to the translator + + + + + + + + + + + + + identifies the unit of information conveyed by the element, e.g. columns, pages, volume. +Suggested values include: 1] volume; 2] issue; 3] page; 4] line; 5] chapter; 6] part; 7] column + + volume + the element contains a volume number. + issue + the element contains an issue number, or volume and issue numbers. + page + the element contains a page number or page range. + line + the element contains a line number or line range. + chapter + the element contains a chapter indication (number and/or title) + part + the element identifies a part of a book or collection. + column + the element identifies a column. + + + + + + + + + specifies the starting point of the range of units indicated by the unit attribute. + + + + + + + + specifies the end-point of the range of units indicated by the unit attribute. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + provides a pointer to the bibliographical source from which a quotation or citation is drawn. + + + + + + + + + + + + + + + + + + + + + + + indicates whether the name component is given in full, as an abbreviation or simply as an initial. + + yes + the name component is spelled out in full. + abb + (abbreviated) the name component is given in an abbreviated form. + init + (initial letter) the name component is indicated only by one initial. + + + + + + + + specifies the sort order of the name component in relation to others within the name. + + + + + + + + + + + + + + + provides a conventional name for the kind of section changing at this milestone. +Suggested values include: 1] page; 2] column; 3] line; 4] book; 5] poem; 6] canto; 7] speaker; 8] stanza; 9] act; 10] scene; 11] section; 12] absent; 13] unnumbered + + page + physical page breaks (synonymous with the pb element). + column + column breaks. + line + line breaks (synonymous with the lb element). + book + any units termed book, liber, etc. + poem + individual poems in a collection. + canto + cantos or other major sections of a poem. + speaker + changes of speaker or narrator. + stanza + stanzas within a poem, book, or canto. + act + acts within a play. + scene + scenes within a play or act. + section + sections of any kind. + absent + passages not present in the reference edition. + unnumbered + passages present in the text, but not to be included as part of the reference. + + + + + + + (paragraph) marks paragraphs in prose. [3.1. 7.2.5. ] + + + + + + + + + + identifies a word or phrase as belonging to some language other than that of the surrounding text. [3.3.2.1. ] + + + + + + + + (emphasized) marks words or phrases which are stressed or emphasized for linguistic or rhetorical effect. [3.3.2.2. 3.3.2. ] + + + + + + + + (highlighted) marks a word or phrase as graphically distinct from the surrounding text, for reasons concerning which no claim is made. [3.3.2.2. 3.3.2. ] + + + + + + + + identifies any word or phrase which is regarded as linguistically distinct, for example as archaic, technical, dialectal, non-preferred, etc., or as forming part of a sublanguage. [3.3.2.3. ] + + + + + specifies the sublanguage or register to which the word or phrase is being assigned + + + + + + specifies how the phrase is distinct diachronically + + + + + + specifies how the phrase is distinct diatopically + + + + + + specifies how the phrase is distinct diastatically + + + + + + + + + (speech or thought) indicates passages thought or spoken aloud, whether explicitly indicated in the source or not, whether directly or indirectly reported, whether by real people or fictional characters. [3.3.3. ] + + + + + + may be used to indicate whether the quoted matter is regarded as having been vocalized or signed. + + + + + + may be used to indicate whether the quoted matter is regarded as direct or indirect speech. + + + + + + + + + (quotation) contains a phrase or passage attributed by the narrator or author to some agency external to the text. [3.3.3. 4.3.1. ] + + + + + + + + + + + (quoted) contains material which is distinguished from the surrounding text using quotation marks or a similar method, for any one of a variety of reasons including, but not limited to: direct speech or thought, technical terms or jargon, authorial distance, quotations from elsewhere, and passages that are mentioned but not used. [3.3.3. ] + + + + + + + may be used to indicate whether the offset passage is spoken or thought, or to characterize it more finely. +Suggested values include: 1] spoken; 2] thought; 3] written; 4] soCalled; 5] foreign; 6] distinct; 7] term; 8] emph; 9] mentioned + + spoken + representation of speech + thought + representation of thought, e.g. internal monologue + written + quotation from a written source + soCalled + authorial distance + foreign + + distinct + linguistically distinct + term + technical term + emph + rhetorically emphasized + mentioned + refering to itself, not its normal referent + + + + + + + + + + (cited quotation) contains a quotation from some other document, together with a bibliographic reference to its source. In a dictionary it may contain an example text with at least one occurrence of the word form, used in the sense being described, or a translation of the headword, or an example. [3.3.3. 4.3.1. 9.3.5.1. ] + + + + + + + + + + + + + + + + + + marks words or phrases mentioned, not used. [3.3.3. ] + + + + + + + + contains a word or phrase for which the author or narrator indicates a disclaiming of responsibility, for example by the use of scare quotes or italics. [3.3.3. ] + + + + + + + + (description) contains a brief description of the object documented by its parent element, including its intended usage, purpose, or application where this is appropriate. [22.4.1. ] + + + + + + + + + + identifies a phrase or word used to provide a gloss or definition for some other word or phrase. [3.3.4. 22.4.1. ] + + + + + + + + + + + + + contains a single-word, multi-word, or symbolic designation which is regarded as a technical term. [3.3.4. ] + + + + + + + + + + + + + + (Latin for thus or so + ) contains text reproduced although apparently incorrect or inaccurate. [3.4.1. ] + + + + + + + + + (correction) contains the correct form of a passage apparently erroneous in the copy text. [3.4.1. ] + + + + + + + + + + groups a number of alternative encodings for the same point in a text. [3.4. ] + + + + + + + + + + + + + (regularization) contains a reading which has been regularized or normalized in some sense. [3.4.2. 12. ] + + + + + + + + + + (original form) contains a reading which is marked as following the original, rather than being normalized or corrected. [3.4.2. 12. ] + + + + + + + + + indicates a point where material has been omitted in a transcription, whether for editorial reasons described in the TEI header, as part of sampling practice, or because the material is illegible, invisible, or inaudible. [3.4.3. ] + + + + + + + + + + + gives the reason for omission. Sample values include sampling, inaudible, irrelevant, cancelled. + + + + + + + + + + in the case of text omitted from the transcription because of deliberate deletion by an identifiable hand, indicates the hand which made the deletion. + + + + + + in the case of text omitted because of damage, categorizes the cause of the damage, if it can be identified. +Sample values include: 1] rubbing; 2] mildew; 3] smoke + + + + + + + + + (addition) contains letters, words, or phrases inserted in the source text by an author, scribe, or a previous annotator or corrector. [3.4.3. ] + + + + + + + + + + + (deletion) contains a letter, word, or passage deleted, marked as deleted, or otherwise indicated as superfluous or spurious in the copy text by an author, scribe, or a previous annotator or corrector. [3.4.3. ] + + + + + + + + + + contains a word, phrase, or passage which cannot be transcribed with certainty because it is illegible or inaudible in the source. [11.3.3.1. 3.4.3. ] + + + + + + indicates why the material is hard to transcribe. + + + + + + + + + + Where the difficulty in transcription arises from action (partial deletion, etc.) assignable to an identifiable hand, signifies the hand responsible for the action. + + + + + + Where the difficulty in transcription arises from damage, categorizes the cause of the damage, if it can be identified. +Sample values include: 1] rubbing; 2] mildew; 3] smoke + + + + + + + + + (name, proper noun) contains a proper noun or noun phrase. [3.5.1. ] + + + + + + + + + + + + (referencing string) contains a general purpose name or referring string. [13.2.1. 3.5.1. ] + + + + + + + + + + + (electronic mail address) contains an email address identifying a location to which email messages can be delivered. [3.5.2. ] + + + + + + + + (number) contains a number, written in any form. [3.5.3. ] + + + + + + indicates the type of numeric value. +Suggested values include: 1] cardinal; 2] ordinal; 3] fraction; 4] percentage + + cardinal + absolute number, e.g. 21, 21.5 + ordinal + ordinal number, e.g. 21st + fraction + fraction, e.g. one half or three-quarters + percentage + a percentage + + + + + + + supplies the value of the number in standard form. + + + + + + + + + contains a word or phrase referring to some quantity of an object or commodity, usually comprising a number, a unit, and a commodity name. [3.5.3. ] + + + + + + specifies the type of measurement in any convenient typology. + + + + + + + + + (measure group) contains a group of dimensional specifications which relate to the same object, for example the height and width of a manuscript page. [10.3.4. ] + + + + + + + + + + + + + + + + contains a date in any format. [3.5.4. 2.2.4. 2.5. 3.11.2.4. 15.2.3. 13.3.6. ] + + + + + + + + + + + + + + + + + + contains a phrase defining a time of day in any format. [3.5.4. ] + + + + + + + + + + + + + + + + + + (abbreviation) contains an abbreviation of any sort. [3.5.5. ] + + + + + + + allows the encoder to classify the abbreviation according to some convenient typology. + + + + + + + + + (expansion) contains the expansion of an abbreviation. [3.5.5. ] + + + + + + + + + (pointer) defines a pointer to another location. [3.6. 16.1. ] + + + + Only one of the +attributes @target and @cRef may be supplied on . + + + + + + + + + + + + + + (reference) defines a reference to another location, possibly modified by additional text or comment. [3.6. 16.1. ] + + + + Only one of the + attributes @target' and @cRef' may be supplied on + + + + + + + + + + + + + + + contains any sequence of items organized as a list. [3.7. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + describes the nature of the items in the list. +Suggested values include: 1] gloss; 2] index; 3] instructions; 4] litany; 5] syllogism + + gloss + each list item glosses some term or concept, which is given by a label element preceding the list item. + index + each list item is an entry in an index such as the alphabetical topical index at the back of a print volume. + instructions + each list item is a step in a sequence of instructions, as in a recipe. + litany + each list item is one of a sequence of petitions, supplications or invocations, typically in a religious ritual. + syllogism + each list item is part of an argument consisting of two or more propositions and a final conclusion derived from them. + + + + + + + + + + contains one component of a list. [3.7. 2.5. ] + + + + + + + + + contains any label or heading used to identify part of a text, typically but not exclusively in a list or glossary. [3.7. ] + + + + + + + + + + (heading) contains any type of heading, for example the title of a section, or the heading of a list, glossary, manuscript description, etc. [4.2.1. ] + + + + + + + + + + + + + + + + + + + (heading for list labels) contains the heading for the label or term column in a glossary list or similar structured list. [3.7. ] + + + + + + + + (heading for list items) contains the heading for the item or gloss column in a glossary list or similar structured list. [3.7. ] + + + + + + + + contains a note or annotation. [3.8.1. 2.2.6. 3.11.2.8. 9.3.5.4. ] + + + + + + + + + indicates whether the copy text shows the exact place of reference for the note. + + + + + + points to the end of the span to which the note is attached, if the note is not embedded in the text at that point. + + + + + + + + + + + + + (index entry) marks a location to be indexed for whatever purpose. [3.8.2. ] + + + + + + + + + + + + + a single word which follows the rules defining a legal XML name (see ), supplying a name to specify which index (of several) the index entry belongs to. + + + + + + + + + indicates the location of any form of external media such as an audio or video clip etc. [3.9. ] + + + + + + + + + + + + + (MIME media type) specifies the applicable multimedia internet mail extension (MIME) media type + + + + + + + + + + + + indicates the location of an inline graphic, illustration, or figure. [3.9. ] + + + + + + + + + + + + + provides encoded binary data representing an inline graphic, audio, video or other object. [3.9. ] + + + + + + + + The encoding used to encode the binary data. If not specified, this is assumed to be Base64. + + + + + + + + + + + + + marks a boundary point separating any kind of section of a text, typically but not necessarily indicating a point at which some part of a standard reference system changes, where the change is not represented by a structural element. [3.10.3. ] + + + + + + + + + + + + + (gathering begins) marks the point in a transcribed codex at which a new gathering or quire begins. [3.10.3. ] + + + + + + + + + + + (page break) marks the start of a new page in a paginated document. [3.10.3. ] + + + + + + + + + + + + (line break) marks the start of a new (typographic) line in some edition or version of a text. [3.10.3. 7.2.5. ] + + + + + + + + + + + + (column break) marks the beginning of a new column of a text on a multi-column page. [3.10.3. ] + + + + + + + + + + + + (analytic level) contains bibliographic elements describing an item (e.g. an article or poem) published within a monograph or journal and not as an independent publication. [3.11.2.1. ] + + + + + + + + + + + + + + + + + + + + (monographic level) contains bibliographic elements describing an item (e.g. a book or journal) published as an independent item (i.e. as a separate physical object). [3.11.2.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (series information) contains information about the series in which a book or other bibliographic item has appeared. [3.11.2.1. ] + + + + + + + + + + + + + + + + + + + + + + in a bibliographic reference, contains the name(s) of an author, personal or corporate, of a work; for example in the same form as that provided by a recognized bibliographic name authority. [3.11.2.2. 2.2.1. ] + + + + + + + + + contains a secondary statement of responsibility for a bibliographic item, for example the name of an individual, institution or organization, (or of several such) acting as editor, compiler, translator, etc. [3.11.2.2. ] + + + + + + + + + (statement of responsibility) supplies a statement of responsibility for the intellectual content of a text, edition, recording, or series, where the specialized elements for authors, editors, etc. do not suffice or do not apply. May also be used to encode information about individuals or organizations which have played a role in the production or distribution of a bibliographic work. [3.11.2.2. 2.2.1. 2.2.2. 2.2.5. ] + + + + + + + + + + + + + + + + + + + + + + + + + + (responsibility) contains a phrase describing the nature of a person's intellectual responsibility, or an organization's role in the production or distribution of a work. [3.11.2.2. 2.2.1. 2.2.2. 2.2.5. ] + + + + + + + + + + contains a title for any kind of work. [3.11.2.2. 2.2.1. 2.2.5. ] + + + + + + + classifies the title according to some convenient typology. +Sample values include: 1] main; 2] sub(subordinate) ; 3] alt(alternate) ; 4] short; 5] desc(descriptive) + + + + + + indicates the bibliographic level for a title, that is, whether it identifies an article, book, journal, series, or unpublished material. + + a + (analytic) the title applies to an analytic item, such as an article, poem, or other work published as part of a larger item. + m + (monographic) the title applies to a monograph such as a book or other item considered to be a distinct publication, including single volumes of multi-volume works + j + (journal) the title applies to any serial or periodical publication such as a journal, magazine, or newspaper + s + (series) the title applies to a series of otherwise distinct publications such as a collection + u + (unpublished) the title applies to any unpublished material (including theses and dissertations unless published by a commercial press) + + + + + + + + + contains the formalized descriptive title for a meeting or conference, for use in a bibliographic description for an item derived from such a meeting, or as a heading or preamble to publications emanating from it. [3.11.2.2. ] + + + + + + + + + groups information relating to the publication or distribution of a bibliographic item. [3.11.2.4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + provides the name of the organization responsible for the publication or distribution of a bibliographic item. [3.11.2.4. 2.2.4. ] + + + + + + + + (scope of bibliographic reference) defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work. [3.11.2.5. ] + + + + + + identifies the type of information conveyed by the element, e.g. columns, pages, volume. +Suggested values include: 1] vol(volume) ; 2] issue; 3] pp(pages) ; 4] ll(lines) ; 5] chap(chapter) ; 6] part + + vol + (volume) the element contains a volume number. + issue + the element contains an issue number, or volume and issue numbers. + pp + (pages) the element contains a page number or page range. + ll + (lines) the element contains a line number or line range. + chap + (chapter) the element contains a chapter indication (number and/or title) + part + the element identifies a part of a book or collection. + + + + + + + + + + (cited range) defines the range of cited content, often represented by pages or other units [3.11.2.5. ] + + + + + + + + + + (publication place) contains the name of the place where a bibliographic item was published. [3.11.2.4. ] + + + + + + + + + (bibliographic citation) contains a loosely-structured bibliographic citation of which the sub-components may or may not be explicitly tagged. [3.11.1. 2.2.7. 15.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + (structured bibliographic citation) contains a structured bibliographic citation, in which only bibliographic sub-elements appear and in a specified order. [3.11.1. 2.2.7. 15.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (citation list) contains a list of bibliographic citations of any kind. [3.11.1. 2.2.7. 15.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + contains or references some other bibliographic item which is related to the present one in some specified manner, for example as a constituent or alternative version of it. [3.11.2.7. ] + + + + + + + + + +If the @target attribute on is used, the +relatedItem element must be empty + + + + + A relatedItem element should have either a 'target' attribute + or a child element to indicate the related bibliographic item + + + + + + + points to the related bibliographic element by means of an absolute or relative URI reference + + + + + + + + + (verse line) contains a single, possibly incomplete, line of verse. [3.12.1. 3.12. 7.2.5. ] + + + + + + + + + (line group) contains one or more verse lines functioning as a formal unit, e.g. a stanza, refrain, verse paragraph, etc. [3.12.1. 3.12. 7.2.5. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + An lg element + must contain at least one child l, lg or gap element. + + + + + + + + + + + + (speech) contains an individual speech in a performance text, or a passage presented as such in a prose or verse text. [3.12.2. 3.12. 7.2.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains a specialized form of heading or label, giving the name of one or more speakers in a dramatic text or fragment. [3.12.2. ] + + + + + + + + (stage direction) contains any kind of stage direction within a dramatic text or fragment. [3.12.2. 3.12. 7.2.4. ] + + + + + + + indicates the kind of stage direction. +Suggested values include: 1] setting; 2] entrance; 3] exit; 4] business; 5] novelistic; 6] delivery; 7] modifier; 8] location; 9] mixed + + setting + describes a setting. + entrance + describes an entrance. + exit + describes an exit. + business + describes stage business. + novelistic + is a narrative, motivating stage direction. + delivery + describes how a character speaks. + modifier + gives some detail about a character. + location + describes a location. + mixed + more than one of the above + + + + + + + + + + contains the whole of a TEI encoded corpus, comprising a single corpus header and one or more TEI elements, each containing a single text header and a text. [4. 15.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + The version of the TEI scheme + + + + + + + + + (automatically generated text division) indicates the location at which a textual division generated automatically by a text-processing application is to appear. [3.8.2. ] + + + + + + + specifies what type of generated text division (e.g. index, table of contents, etc.) is to appear. +Sample values include: 1] index; 2] toc; 3] figlist; 4] tablist + + + + + + + + + (text language) describes the languages and writing systems identified within the bibliographic work being described, rather than its description. [3.11.2.4. 10.6.6. ] + + + + + (main language) supplies a code which identifies the chief language used in the bibliographic work. + + + + + + (other languages) one or more codes identifying any other languages used in the bibliographic work. + + + + + + + + + + + + + + + + + specifies a regular expression against which the values of other attributes can be matched. + + + + + + specifies a replacement pattern, that is, the skeleton of a relative or absolute URI containing references to groups in the matchPattern which, once subpattern substitution has been performed, complete the URI. + + + + + + (TEI header) supplies the descriptive and declarative information making up an electronic title page for every TEI-conformant document. [2.1.1. 15.1. ] + + + + + + + + + + + + + specifies the kind of document to which the header is attached, for example whether it is a corpus or individual text. +Sample values include: 1] text; 2] corpus + + + + + + + + + (file description) contains a full bibliographic description of an electronic file. [2.2. 2.1.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + (title statement) groups information about the title of a work and those responsible for its content. [2.2.1. 2.2. ] + + + + + + + + + + + + + + + specifies the name of a sponsoring organization or institution. [2.2.1. ] + + + + + + + + + (funding body) specifies the name of an individual, institution, or organization responsible for the funding of a project or text. [2.2.1. ] + + + + + + + + + (principal researcher) supplies the name of the principal researcher responsible for the creation of an electronic text. [2.2.1. ] + + + + + + + + + (edition statement) groups information relating to one edition of a text. [2.2.2. 2.2. ] + + + + + + + + + + + + + + + + + + describes the particularities of one edition of a text. [2.2.2. ] + + + + + + + + describes the approximate size of a text stored on some carrier medium or of some other object, digital or non-digital, specified in any convenient units. [2.2.3. 2.2. 3.11.2.4. 10.7.1. ] + + + + + + + + (publication statement) groups information concerning the publication or distribution of an electronic or other text. [2.2.4. 2.2. ] + + + + + + + + + + + + + + + + + + + + + + supplies the name of a person or other agency responsible for the distribution of a text. [2.2.4. ] + + + + + + + + (release authority) supplies the name of a person or other agency responsible for making a work available, other than a publisher or distributor. [2.2.4. ] + + + + + + + + (identifier) supplies any form of identifier used to identify some object, such as a bibliographic item, a person, a title, an organization, etc. in a standardized way. [2.2.4. 2.2.5. 3.11.2.4. ] + + + + + + + + + + + + categorizes the identifier, for example as an ISBN, Social Security number, etc. + + + + + + + + + supplies information about the availability of a text, for example any restrictions on its use or distribution, its copyright status, any licence applying to it, etc. [2.2.4. ] + + + + + + + + + + + supplies a code identifying the current availability of the text. + + free + the text is freely available. + unknown + the status of the text is unknown. + restricted + the text is not freely available. + + + + + + + + + contains information about a licence or other legal agreement applicable to the text. [2.2.4. ] + + + + + + + + + + (series statement) groups information about the series, if any, to which a publication belongs. [2.2.5. 2.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (notes statement) collects together any notes providing information about a text additional to that recorded in other parts of the bibliographic description. [2.2.6. 2.2. ] + + + + + + + + + + + + + (source description) describes the source from which an electronic text was derived or generated, typically a bibliographic description in the case of a digitized text, or a phrase such as "born digital" for a text which has no previous existence. [2.2.7. ] + + + + + + + + + + + + + + + + + + + + (fully-structured bibliographic citation) contains a fully-structured bibliographic citation, in which all components of the TEI file description are present. [3.11.1. 2.2. 2.2.7. 15.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (encoding description) documents the relationship between an electronic text and the source or sources from which it was derived. [2.3. 2.1.1. ] + + + + + + + + + + + + + + + (project description) describes in detail the aim or purpose for which an electronic file was encoded, together with any other relevant information concerning the process by which it was assembled or collected. [2.3.1. 2.3. 15.3.2. ] + + + + + + + + + + + (sampling declaration) contains a prose description of the rationale and methods used in sampling texts in the creation of a corpus or collection. [2.3.2. 2.3. 15.3.2. ] + + + + + + + + + + + (editorial practice declaration) provides details of editorial principles and practices applied during the encoding of a text. [2.3.3. 2.3. 15.3.2. ] + + + + + + + + + + + + + + (correction principles) states how and under what circumstances corrections have been made in the text. [2.3.3. 15.3.2. ] + + + + + + + + indicates the degree of correction applied to the text. + + high + the text has been thoroughly checked and proofread. + medium + the text has been checked at least once. + low + the text has not been checked. + unknown + the correction status of the text is unknown. + + + + + + indicates the method adopted to indicate corrections within the text. + + silent + corrections have been made silently + markup + corrections have been represented using markup + + + + + + + + + indicates the extent of normalization or regularization of the original source carried out in converting it to electronic form. [2.3.3. 15.3.2. ] + + + + + + + + indicates a bibliographic description or other resource documenting the principles underlying the normalization carried out. + + + + + + indicates the method adopted to indicate normalizations within the text. + + silent + normalization made silently + markup + normalization represented using markup + + + + + + + + + specifies editorial practice adopted with respect to quotation marks in the original. [2.3.3. 15.3.2. ] + + + + + + +On , either the @marks attribute should be used, or a paragraph of description provided + + + + + + + (quotation marks) indicates whether or not quotation marks have been retained as content within the text. + + none + no quotation marks have been retained + some + some quotation marks have been retained + all + all quotation marks have been retained + + + + + + + + + summarizes the way in which hyphenation in a source text has been treated in an encoded version of it. [2.3.3. 15.3.2. ] + + + + + + + + (end-of-line) indicates whether or not end-of-line hyphenation has been retained in a text. + + all + all end-of-line hyphenation has been retained, even though the lineation of the original may not have been. + some + end-of-line hyphenation has been retained in some cases. + hard + all soft end-of-line hyphenation has been removed: any remaining end-of-line hyphenation should be retained. + none + all end-of-line hyphenation has been removed: any remaining hyphenation occurred within the line. + + + + + + + + + describes the principles according to which the text has been segmented, for example into sentences, tone-units, graphemic strata, etc. [2.3.3. 15.3.2. ] + + + + + + + + + + + (standard values) specifies the format used when standardized date or number values are supplied. [2.3.3. 15.3.2. ] + + + + + + + + + + + describes the scope of any analytic or interpretive information added to the text in addition to the transcription. [2.3.3. ] + + + + + + + + + + + specifies editorial practice adopted with respect to punctuation marks in the original. [2.3.3. 3.2. ] + + + + + + + + indicates whether or not punctation marks have been retained as content within the text. + + none + no punctuation marks have been retained + some + some punctuation marks have been retained + all + all punctuation marks have been retained + + + + + + indicates whether punctation marks have been captured inside or outside of an adjacent element. + + internal + punctuation marks are captured inside adjacent elements + external + punctuation marks are captured outside adjacent elements + + + + + + + + + (tagging declaration) provides detailed information about the tagging applied to a document. [2.3.4. 2.3. ] + + + + + + + + + + + + + + + supplies information about the usage of a specific element within a text. [2.3.4. ] + + + + (generic identifier) specifies the name (generic identifier) of the element indicated by the tag, within the namespace indicated by the parent namespace element. + + + + + specifies the number of occurrences of this element within the text. + + + + + + (with unique identifier) specifies the number of occurrences of this element within the text which bear a distinct value for the global xml:id attribute. + + + + + + specifies the identifier of a rendition element which defines how this element was rendered in the source text. + + + + + + + + + + + + + supplies the formal name of the namespace to which the elements documented by its children belong. [2.3.4. ] + + + + + + specifies the full formal name of the namespace concerned. + + + + + + + + supplies information about the rendition or appearance of one or more elements in the source text. [2.3.4. ] + + + + + + where CSS is used, provides a way of defining pseudo-elements, that is, styling rules applicable to specific sub-portions of an element. +Sample values include: 1] first-line; 2] first-letter; 3] before; 4] after + + + + + + + + + (style definition language declaration) specifies the name of the formal language in which style or renditional information is supplied elsewhere in the document. The specific version of the scheme may also be supplied. [2.3.5. ] + + + + + + + + + + + + (references declaration) specifies how canonical references are constructed for this text. [2.3.6.3. 2.3. 2.3.6. ] + + + + + + + + + + + + + + + + + + + (canonical reference pattern) specifies an expression and replacement pattern for transforming a canonical reference into a URI. [2.3.6.3. 2.3.6. 2.3.6.2. ] + + + + + + + + + + + (prefixing scheme used in data.pointer values) defines a prefixing scheme used in data.pointer values, showing how abbreviated URIs using the scheme may be expanded into full URIs. [16.2.3. ] + + + + + + + supplies a name which functions as the prefix for an abbreviated pointing scheme such as a private URI scheme. The prefix constitutes the text preceding the first colon. + + + + + + + + (list of prefix definitions) contains a list of definitions of prefixing schemes used in data.pointer values, showing how abbreviated URIs using each scheme may be expanded into full URIs. [16.2.3. ] + + + + + + + + + + + + + + + (reference state) specifies one component of a canonical reference defined by the milestone method. [2.3.6.3. 2.3.6. ] + + + + + + + specifies the fixed length of the reference component. + + + + + + (delimiter) supplies a delimiting string following the reference component. + + + + + + + + + (classification declarations) contains one or more taxonomies defining any classificatory codes used elsewhere in the text. [2.3.7. 2.3. ] + + + + + + + + + + defines a typology either implicitly, by means of a bibliographic citation, or explicitly by a structured taxonomy. [2.3.7. ] + + + + + + + + + + + + + + + + + + + + + + + + + + contains an individual descriptive category, possibly nested within a superordinate category, within a user-defined taxonomy. [2.3.7. ] + + + + + + + + + + + + + + + + + + + + + + + (category description) describes some category within a taxonomy or text typology, either in the form of a brief prose description or in terms of the situational parameters used by the TEI formal textDesc. [2.3.7. ] + + + + + + + + + + + + + + (geographic coordinates declaration) documents the notation and the datum used for geographic coordinates expressed as content of the geo element elsewhere within the document. [2.3.8. ] + + + + + + supplies a commonly used code name for the datum employed. +Suggested values include: 1] WGS84(World Geodetic System) ; 2] MGRS(Military Grid Reference System) ; 3] OSGB36(ordnance survey great britain) ; 4] ED50(European Datum coordinate system) + + WGS84 + (World Geodetic System) a pair of numbers to be interpreted as latitude followed by longitude according to the World Geodetic System. + MGRS + (Military Grid Reference System) the values supplied are geospatial entity object codes, based on + OSGB36 + (ordnance survey great britain) the value supplied is to be interpreted as a British National Grid Reference. + ED50 + (European Datum coordinate system) the value supplied is to be interpreted as latitude followed by longitude according to the European Datum coordinate system. + + + + + + + + + + (application information) records information about an application which has edited the TEI file. [2.3.10. ] + + + + + + + + + + provides information about an application which has acted upon the document. [2.3.10. ] + + + + + + + + + + + + + + + + + + supplies an identifier for the application, independent of its version number or display name. + + + + supplies a version number for the application, independent of its identifier or display name. + + + + + + + + (text-profile description) provides a detailed description of non-bibliographic aspects of a text, specifically the languages and sublanguages used, the situation in which it was produced, the participants and their setting. [2.4. 2.1.1. ] + + + + + + + + + + + + (note on hand) describes a particular style or hand distinguished within a manuscript. [10.7.2. ] + + + + + + + + + contains a summary or formal abstract prefixed to an existing source document by the encoder. [2.4.4. ] + + + + + + + + + + + + + + contains information about the creation of a text. [2.4.1. 2.4. ] + + + + + + + + + + + + + + + (language usage) describes the languages, sublanguages, registers, dialects, etc. represented within a text. [2.4.2. 2.4. 15.3.2. ] + + + + + + + + + + + characterizes a single language or sublanguage used within a text. [2.4.2. ] + + + + (identifier) Supplies a language code constructed as defined in BCP 47 which is used to identify the language documented by this element, and which is referenced by the global xml:lang attribute. + + + + + specifies the approximate percentage (by volume) of the text which uses this language. + + 100 + + + + + + + + + (text classification) groups information which describes the nature or topic of a text in terms of a standard classification scheme, thesaurus, etc. [2.4.3. ] + + + + + + + + + + + + + + + contains a list of keywords or phrases identifying the topic or nature of a text. [2.4.3. ] + + + + + + + + + + identifies the controlled vocabulary within which the set of keywords concerned is defined identifies the classification scheme within which the set of categories concerned is defined, for example by a taxonomy element, or by some other resource. + + + + + + + + + (classification code) contains the classification code used for this text in some standard classification system. [2.4.3. ] + + + + identifies the classification system in use, as defined by for example by a taxonomy element, or some other resource.. + + + + + + + + (category reference) specifies one or more defined categories within some taxonomy or text typology. [2.4.3. ] + + + + + + identifies the classification scheme within which the set of categories concerned is defined, for example by a taxonomy element, or by some other resource. + + + + + + + + + (calendar description) contains a description of the calendar system used in any dating expression found in the text. [2.4. 2.4.5. ] + + + + + + + + + + describes a calendar or dating system used in a dating formula in the text. [2.4.5. ] + + + + + + + + + + + (revision description) summarizes the revision history for a file. [2.5. 2.1.1. ] + + + + + + + + + + + + + + + documents a change or set of changes made during the production of a source document, or during the revision of an electronic file. [2.5. 2.4.1. 11.7. ] + + + + + + + + + points to one or more elements that belong to this change. + + + + + + + + + + + + + describes a particular font or other significant typographic feature distinguished within the description of a printed resource. [10.7.2. ] + + + + + + + + + describes a particular script distinguished within the description of a manuscript or similar resource. [10.7.2. ] + + + + + + + + + groups a number of change descriptions associated with either the creation of a source text or the revision of an encoded text. [2.5. 11.7. ] + + + + + + + + + + + indicates whether the ordering of its child change elements is to be considered significant or not + + + + + + + + + + + + + + + + + + + + (corresponds) points to elements that correspond to the current element in some way. + + + + + + + + + + + + (synchronous) points to elements that are synchronous with the current element. + + + + + + + + + + + + points to an element that is the same as the current element. + + + + + + + + points to an element of which the current element is a copy. + + + + + + + + points to the next element of a virtual aggregate of which the current element is part. + + + + + + + + (previous) points to the previous element of a virtual aggregate of which the current element is part. + + + + + + + + points to elements that are in exclusive alternation with the current element. + + + + + + + + + + + + selects one or more alternants; if one alternant is selected, the ambiguity or uncertainty is marked as resolved. If more than one alternant is selected, the degree of ambiguity or uncertainty is marked as reduced by the number of alternants not selected. + + + + + + + + + + + defines an association or hypertextual link among elements or passages, of some type not more precisely specifiable by other elements. [16.1. ] + + + + You must supply at least two values for @target or on + + + + + + + + + + + + (link group) defines a collection of associations or hypertextual links. [16.1. ] + + + + + + + + + + + + + + (anonymous block) contains any arbitrary component-level unit of text, acting as an anonymous container for phrase or inter level elements analogous to, but without the semantic baggage of, a paragraph. [16.3. ] + + + + + + + + + + + (anchor point) attaches an identifier to a point within a text, whether or not it corresponds with a textual element. [8.4.2. 16.4. ] + + + + + + + + + (arbitrary segment) represents any segmentation of text below the chunk level. [16.3. 6.2. 7.2.5. ] + + + + + + + + + + + indicates a point in time either relative to other elements in the same timeline tag, or absolutely. [16.5.2. ] + + + + + supplies an absolute value for the time. + + + + + + specifies the unit of time in which the interval value is expressed, if this is not inherited from the parent timeline. +Suggested values include: 1] d(days) ; 2] h(hours) ; 3] min(minutes) ; 4] s(seconds) ; 5] ms(milliseconds) + + d + (days) + h + (hours) + min + (minutes) + s + (seconds) + ms + (milliseconds) + + + + + + + specifies a time interval either as a number or as one of the keywords defined by the datatype data.interval + + + + + + identifies the reference point for determining the time of the current when element, which is obtained by adding the interval to the time of the reference point. + + + + + + + + + provides a set of ordered points in time which can be linked to elements of a spoken text to create a temporal alignment of that text. [16.5.2. ] + + + + + + + designates the origin of the timeline, i.e. the time at which it begins. + + + + + + specifies the unit of time corresponding to the interval value of the timeline or of its constituent points in time. +Suggested values include: 1] d(days) ; 2] h(hours) ; 3] min(minutes) ; 4] s(seconds) ; 5] ms(milliseconds) + + d + (days) + h + (hours) + min + (minutes) + s + (seconds) + ms + (milliseconds) + + + + + + + specifies a time interval either as a positive integral value or using one of a set of predefined codes. + + + + + + + + + identifies a possibly fragmented segment of text, by pointing at the possibly discontiguous elements which compose it. [16.7. ] + + + + + + + + + +You must supply at least two values for @target on + + + + + + + + + specifies the name of an element which this aggregation may be understood to represent. + + + + + + indicates whether the targets to be joined include the entire element indicated (the entire subtree including its root), or just the children of the target (the branches of the subtree). + + root + the rooted subtrees indicated by the target attribute are joined, each subtree become a child of the virtual element created by the join + branches + the children of the subtrees indicated by the target attribute become the children of the virtual element (i.e. the roots of the subtrees are discarded) + + + + + + + + + (join group) groups a collection of join elements and possibly pointers. [16.7. ] + + + + + + + + + + + + + + + + supplies the default value for the result on each join included within the group. + + + + + + + + + (alternation) identifies an alternation or a set of choices among elements or passages. [16.8. ] + + + + + + + + specifies the destination of the reference by supplying one or more URI References + + + + + + + + + + + + states whether the alternations gathered in this collection are exclusive or inclusive. + + excl + (exclusive) indicates that the alternation is exclusive, i.e. that at most one of the alternatives occurs. + incl + (inclusive) indicates that the alternation is not exclusive, i.e. that one or more of the alternatives occur. + + + + + + If mode is , each weight states the probability that the corresponding alternative occurs. If mode is incl each weight states the probability that the corresponding alternative occurs given that at least one of the other alternatives occurs. + + + + + + + + + + + + + + + (alternation group) groups a collection of alt elements and possibly pointers. [16.8. ] + + + + + + + + + + + states whether the alternations gathered in this collection are exclusive or inclusive. + + excl + (exclusive) indicates that the alternation is exclusive, i.e. that at most one of the alternatives occurs. + incl + (inclusive) indicates that the alternation is not exclusive, i.e. that one or more of the alternatives occur. + + + + + + + + + (TEI document) contains a single TEI-conformant document, comprising a TEI header and a text, either in isolation or as part of a teiCorpus element. [4. 15.1. ] + + + + + + + + + + + + + + + + + + + + + specifies the major version number of the TEI Guidelines against which this document is valid. + + + + + + + + + contains a single text of any kind, whether unitary or composite, for example a poem or drama, a collection of essays, a novel, a dictionary, or a corpus sample. [4. 15.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (text body) contains the whole body of a single unitary text, excluding any front or back matter. [4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains the body of a composite text, grouping together a sequence of distinct texts (or groups of such texts) which are regarded as a unit for some purpose, for example the collected works of an author, a sequence of prose essays, etc. [4. 4.3.1. 15.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains a single text of any kind, whether unitary or composite, which interrupts the text containing it at any point and after which the surrounding text resumes. [4.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (text division) contains a subdivision of the front, body, or back of a text. [4.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-1 text division) contains a first-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-2 text division) contains a second-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-3 text division) contains a third-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-4 text division) contains a fourth-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-5 text division) contains a fifth-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-6 text division) contains a sixth-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-7 text division) contains the smallest possible subdivision of the front, body or back of a text, larger than a paragraph. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains a closing title or footer appearing at the end of a division of a text. [4.2.4. 4.2. ] + + + + + + + + + + + + + + + + + + + contains the primary statement of responsibility given for a work on its title page or at the head or end of the work. [4.2.2. 4.5. ] + + + + + + + + + + + + + + + + contains a brief description of the place, date, time, etc. of production of a letter, newspaper story, or other work, prefixed or suffixed to it as a kind of heading or trailer. [4.2.2. ] + + + + + + + + + + + + + + + + contains a formal list or prose description of the topics addressed by a subdivision of a text. [4.2. 4.6. ] + + + + + + + + + + + + + + + + + + + + + + + contains a quotation, anonymous or attributed, appearing at the start or end of a section or on a title page. [4.2.3. 4.2. 4.6. ] + + + + + + + + + + + + + groups together dateline, byline, salutation, and similar phrases appearing as a preliminary group at the start of a division, especially of a letter. [4.2. ] + + + + + + + + + + + + + + + + + + + + + groups together salutations, datelines, and similar phrases appearing as a final group at the end of a division, especially of a letter. [4.2.2. 4.2. ] + + + + + + + + + + + + + + + + + + (salutation) contains a salutation or greeting prefixed to a foreword, dedicatory epistle, or other division of a text, or the salutation in the closing of a letter, preface, etc. [4.2.2. ] + + + + + + + + (signature) contains the closing salutation, etc., appended to a foreword, dedicatory epistle, or other division of a text. [4.2.2. ] + + + + + + + + contains a postscript, e.g. to a letter. [4.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (title page) contains the title page of a text, appearing within the front or back matter. [4.6. ] + + + + + + + + + + + + + + + + + + classifies the title page according to any convenient typology. + + + + + + + + + (document title) contains the title of a document, including all its constituents, as given on a title page. [4.6. ] + + + + + + + + + + + + + + + + + + + contains a subsection or division of the title of a work, as indicated on a title page. [4.6. ] + + + + + specifies the role of this subdivision of the title. +Suggested values include: 1] main; 2] sub(subordinate) ; 3] alt(alternate) ; 4] short; 5] desc(descriptive) + + main + main title of the work + sub + (subordinate) subtitle of the work + alt + (alternate) alternative title of the work + short + abbreviated form of title + desc + (descriptive) descriptive paraphrase of the work + + + + + + + + + + (document author) contains the name of the author of the document, as given on the title page (often but not always contained in a byline). [4.6. ] + + + + + + + + + contains a formal statement authorizing the publication of a work, sometimes required to appear on a title page or its verso. [4.6. ] + + + + + + + + (document edition) contains an edition statement as presented on a title page of a document. [4.6. ] + + + + + + + + (document imprint) contains the imprint statement (place and date of publication, publisher name), as given (usually) at the foot of a title page. [4.6. ] + + + + + + + + + + + + + + + + + + (document date) contains the date of a document, as given on a title page or in a dateline. [4.6. ] + + + + + gives the value of the date in standard form, i.e. YYYY-MM-DD. + + + + + + + + + (front matter) contains any prefatory matter (headers, title page, prefaces, dedications, etc.) found at the start of a document, before the main body. [4.6. 4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (back matter) contains any appendixes, etc. following the main part of a text. [4.7. 4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + supplies the value of a date or time in some standard form. + + + + + + + + + + + + specifies the earliest possible date for the event in some custom standard form. + + + + + + + + + + + + specifies the latest possible date for the event in some custom standard form. + + + + + + + + + + + + indicates the starting point of the period in some standard form. + + + + + + + + + + + + indicates the ending point of the period in some standard form. + + + + + + + + + + + + supplies a pointer to some location defining a named point in time with reference to which the datable item is understood to have occurred + + + + + + + + supplies a pointer to a calendar element or other means of interpreting the values of the custom dating attributes. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + supplies the value of a date or time in a standard form. + + + + + + + + specifies the earliest possible date for the event in standard form, e.g. yyyy-mm-dd. + + + + + + + + specifies the latest possible date for the event in standard form, e.g. yyyy-mm-dd. + + + + + + + + indicates the starting point of the period in standard form. + + + + + + + + indicates the ending point of the period in standard form. + + + + + + + (organization name) contains an organizational name. [13.2.2. ] + + + + + + + + + + + + (personal name) contains a proper noun or proper-noun phrase referring to a person, possibly including one or more of the person's forenames, surnames, honorifics, added names, etc. [13.2.1. ] + + + + + + + + + + + + contains a family (inherited) name, as opposed to a given, baptismal, or nick name. [13.2.1. ] + + + + + + + + + + contains a forename, given or baptismal name. [13.2.1. ] + + + + + + + + + + (generational name component) contains a name component used to distinguish otherwise similar names on the basis of the relative ages or generations of the persons named. [13.2.1. ] + + + + + + + + + + (name link) contains a connecting phrase or link used within a name but not regarded as part of it, such as van der or of. [13.2.1. ] + + + + + + + + + (additional name) contains an additional name component, such as a nickname, epithet, or alias, or any other descriptive phrase used within a personal name. [13.2.1. ] + + + + + + + + + + contains a name component which indicates that the referent has a particular role or position in society, such as an official title or rank. [13.2.1. ] + + + + + + + + + + contains an absolute or relative place name. [13.2.3. ] + + + + + + + + + + + + contains the name of a geo-political unit consisting of two or more nation states or countries. [13.2.3. ] + + + + + + + + + + + contains the name of a geo-political unit, such as a nation, country, colony, or commonwealth, larger than or administratively superior to a region and smaller than a bloc. [13.2.3. ] + + + + + + + + + + + contains the name of an administrative unit such as a state, province, or county, larger than a settlement, but smaller than a country. [13.2.3. ] + + + + + + + + + + + contains the name of any kind of subdivision of a settlement, such as a parish, ward, or other administrative or geographic unit. [13.2.3. ] + + + + + + + + + + + contains the name of a settlement such as a city, town, or village identified as a single geo-political or administrative unit. [13.2.3. ] + + + + + + + + + + + marks that part of a relative temporal or spatial expression which indicates the direction of the offset between the two place names, dates, or times involved in the expression. [13.2.3. ] + + + + + + + + + + + + (geographical name) identifies a name associated with some geographical feature such as Windrush Valley or Mount Sinai. [13.2.3. ] + + + + + + + + + + + + (geographical feature name) contains a common noun identifying some geographical feature contained within a geographic name, such as valley, mount, etc. [13.2.3. ] + + + + + + + + + + + + contains an informal description of a person's present or past affiliation with some organization, for example an employer or sponsor. [15.2.2. ] + + + + + + + + + + + specifies the age of a person. [13.3.2.1. ] + + + + + + + supplies a numeric code representing the age or age group + + + + + + + + + contains information about a person's birth, such as its date and place. [15.2.2. ] + + + + + + + + + + + contains information about the physical climate of a place. [13.3.4.3. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains information about a person's death, such as its date and place. [15.2.2. ] + + + + + + + + + + + contains a description of the educational experience of a person. [15.2.2. ] + + + + + + + + + + + contains data relating to any kind of significant event associated with a person, place, or organization. [13.3.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + indicates the location of an event by pointing to a place element + + + + + + + + + specifies the faith, religion, or belief set of a person. [13.3.2.1. ] + + + + + + + + + + + contains information about a person's period of activity. [13.3.2.1. ] + + + + + + + + + + (geographical coordinates) contains any expression of a set of geographic coordinates, representing a point, line, or area on the surface of the earth in some notation. [13.3.4.1. ] + + + + + + + + + (language knowledge) summarizes the state of a person's linguistic knowledge, either as prose or by a list of langKnown elements. [13.3.2.1. ] + + + + + + + + + + + + supplies one or more valid language tags for the languages specified + + + + + + + + + + + + + (language known) summarizes the state of a person's linguistic competence, i.e., knowledge of a single language. [15.2.2. ] + + + + + + supplies a valid language tag for the language concerned. + + + + + a code indicating the person's level of knowledge for this language + + + + + + + + + (list of organizations) contains a list of elements, each of which provides information about an identifiable organization. [13.2.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + (list of events) contains a list of descriptions, each of which provides information about an identifiable event. [13.3.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + (list of persons) contains a list of descriptions, each of which provides information about an identifiable person or a group of people, for example the participants in a language interaction, or the people referred to in a historical source. [13.3.2. 15.2. 2.4. 15.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + (list of places) contains a list of places, optionally followed by a list of relationships (other than containment) defined amongst them. [2.2.7. 13.3.4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + defines the location of a place as a set of geographical coordinates, in terms of other named geo-political entities, or as an address. [13.3.4. ] + + + + + + + + + + + + + + + + + + + + + contains an informal description of a person's present or past nationality or citizenship. [15.2.2. ] + + + + + + + + + + + contains an informal description of a person's trade, profession or occupation. [15.2.2. ] + + + + + + + + indicates the classification system or taxonomy in use, for example by supplying the identifier of a taxonomy element, or pointing to some other resource. + + + + + + identifies an occupation code defined within the classification system or taxonomy defined by the scheme attribute. + + + + + + + + + (organization) provides information about an identifiable organization such as a business, a tribe, or any other grouping of people. [13.2.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specifies a primary role or classification for the organization. + + + + + + + + + + + + + provides information about relationships identified amongst people, places, and organizations, either informally as prose or as formally expressed relation links. [13.3.2.3. ] + + + + + + + + + + + + + + + + + + + + + + + provides information about an identifiable individual, for example a participant in a language interaction, or a person referred to in a historical source. [13.3.2. 15.2.2. ] + + + + + + + + + + + + + + + + + specifies a primary role or classification for the person. + + + + + + + + + + specifies the sex of the person. + + + + + + + + + + specifies an age group for the person. + + + + + + + + + (personal group) describes a group of individuals treated as a single person for analytic purposes. [15.2.2. ] + + + + + + + + + + + + + + + + specifies the role of this group of participants in the interaction. + + + + + + specifies the sex of the participant group. + + + + + + + + + + specifies the age group of the participants. + + + + + + describes informally the size or approximate size of the group for example by means of a number and an indication of accuracy e.g. approx 200. + + + + + + + + + + + + + contains data about a geographic location [13.3.4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains information about the population of a place. [13.3.4.3. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (relationship) describes any kind of relationship or linkage amongst a specified group of places, events, persons, objects or other items. [13.3.2.3. ] + + + + + + One of the attributes 'name', 'ref' or 'key' must be supplied + + + + + Only one of the attributes +@active and @mutual may be supplied + + + + + the attribute 'passive' + may be supplied only if the attribute 'active' is + supplied + + + + + + + + + + + supplies a name for the kind of relationship of which this is an instance. + + + + + + + identifies the active participants in a non-mutual relationship, or all the participants in a mutual one. + + + + + + + + + + supplies a list of participants amongst all of whom the relationship holds equally. + + + + + + + + + + + identifies the passive participants in a non-mutual relationship. + + + + + + + + + + + + + describes a person's present or past places of residence. [15.2.2. ] + + + + + + + + + + + specifies the sex of a person. [13.3.2.1. ] + + + + + + + supplies a coded value for sex + + + + + + + + + + + + + (socio-economic status) contains an informal description of a person's perceived social or economic status. [15.2.2. ] + + + + + + + + identifies the classification system or taxonomy in use, for example by pointing to a locally-defined taxonomy element or by supplying a URI for an externally-defined system. + + + + + + identifies a status code defined within the classification system or taxonomy defined by the scheme attribute. + + + + + + + + + contains a description of some status or quality attributed to a person, place, or organization often at some specific time or for a specific date range. [13.3.1. 13.3.2.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains information about the physical terrain of a place. [13.3.4.3. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains a description of some status or quality attributed to a person, place, or organization typically, but not necessarily, independent of the volition or action of the holder and usually not at some specific time or for a specific date range. [13.3.1. 13.3.2.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (canonical name) contains the definition for a canonical name or name component of any kind. [13.3.5. ] + + + + + + + + + + + + + + + + + + + + + + + points to constituent nyms + + + + + + + + + + + + + (list of canonical names) contains a list of nyms, that is, standardized names for any thing. [13.3.5. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (facsimile) points to all or part of an image which corresponds with the content of the element. + + + + + + + + + + + + + + + points to one or more change elements documenting a state or revision campaign to which the element bearing this attribute and its children have been assigned by the encoder. + + + + + + + + + + + + + + + + + + + + indicates the element within a transcription of the text containing at least the start of the writing represented by this zone or surface. + + + + + + + + gives the x coordinate value for the upper left corner of a rectangular space. + + + + + + + + gives the y coordinate value for the upper left corner of a rectangular space. + + + + + + + + gives the x coordinate value for the lower right corner of a rectangular space. + + + + + + + + gives the y coordinate value for the lower right corner of a rectangular space. + + + + + + + + identifies a two dimensional area within the bounding box specified by the other attributes by means of a series of pairs of numbers, each of which gives the x,y coordinates of a point on a line enclosing the area. + + + + + + + + + + + + + + contains a representation of some written source in the form of a set of images rather than as transcribed or encoded text. [11.1. ] + + + + + + + + + + + + + + + + + + + + + + + contains a transcription or other representation of a single source document potentially forming part of a dossier génétique or collection of sources. [11.1. 11.2.2. ] + + + + + + + + + + + + + + + + + + defines a written surface as a two-dimensional coordinate space, optionally grouping one or more graphic representations of that space, zones of interest within that space, and transcriptions of the writing within them. [11.1. 11.2.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + describes the method by which this surface is or was connected to the main surface +Sample values include: 1] glued; 2] pinned; 3] sewn + + + + + + indicates whether the surface is attached and folded in such a way as to provide two writing surfaces + + + + + + + + + defines any kind of useful grouping of written surfaces, for example the recto and verso of a single leaf, which the encoder wishes to treat as a single unit. [11.1. ] + + + + + + + + + + + + + + + + defines any two-dimensional area within a surface element. [11.1. 11.2.2. ] + + + + + + + + + + + + + + + indicates the amount by which this zone has been rotated clockwise, with respect to the normal orientation of the parent surface element as implied by the dimensions given in the msDesc element or by the coordinates of the surface itself. The orientation is expressed in arc degrees. + + + + + + + + + (added span of text) marks the beginning of a longer sequence of text added by an author, scribe, annotator or corrector (see also add). [11.3.1.4. ] + + + + The @spanTo attribute of is required. + + + + + L'attribut spanTo est requis. + + + + + + + + + + + + + contains an area of damage to the text witness. [11.3.3.1. ] + + + + + + + + + + (damaged span of text) marks the beginning of a longer sequence of text which is damaged in some way but still legible. [11.3.3.1. ] + + + + +The @spanTo attribute of is required. + + + + + L'attribut spanTo est requis. + + + + + + + + + + + + (deleted span of text) marks the beginning of a longer sequence of text deleted, marked as deleted, or otherwise signaled as superfluous or spurious by an author, scribe, annotator, or corrector. [11.3.1.4. ] + + + + The @spanTo attribute of is required. + + + + + L'attribut spanTo est requis. + + + + + + + + + + + + (editorial expansion) contains a sequence of letters added by an editor or transcriber when expanding an abbreviation. [11.3.1.2. ] + + + + + + + + + (forme work) contains a running head (e.g. a header, footer), catchword, or similar material appearing on the current page. [11.6. ] + + + + + + classifies the material encoded according to some useful typology. +Sample values include: 1] header; 2] footer; 3] pageNum(page number) ; 4] lineNum(line number) ; 5] sig(signature) ; 6] catch(catchword) + + + + + + + + + contains one or more handNote elements documenting the different hands identified within the source texts. [11.3.2.1. ] + + + + + + + + + + marks the beginning of a sequence of text written in a new hand, or the beginning of a scribal stint. [11.3.2.1. ] + + + + + + + indicates a handNote element describing the hand concerned. + + + + + + + + + (abbreviation marker) contains a sequence of letters or signs present in an abbreviation which are omitted or replaced in the expanded form of the abbreviation. [11.3.1.2. ] + + + + + + + + + + + + + + + + indicates restoration of text to an earlier state by cancellation of an editorial or authorial marking or instruction. [11.3.1.6. ] + + + + + + + + + + indicates the location of a significant space in the copy text. [11.5.1. ] + + + + + + + + + + + + + (responsible party) (responsible party) indicates the individual responsible for identifying and measuring the space + + + + + + + + + + (dimension) indicates whether the space is horizontal or vertical. + + horizontal + the space is horizontal. + vertical + the space is vertical. + + + + + + + + + (substitution) groups one or more deletions with one or more additions when the combination is to be regarded as a single intervention in the text. [11.3.1.5. ] + + + + + + + + + + + must have at least one child add and at least one child del + + + + + + + + + + (substitution join) identifies a series of possibly fragmented additions, deletions or other revisions on a manuscript that combine to make up a single intervention in the text [11.3.1.5. ] + + + + + + + + + + + + + + + signifies text supplied by the transcriber or editor for any reason, typically because the original cannot be read because of physical damage or loss to the original. [11.3.3.1. ] + + + + + + one or more words indicating why the text has had to be supplied, e.g. overbinding, faded-ink, lost-folio, omitted-in-original. + + + + + + + + + + + + + marks text present in the source which the editor believes to be superfluous or redundant. [11.3.3.1. ] + + + + + + one or more words indicating why this text is believed to be superfluous, e.g. repeated, interpolated etc. + + + + + + + + + + + + + contains the transcription of a topographic line in the source document [11.2.2. ] + + + + + + + + + + + + + + + + + supplies a list of transpositions, each of which is indicated at some point in a document typically by means of metamarks. [11.3.4.5. ] + + + + + + + + + + contains or describes any kind of graphic or written signal within a document the function of which is to determine how it should be read rather than forming part of the actual content of the document. [11.3.4.2. ] + + + + + + + describes the function (for example status, insertion, deletion, transposition) of the mark. + + + + + + identifies one or more elements to which the function indicated by the metamark applies. + + + + + + + + + + + + + represents any kind of modification identified within a single document. [11.3.4.1. ] + + + + + + + + + + + indicates one or more cancelled interventions in a document which have subsequently been marked as reaffirmed or repeated. [11.3.4.4. ] + + + + + + + points to one or more elements representing the interventions which are being reasserted. + + + + + + + + + + + + + contains a sequence of writing which has been retraced, for example by over-inking, to clarify or fix it. [11.3.4.3. ] + + + + + + + + + + describes a single textual transposition as an ordered list of at least two pointers specifying the order in which the elements indicated should be re-combined. [11.3.4.5. ] + + + + + + + + + + + + + indicates one or more marked-up interventions in a document which have subsequently been marked for cancellation. [11.3.4.4. ] + + + + + + + points to one or more elements representing the interventions which are to be reverted or undone. + + + + + + + + + + + + + + + + + indicates whether the passage being quoted is defective, i.e. incomplete through loss or damage. + + + + + + + (manuscript description) contains a description of a single identifiable manuscript or other text-bearing object. [10.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + describes the system used to ensure correct ordering of the quires making up a codex or incunable, typically by means of annotations at the foot of the page. [10.3.7. ] + + + + + + + + contains a dimensional specification. [10.3.4. ] + + + + + + + + + + + +The element may appear once only + + + + + + +The element may appear once only + + + + + + +The element may appear once only + + + + + + + + indicates which aspect of the object is being measured. +Sample values include: 1] leaves; 2] ruled; 3] pricked; 4] written; 5] miniatures; 6] binding; 7] box + + + + + + + + + contains any single measurement forming part of a dimensional specification of some sort. [10.3.4. ] + + + + + + + + + + contains a measurement measured along the axis at right angles to the bottom of the written surface, i.e. parallel to the spine for a codex or book. [10.3.4. ] + + + + + + + + + contains a measurement measured across the spine of a book or codex, or (for other text-bearing objects) perpendicular to the measurement given by the width element. [10.3.4. ] + + + + + + + + + contains a measurement measured along the axis parallel to the bottom of the written surface, i.e. perpendicular to the spine of a book or codex. [10.3.4. ] + + + + + + + + + contains a heraldic formula or phrase, typically found as part of a blazon, coat of arms, etc. [10.3.8. ] + + + + + + + + defines a location within a manuscript or manuscript part, usually as a (possibly discontinuous) sequence of folio references. [10.3.5. ] + + + + + + identifies the foliation scheme in terms of which the location is being specified by pointing to some foliation element defining it, or to some other equivalent resource. + + + + + + specifies the starting point of the location in a normalized form, typically a page number. + + + + + + specifies the end-point of the location in a normalized form, typically as a page number. + + + + + + + + + groups a number of locations which together form a distinct but discontinuous item within a manuscript or manuscript part, according to a specific foliation. [10.3.5. ] + + + + + + + identifies the foliation scheme in terms of which all the locations contained by the group are specified by pointing to some foliation element defining it, or to some other equivalent resource. + + + + + + + + + contains a word or phrase describing the material of which the object being described is composed. [10.3.2. ] + + + + + + + + + contains a word or phrase describing the type of object being referred to. [10.3.2. ] + + + + + + + + + (origin date) contains any form of date, used to identify the date of origin for a manuscript or manuscript part. [10.3.1. ] + + + + + + + + + + + + + + + + + + (origin place) contains any form of place name, used to identify the place of origin for a manuscript or manuscript part. [10.3.1. ] + + + + + + + + + + + + (second folio) marks the word or words taken from a fixed point in a codex (typically the beginning of the second leaf) in order to provide a unique identifier for it. [10.3.7. ] + + + + + + + + contains discussion of the leaf or quire signatures found within a codex. [10.3.7. ] + + + + + + + + contains a word or phrase describing a stamp or similar device. [10.3.3. ] + + + + + + + + + + contains a word or phrase describing a watermark or similar device. [10.3.3. ] + + + + + + + + (manuscript identifier) contains the information required to identify the manuscript being described. [10.4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + An msIdentifier must contain either a repository or location of some type, or a manuscript name + + + + + + + + + contains the name of an organization such as a university or library, with which a manuscript is identified, generally its holding institution. [10.4. ] + + + + + + + + + contains the name of a repository within which manuscripts are stored, possibly forming part of an institution. [10.4. ] + + + + + + + + + contains the name of a collection of manuscripts, not necessarily located within a single repository. [10.4. ] + + + + + + + + + + (alternative identifier) contains an alternative or former structured identifier used for a manuscript, such as a former catalogue number. [10.4. ] + + + + + + + + + + + + + + + + + + + + + + + + (alternative name) contains any form of unstructured alternative name used for a manuscript, such as an ocellus nominum, or nickname. [10.4. ] + + + + + + + + + contains the colophon of a manuscript item: that is, a statement providing information regarding the date, place, agency, or reason for production of the manuscript. [10.6.1. ] + + + + + + + + contains the explicit of a manuscript item, that is, the closing words of the text proper, exclusive of any rubric or colophon which might follow it. [10.6.1. ] + + + + + + + + + + contains information concerning the manuscript's filiation, i.e. its relationship to other surviving manuscripts of the same text, its protographs, antigraphs and apographs. [10.6.1. ] + + + + + + + + + contains the string of words that denotes the end of a text division, often with an assertion as to its author and title, usually set off from the text itself by red ink, by a different size or type of script, or by some other such visual device. [10.6.1. ] + + + + + + + + + contains the incipit of a manuscript item, that is the opening words of the text proper, exclusive of any rubric which might precede it, of sufficient length to identify the work uniquely; such incipits were, in former times, frequently used a means of reference to a work, in place of a title. [10.6.1. ] + + + + + + + + + + (manuscript contents) describes the intellectual content of a manuscript or manuscript part, either as a series of paragraphs or as a series of structured manuscript items. [10.6. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + identifies the text types or classifications applicable to this object by pointing to other elements or resources defining the classification concerned. + + + + + + + + + + + + + (manuscript item) describes an individual work or item within the intellectual content of a manuscript or manuscript part. [10.6.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + identifies the text types or classifications applicable to this item by pointing to other elements or resources defining the classification concerned. + + + + + + + + + + + + + (structured manuscript item) contains a structured description for an individual work or item within the intellectual content of a manuscript or manuscript part. [10.6.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + identifies the text types or classifications applicable to this item by pointing to other elements or resources defining the classification concerned. + + + + + + + + + + + + + contains the text of any rubric or heading attached to a particular manuscript item, that is, a string of words through which a manuscript signals the beginning of a text division, often with an assertion as to its author and title, which is in some way set off from the text itself, usually in red ink, or by use of different size or type of script, or some other such visual device. [10.6.1. ] + + + + + + + + + contains an overview of the available information concerning some aspect of an item (for example, its intellectual content, history, layout, typography etc.) as a complement or alternative to the more detailed information carried by more specific elements. [10.6. ] + + + + + + + + (physical description) contains a full physical description of a manuscript or manuscript part, optionally subdivided using more specialized elements from the model.physDescPart class. [10.7. ] + + + + + + + + + + + + + + + contains a description of the physical components making up the object which is being described. [10.7.1. ] + + + + + + + + + + + + + + + + + a short project-specific name identifying the physical form of the carrier, for example as a codex, roll, fragment, partial leaf, cutting etc. + + + + + + + + + (support description) groups elements describing the physical support for the written part of a manuscript. [10.7.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + a short project-defined name for the material composing the majority of the support +Suggested values include: 1] paper; 2] parch(parchment) ; 3] mixed + + paper + + parch + (parchment) + mixed + + + + + + + + + + + contains a description of the materials etc. which make up the physical support for the written part of a manuscript. [10.7.1. ] + + + + + + + + contains a description of how the leaves or bifolia are physically arranged. [10.7.1. ] + + + + + + + + describes the numbering system or systems used to count the leaves or pages in a codex. [10.7.1.4. ] + + + + + + + + contains a description of the physical condition of the manuscript. [10.7.1.5. ] + + + + + + + + (layout description) collects the set of layout descriptions applicable to a manuscript. [10.7.2. ] + + + + + + + + + + + + + + + + + + + + describes how text is laid out on the page, including information about any ruling, pricking, or other evidence of page-preparation techniques. [10.7.2. ] + + + + + specifies the number of columns per page + + + + + + + + + + + specifies the number of ruled lines per column + + + + + + + + + + + specifies the number of written lines per column + + + + + + + + + + + + + + (description of hands) contains a description of all the different kinds of writing used in a manuscript. [10.7.2. ] + + + + + + + + + + + + + + + + + specifies the number of distinct hands identified within the manuscript + + + + + + + + + contains a description of the typefaces or other aspects of the printing of an incunable or other printed source. [10.7.2.1. ] + + + + + + + + + + + + + + + + + + + + contains a description of the scripts used in a manuscript or similar source. [10.7.2.1. ] + + + + + + + + + + + + + + + + + + + + contains description of type of musical notation. [10.7.2. ] + + + + + + + + (decoration description) contains a description of the decoration of a manuscript, either as a sequence of paragraphs, or as a sequence of topically organized decoNote elements. [10.7.3. ] + + + + + + + + + + + + + + + + + + + + (note on decoration) contains a note describing either a decorative component of a manuscript, or a fairly homogenous class of such components. [10.7.3. ] + + + + + + + + + contains a description of any significant additions found within a manuscript, such as marginalia or other annotations. [10.7.2. ] + + + + + + + + (binding description) describes the present and former bindings of a manuscript, either as a series of paragraphs or as a series of distinct binding elements, one for each binding of the manuscript. [10.7.3.1. ] + + + + + + + + + + + + + + + + + + + contains a description of one binding, i.e. type of covering, boards, etc. applied to a manuscript. [10.7.3.1. ] + + + + + + + + + + + + specifies whether or not the binding is contemporary with the majority of its contents + + + + + + + + + (seal description) describes the seals or other external items attached to a manuscript, either as a series of paragraphs or as a series of distinct seal elements, possibly with additional decoNotes. [10.7.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + contains a description of one seal or similar attachment applied to a manuscript. [10.7.3.2. ] + + + + + + + + + + + + specifies whether or not the seal is contemporary with the item to which it is affixed + + + + + + + + + (accompanying material) contains details of any significant additional material which may be closely associated with the manuscript being described, such as non-contemporaneous documents or fragments bound in with the manuscript at some earlier historical period. [10.7.3.3. ] + + + + + + + + + groups elements describing the full history of a manuscript or manuscript part. [10.8. ] + + + + + + + + + + + + + + + + + + + + + + + + + + contains any descriptive or other information concerning the origin of a manuscript or manuscript part. [10.8. ] + + + + + + + + + + contains any descriptive or other information concerning a single identifiable episode during the history of a manuscript or manuscript part, after its creation but before its acquisition. [10.8. ] + + + + + + + + + + + contains any descriptive or other information concerning the process by which a manuscript or manuscript part entered the holding institution. [10.8. ] + + + + + + + + + groups additional information, combining bibliographic information about a manuscript, or surrogate copies of it with curatorial or administrative information. [10.9. ] + + + + + + + + + + + + + + + + + + (administrative information) contains information about the present custody and availability of the manuscript, and also about the record description itself. [10.9.1. ] + + + + + + + + + + + + + + + + + + + + + (recorded history) provides information about the source and revision status of the parent manuscript description itself. [10.9.1. ] + + + + + + + + + + + + + + + + + + describes the original source for the information contained with a manuscript description. [10.9.1.1. ] + + + + + + + + (custodial history) contains a description of a manuscript's custodial history, either as running prose or as a series of dated custodial events. [10.9.1.2. ] + + + + + + + + + + + + + + + (custodial event) describes a single event during the custodial history of a manuscript. [10.9.1.2. ] + + + + + + + + + + contains information about any representations of the manuscript being described which may exist in the holding institution or elsewhere. [10.9. ] + + + + + + + + (manuscript part) contains information about an originally distinct manuscript or part of a manuscript, now forming part of a composite manuscript. [10.10. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARNING: use of deprecated method — the use of the altIdentifier element as a direct child of the msPart element will be removed from the TEI on 2016-09-09 + + + + + + + + + (character or glyph) represents a glyph, or a non-standard character. [5. ] + + + + + + points to a description of the character or glyph intended. + + + + + + + + + (character) provides descriptive information about a character. [5.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (character name) contains the name of a character, expressed following Unicode conventions. [5.2. ] + + + + + + + + (character property) provides a name and value for some property of the parent character or glyph. [5.2. ] + + + + + + + + + + + + + + + (character declarations) provides information about nonstandard characters and glyphs. [5.2. ] + + + + + + + + + + + + + + + + + + (character glyph) provides descriptive information about a character glyph. [5.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (character glyph name) contains the name of a glyph, expressed following Unicode conventions for character names. [5.2. ] + + + + + + + + (locally-defined property name) contains a locally defined name for some property. [5.2.1. ] + + + + + + + + (character mapping) contains one or more characters which are related to the parent character or glyph in some respect, as specified by the type attribute. [5.2. ] + + + + + + + + + (unicode property name) contains the name of a registered Unicode normative or informative property. [5.2.1. ] + + + + + specifies the version number of the Unicode Standard in which this property name is defined. + + + + + + + + + contains a single value for some property, attribute, or other analysis. [5.2.1. ] + + + + + + + + + + + + (analysis) indicates one or more elements containing interpretations of the element on which the ana attribute appears. + + + + + + + + + + + (s-unit) contains a sentence-like division of a text. [17.1. 8.4.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + You may not nest one s element within + another: use seg instead + + + + + + + + + + + (clause) represents a grammatical clause. [17.1. ] + + + + + + + + + + (phrase) represents a grammatical phrase. [17.1. ] + + + + + + + + + + (word) represents a grammatical (not necessarily orthographic) word. [17.1. ] + + + + + + + + + + + + + + + + + + + + + provides a lemma for the word, such as an uninflected dictionary entry form. + + + + + + provides a pointer to a definition of the lemma for the word, for example in an online lexicon. + + + + + + + + + (morpheme) represents a grammatical morpheme. [17.1. ] + + + + + + + + + + + + + + + + supplies the morpheme's base form. + + + + + + + + + (character) represents a character. [17.1. ] + + + + + + + + + + (punctuation character) contains a character or string of characters regarded as constituting a single punctuation mark. [17.1. ] + + + + + + + + + + + + + + indicates the extent to which this punctuation mark conventionally separates words or phrases + + strong + the punctuation mark is a word separator + weak + the punctuation mark is not a word separator + inter + the punctuation mark may or may not be a word separator + + + + + + provides a name for the kind of unit delimited by this punctuation mark. + + + + + + indicates whether this punctuation mark precedes or follows the unit it delimits. + + + + + + + + + associates an interpretative annotation directly with a span of text. [17.3. ] + + + + +Only one of the attributes @target and @from may be supplied on + + + + + + +Only one of the attributes @target and @to may be supplied on + + + + + + +If @to is supplied on , @from must be supplied as well + + + + + +The attributes @to and @from on may each contain only a single value + + + + + + + + gives the identifier of the node which is the starting point of the span of text being annotated; if not accompanied by a to attribute, gives the identifier of the node of the entire span of text being annotated. + + + + + + gives the identifier of the node which is the end-point of the span of text being annotated. + + + + + + + + + (span group) collects together span tags. [17.3. ] + + + + + + + + + + + (interpretation) summarizes a specific interpretative annotation which can be linked to a span of text. [17.3. ] + + + + + + + + + + + + + + + + (interpretation group) collects together a set of related interpretations which share responsibility or type. [17.3. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (witness or witnesses) contains a space-delimited list of one or more sigla indicating the witnesses to this reading beginning or ending at this point. + + + + + + + + + + + + + + + (witness or witnesses) contains a space-delimited list of one or more pointers indicating the witnesses which attest to a given reading. + + + + + + + + + + + + + + + + + + + classifies the reading according to some useful typology. +Sample values include: 1] substantive; 2] orthographic + + + + + + + + classifies the cause for the variant reading, according to any appropriate typology of possible origins. +Sample values include: 1] homeoteleuton; 2] homeoarchy; 3] paleographicConfusion; 4] haplography; 5] dittography; 6] falseEmendation + + + + + + + + (variant sequence) provides a number indicating the position of this reading in a sequence, when there is reason to presume a sequence to the variants. + + + + + + + + indicates the hand responsible for a particular reading in the witness. + + + + + + + (apparatus entry) contains one entry in a critical apparatus, with an optional lemma and usually one or more readings or notes on the relevant passage. [12.1.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + classifies the variation contained in this element according to some convenient typology. + + + + + + identifies the beginning of the lemma in the base text. + + + + + + identifies the endpoint of the lemma in the base text. + + + + + + (location) indicates the location of the variation, when the location-referenced method of apparatus markup is used. + + + + + + + + + + + + + (list of apparatus entries) contains a list of apparatus entries. [12.2. ] + + + + + + + + + + + + + + + + + + + + + (lemma) contains the lemma, or base text, of a textual variation. [12.1. ] + + + + + + + + + + + + + + + + + + + (reading) contains a single reading within a textual variation. [12.1. ] + + + + + + + + + + + + + + + + + + + (reading group) within a textual variation, groups two or more readings perceived to have a genetic relationship or other affinity. [12.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Only one <lem> element may appear within a <rdgGrp> + + + + + + + + + + (witness detail) gives further information about a particular witness, or witnesses, to a particular reading. [12.1. ] + + + + + + + (witnesses) indicates the sigil or sigla identifying the witness or witnesses to which the detail refers. + + + + + + + + + describes the type of information given about the witness. + + + + + + + + + contains a list of one or more sigla of witnesses attesting a given reading, in a textual variation. [12.1.4. ] + + + + + + + + + (witness list) lists definitions for all the witnesses referred to by a critical apparatus, optionally grouped hierarchically. [12.1. ] + + + + + + + + + + + + + + + + + + + contains either a description of a single witness referred to within the critical apparatus, or a list of witnesses which is to be referred to by a single sigil. [12.1. ] + + + + + + + + + (fragmented witness start) indicates the beginning, or resumption, of the text of a fragmentary witness. [12.1.5. ] + + + + + + + + + (fragmented witness end) indicates the end, or suspension, of the text of a fragmentary witness. [12.1.5. ] + + + + + + + + + indicates the beginning of a lacuna in the text of a mostly complete textual witness. [12.1.5. ] + + + + + + + + + indicates the end of a lacuna in a mostly complete textual witness. [12.1.5. ] + + + + + + + + + declares the method used to encode text-critical variants. [12.1.1. ] + + + + indicates which method is used to encode the apparatus of variants. + + location-referenced + apparatus uses line numbers or other canonical reference scheme referenced in a base text. + double-end-point + apparatus indicates the precise locations of the beginning and ending of each lemma relative to a base text. + parallel-segmentation + alternate readings of a passage are given in parallel in the text; no notion of a base text is necessary. + + + + indicates whether the apparatus appears within the running text or external to it. + + internal + apparatus appears within the running text. + external + apparatus appears outside the base text. + + + + + + The @location value "external" is inconsistent with the + parallel-segmentation method of apparatus markup. + + + + + + + + contains text displayed in tabular form, in rows and columns. [14.1.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + indicates the number of rows in the table. + + + + + + (columns) indicates the number of columns in each row of the table. + + + + + + + + + contains one row of a table. [14.1.1. ] + + + + + + + + + + + contains one cell of a table. [14.1.1. ] + + + + + + + + + contains a mathematical or other formula. [14.2. ] + + + + + + + + + + + names the notation used for the content of the element. + + + + + + + + + encodes the presence of music notation in a text [14.3. ] + + + + + + + + + + + + + + + + + groups elements representing or containing graphic information such as an illustration, formula, or figure. [14.4. ] + + + + + + + + + + + + + + + + + + + (description of figure) contains a brief prose description of the appearance or content of a graphic figure, for use when documenting an image without displaying it. [14.4. ] + + + + + + + + + + + + diff --git a/src/assets/data/schema/tei_cp.rng b/src/assets/data/schema/tei_cp.rng new file mode 100644 index 000000000..4fa7cd6ee --- /dev/null +++ b/src/assets/data/schema/tei_cp.rng @@ -0,0 +1,11181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + high + medium + low + unknown + + + + + 0 + 1 + + + + + + + (\-?[\d]+/\-?[\d]+) + + + + + + + + 0 + + regular + irregular + unknown + + + + + + + + + + + + + + + + + + + + + + + + unknown + inapplicable + + + + + + + + + + + + + + [\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm) + + + + + + + + (\-?[0-9]+\.?[0-9]*,\-?[0-9]+\.?[0-9]*) + + + + + + + + [\d]+(\.[\d]+){0,2} + + + + + [\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3} + + + + + + + + (\p{L}|\p{N}|\p{P}|\p{S})+ + + + + + + + + + + + + + + + + + + + + + + + + + + [0-9.,DHMPRSTWYZ/:+\-]+ + + + + + + + + + + indicates the person, or group of people, to whom the element content is ascribed. + + + + + + + + + + + + + + + + provides an externally-defined means of identifying the entity (or entities) being named, using a coded value of some kind. + + + + + + + + (reference) provides an explicit means of locating a full definition for the entity being named by means of one or more URIs. + + + + + + + + + + + + + + + + + + + gives a minimum estimated value for the approximate measurement. + + + + + + + + gives a maximum estimated value for the approximate measurement. + + + + + + + + where the measurement summarizes more than one observation or a range, supplies the minimum value observed. + + + + + + + + where the measurement summarizes more than one observation or a range, supplies the maximum value observed. + + + + + + + + specifies the degree of statistical confidence (between zero and one) that a value falls within the range specified by min and max, or the proportion of observed values that fall within that range. + + + + + + + + + + + + + + + + names the unit used for the measurement +Suggested values include: 1] cm(centimetres) ; 2] mm(millimetres) ; 3] in(inches) ; 4] lines; 5] chars(characters) + + cm + (centimetres) + mm + (millimetres) + in + (inches) + lines + lines of text + chars + (characters) characters of text + + + + + + + + + specifies the length in the units specified + + + + + + + + indicates the size of the object concerned using a project-specific vocabulary combining quantity and units in a single string of words. + + + + + + + + characterizes the precision of the values specified by the other attributes. + + + + + + + + where the measurement summarizes more than one observation, specifies the applicability of this measurement. +Sample values include: 1] all; 2] most; 3] range + + + + + + + + + + + + + + + in the case of damage (deliberate defacement, inking out, etc.) assignable to a distinct hand, signifies the hand responsible for the damage by pointing to one of the hand identifiers declared in the document header (see section ). + + + + + + + + categorizes the cause of the damage, if it can be identified. +Sample values include: 1] rubbing; 2] mildew; 3] smoke + + + + + + + + provides a coded representation of the degree of damage, either as a number between 0 (undamaged) and 1 (very extensively damaged), or as one of the codes high, medium, low, or unknown. The damage element with the degree attribute should only be used where the text may be read with some confidence; text supplied from other sources should be tagged as supplied. + + + + + + + + + + + assigns an arbitrary number to each stretch of damage regarded as forming part of the same physical phenomenon. + + + + + + + + + + + indicates whether or not the element bearing this attribute should be considered to mark the end of an orthographic token in the same way as whitespace. + + + + + + + + + + + (canonical reference) specifies the destination of the pointer by supplying a canonical reference expressed using the scheme defined in a refsDecl element in the TEI header + + + + + + + + + + + + + + + supplies the value of the date or time in a standard form, e.g. yyyy-mm-dd. + + + + + + + + specifies the earliest possible date for the event in standard form, e.g. yyyy-mm-dd. + + + + + + + + specifies the latest possible date for the event in standard form, e.g. yyyy-mm-dd. + + + + + + + + indicates the starting point of the period in standard form, e.g. yyyy-mm-dd. + + + + + + + + indicates the ending point of the period in standard form, e.g. yyyy-mm-dd. + + + + + + + + + + + + + + + indicates the system or calendar to which the date represented by the content of this element belongs. + + + + + + + +@calendar indicates the system or calendar to which the date represented by the content of this element +belongs, but this element has no textual content. + + + + + + supplies a pointer to some location defining a named period of time within which the datable item is understood to have occurred. + + + + + + + + + + + + contains a PID (persistent identifier) that aligns the given element with the appropriate Data Category (or categories) in ISOcat. + + + + + + + + + + + + contains a PID (persistent identifier) that aligns the content of the given element or the value of the given attribute with the appropriate simple Data Category (or categories) in ISOcat. + + + + + + + + + + + + + + + indicates whether or not this element is selected by default when its parent is selected. + + true + This element is selected if its parent is selected + false + This element can only be selected explicitly, unless it is the only one of its kind, in which case it is selected if its parent is selected. + + + + + + + + + + + identifies one or more declarable elements within the header, which are understood to apply to the element bearing this attribute and its content. + + + + + + + + + + + + + + + specifies whether or not its parent element is fragmented in some way, typically by some other overlapping structure: for example a speech which is divided between two or more verse stanzas, a paragraph which is split across a page division, a verse line which is divided between two speakers. + + Y + (yes) the element is fragmented in some (unspecified) respect + N + (no) either the element is not fragmented, or no claim is made as to its completeness. + I + (initial) this is the initial part of a fragmented element + M + (medial) this is a medial part of a fragmented element + F + (final) this is the final part of a fragmented element + + + + + + + + + + + + + (organization) specifies how the content of the division is organized. + + composite + no claim is made about the sequence in which the immediate contents of this division are to be processed, or their inter-relationships. + uniform + the immediate contents of this element are regarded as forming a logical unit, to be processed in sequence. + + + + + + + + indicates whether this division is a sample of the original source and if so, from which part. + + initial + division lacks material present at end in source. + medial + division lacks material at start and end. + final + division lacks material at start. + unknown + position of sampled material within original unknown. + complete + division is not a sample. + + + + + + + + + + + describes the status of a document either currently or, when associated with a dated element, at the time indicated. +Sample values include: 1] approved; 2] candidate; 3] cleared; 4] deprecated; 5] draft; 6] embargoed; 7] expired; 8] frozen; 9] galley; 10] proposed; 11] published; 12] recommendation; 13] submitted; 14] unfinished; 15] withdrawn + + + + + + + + + + + + + (certainty) signifies the degree of certainty associated with the intervention or interpretation. + + + + + + + + (responsible party) indicates the agency responsible for the intervention or interpretation, for example an editor or transcriber. + + + + + + + + + + + + + + + + + + indicates the nature of the evidence supporting the reliability or accuracy of the intervention or interpretation. +Suggested values include: 1] internal; 2] external; 3] conjecture + + + + internal + there is internal evidence to support the intervention. + external + there is external evidence to support the intervention. + conjecture + the intervention or interpretation has been made by the editor, cataloguer, or scholar on the basis of their expertise. + + + + + + + + + + + indicates whether this is an instant revision or not. + + + + + + + + + + + + + + + + + + + + + + (identifier) provides a unique identifier for the element bearing the attribute. + + + + + + + + (number) gives a number (or other label) for an element, which is not necessarily unique within the document. + + + + + + + + (language) indicates the language of the element content using a tag generated according to BCP 47. + + + + + + + + (rendition) indicates how the element in question was rendered or presented in the source text. + + + + + + + + + + + + contains an expression in some formal style definition language which defines the rendering or presentation used for this element in the source text + + + + + + + + points to a description of the rendering or presentation used for this element in the source text. + + + + + + + + + + + + provides a base URI reference with which applications can resolve relative URI references into absolute URI references. + + + + + + + + signals an intention about how white space should be managed by applications. + + default + signals that the application's default white-space processing modes are acceptable + preserve + indicates the intent that applications preserve all white space + + + + + + + + + + + + + + + + gives a name or other identifier for the scribe believed to be responsible for this hand. + + + + + + + + points to a full description of the scribe concerned, typically supplied by a person element elsewhere in the description. + + + + + + + + + + + + characterizes the particular script or writing style used by this hand, for example secretary, copperplate, Chancery, Italian, etc. + + + + + + + + + + + + points to a full description of the script or writing style used by this hand, typically supplied by a scriptNote element elsewhere in the description. + + + + + + + + + + + + describes the tint or type of ink, e.g. brown, or other writing medium, e.g. pencil + + + + + + + + + + + + specifies how widely this hand is used in the manuscript. + + sole + only this hand is used throughout the manuscript + major + this hand is used through most of the manuscript + minor + this hand is used occasionally in the manuscript + + + + + + + + + + + (MIME media type) specifies the applicable multimedia internet mail extension (MIME) media type + + + + + + + + + + + + + + + + + + Where the media are displayed, indicates the display width + + + + + + + + Where the media are displayed, indicates the display height + + + + + + + + Where the media are displayed, indicates a scale factor to be applied when generating the desired display size + + + + + + + + + + (uniform resource locator) specifies the URL from which the media concerned may be obtained. + + + + + + + + + + + + indicates what kind of phenomenon is being noted in the passage. +Sample values include: 1] image; 2] character; 3] theme; 4] allusion + + + + + + + + (instances) points to instances of the analysis or interpretation represented by the current element. + + + + + + + + + + + + + + + + + indicates the units used for the measurement, usually using the standard symbol for the desired units. +Suggested values include: 1] m(metre) ; 2] kg(kilogram) ; 3] s(second) ; 4] Hz(hertz) ; 5] Pa(pascal) ; 6] Ω(ohm) ; 7] L(litre) ; 8] t(tonne) ; 9] ha(hectare) ; 10] Å(ångström) ; 11] mL(millilitre) ; 12] cm(centimetre) ; 13] dB(decibel) ; 14] kbit(kilobit) ; 15] Kibit(kibibit) ; 16] kB(kilobyte) ; 17] KiB(kibibyte) ; 18] MB(megabyte) ; 19] MiB(mebibyte) + + m + (metre) SI base unit of length + kg + (kilogram) SI base unit of mass + s + (second) SI base unit of time + Hz + (hertz) SI unit of frequency + Pa + (pascal) SI unit of pressure or stress + + (ohm) SI unit of electric resistance + L + (litre) 1 dm³ + t + (tonne) 10³ kg + ha + (hectare) 1 hm² + + (ångström) 10⁻¹⁰ m + mL + (millilitre) + cm + (centimetre) + dB + (decibel) see remarks, below + kbit + (kilobit) 10³ or 1000 bits + Kibit + (kibibit) 2¹⁰ or 1024 bits + kB + (kilobyte) 10³ or 1000 bytes + KiB + (kibibyte) 2¹⁰ or 1024 bytes + MB + (megabyte) 10⁶ or 1 000 000 bytes + MiB + (mebibyte) 2²⁰ or 1 048 576 bytes + + + + + + + + + specifies the number of the specified units that comprise the measurement + + + + + + + + indicates the substance that is being measured + + + + + + + + + + + + + + + + + may be used to specify further information about the entity referenced by this name in the form of a set of whitespace-separated values, for example the occupation of a person, or the status of a place. + + + + + + + + + + + + (reference to the canonical name) provides a means of locating the canonical form (nym) of the names associated with the object named by the element bearing it. + + + + + + + + + + + + + + + specifies where this item is placed +Suggested values include: 1] below; 2] bottom; 3] margin; 4] top; 5] opposite; 6] overleaf; 7] above; 8] end; 9] inline; 10] inspace + + + + below + below the line + bottom + at the foot of the page + margin + in the margin (left, right, or both) + top + at the top of the page + opposite + on the opposite, i.e. facing, page + overleaf + on the other side of the leaf + above + above the line + end + at the end of e.g. chapter or volume. + inline + within the body of the text. + inspace + in a predefined space, for example left by an earlier scribe. + + + + + + + + + + + + + + + characterizes the element in some sense, using any convenient classification scheme or typology. + + + + + + + + provides a sub-categorization of the element, if needed + + + + + + + The element should not be categorized in detail with @subtype + unless also categorized in general with @type + + + + + + + + + + + specifies the language of the content to be found at the destination referenced by target, using a language tag generated according to BCP 47. + + + + + + + @targetLang can only be used if @target is specified. + + + + + + specifies the destination of the reference by supplying one or more URI References + + + + + + + + + + + + specifies the intended meaning when the target of a pointer is itself a pointer. + + all + if the element pointed to is itself a pointer, then the target of that pointer will be taken, and so on, until an element is found which is not a pointer. + one + if the element pointed to is itself a pointer, then its target (whether a pointer or not) is taken as the target of this pointer. + none + no further evaluation of targets is carried out beyond that needed to find the element specified in the pointer's target. + + + + + + + + + + + + + + optionally specifies the identifiers of the elements within which all elements indicated by the contents of this element lie. + + + + + + + + + + + + + + (target function) describes the function of each of the values of the target attribute of the enclosed link, join, or alt tags. + + + + + + + + + + + + + + + + + + + characterizes the function of the segment. + + + + + + + + + + + supplies the sort key for this element in an index, list or group which contains it. + + + + + + + + + + + + (edition) supplies a sigil or other arbitrary identifier for the source edition in which the associated feature (for example, a page, column, or line break) occurs at this point in the text. + + + + + + + + + + + + (edition reference) provides a pointer to the source edition in which the associated feature (for example, a page, column, or line break) occurs at this point in the text. + + + + + + + + + + + + + + + indicates the end of a span initiated by the element bearing this attribute. + + + + + + + +The element indicated by @spanTo () must follow the current element + + + + + + + + + + + identifies the language used to describe the rendition. + + css + Cascading Stylesheet Language + xslfo + Extensible Stylesheet Language Formatting Objects + free + Informal free text description + other + A user-defined rendition description language + + + + + + + + supplies a version number for the style language provided in scheme. + + + + + + + + @schemeVersion can only be used if @scheme is specified. + + + + + + + + + + + + indicates the kind of information held in this cell or in each cell of this row. +Suggested values include: 1] label; 2] data + + label + labelling or descriptive information only. + data + data values. + + + + + + + + + indicates the number of rows occupied by this cell or row. + + + + + + + + (columns) indicates the number of columns occupied by this cell or row. + + + + + + + + + + + + indicates the location within a temporal alignment at which this element begins. + + + + + + + + indicates the location within a temporal alignment at which this element ends. + + + + + + + + + + + + + + + indicates the hand of the agent which made the intervention. + + + + + + + + indicates the effect of the intervention, for example in the case of a deletion, strikeouts which include too much or too little text, or in the case of an addition, an insertion which duplicates some of the text already present. +Sample values include: 1] duplicate; 2] duplicate-partial; 3] excessStart; 4] excessEnd; 5] shortStart; 6] shortEnd; 7] partial; 8] unremarkable + + + + + + + + documents the presumed cause for the intervention. + + fix + repeated for the purpose of fixation + unclear + repeated to clarify a previously illegible or badly written text or mark + + + + + + + + (sequence) assigns a sequence number related to the order in which the encoded features carrying this attribute are believed to have occurred. + + + + + + + + + + + specifies the date on which the source text was extracted and sent to the translator + + + + + + + + + + + + + identifies the unit of information conveyed by the element, e.g. columns, pages, volume. +Suggested values include: 1] volume; 2] issue; 3] page; 4] line; 5] chapter; 6] part; 7] column + + volume + the element contains a volume number. + issue + the element contains an issue number, or volume and issue numbers. + page + the element contains a page number or page range. + line + the element contains a line number or line range. + chapter + the element contains a chapter indication (number and/or title) + part + the element identifies a part of a book or collection. + column + the element identifies a column. + + + + + + + + + specifies the starting point of the range of units indicated by the unit attribute. + + + + + + + + specifies the end-point of the range of units indicated by the unit attribute. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + provides a pointer to the bibliographical source from which a quotation or citation is drawn. + + + + + + + + + + + + + + + + + + + + + + + indicates whether the name component is given in full, as an abbreviation or simply as an initial. + + yes + the name component is spelled out in full. + abb + (abbreviated) the name component is given in an abbreviated form. + init + (initial letter) the name component is indicated only by one initial. + + + + + + + + specifies the sort order of the name component in relation to others within the name. + + + + + + + + + + + + + + + provides a conventional name for the kind of section changing at this milestone. +Suggested values include: 1] page; 2] column; 3] line; 4] book; 5] poem; 6] canto; 7] speaker; 8] stanza; 9] act; 10] scene; 11] section; 12] absent; 13] unnumbered + + page + physical page breaks (synonymous with the pb element). + column + column breaks. + line + line breaks (synonymous with the lb element). + book + any units termed book, liber, etc. + poem + individual poems in a collection. + canto + cantos or other major sections of a poem. + speaker + changes of speaker or narrator. + stanza + stanzas within a poem, book, or canto. + act + acts within a play. + scene + scenes within a play or act. + section + sections of any kind. + absent + passages not present in the reference edition. + unnumbered + passages present in the text, but not to be included as part of the reference. + + + + + + + (paragraph) marks paragraphs in prose. [3.1. 7.2.5. ] + + + + + + + + + + identifies a word or phrase as belonging to some language other than that of the surrounding text. [3.3.2.1. ] + + + + + + + + (emphasized) marks words or phrases which are stressed or emphasized for linguistic or rhetorical effect. [3.3.2.2. 3.3.2. ] + + + + + + + + (highlighted) marks a word or phrase as graphically distinct from the surrounding text, for reasons concerning which no claim is made. [3.3.2.2. 3.3.2. ] + + + + + + + + identifies any word or phrase which is regarded as linguistically distinct, for example as archaic, technical, dialectal, non-preferred, etc., or as forming part of a sublanguage. [3.3.2.3. ] + + + + + specifies the sublanguage or register to which the word or phrase is being assigned + + + + + + specifies how the phrase is distinct diachronically + + + + + + specifies how the phrase is distinct diatopically + + + + + + specifies how the phrase is distinct diastatically + + + + + + + + + (speech or thought) indicates passages thought or spoken aloud, whether explicitly indicated in the source or not, whether directly or indirectly reported, whether by real people or fictional characters. [3.3.3. ] + + + + + + may be used to indicate whether the quoted matter is regarded as having been vocalized or signed. + + + + + + may be used to indicate whether the quoted matter is regarded as direct or indirect speech. + + + + + + + + + (quotation) contains a phrase or passage attributed by the narrator or author to some agency external to the text. [3.3.3. 4.3.1. ] + + + + + + + + + + + (quoted) contains material which is distinguished from the surrounding text using quotation marks or a similar method, for any one of a variety of reasons including, but not limited to: direct speech or thought, technical terms or jargon, authorial distance, quotations from elsewhere, and passages that are mentioned but not used. [3.3.3. ] + + + + + + + may be used to indicate whether the offset passage is spoken or thought, or to characterize it more finely. +Suggested values include: 1] spoken; 2] thought; 3] written; 4] soCalled; 5] foreign; 6] distinct; 7] term; 8] emph; 9] mentioned + + spoken + representation of speech + thought + representation of thought, e.g. internal monologue + written + quotation from a written source + soCalled + authorial distance + foreign + + distinct + linguistically distinct + term + technical term + emph + rhetorically emphasized + mentioned + refering to itself, not its normal referent + + + + + + + + + + (cited quotation) contains a quotation from some other document, together with a bibliographic reference to its source. In a dictionary it may contain an example text with at least one occurrence of the word form, used in the sense being described, or a translation of the headword, or an example. [3.3.3. 4.3.1. 9.3.5.1. ] + + + + + + + + + + + + + + + + + + marks words or phrases mentioned, not used. [3.3.3. ] + + + + + + + + contains a word or phrase for which the author or narrator indicates a disclaiming of responsibility, for example by the use of scare quotes or italics. [3.3.3. ] + + + + + + + + (description) contains a brief description of the object documented by its parent element, including its intended usage, purpose, or application where this is appropriate. [22.4.1. ] + + + + + + + + + + identifies a phrase or word used to provide a gloss or definition for some other word or phrase. [3.3.4. 22.4.1. ] + + + + + + + + + + + + + contains a single-word, multi-word, or symbolic designation which is regarded as a technical term. [3.3.4. ] + + + + + + + + + + + + + + (Latin for thus or so + ) contains text reproduced although apparently incorrect or inaccurate. [3.4.1. ] + + + + + + + + + (correction) contains the correct form of a passage apparently erroneous in the copy text. [3.4.1. ] + + + + + + + + + + groups a number of alternative encodings for the same point in a text. [3.4. ] + + + + + + + + + + + + + (regularization) contains a reading which has been regularized or normalized in some sense. [3.4.2. 12. ] + + + + + + + + + + (original form) contains a reading which is marked as following the original, rather than being normalized or corrected. [3.4.2. 12. ] + + + + + + + + + indicates a point where material has been omitted in a transcription, whether for editorial reasons described in the TEI header, as part of sampling practice, or because the material is illegible, invisible, or inaudible. [3.4.3. ] + + + + + + + + + + + gives the reason for omission. Sample values include sampling, inaudible, irrelevant, cancelled. + + + + + + + + + + in the case of text omitted from the transcription because of deliberate deletion by an identifiable hand, indicates the hand which made the deletion. + + + + + + in the case of text omitted because of damage, categorizes the cause of the damage, if it can be identified. +Sample values include: 1] rubbing; 2] mildew; 3] smoke + + + + + + + + + (addition) contains letters, words, or phrases inserted in the source text by an author, scribe, or a previous annotator or corrector. [3.4.3. ] + + + + + + + + + + + (deletion) contains a letter, word, or passage deleted, marked as deleted, or otherwise indicated as superfluous or spurious in the copy text by an author, scribe, or a previous annotator or corrector. [3.4.3. ] + + + + + + + + + + contains a word, phrase, or passage which cannot be transcribed with certainty because it is illegible or inaudible in the source. [11.3.3.1. 3.4.3. ] + + + + + + indicates why the material is hard to transcribe. + + + + + + + + + + Where the difficulty in transcription arises from action (partial deletion, etc.) assignable to an identifiable hand, signifies the hand responsible for the action. + + + + + + Where the difficulty in transcription arises from damage, categorizes the cause of the damage, if it can be identified. +Sample values include: 1] rubbing; 2] mildew; 3] smoke + + + + + + + + + (name, proper noun) contains a proper noun or noun phrase. [3.5.1. ] + + + + + + + + + + + + (referencing string) contains a general purpose name or referring string. [13.2.1. 3.5.1. ] + + + + + + + + + + + (electronic mail address) contains an email address identifying a location to which email messages can be delivered. [3.5.2. ] + + + + + + + + contains a postal address, for example of a publisher, an organization, or an individual. [3.5.2. 2.2.4. 3.11.2.4. ] + + + + + + + + + + + + + + + + + + + + (address line) contains one line of a postal address. [3.5.2. 2.2.4. 3.11.2.4. ] + + + + + + + + contains a full street address including any name or number identifying a building as well as the name of the street or route on which it is located. [3.5.2. ] + + + + + + + + (postal code) contains a numerical or alphanumeric code used as part of a postal address to simplify sorting or delivery of mail. [3.5.2. ] + + + + + + + + (postal box or post office box) contains a number or other identifier for some postal delivery point other than a street address. [3.5.2. ] + + + + + + + + (number) contains a number, written in any form. [3.5.3. ] + + + + + + indicates the type of numeric value. +Suggested values include: 1] cardinal; 2] ordinal; 3] fraction; 4] percentage + + cardinal + absolute number, e.g. 21, 21.5 + ordinal + ordinal number, e.g. 21st + fraction + fraction, e.g. one half or three-quarters + percentage + a percentage + + + + + + + supplies the value of the number in standard form. + + + + + + + + + contains a word or phrase referring to some quantity of an object or commodity, usually comprising a number, a unit, and a commodity name. [3.5.3. ] + + + + + + specifies the type of measurement in any convenient typology. + + + + + + + + + (measure group) contains a group of dimensional specifications which relate to the same object, for example the height and width of a manuscript page. [10.3.4. ] + + + + + + + + + + + + + + + + contains a date in any format. [3.5.4. 2.2.4. 2.5. 3.11.2.4. 15.2.3. 13.3.6. ] + + + + + + + + + + + + + + + + + + contains a phrase defining a time of day in any format. [3.5.4. ] + + + + + + + + + + + + + + + + + + (abbreviation) contains an abbreviation of any sort. [3.5.5. ] + + + + + + + allows the encoder to classify the abbreviation according to some convenient typology. + + + + + + + + + (expansion) contains the expansion of an abbreviation. [3.5.5. ] + + + + + + + + + (pointer) defines a pointer to another location. [3.6. 16.1. ] + + + + Only one of the +attributes @target and @cRef may be supplied on . + + + + + + + + + + + + + + (reference) defines a reference to another location, possibly modified by additional text or comment. [3.6. 16.1. ] + + + + Only one of the + attributes @target' and @cRef' may be supplied on + + + + + + + + + + + + + + + contains any sequence of items organized as a list. [3.7. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + describes the nature of the items in the list. +Suggested values include: 1] gloss; 2] index; 3] instructions; 4] litany; 5] syllogism + + gloss + each list item glosses some term or concept, which is given by a label element preceding the list item. + index + each list item is an entry in an index such as the alphabetical topical index at the back of a print volume. + instructions + each list item is a step in a sequence of instructions, as in a recipe. + litany + each list item is one of a sequence of petitions, supplications or invocations, typically in a religious ritual. + syllogism + each list item is part of an argument consisting of two or more propositions and a final conclusion derived from them. + + + + + + + + + + contains one component of a list. [3.7. 2.5. ] + + + + + + + + + contains any label or heading used to identify part of a text, typically but not exclusively in a list or glossary. [3.7. ] + + + + + + + + + + (heading) contains any type of heading, for example the title of a section, or the heading of a list, glossary, manuscript description, etc. [4.2.1. ] + + + + + + + + + + + + + + + + + + + (heading for list labels) contains the heading for the label or term column in a glossary list or similar structured list. [3.7. ] + + + + + + + + (heading for list items) contains the heading for the item or gloss column in a glossary list or similar structured list. [3.7. ] + + + + + + + + contains a note or annotation. [3.8.1. 2.2.6. 3.11.2.8. 9.3.5.4. ] + + + + + + + + + indicates whether the copy text shows the exact place of reference for the note. + + + + + + points to the end of the span to which the note is attached, if the note is not embedded in the text at that point. + + + + + + + + + + + + + (index entry) marks a location to be indexed for whatever purpose. [3.8.2. ] + + + + + + + + + + + + + a single word which follows the rules defining a legal XML name (see ), supplying a name to specify which index (of several) the index entry belongs to. + + + + + + + + + indicates the location of any form of external media such as an audio or video clip etc. [3.9. ] + + + + + + + + + + + + + (MIME media type) specifies the applicable multimedia internet mail extension (MIME) media type + + + + + + + + + + + + indicates the location of an inline graphic, illustration, or figure. [3.9. ] + + + + + + + + + + + + + provides encoded binary data representing an inline graphic, audio, video or other object. [3.9. ] + + + + + + + + The encoding used to encode the binary data. If not specified, this is assumed to be Base64. + + + + + + + + + + + + + marks a boundary point separating any kind of section of a text, typically but not necessarily indicating a point at which some part of a standard reference system changes, where the change is not represented by a structural element. [3.10.3. ] + + + + + + + + + + + + + (gathering begins) marks the point in a transcribed codex at which a new gathering or quire begins. [3.10.3. ] + + + + + + + + + + + (page break) marks the start of a new page in a paginated document. [3.10.3. ] + + + + + + + + + + + + (line break) marks the start of a new (typographic) line in some edition or version of a text. [3.10.3. 7.2.5. ] + + + + + + + + + + + + (column break) marks the beginning of a new column of a text on a multi-column page. [3.10.3. ] + + + + + + + + + + + + (analytic level) contains bibliographic elements describing an item (e.g. an article or poem) published within a monograph or journal and not as an independent publication. [3.11.2.1. ] + + + + + + + + + + + + + + + + + + + + (monographic level) contains bibliographic elements describing an item (e.g. a book or journal) published as an independent item (i.e. as a separate physical object). [3.11.2.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (series information) contains information about the series in which a book or other bibliographic item has appeared. [3.11.2.1. ] + + + + + + + + + + + + + + + + + + + + + + in a bibliographic reference, contains the name(s) of an author, personal or corporate, of a work; for example in the same form as that provided by a recognized bibliographic name authority. [3.11.2.2. 2.2.1. ] + + + + + + + + + contains a secondary statement of responsibility for a bibliographic item, for example the name of an individual, institution or organization, (or of several such) acting as editor, compiler, translator, etc. [3.11.2.2. ] + + + + + + + + + (statement of responsibility) supplies a statement of responsibility for the intellectual content of a text, edition, recording, or series, where the specialized elements for authors, editors, etc. do not suffice or do not apply. May also be used to encode information about individuals or organizations which have played a role in the production or distribution of a bibliographic work. [3.11.2.2. 2.2.1. 2.2.2. 2.2.5. ] + + + + + + + + + + + + + + + + + + + + + + + + + + (responsibility) contains a phrase describing the nature of a person's intellectual responsibility, or an organization's role in the production or distribution of a work. [3.11.2.2. 2.2.1. 2.2.2. 2.2.5. ] + + + + + + + + + + contains a title for any kind of work. [3.11.2.2. 2.2.1. 2.2.5. ] + + + + + + + classifies the title according to some convenient typology. +Sample values include: 1] main; 2] sub(subordinate) ; 3] alt(alternate) ; 4] short; 5] desc(descriptive) + + + + + + indicates the bibliographic level for a title, that is, whether it identifies an article, book, journal, series, or unpublished material. + + a + (analytic) the title applies to an analytic item, such as an article, poem, or other work published as part of a larger item. + m + (monographic) the title applies to a monograph such as a book or other item considered to be a distinct publication, including single volumes of multi-volume works + j + (journal) the title applies to any serial or periodical publication such as a journal, magazine, or newspaper + s + (series) the title applies to a series of otherwise distinct publications such as a collection + u + (unpublished) the title applies to any unpublished material (including theses and dissertations unless published by a commercial press) + + + + + + + + + contains the formalized descriptive title for a meeting or conference, for use in a bibliographic description for an item derived from such a meeting, or as a heading or preamble to publications emanating from it. [3.11.2.2. ] + + + + + + + + + groups information relating to the publication or distribution of a bibliographic item. [3.11.2.4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + provides the name of the organization responsible for the publication or distribution of a bibliographic item. [3.11.2.4. 2.2.4. ] + + + + + + + + (scope of bibliographic reference) defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work. [3.11.2.5. ] + + + + + + identifies the type of information conveyed by the element, e.g. columns, pages, volume. +Suggested values include: 1] vol(volume) ; 2] issue; 3] pp(pages) ; 4] ll(lines) ; 5] chap(chapter) ; 6] part + + vol + (volume) the element contains a volume number. + issue + the element contains an issue number, or volume and issue numbers. + pp + (pages) the element contains a page number or page range. + ll + (lines) the element contains a line number or line range. + chap + (chapter) the element contains a chapter indication (number and/or title) + part + the element identifies a part of a book or collection. + + + + + + + + + + (cited range) defines the range of cited content, often represented by pages or other units [3.11.2.5. ] + + + + + + + + + + (publication place) contains the name of the place where a bibliographic item was published. [3.11.2.4. ] + + + + + + + + + (bibliographic citation) contains a loosely-structured bibliographic citation of which the sub-components may or may not be explicitly tagged. [3.11.1. 2.2.7. 15.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + (structured bibliographic citation) contains a structured bibliographic citation, in which only bibliographic sub-elements appear and in a specified order. [3.11.1. 2.2.7. 15.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (citation list) contains a list of bibliographic citations of any kind. [3.11.1. 2.2.7. 15.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + contains or references some other bibliographic item which is related to the present one in some specified manner, for example as a constituent or alternative version of it. [3.11.2.7. ] + + + + + + + + + +If the @target attribute on is used, the +relatedItem element must be empty + + + + + A relatedItem element should have either a 'target' attribute + or a child element to indicate the related bibliographic item + + + + + + + points to the related bibliographic element by means of an absolute or relative URI reference + + + + + + + + + (verse line) contains a single, possibly incomplete, line of verse. [3.12.1. 3.12. 7.2.5. ] + + + + + + + + + (line group) contains one or more verse lines functioning as a formal unit, e.g. a stanza, refrain, verse paragraph, etc. [3.12.1. 3.12. 7.2.5. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + An lg element + must contain at least one child l, lg or gap element. + + + + + + + + + + + + (speech) contains an individual speech in a performance text, or a passage presented as such in a prose or verse text. [3.12.2. 3.12. 7.2.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains a specialized form of heading or label, giving the name of one or more speakers in a dramatic text or fragment. [3.12.2. ] + + + + + + + + (stage direction) contains any kind of stage direction within a dramatic text or fragment. [3.12.2. 3.12. 7.2.4. ] + + + + + + + indicates the kind of stage direction. +Suggested values include: 1] setting; 2] entrance; 3] exit; 4] business; 5] novelistic; 6] delivery; 7] modifier; 8] location; 9] mixed + + setting + describes a setting. + entrance + describes an entrance. + exit + describes an exit. + business + describes stage business. + novelistic + is a narrative, motivating stage direction. + delivery + describes how a character speaks. + modifier + gives some detail about a character. + location + describes a location. + mixed + more than one of the above + + + + + + + + + + contains the whole of a TEI encoded corpus, comprising a single corpus header and one or more TEI elements, each containing a single text header and a text. [4. 15.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + The version of the TEI scheme + + + + + + + + + (automatically generated text division) indicates the location at which a textual division generated automatically by a text-processing application is to appear. [3.8.2. ] + + + + + + + specifies what type of generated text division (e.g. index, table of contents, etc.) is to appear. +Sample values include: 1] index; 2] toc; 3] figlist; 4] tablist + + + + + + + + + (text language) describes the languages and writing systems identified within the bibliographic work being described, rather than its description. [3.11.2.4. 10.6.6. ] + + + + + (main language) supplies a code which identifies the chief language used in the bibliographic work. + + + + + + (other languages) one or more codes identifying any other languages used in the bibliographic work. + + + + + + + + + + + + + + + + + specifies a regular expression against which the values of other attributes can be matched. + + + + + + specifies a replacement pattern, that is, the skeleton of a relative or absolute URI containing references to groups in the matchPattern which, once subpattern substitution has been performed, complete the URI. + + + + + + (TEI header) supplies the descriptive and declarative information making up an electronic title page for every TEI-conformant document. [2.1.1. 15.1. ] + + + + + + + + + + + + + specifies the kind of document to which the header is attached, for example whether it is a corpus or individual text. +Sample values include: 1] text; 2] corpus + + + + + + + + + (file description) contains a full bibliographic description of an electronic file. [2.2. 2.1.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + (title statement) groups information about the title of a work and those responsible for its content. [2.2.1. 2.2. ] + + + + + + + + + + + + + + + specifies the name of a sponsoring organization or institution. [2.2.1. ] + + + + + + + + + (funding body) specifies the name of an individual, institution, or organization responsible for the funding of a project or text. [2.2.1. ] + + + + + + + + + (principal researcher) supplies the name of the principal researcher responsible for the creation of an electronic text. [2.2.1. ] + + + + + + + + + (edition statement) groups information relating to one edition of a text. [2.2.2. 2.2. ] + + + + + + + + + + + + + + + + + + describes the particularities of one edition of a text. [2.2.2. ] + + + + + + + + describes the approximate size of a text stored on some carrier medium or of some other object, digital or non-digital, specified in any convenient units. [2.2.3. 2.2. 3.11.2.4. 10.7.1. ] + + + + + + + + (publication statement) groups information concerning the publication or distribution of an electronic or other text. [2.2.4. 2.2. ] + + + + + + + + + + + + + + + + + + + + + + supplies the name of a person or other agency responsible for the distribution of a text. [2.2.4. ] + + + + + + + + (release authority) supplies the name of a person or other agency responsible for making a work available, other than a publisher or distributor. [2.2.4. ] + + + + + + + + (identifier) supplies any form of identifier used to identify some object, such as a bibliographic item, a person, a title, an organization, etc. in a standardized way. [2.2.4. 2.2.5. 3.11.2.4. ] + + + + + + + + + + + + categorizes the identifier, for example as an ISBN, Social Security number, etc. + + + + + + + + + supplies information about the availability of a text, for example any restrictions on its use or distribution, its copyright status, any licence applying to it, etc. [2.2.4. ] + + + + + + + + + + + supplies a code identifying the current availability of the text. + + free + the text is freely available. + unknown + the status of the text is unknown. + restricted + the text is not freely available. + + + + + + + + + contains information about a licence or other legal agreement applicable to the text. [2.2.4. ] + + + + + + + + + + (series statement) groups information about the series, if any, to which a publication belongs. [2.2.5. 2.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (notes statement) collects together any notes providing information about a text additional to that recorded in other parts of the bibliographic description. [2.2.6. 2.2. ] + + + + + + + + + + + + + (source description) describes the source from which an electronic text was derived or generated, typically a bibliographic description in the case of a digitized text, or a phrase such as "born digital" for a text which has no previous existence. [2.2.7. ] + + + + + + + + + + + + + + + + + + + + (fully-structured bibliographic citation) contains a fully-structured bibliographic citation, in which all components of the TEI file description are present. [3.11.1. 2.2. 2.2.7. 15.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (encoding description) documents the relationship between an electronic text and the source or sources from which it was derived. [2.3. 2.1.1. ] + + + + + + + + + + + + + + + (project description) describes in detail the aim or purpose for which an electronic file was encoded, together with any other relevant information concerning the process by which it was assembled or collected. [2.3.1. 2.3. 15.3.2. ] + + + + + + + + + + + (sampling declaration) contains a prose description of the rationale and methods used in sampling texts in the creation of a corpus or collection. [2.3.2. 2.3. 15.3.2. ] + + + + + + + + + + + (editorial practice declaration) provides details of editorial principles and practices applied during the encoding of a text. [2.3.3. 2.3. 15.3.2. ] + + + + + + + + + + + + + + (correction principles) states how and under what circumstances corrections have been made in the text. [2.3.3. 15.3.2. ] + + + + + + + + indicates the degree of correction applied to the text. + + high + the text has been thoroughly checked and proofread. + medium + the text has been checked at least once. + low + the text has not been checked. + unknown + the correction status of the text is unknown. + + + + + + indicates the method adopted to indicate corrections within the text. + + silent + corrections have been made silently + markup + corrections have been represented using markup + + + + + + + + + indicates the extent of normalization or regularization of the original source carried out in converting it to electronic form. [2.3.3. 15.3.2. ] + + + + + + + + indicates a bibliographic description or other resource documenting the principles underlying the normalization carried out. + + + + + + indicates the method adopted to indicate normalizations within the text. + + silent + normalization made silently + markup + normalization represented using markup + + + + + + + + + specifies editorial practice adopted with respect to quotation marks in the original. [2.3.3. 15.3.2. ] + + + + + + +On , either the @marks attribute should be used, or a paragraph of description provided + + + + + + + (quotation marks) indicates whether or not quotation marks have been retained as content within the text. + + none + no quotation marks have been retained + some + some quotation marks have been retained + all + all quotation marks have been retained + + + + + + + + + summarizes the way in which hyphenation in a source text has been treated in an encoded version of it. [2.3.3. 15.3.2. ] + + + + + + + + (end-of-line) indicates whether or not end-of-line hyphenation has been retained in a text. + + all + all end-of-line hyphenation has been retained, even though the lineation of the original may not have been. + some + end-of-line hyphenation has been retained in some cases. + hard + all soft end-of-line hyphenation has been removed: any remaining end-of-line hyphenation should be retained. + none + all end-of-line hyphenation has been removed: any remaining hyphenation occurred within the line. + + + + + + + + + describes the principles according to which the text has been segmented, for example into sentences, tone-units, graphemic strata, etc. [2.3.3. 15.3.2. ] + + + + + + + + + + + (standard values) specifies the format used when standardized date or number values are supplied. [2.3.3. 15.3.2. ] + + + + + + + + + + + describes the scope of any analytic or interpretive information added to the text in addition to the transcription. [2.3.3. ] + + + + + + + + + + + specifies editorial practice adopted with respect to punctuation marks in the original. [2.3.3. 3.2. ] + + + + + + + + indicates whether or not punctation marks have been retained as content within the text. + + none + no punctuation marks have been retained + some + some punctuation marks have been retained + all + all punctuation marks have been retained + + + + + + indicates whether punctation marks have been captured inside or outside of an adjacent element. + + internal + punctuation marks are captured inside adjacent elements + external + punctuation marks are captured outside adjacent elements + + + + + + + + + (tagging declaration) provides detailed information about the tagging applied to a document. [2.3.4. 2.3. ] + + + + + + + + + + + + + + + supplies information about the usage of a specific element within a text. [2.3.4. ] + + + + (generic identifier) specifies the name (generic identifier) of the element indicated by the tag, within the namespace indicated by the parent namespace element. + + + + + specifies the number of occurrences of this element within the text. + + + + + + (with unique identifier) specifies the number of occurrences of this element within the text which bear a distinct value for the global xml:id attribute. + + + + + + specifies the identifier of a rendition element which defines how this element was rendered in the source text. + + + + + + + + + + + + + supplies the formal name of the namespace to which the elements documented by its children belong. [2.3.4. ] + + + + + + specifies the full formal name of the namespace concerned. + + + + + + + + supplies information about the rendition or appearance of one or more elements in the source text. [2.3.4. ] + + + + + + where CSS is used, provides a way of defining pseudo-elements, that is, styling rules applicable to specific sub-portions of an element. +Sample values include: 1] first-line; 2] first-letter; 3] before; 4] after + + + + + + + + + (style definition language declaration) specifies the name of the formal language in which style or renditional information is supplied elsewhere in the document. The specific version of the scheme may also be supplied. [2.3.5. ] + + + + + + + + + + + + (references declaration) specifies how canonical references are constructed for this text. [2.3.6.3. 2.3. 2.3.6. ] + + + + + + + + + + + + + + + + + + + (canonical reference pattern) specifies an expression and replacement pattern for transforming a canonical reference into a URI. [2.3.6.3. 2.3.6. 2.3.6.2. ] + + + + + + + + + + + (prefixing scheme used in data.pointer values) defines a prefixing scheme used in data.pointer values, showing how abbreviated URIs using the scheme may be expanded into full URIs. [16.2.3. ] + + + + + + + supplies a name which functions as the prefix for an abbreviated pointing scheme such as a private URI scheme. The prefix constitutes the text preceding the first colon. + + + + + + + + (list of prefix definitions) contains a list of definitions of prefixing schemes used in data.pointer values, showing how abbreviated URIs using each scheme may be expanded into full URIs. [16.2.3. ] + + + + + + + + + + + + + + + (reference state) specifies one component of a canonical reference defined by the milestone method. [2.3.6.3. 2.3.6. ] + + + + + + + specifies the fixed length of the reference component. + + + + + + (delimiter) supplies a delimiting string following the reference component. + + + + + + + + + (classification declarations) contains one or more taxonomies defining any classificatory codes used elsewhere in the text. [2.3.7. 2.3. ] + + + + + + + + + + defines a typology either implicitly, by means of a bibliographic citation, or explicitly by a structured taxonomy. [2.3.7. ] + + + + + + + + + + + + + + + + + + + + + + + + + + contains an individual descriptive category, possibly nested within a superordinate category, within a user-defined taxonomy. [2.3.7. ] + + + + + + + + + + + + + + + + + + + + + + + (category description) describes some category within a taxonomy or text typology, either in the form of a brief prose description or in terms of the situational parameters used by the TEI formal textDesc. [2.3.7. ] + + + + + + + + + + + + + + (geographic coordinates declaration) documents the notation and the datum used for geographic coordinates expressed as content of the geo element elsewhere within the document. [2.3.8. ] + + + + + + supplies a commonly used code name for the datum employed. +Suggested values include: 1] WGS84(World Geodetic System) ; 2] MGRS(Military Grid Reference System) ; 3] OSGB36(ordnance survey great britain) ; 4] ED50(European Datum coordinate system) + + WGS84 + (World Geodetic System) a pair of numbers to be interpreted as latitude followed by longitude according to the World Geodetic System. + MGRS + (Military Grid Reference System) the values supplied are geospatial entity object codes, based on + OSGB36 + (ordnance survey great britain) the value supplied is to be interpreted as a British National Grid Reference. + ED50 + (European Datum coordinate system) the value supplied is to be interpreted as latitude followed by longitude according to the European Datum coordinate system. + + + + + + + + + + (application information) records information about an application which has edited the TEI file. [2.3.10. ] + + + + + + + + + + provides information about an application which has acted upon the document. [2.3.10. ] + + + + + + + + + + + + + + + + + + supplies an identifier for the application, independent of its version number or display name. + + + + supplies a version number for the application, independent of its identifier or display name. + + + + + + + + (text-profile description) provides a detailed description of non-bibliographic aspects of a text, specifically the languages and sublanguages used, the situation in which it was produced, the participants and their setting. [2.4. 2.1.1. ] + + + + + + + + + + + + (note on hand) describes a particular style or hand distinguished within a manuscript. [10.7.2. ] + + + + + + + + + contains a summary or formal abstract prefixed to an existing source document by the encoder. [2.4.4. ] + + + + + + + + + + + + + + contains information about the creation of a text. [2.4.1. 2.4. ] + + + + + + + + + + + + + + + (language usage) describes the languages, sublanguages, registers, dialects, etc. represented within a text. [2.4.2. 2.4. 15.3.2. ] + + + + + + + + + + + characterizes a single language or sublanguage used within a text. [2.4.2. ] + + + + (identifier) Supplies a language code constructed as defined in BCP 47 which is used to identify the language documented by this element, and which is referenced by the global xml:lang attribute. + + + + + specifies the approximate percentage (by volume) of the text which uses this language. + + 100 + + + + + + + + + (text classification) groups information which describes the nature or topic of a text in terms of a standard classification scheme, thesaurus, etc. [2.4.3. ] + + + + + + + + + + + + + + + contains a list of keywords or phrases identifying the topic or nature of a text. [2.4.3. ] + + + + + + + + + + identifies the controlled vocabulary within which the set of keywords concerned is defined identifies the classification scheme within which the set of categories concerned is defined, for example by a taxonomy element, or by some other resource. + + + + + + + + + (classification code) contains the classification code used for this text in some standard classification system. [2.4.3. ] + + + + identifies the classification system in use, as defined by for example by a taxonomy element, or some other resource.. + + + + + + + + (category reference) specifies one or more defined categories within some taxonomy or text typology. [2.4.3. ] + + + + + + identifies the classification scheme within which the set of categories concerned is defined, for example by a taxonomy element, or by some other resource. + + + + + + + + + (calendar description) contains a description of the calendar system used in any dating expression found in the text. [2.4. 2.4.5. ] + + + + + + + + + + describes a calendar or dating system used in a dating formula in the text. [2.4.5. ] + + + + + + + + + + + (revision description) summarizes the revision history for a file. [2.5. 2.1.1. ] + + + + + + + + + + + + + + + documents a change or set of changes made during the production of a source document, or during the revision of an electronic file. [2.5. 2.4.1. 11.7. ] + + + + + + + + + points to one or more elements that belong to this change. + + + + + + + + + + + + + describes a particular font or other significant typographic feature distinguished within the description of a printed resource. [10.7.2. ] + + + + + + + + + describes a particular script distinguished within the description of a manuscript or similar resource. [10.7.2. ] + + + + + + + + + groups a number of change descriptions associated with either the creation of a source text or the revision of an encoded text. [2.5. 11.7. ] + + + + + + + + + + + indicates whether the ordering of its child change elements is to be considered significant or not + + + + + + + + + + + + + + + + + + + + (corresponds) points to elements that correspond to the current element in some way. + + + + + + + + + + + + (synchronous) points to elements that are synchronous with the current element. + + + + + + + + + + + + points to an element that is the same as the current element. + + + + + + + + points to an element of which the current element is a copy. + + + + + + + + points to the next element of a virtual aggregate of which the current element is part. + + + + + + + + (previous) points to the previous element of a virtual aggregate of which the current element is part. + + + + + + + + points to elements that are in exclusive alternation with the current element. + + + + + + + + + + + + selects one or more alternants; if one alternant is selected, the ambiguity or uncertainty is marked as resolved. If more than one alternant is selected, the degree of ambiguity or uncertainty is marked as reduced by the number of alternants not selected. + + + + + + + + + + + defines an association or hypertextual link among elements or passages, of some type not more precisely specifiable by other elements. [16.1. ] + + + + You must supply at least two values for @target or on + + + + + + + + + + + + (link group) defines a collection of associations or hypertextual links. [16.1. ] + + + + + + + + + + + + + + (anonymous block) contains any arbitrary component-level unit of text, acting as an anonymous container for phrase or inter level elements analogous to, but without the semantic baggage of, a paragraph. [16.3. ] + + + + + + + + + + + (anchor point) attaches an identifier to a point within a text, whether or not it corresponds with a textual element. [8.4.2. 16.4. ] + + + + + + + + + (arbitrary segment) represents any segmentation of text below the chunk level. [16.3. 6.2. 7.2.5. ] + + + + + + + + + + + indicates a point in time either relative to other elements in the same timeline tag, or absolutely. [16.5.2. ] + + + + + supplies an absolute value for the time. + + + + + + specifies the unit of time in which the interval value is expressed, if this is not inherited from the parent timeline. +Suggested values include: 1] d(days) ; 2] h(hours) ; 3] min(minutes) ; 4] s(seconds) ; 5] ms(milliseconds) + + d + (days) + h + (hours) + min + (minutes) + s + (seconds) + ms + (milliseconds) + + + + + + + specifies a time interval either as a number or as one of the keywords defined by the datatype data.interval + + + + + + identifies the reference point for determining the time of the current when element, which is obtained by adding the interval to the time of the reference point. + + + + + + + + + provides a set of ordered points in time which can be linked to elements of a spoken text to create a temporal alignment of that text. [16.5.2. ] + + + + + + + designates the origin of the timeline, i.e. the time at which it begins. + + + + + + specifies the unit of time corresponding to the interval value of the timeline or of its constituent points in time. +Suggested values include: 1] d(days) ; 2] h(hours) ; 3] min(minutes) ; 4] s(seconds) ; 5] ms(milliseconds) + + d + (days) + h + (hours) + min + (minutes) + s + (seconds) + ms + (milliseconds) + + + + + + + specifies a time interval either as a positive integral value or using one of a set of predefined codes. + + + + + + + + + identifies a possibly fragmented segment of text, by pointing at the possibly discontiguous elements which compose it. [16.7. ] + + + + + + + + + +You must supply at least two values for @target on + + + + + + + + + specifies the name of an element which this aggregation may be understood to represent. + + + + + + indicates whether the targets to be joined include the entire element indicated (the entire subtree including its root), or just the children of the target (the branches of the subtree). + + root + the rooted subtrees indicated by the target attribute are joined, each subtree become a child of the virtual element created by the join + branches + the children of the subtrees indicated by the target attribute become the children of the virtual element (i.e. the roots of the subtrees are discarded) + + + + + + + + + (join group) groups a collection of join elements and possibly pointers. [16.7. ] + + + + + + + + + + + + + + + + supplies the default value for the result on each join included within the group. + + + + + + + + + (alternation) identifies an alternation or a set of choices among elements or passages. [16.8. ] + + + + + + + + specifies the destination of the reference by supplying one or more URI References + + + + + + + + + + + + states whether the alternations gathered in this collection are exclusive or inclusive. + + excl + (exclusive) indicates that the alternation is exclusive, i.e. that at most one of the alternatives occurs. + incl + (inclusive) indicates that the alternation is not exclusive, i.e. that one or more of the alternatives occur. + + + + + + If mode is , each weight states the probability that the corresponding alternative occurs. If mode is incl each weight states the probability that the corresponding alternative occurs given that at least one of the other alternatives occurs. + + + + + + + + + + + + + + + (alternation group) groups a collection of alt elements and possibly pointers. [16.8. ] + + + + + + + + + + + states whether the alternations gathered in this collection are exclusive or inclusive. + + excl + (exclusive) indicates that the alternation is exclusive, i.e. that at most one of the alternatives occurs. + incl + (inclusive) indicates that the alternation is not exclusive, i.e. that one or more of the alternatives occur. + + + + + + + + + (TEI document) contains a single TEI-conformant document, comprising a TEI header and a text, either in isolation or as part of a teiCorpus element. [4. 15.1. ] + + + + + + + + + + + + + + + + + + + + + specifies the major version number of the TEI Guidelines against which this document is valid. + + + + + + + + + contains a single text of any kind, whether unitary or composite, for example a poem or drama, a collection of essays, a novel, a dictionary, or a corpus sample. [4. 15.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (text body) contains the whole body of a single unitary text, excluding any front or back matter. [4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains the body of a composite text, grouping together a sequence of distinct texts (or groups of such texts) which are regarded as a unit for some purpose, for example the collected works of an author, a sequence of prose essays, etc. [4. 4.3.1. 15.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains a single text of any kind, whether unitary or composite, which interrupts the text containing it at any point and after which the surrounding text resumes. [4.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (text division) contains a subdivision of the front, body, or back of a text. [4.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-1 text division) contains a first-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-2 text division) contains a second-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-3 text division) contains a third-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-4 text division) contains a fourth-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-5 text division) contains a fifth-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-6 text division) contains a sixth-level subdivision of the front, body, or back of a text. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (level-7 text division) contains the smallest possible subdivision of the front, body or back of a text, larger than a paragraph. [4.1.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains a closing title or footer appearing at the end of a division of a text. [4.2.4. 4.2. ] + + + + + + + + + + + + + + + + + + + contains the primary statement of responsibility given for a work on its title page or at the head or end of the work. [4.2.2. 4.5. ] + + + + + + + + + + + + + + + + contains a brief description of the place, date, time, etc. of production of a letter, newspaper story, or other work, prefixed or suffixed to it as a kind of heading or trailer. [4.2.2. ] + + + + + + + + + + + + + + + + contains a formal list or prose description of the topics addressed by a subdivision of a text. [4.2. 4.6. ] + + + + + + + + + + + + + + + + + + + + + + + contains a quotation, anonymous or attributed, appearing at the start or end of a section or on a title page. [4.2.3. 4.2. 4.6. ] + + + + + + + + + + + + + groups together dateline, byline, salutation, and similar phrases appearing as a preliminary group at the start of a division, especially of a letter. [4.2. ] + + + + + + + + + + + + + + + + + + + + + groups together salutations, datelines, and similar phrases appearing as a final group at the end of a division, especially of a letter. [4.2.2. 4.2. ] + + + + + + + + + + + + + + + + + + (salutation) contains a salutation or greeting prefixed to a foreword, dedicatory epistle, or other division of a text, or the salutation in the closing of a letter, preface, etc. [4.2.2. ] + + + + + + + + (signature) contains the closing salutation, etc., appended to a foreword, dedicatory epistle, or other division of a text. [4.2.2. ] + + + + + + + + contains a postscript, e.g. to a letter. [4.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (title page) contains the title page of a text, appearing within the front or back matter. [4.6. ] + + + + + + + + + + + + + + + + + + classifies the title page according to any convenient typology. + + + + + + + + + (document title) contains the title of a document, including all its constituents, as given on a title page. [4.6. ] + + + + + + + + + + + + + + + + + + + contains a subsection or division of the title of a work, as indicated on a title page. [4.6. ] + + + + + specifies the role of this subdivision of the title. +Suggested values include: 1] main; 2] sub(subordinate) ; 3] alt(alternate) ; 4] short; 5] desc(descriptive) + + main + main title of the work + sub + (subordinate) subtitle of the work + alt + (alternate) alternative title of the work + short + abbreviated form of title + desc + (descriptive) descriptive paraphrase of the work + + + + + + + + + + (document author) contains the name of the author of the document, as given on the title page (often but not always contained in a byline). [4.6. ] + + + + + + + + + contains a formal statement authorizing the publication of a work, sometimes required to appear on a title page or its verso. [4.6. ] + + + + + + + + (document edition) contains an edition statement as presented on a title page of a document. [4.6. ] + + + + + + + + (document imprint) contains the imprint statement (place and date of publication, publisher name), as given (usually) at the foot of a title page. [4.6. ] + + + + + + + + + + + + + + + + + + (document date) contains the date of a document, as given on a title page or in a dateline. [4.6. ] + + + + + gives the value of the date in standard form, i.e. YYYY-MM-DD. + + + + + + + + + (front matter) contains any prefatory matter (headers, title page, prefaces, dedications, etc.) found at the start of a document, before the main body. [4.6. 4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (back matter) contains any appendixes, etc. following the main part of a text. [4.7. 4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + supplies the value of a date or time in some standard form. + + + + + + + + + + + + specifies the earliest possible date for the event in some custom standard form. + + + + + + + + + + + + specifies the latest possible date for the event in some custom standard form. + + + + + + + + + + + + indicates the starting point of the period in some standard form. + + + + + + + + + + + + indicates the ending point of the period in some standard form. + + + + + + + + + + + + supplies a pointer to some location defining a named point in time with reference to which the datable item is understood to have occurred + + + + + + + + supplies a pointer to a calendar element or other means of interpreting the values of the custom dating attributes. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + supplies the value of a date or time in a standard form. + + + + + + + + specifies the earliest possible date for the event in standard form, e.g. yyyy-mm-dd. + + + + + + + + specifies the latest possible date for the event in standard form, e.g. yyyy-mm-dd. + + + + + + + + indicates the starting point of the period in standard form. + + + + + + + + indicates the ending point of the period in standard form. + + + + + + + (organization name) contains an organizational name. [13.2.2. ] + + + + + + + + + + + + (personal name) contains a proper noun or proper-noun phrase referring to a person, possibly including one or more of the person's forenames, surnames, honorifics, added names, etc. [13.2.1. ] + + + + + + + + + + + + contains a family (inherited) name, as opposed to a given, baptismal, or nick name. [13.2.1. ] + + + + + + + + + + contains a forename, given or baptismal name. [13.2.1. ] + + + + + + + + + + (generational name component) contains a name component used to distinguish otherwise similar names on the basis of the relative ages or generations of the persons named. [13.2.1. ] + + + + + + + + + + (name link) contains a connecting phrase or link used within a name but not regarded as part of it, such as van der or of. [13.2.1. ] + + + + + + + + + (additional name) contains an additional name component, such as a nickname, epithet, or alias, or any other descriptive phrase used within a personal name. [13.2.1. ] + + + + + + + + + + contains a name component which indicates that the referent has a particular role or position in society, such as an official title or rank. [13.2.1. ] + + + + + + + + + + contains an absolute or relative place name. [13.2.3. ] + + + + + + + + + + + + contains the name of a geo-political unit consisting of two or more nation states or countries. [13.2.3. ] + + + + + + + + + + + contains the name of a geo-political unit, such as a nation, country, colony, or commonwealth, larger than or administratively superior to a region and smaller than a bloc. [13.2.3. ] + + + + + + + + + + + contains the name of an administrative unit such as a state, province, or county, larger than a settlement, but smaller than a country. [13.2.3. ] + + + + + + + + + + + contains the name of any kind of subdivision of a settlement, such as a parish, ward, or other administrative or geographic unit. [13.2.3. ] + + + + + + + + + + + contains the name of a settlement such as a city, town, or village identified as a single geo-political or administrative unit. [13.2.3. ] + + + + + + + + + + + marks that part of a relative temporal or spatial expression which indicates the direction of the offset between the two place names, dates, or times involved in the expression. [13.2.3. ] + + + + + + + + + + + + (geographical name) identifies a name associated with some geographical feature such as Windrush Valley or Mount Sinai. [13.2.3. ] + + + + + + + + + + + + (geographical feature name) contains a common noun identifying some geographical feature contained within a geographic name, such as valley, mount, etc. [13.2.3. ] + + + + + + + + + + + + contains an informal description of a person's present or past affiliation with some organization, for example an employer or sponsor. [15.2.2. ] + + + + + + + + + + + specifies the age of a person. [13.3.2.1. ] + + + + + + + supplies a numeric code representing the age or age group + + + + + + + + + contains information about a person's birth, such as its date and place. [15.2.2. ] + + + + + + + + + + + contains information about the physical climate of a place. [13.3.4.3. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains information about a person's death, such as its date and place. [15.2.2. ] + + + + + + + + + + + contains a description of the educational experience of a person. [15.2.2. ] + + + + + + + + + + + contains data relating to any kind of significant event associated with a person, place, or organization. [13.3.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + indicates the location of an event by pointing to a place element + + + + + + + + + specifies the faith, religion, or belief set of a person. [13.3.2.1. ] + + + + + + + + + + + contains information about a person's period of activity. [13.3.2.1. ] + + + + + + + + + + (geographical coordinates) contains any expression of a set of geographic coordinates, representing a point, line, or area on the surface of the earth in some notation. [13.3.4.1. ] + + + + + + + + + (language knowledge) summarizes the state of a person's linguistic knowledge, either as prose or by a list of langKnown elements. [13.3.2.1. ] + + + + + + + + + + + + supplies one or more valid language tags for the languages specified + + + + + + + + + + + + + (language known) summarizes the state of a person's linguistic competence, i.e., knowledge of a single language. [15.2.2. ] + + + + + + supplies a valid language tag for the language concerned. + + + + + a code indicating the person's level of knowledge for this language + + + + + + + + + (list of organizations) contains a list of elements, each of which provides information about an identifiable organization. [13.2.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + (list of events) contains a list of descriptions, each of which provides information about an identifiable event. [13.3.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + (list of persons) contains a list of descriptions, each of which provides information about an identifiable person or a group of people, for example the participants in a language interaction, or the people referred to in a historical source. [13.3.2. 15.2. 2.4. 15.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + (list of places) contains a list of places, optionally followed by a list of relationships (other than containment) defined amongst them. [2.2.7. 13.3.4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + defines the location of a place as a set of geographical coordinates, in terms of other named geo-political entities, or as an address. [13.3.4. ] + + + + + + + + + + + + + + + + + + + + + contains an informal description of a person's present or past nationality or citizenship. [15.2.2. ] + + + + + + + + + + + contains an informal description of a person's trade, profession or occupation. [15.2.2. ] + + + + + + + + indicates the classification system or taxonomy in use, for example by supplying the identifier of a taxonomy element, or pointing to some other resource. + + + + + + identifies an occupation code defined within the classification system or taxonomy defined by the scheme attribute. + + + + + + + + + (organization) provides information about an identifiable organization such as a business, a tribe, or any other grouping of people. [13.2.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + specifies a primary role or classification for the organization. + + + + + + + + + + + + + provides information about relationships identified amongst people, places, and organizations, either informally as prose or as formally expressed relation links. [13.3.2.3. ] + + + + + + + + + + + + + + + + + + + + + + + provides information about an identifiable individual, for example a participant in a language interaction, or a person referred to in a historical source. [13.3.2. 15.2.2. ] + + + + + + + + + + + + + + + + + specifies a primary role or classification for the person. + + + + + + + + + + specifies the sex of the person. + + + + + + + + + + specifies an age group for the person. + + + + + + + + + (personal group) describes a group of individuals treated as a single person for analytic purposes. [15.2.2. ] + + + + + + + + + + + + + + + + specifies the role of this group of participants in the interaction. + + + + + + specifies the sex of the participant group. + + + + + + + + + + specifies the age group of the participants. + + + + + + describes informally the size or approximate size of the group for example by means of a number and an indication of accuracy e.g. approx 200. + + + + + + + + + + + + + contains data about a geographic location [13.3.4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains information about the population of a place. [13.3.4.3. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (relationship) describes any kind of relationship or linkage amongst a specified group of places, events, persons, objects or other items. [13.3.2.3. ] + + + + + + One of the attributes 'name', 'ref' or 'key' must be supplied + + + + + Only one of the attributes +@active and @mutual may be supplied + + + + + the attribute 'passive' + may be supplied only if the attribute 'active' is + supplied + + + + + + + + + + + supplies a name for the kind of relationship of which this is an instance. + + + + + + + identifies the active participants in a non-mutual relationship, or all the participants in a mutual one. + + + + + + + + + + supplies a list of participants amongst all of whom the relationship holds equally. + + + + + + + + + + + identifies the passive participants in a non-mutual relationship. + + + + + + + + + + + + + describes a person's present or past places of residence. [15.2.2. ] + + + + + + + + + + + specifies the sex of a person. [13.3.2.1. ] + + + + + + + supplies a coded value for sex + + + + + + + + + + + + + (socio-economic status) contains an informal description of a person's perceived social or economic status. [15.2.2. ] + + + + + + + + identifies the classification system or taxonomy in use, for example by pointing to a locally-defined taxonomy element or by supplying a URI for an externally-defined system. + + + + + + identifies a status code defined within the classification system or taxonomy defined by the scheme attribute. + + + + + + + + + contains a description of some status or quality attributed to a person, place, or organization often at some specific time or for a specific date range. [13.3.1. 13.3.2.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains information about the physical terrain of a place. [13.3.4.3. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + contains a description of some status or quality attributed to a person, place, or organization typically, but not necessarily, independent of the volition or action of the holder and usually not at some specific time or for a specific date range. [13.3.1. 13.3.2.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (canonical name) contains the definition for a canonical name or name component of any kind. [13.3.5. ] + + + + + + + + + + + + + + + + + + + + + + + points to constituent nyms + + + + + + + + + + + + + (list of canonical names) contains a list of nyms, that is, standardized names for any thing. [13.3.5. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + (facsimile) points to all or part of an image which corresponds with the content of the element. + + + + + + + + + + + + + + + points to one or more change elements documenting a state or revision campaign to which the element bearing this attribute and its children have been assigned by the encoder. + + + + + + + + + + + + + + + + + + + + indicates the element within a transcription of the text containing at least the start of the writing represented by this zone or surface. + + + + + + + + gives the x coordinate value for the upper left corner of a rectangular space. + + + + + + + + gives the y coordinate value for the upper left corner of a rectangular space. + + + + + + + + gives the x coordinate value for the lower right corner of a rectangular space. + + + + + + + + gives the y coordinate value for the lower right corner of a rectangular space. + + + + + + + + identifies a two dimensional area within the bounding box specified by the other attributes by means of a series of pairs of numbers, each of which gives the x,y coordinates of a point on a line enclosing the area. + + + + + + + + + + + + + + contains a representation of some written source in the form of a set of images rather than as transcribed or encoded text. [11.1. ] + + + + + + + + + + + + + + + + + + + + + + + contains a transcription or other representation of a single source document potentially forming part of a dossier génétique or collection of sources. [11.1. 11.2.2. ] + + + + + + + + + + + + + + + + + + defines a written surface as a two-dimensional coordinate space, optionally grouping one or more graphic representations of that space, zones of interest within that space, and transcriptions of the writing within them. [11.1. 11.2.2. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + describes the method by which this surface is or was connected to the main surface +Sample values include: 1] glued; 2] pinned; 3] sewn + + + + + + indicates whether the surface is attached and folded in such a way as to provide two writing surfaces + + + + + + + + + defines any kind of useful grouping of written surfaces, for example the recto and verso of a single leaf, which the encoder wishes to treat as a single unit. [11.1. ] + + + + + + + + + + + + + + + + defines any two-dimensional area within a surface element. [11.1. 11.2.2. ] + + + + + + + + + + + + + + + indicates the amount by which this zone has been rotated clockwise, with respect to the normal orientation of the parent surface element as implied by the dimensions given in the msDesc element or by the coordinates of the surface itself. The orientation is expressed in arc degrees. + + + + + + + + + (added span of text) marks the beginning of a longer sequence of text added by an author, scribe, annotator or corrector (see also add). [11.3.1.4. ] + + + + The @spanTo attribute of is required. + + + + + L'attribut spanTo est requis. + + + + + + + + + + + + + contains an area of damage to the text witness. [11.3.3.1. ] + + + + + + + + + + (damaged span of text) marks the beginning of a longer sequence of text which is damaged in some way but still legible. [11.3.3.1. ] + + + + +The @spanTo attribute of is required. + + + + + L'attribut spanTo est requis. + + + + + + + + + + + + (deleted span of text) marks the beginning of a longer sequence of text deleted, marked as deleted, or otherwise signaled as superfluous or spurious by an author, scribe, annotator, or corrector. [11.3.1.4. ] + + + + The @spanTo attribute of is required. + + + + + L'attribut spanTo est requis. + + + + + + + + + + + + (editorial expansion) contains a sequence of letters added by an editor or transcriber when expanding an abbreviation. [11.3.1.2. ] + + + + + + + + + (forme work) contains a running head (e.g. a header, footer), catchword, or similar material appearing on the current page. [11.6. ] + + + + + + classifies the material encoded according to some useful typology. +Sample values include: 1] header; 2] footer; 3] pageNum(page number) ; 4] lineNum(line number) ; 5] sig(signature) ; 6] catch(catchword) + + + + + + + + + contains one or more handNote elements documenting the different hands identified within the source texts. [11.3.2.1. ] + + + + + + + + + + marks the beginning of a sequence of text written in a new hand, or the beginning of a scribal stint. [11.3.2.1. ] + + + + + + + indicates a handNote element describing the hand concerned. + + + + + + + + + (abbreviation marker) contains a sequence of letters or signs present in an abbreviation which are omitted or replaced in the expanded form of the abbreviation. [11.3.1.2. ] + + + + + + + + + + + + + + + + indicates restoration of text to an earlier state by cancellation of an editorial or authorial marking or instruction. [11.3.1.6. ] + + + + + + + + + + indicates the location of a significant space in the copy text. [11.5.1. ] + + + + + + + + + + + + + (responsible party) (responsible party) indicates the individual responsible for identifying and measuring the space + + + + + + + + + + (dimension) indicates whether the space is horizontal or vertical. + + horizontal + the space is horizontal. + vertical + the space is vertical. + + + + + + + + + (substitution) groups one or more deletions with one or more additions when the combination is to be regarded as a single intervention in the text. [11.3.1.5. ] + + + + + + + + + + + must have at least one child add and at least one child del + + + + + + + + + + (substitution join) identifies a series of possibly fragmented additions, deletions or other revisions on a manuscript that combine to make up a single intervention in the text [11.3.1.5. ] + + + + + + + + + + + + + + + signifies text supplied by the transcriber or editor for any reason, typically because the original cannot be read because of physical damage or loss to the original. [11.3.3.1. ] + + + + + + one or more words indicating why the text has had to be supplied, e.g. overbinding, faded-ink, lost-folio, omitted-in-original. + + + + + + + + + + + + + marks text present in the source which the editor believes to be superfluous or redundant. [11.3.3.1. ] + + + + + + one or more words indicating why this text is believed to be superfluous, e.g. repeated, interpolated etc. + + + + + + + + + + + + + contains the transcription of a topographic line in the source document [11.2.2. ] + + + + + + + + + + + + + + + + + supplies a list of transpositions, each of which is indicated at some point in a document typically by means of metamarks. [11.3.4.5. ] + + + + + + + + + + contains or describes any kind of graphic or written signal within a document the function of which is to determine how it should be read rather than forming part of the actual content of the document. [11.3.4.2. ] + + + + + + + describes the function (for example status, insertion, deletion, transposition) of the mark. + + + + + + identifies one or more elements to which the function indicated by the metamark applies. + + + + + + + + + + + + + represents any kind of modification identified within a single document. [11.3.4.1. ] + + + + + + + + + + + indicates one or more cancelled interventions in a document which have subsequently been marked as reaffirmed or repeated. [11.3.4.4. ] + + + + + + + points to one or more elements representing the interventions which are being reasserted. + + + + + + + + + + + + + contains a sequence of writing which has been retraced, for example by over-inking, to clarify or fix it. [11.3.4.3. ] + + + + + + + + + + describes a single textual transposition as an ordered list of at least two pointers specifying the order in which the elements indicated should be re-combined. [11.3.4.5. ] + + + + + + + + + + + + + indicates one or more marked-up interventions in a document which have subsequently been marked for cancellation. [11.3.4.4. ] + + + + + + + points to one or more elements representing the interventions which are to be reverted or undone. + + + + + + + + + + + + + contains text displayed in tabular form, in rows and columns. [14.1.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + indicates the number of rows in the table. + + + + + + (columns) indicates the number of columns in each row of the table. + + + + + + + + + contains one row of a table. [14.1.1. ] + + + + + + + + + + + contains one cell of a table. [14.1.1. ] + + + + + + + + + contains a mathematical or other formula. [14.2. ] + + + + + + + + + + + names the notation used for the content of the element. + + + + + + + + + encodes the presence of music notation in a text [14.3. ] + + + + + + + + + + + + + + + + + groups elements representing or containing graphic information such as an illustration, formula, or figure. [14.4. ] + + + + + + + + + + + + + + + + + + + (description of figure) contains a brief prose description of the appearance or content of a graphic figure, for use when documenting an image without displaying it. [14.4. ] + + + + + + + + + + + + indicates whether the passage being quoted is defective, i.e. incomplete through loss or damage. + + + + + + + (manuscript description) contains a description of a single identifiable manuscript or other text-bearing object. [10.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + describes the system used to ensure correct ordering of the quires making up a codex or incunable, typically by means of annotations at the foot of the page. [10.3.7. ] + + + + + + + + contains a dimensional specification. [10.3.4. ] + + + + + + + + + + + +The element may appear once only + + + + + + +The element may appear once only + + + + + + +The element may appear once only + + + + + + + + indicates which aspect of the object is being measured. +Sample values include: 1] leaves; 2] ruled; 3] pricked; 4] written; 5] miniatures; 6] binding; 7] box + + + + + + + + + contains any single measurement forming part of a dimensional specification of some sort. [10.3.4. ] + + + + + + + + + + contains a measurement measured along the axis at right angles to the bottom of the written surface, i.e. parallel to the spine for a codex or book. [10.3.4. ] + + + + + + + + + contains a measurement measured across the spine of a book or codex, or (for other text-bearing objects) perpendicular to the measurement given by the width element. [10.3.4. ] + + + + + + + + + contains a measurement measured along the axis parallel to the bottom of the written surface, i.e. perpendicular to the spine of a book or codex. [10.3.4. ] + + + + + + + + + contains a heraldic formula or phrase, typically found as part of a blazon, coat of arms, etc. [10.3.8. ] + + + + + + + + defines a location within a manuscript or manuscript part, usually as a (possibly discontinuous) sequence of folio references. [10.3.5. ] + + + + + + identifies the foliation scheme in terms of which the location is being specified by pointing to some foliation element defining it, or to some other equivalent resource. + + + + + + specifies the starting point of the location in a normalized form, typically a page number. + + + + + + specifies the end-point of the location in a normalized form, typically as a page number. + + + + + + + + + groups a number of locations which together form a distinct but discontinuous item within a manuscript or manuscript part, according to a specific foliation. [10.3.5. ] + + + + + + + identifies the foliation scheme in terms of which all the locations contained by the group are specified by pointing to some foliation element defining it, or to some other equivalent resource. + + + + + + + + + contains a word or phrase describing the material of which the object being described is composed. [10.3.2. ] + + + + + + + + + contains a word or phrase describing the type of object being referred to. [10.3.2. ] + + + + + + + + + (origin date) contains any form of date, used to identify the date of origin for a manuscript or manuscript part. [10.3.1. ] + + + + + + + + + + + + + + + + + + (origin place) contains any form of place name, used to identify the place of origin for a manuscript or manuscript part. [10.3.1. ] + + + + + + + + + + + + (second folio) marks the word or words taken from a fixed point in a codex (typically the beginning of the second leaf) in order to provide a unique identifier for it. [10.3.7. ] + + + + + + + + contains discussion of the leaf or quire signatures found within a codex. [10.3.7. ] + + + + + + + + contains a word or phrase describing a stamp or similar device. [10.3.3. ] + + + + + + + + + + contains a word or phrase describing a watermark or similar device. [10.3.3. ] + + + + + + + + (manuscript identifier) contains the information required to identify the manuscript being described. [10.4. ] + + + + + + + + + + + + + + + + + + + + + + + + + + An msIdentifier must contain either a repository or location of some type, or a manuscript name + + + + + + + + + contains the name of an organization such as a university or library, with which a manuscript is identified, generally its holding institution. [10.4. ] + + + + + + + + + contains the name of a repository within which manuscripts are stored, possibly forming part of an institution. [10.4. ] + + + + + + + + + contains the name of a collection of manuscripts, not necessarily located within a single repository. [10.4. ] + + + + + + + + + + (alternative identifier) contains an alternative or former structured identifier used for a manuscript, such as a former catalogue number. [10.4. ] + + + + + + + + + + + + + + + + + + + + + + + + (alternative name) contains any form of unstructured alternative name used for a manuscript, such as an ocellus nominum, or nickname. [10.4. ] + + + + + + + + + contains the colophon of a manuscript item: that is, a statement providing information regarding the date, place, agency, or reason for production of the manuscript. [10.6.1. ] + + + + + + + + contains the explicit of a manuscript item, that is, the closing words of the text proper, exclusive of any rubric or colophon which might follow it. [10.6.1. ] + + + + + + + + + + contains information concerning the manuscript's filiation, i.e. its relationship to other surviving manuscripts of the same text, its protographs, antigraphs and apographs. [10.6.1. ] + + + + + + + + + contains the string of words that denotes the end of a text division, often with an assertion as to its author and title, usually set off from the text itself by red ink, by a different size or type of script, or by some other such visual device. [10.6.1. ] + + + + + + + + + contains the incipit of a manuscript item, that is the opening words of the text proper, exclusive of any rubric which might precede it, of sufficient length to identify the work uniquely; such incipits were, in former times, frequently used a means of reference to a work, in place of a title. [10.6.1. ] + + + + + + + + + + (manuscript contents) describes the intellectual content of a manuscript or manuscript part, either as a series of paragraphs or as a series of structured manuscript items. [10.6. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + identifies the text types or classifications applicable to this object by pointing to other elements or resources defining the classification concerned. + + + + + + + + + + + + + (manuscript item) describes an individual work or item within the intellectual content of a manuscript or manuscript part. [10.6.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + identifies the text types or classifications applicable to this item by pointing to other elements or resources defining the classification concerned. + + + + + + + + + + + + + (structured manuscript item) contains a structured description for an individual work or item within the intellectual content of a manuscript or manuscript part. [10.6.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + identifies the text types or classifications applicable to this item by pointing to other elements or resources defining the classification concerned. + + + + + + + + + + + + + contains the text of any rubric or heading attached to a particular manuscript item, that is, a string of words through which a manuscript signals the beginning of a text division, often with an assertion as to its author and title, which is in some way set off from the text itself, usually in red ink, or by use of different size or type of script, or some other such visual device. [10.6.1. ] + + + + + + + + + contains an overview of the available information concerning some aspect of an item (for example, its intellectual content, history, layout, typography etc.) as a complement or alternative to the more detailed information carried by more specific elements. [10.6. ] + + + + + + + + (physical description) contains a full physical description of a manuscript or manuscript part, optionally subdivided using more specialized elements from the model.physDescPart class. [10.7. ] + + + + + + + + + + + + + + + contains a description of the physical components making up the object which is being described. [10.7.1. ] + + + + + + + + + + + + + + + + + a short project-specific name identifying the physical form of the carrier, for example as a codex, roll, fragment, partial leaf, cutting etc. + + + + + + + + + (support description) groups elements describing the physical support for the written part of a manuscript. [10.7.1. ] + + + + + + + + + + + + + + + + + + + + + + + + + + a short project-defined name for the material composing the majority of the support +Suggested values include: 1] paper; 2] parch(parchment) ; 3] mixed + + paper + + parch + (parchment) + mixed + + + + + + + + + + + contains a description of the materials etc. which make up the physical support for the written part of a manuscript. [10.7.1. ] + + + + + + + + contains a description of how the leaves or bifolia are physically arranged. [10.7.1. ] + + + + + + + + describes the numbering system or systems used to count the leaves or pages in a codex. [10.7.1.4. ] + + + + + + + + contains a description of the physical condition of the manuscript. [10.7.1.5. ] + + + + + + + + (layout description) collects the set of layout descriptions applicable to a manuscript. [10.7.2. ] + + + + + + + + + + + + + + + + + + + + describes how text is laid out on the page, including information about any ruling, pricking, or other evidence of page-preparation techniques. [10.7.2. ] + + + + + specifies the number of columns per page + + + + + + + + + + + specifies the number of ruled lines per column + + + + + + + + + + + specifies the number of written lines per column + + + + + + + + + + + + + + (description of hands) contains a description of all the different kinds of writing used in a manuscript. [10.7.2. ] + + + + + + + + + + + + + + + + + specifies the number of distinct hands identified within the manuscript + + + + + + + + + contains a description of the typefaces or other aspects of the printing of an incunable or other printed source. [10.7.2.1. ] + + + + + + + + + + + + + + + + + + + + contains a description of the scripts used in a manuscript or similar source. [10.7.2.1. ] + + + + + + + + + + + + + + + + + + + + contains description of type of musical notation. [10.7.2. ] + + + + + + + + (decoration description) contains a description of the decoration of a manuscript, either as a sequence of paragraphs, or as a sequence of topically organized decoNote elements. [10.7.3. ] + + + + + + + + + + + + + + + + + + + + (note on decoration) contains a note describing either a decorative component of a manuscript, or a fairly homogenous class of such components. [10.7.3. ] + + + + + + + + + contains a description of any significant additions found within a manuscript, such as marginalia or other annotations. [10.7.2. ] + + + + + + + + (binding description) describes the present and former bindings of a manuscript, either as a series of paragraphs or as a series of distinct binding elements, one for each binding of the manuscript. [10.7.3.1. ] + + + + + + + + + + + + + + + + + + + contains a description of one binding, i.e. type of covering, boards, etc. applied to a manuscript. [10.7.3.1. ] + + + + + + + + + + + + specifies whether or not the binding is contemporary with the majority of its contents + + + + + + + + + (seal description) describes the seals or other external items attached to a manuscript, either as a series of paragraphs or as a series of distinct seal elements, possibly with additional decoNotes. [10.7.3.2. ] + + + + + + + + + + + + + + + + + + + + + + + + contains a description of one seal or similar attachment applied to a manuscript. [10.7.3.2. ] + + + + + + + + + + + + specifies whether or not the seal is contemporary with the item to which it is affixed + + + + + + + + + (accompanying material) contains details of any significant additional material which may be closely associated with the manuscript being described, such as non-contemporaneous documents or fragments bound in with the manuscript at some earlier historical period. [10.7.3.3. ] + + + + + + + + + groups elements describing the full history of a manuscript or manuscript part. [10.8. ] + + + + + + + + + + + + + + + + + + + + + + + + + + contains any descriptive or other information concerning the origin of a manuscript or manuscript part. [10.8. ] + + + + + + + + + + contains any descriptive or other information concerning a single identifiable episode during the history of a manuscript or manuscript part, after its creation but before its acquisition. [10.8. ] + + + + + + + + + + + contains any descriptive or other information concerning the process by which a manuscript or manuscript part entered the holding institution. [10.8. ] + + + + + + + + + groups additional information, combining bibliographic information about a manuscript, or surrogate copies of it with curatorial or administrative information. [10.9. ] + + + + + + + + + + + + + + + + + + (administrative information) contains information about the present custody and availability of the manuscript, and also about the record description itself. [10.9.1. ] + + + + + + + + + + + + + + + + + + + + + (recorded history) provides information about the source and revision status of the parent manuscript description itself. [10.9.1. ] + + + + + + + + + + + + + + + + + + describes the original source for the information contained with a manuscript description. [10.9.1.1. ] + + + + + + + + (custodial history) contains a description of a manuscript's custodial history, either as running prose or as a series of dated custodial events. [10.9.1.2. ] + + + + + + + + + + + + + + + (custodial event) describes a single event during the custodial history of a manuscript. [10.9.1.2. ] + + + + + + + + + + contains information about any representations of the manuscript being described which may exist in the holding institution or elsewhere. [10.9. ] + + + + + + + + (manuscript part) contains information about an originally distinct manuscript or part of a manuscript, now forming part of a composite manuscript. [10.10. ] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + WARNING: use of deprecated method — the use of the altIdentifier element as a direct child of the msPart element will be removed from the TEI on 2016-09-09 + + + + + + + + + + + + + (analysis) indicates one or more elements containing interpretations of the element on which the ana attribute appears. + + + + + + + + + + + (character) represents a character. [17.1. ] + + + + + + + + + + associates an interpretative annotation directly with a span of text. [17.3. ] + + + + +Only one of the attributes @target and @from may be supplied on + + + + + + +Only one of the attributes @target and @to may be supplied on + + + + + + +If @to is supplied on , @from must be supplied as well + + + + + +The attributes @to and @from on may each contain only a single value + + + + + + + + gives the identifier of the node which is the starting point of the span of text being annotated; if not accompanied by a to attribute, gives the identifier of the node of the entire span of text being annotated. + + + + + + gives the identifier of the node which is the end-point of the span of text being annotated. + + + + + + + + + + + + + From 74c2f95d1e4c7cfb49dde749ce13739e795c4b68 Mon Sep 17 00:00:00 2001 From: davivcu Date: Thu, 3 Oct 2024 15:27:43 +0200 Subject: [PATCH 03/10] Format edition_config_DOTR.json --- src/assets/config/edition_config_DOTR.json | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/assets/config/edition_config_DOTR.json b/src/assets/config/edition_config_DOTR.json index bb026c8f7..3ed0dc1ef 100644 --- a/src/assets/config/edition_config_DOTR.json +++ b/src/assets/config/edition_config_DOTR.json @@ -6,26 +6,26 @@ { "id": "diplomatic", "label": "diplomatic", - "enable": true, - "hidden": false + "enable": true, + "hidden": false }, { "id": "interpretative", "label": "interpretative", - "enable": true, - "hidden": false + "enable": true, + "hidden": false }, { "id": "critical", "label": "critical", - "enable": true, - "hidden": false - }, - { - "id": "changesView", - "label": "changes", - "enable": true, - "hidden": true + "enable": true, + "hidden": false + }, + { + "id": "changesView", + "label": "changes", + "enable": true, + "hidden": true } ], "downloadableXMLSource": true, @@ -115,8 +115,8 @@ "defaultTextFlow": "prose", "verseNumberPrinter": 5, "readingColorLight": "rgb(208, 220, 255)", - "readingColorDark": "rgb(101, 138, 255)", - "externalBibliography": { + "readingColorDark": "rgb(101, 138, 255)", + "externalBibliography": { "biblAttributeToMatch": "xml:id", "elementAttributesToMatch": [ "target", From 4e906c46926c90c589a79ef49f94cadffa94be1d Mon Sep 17 00:00:00 2001 From: davivcu Date: Thu, 3 Oct 2024 15:35:27 +0200 Subject: [PATCH 04/10] Normalize format in config json files --- src/assets/config/edition_config.json | 6 +- src/assets/config/edition_config_DOTR.json | 144 +++++++++--------- .../config/edition_config_Pelavicino.json | 118 +++++++------- .../config/edition_config_PseudoEdition.json | 132 ++++++++-------- src/assets/config/edition_config_Saba.json | 10 +- src/assets/config/file_config.json | 8 +- src/assets/config/file_config_DOTR.json | 8 +- src/assets/config/file_config_Pelavicino.json | 8 +- .../config/file_config_PseudoEdition.json | 8 +- src/assets/config/file_config_Saba.json | 8 +- src/assets/config/ui_config.json | 26 +++- src/assets/config/ui_config_DOTR.json | 26 +++- src/assets/config/ui_config_Pelavicino.json | 26 +++- .../config/ui_config_PseudoEdition.json | 26 +++- src/assets/config/ui_config_Saba.json | 26 +++- 15 files changed, 331 insertions(+), 249 deletions(-) diff --git a/src/assets/config/edition_config.json b/src/assets/config/edition_config.json index befe0a457..0fdd02b0a 100644 --- a/src/assets/config/edition_config.json +++ b/src/assets/config/edition_config.json @@ -152,7 +152,9 @@ "Parallel", "parallel" ], - "sourcesExcludedFromListByParent": ["desc"], + "sourcesExcludedFromListByParent": [ + "desc" + ], "showSubstitutionMarker": true, "showSeparatorBetweenChanges": true, "startingFromDefinitiveLayer": true, @@ -172,4 +174,4 @@ "defaultImageZoomLevel": 0.8, "maxImageZoomLevel": 2, "multiPageEngineForCriticalEdition": false -} +} \ No newline at end of file diff --git a/src/assets/config/edition_config_DOTR.json b/src/assets/config/edition_config_DOTR.json index 3ed0dc1ef..34dfaeb07 100644 --- a/src/assets/config/edition_config_DOTR.json +++ b/src/assets/config/edition_config_DOTR.json @@ -6,29 +6,29 @@ { "id": "diplomatic", "label": "diplomatic", - "enable": true, - "hidden": false + "enable": true, + "hidden": false }, { "id": "interpretative", "label": "interpretative", - "enable": true, - "hidden": false + "enable": true, + "hidden": false }, { "id": "critical", "label": "critical", - "enable": true, - "hidden": false - }, - { - "id": "changesView", - "label": "changes", - "enable": true, - "hidden": true + "enable": true, + "hidden": false + }, + { + "id": "changesView", + "label": "changes", + "enable": true, + "hidden": true } ], - "downloadableXMLSource": true, + "downloadableXMLSource": true, "namedEntitiesLists": { "persons": { "defaultLabel": "Persons", @@ -51,7 +51,7 @@ "enable": true } }, - "showLists": true, + "showLists": true, "entitiesSelectItems": [ { "label": "Named Entities", @@ -115,60 +115,62 @@ "defaultTextFlow": "prose", "verseNumberPrinter": 5, "readingColorLight": "rgb(208, 220, 255)", - "readingColorDark": "rgb(101, 138, 255)", - "externalBibliography": { - "biblAttributeToMatch": "xml:id", - "elementAttributesToMatch": [ - "target", - "source" - ] - }, - "biblView": { - "propsToShow": [ - "author", - "title", - "date", - "editor", - "publisher", - "pubPlace", - "citedRange", - "biblScope" - ], - "showAttrNames": false, - "showEmptyValues": false, - "inline": true, - "commaSeparated": true, - "showMainElemTextContent": true, - "changeSequenceView": { - "showVarSeqAttr": false, - "showSeqAttr": false, - "layerColors": [] - }, - "defaultImageZoomLevel": 0.8 - }, - "analogueMarkers": [ - "ParallelPassage", - "parallelPassage", - "Parallel", - "parallel" - ], - "sourcesExcludedFromListByParent": ["desc"], - "showSubstitutionMarker": true, - "showSeparatorBetweenChanges": true, - "startingFromDefinitiveLayer": true, - "showChangeLayerMarkerInText": true, - "changeSequenceView": { - "showVarSeqAttr": false, - "showSeqAttr": false, - "layerColors": { - "strato-0": "#71e5fa", - "strato-1": "#609cf4", - "strato-2": "#0d6efd", - "strato-3": "#7B66FF", - "strato-4": "#3e22f3", - "strato-5": "#100077" - } - }, - "defaultImageZoomLevel": 0.8, - "multiPageEngineForCriticalEdition": false -} + "readingColorDark": "rgb(101, 138, 255)", + "externalBibliography": { + "biblAttributeToMatch": "xml:id", + "elementAttributesToMatch": [ + "target", + "source" + ] + }, + "biblView": { + "propsToShow": [ + "author", + "title", + "date", + "editor", + "publisher", + "pubPlace", + "citedRange", + "biblScope" + ], + "showAttrNames": false, + "showEmptyValues": false, + "inline": true, + "commaSeparated": true, + "showMainElemTextContent": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": [] + }, + "defaultImageZoomLevel": 0.8 + }, + "analogueMarkers": [ + "ParallelPassage", + "parallelPassage", + "Parallel", + "parallel" + ], + "sourcesExcludedFromListByParent": [ + "desc" + ], + "showSubstitutionMarker": true, + "showSeparatorBetweenChanges": true, + "startingFromDefinitiveLayer": true, + "showChangeLayerMarkerInText": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": { + "strato-0": "#71e5fa", + "strato-1": "#609cf4", + "strato-2": "#0d6efd", + "strato-3": "#7B66FF", + "strato-4": "#3e22f3", + "strato-5": "#100077" + } + }, + "defaultImageZoomLevel": 0.8, + "multiPageEngineForCriticalEdition": false +} \ No newline at end of file diff --git a/src/assets/config/edition_config_Pelavicino.json b/src/assets/config/edition_config_Pelavicino.json index 27c0d55fd..3694a14f8 100644 --- a/src/assets/config/edition_config_Pelavicino.json +++ b/src/assets/config/edition_config_Pelavicino.json @@ -28,7 +28,7 @@ "hidden": true } ], - "downloadableXMLSource": true, + "downloadableXMLSource": true, "namedEntitiesLists": { "persons": { "defaultLabel": "Persons", @@ -115,60 +115,62 @@ "defaultTextFlow": "prose", "verseNumberPrinter": 5, "readingColorLight": "rgb(208, 220, 255)", - "readingColorDark": "rgb(101, 138, 255)", - "externalBibliography": { - "biblAttributeToMatch": "xml:id", - "elementAttributesToMatch": [ - "target", - "source" - ] - }, - "biblView": { - "propsToShow": [ - "author", - "title", - "date", - "editor", - "publisher", - "pubPlace", - "citedRange", - "biblScope" - ], - "showAttrNames": false, - "showEmptyValues": false, - "inline": true, - "commaSeparated": true, - "showMainElemTextContent": true, - "changeSequenceView": { - "showVarSeqAttr": false, - "showSeqAttr": false, - "layerColors": [] - }, - "defaultImageZoomLevel": 0.8 - }, - "analogueMarkers": [ - "ParallelPassage", - "parallelPassage", - "Parallel", - "parallel" - ], - "sourcesExcludedFromListByParent": ["desc"], - "showSubstitutionMarker": true, - "showSeparatorBetweenChanges": true, - "startingFromDefinitiveLayer": true, - "showChangeLayerMarkerInText": true, - "changeSequenceView": { - "showVarSeqAttr": false, - "showSeqAttr": false, - "layerColors": { - "strato-0": "#71e5fa", - "strato-1": "#609cf4", - "strato-2": "#0d6efd", - "strato-3": "#7B66FF", - "strato-4": "#3e22f3", - "strato-5": "#100077" - } - }, - "defaultImageZoomLevel": 0.8, - "multiPageEngineForCriticalEdition": false -} + "readingColorDark": "rgb(101, 138, 255)", + "externalBibliography": { + "biblAttributeToMatch": "xml:id", + "elementAttributesToMatch": [ + "target", + "source" + ] + }, + "biblView": { + "propsToShow": [ + "author", + "title", + "date", + "editor", + "publisher", + "pubPlace", + "citedRange", + "biblScope" + ], + "showAttrNames": false, + "showEmptyValues": false, + "inline": true, + "commaSeparated": true, + "showMainElemTextContent": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": [] + }, + "defaultImageZoomLevel": 0.8 + }, + "analogueMarkers": [ + "ParallelPassage", + "parallelPassage", + "Parallel", + "parallel" + ], + "sourcesExcludedFromListByParent": [ + "desc" + ], + "showSubstitutionMarker": true, + "showSeparatorBetweenChanges": true, + "startingFromDefinitiveLayer": true, + "showChangeLayerMarkerInText": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": { + "strato-0": "#71e5fa", + "strato-1": "#609cf4", + "strato-2": "#0d6efd", + "strato-3": "#7B66FF", + "strato-4": "#3e22f3", + "strato-5": "#100077" + } + }, + "defaultImageZoomLevel": 0.8, + "multiPageEngineForCriticalEdition": false +} \ No newline at end of file diff --git a/src/assets/config/edition_config_PseudoEdition.json b/src/assets/config/edition_config_PseudoEdition.json index 7f0e783df..d19a23e5c 100644 --- a/src/assets/config/edition_config_PseudoEdition.json +++ b/src/assets/config/edition_config_PseudoEdition.json @@ -20,15 +20,15 @@ "label": "Critical", "enable": true, "hidden": false - }, - { - "id": "changesView", - "label": "changes", - "enable": false, - "hidden": true + }, + { + "id": "changesView", + "label": "changes", + "enable": false, + "hidden": true } ], - "downloadableXMLSource": true, + "downloadableXMLSource": true, "namedEntitiesLists": { "persons": { "defaultLabel": "Persons", @@ -51,7 +51,7 @@ "enable": true } }, - "showLists": true, + "showLists": true, "entitiesSelectItems": [ { "label": "Named Entities", @@ -115,60 +115,62 @@ "defaultTextFlow": "prose", "verseNumberPrinter": 5, "readingColorLight": "rgb(208, 220, 255)", - "readingColorDark": "rgb(101, 138, 255)", - "externalBibliography": { - "biblAttributeToMatch": "xml:id", - "elementAttributesToMatch": [ - "target", - "source" - ] - }, - "biblView": { - "propsToShow": [ - "author", - "title", - "date", - "editor", - "publisher", - "pubPlace", - "citedRange", - "biblScope" - ], - "showAttrNames": false, - "showEmptyValues": false, - "inline": true, - "commaSeparated": true, - "showMainElemTextContent": true, - "changeSequenceView": { - "showVarSeqAttr": false, - "showSeqAttr": false, - "layerColors": [] - }, - "defaultImageZoomLevel": 0.8 - }, - "analogueMarkers": [ - "ParallelPassage", - "parallelPassage", - "Parallel", - "parallel" - ], - "sourcesExcludedFromListByParent": ["desc"], - "showSubstitutionMarker": true, - "showSeparatorBetweenChanges": true, - "startingFromDefinitiveLayer": true, - "showChangeLayerMarkerInText": true, - "changeSequenceView": { - "showVarSeqAttr": false, - "showSeqAttr": false, - "layerColors": { - "strato-0": "#71e5fa", - "strato-1": "#609cf4", - "strato-2": "#0d6efd", - "strato-3": "#7B66FF", - "strato-4": "#3e22f3", - "strato-5": "#100077" - } - }, - "defaultImageZoomLevel": 0.8, - "multiPageEngineForCriticalEdition": false -} + "readingColorDark": "rgb(101, 138, 255)", + "externalBibliography": { + "biblAttributeToMatch": "xml:id", + "elementAttributesToMatch": [ + "target", + "source" + ] + }, + "biblView": { + "propsToShow": [ + "author", + "title", + "date", + "editor", + "publisher", + "pubPlace", + "citedRange", + "biblScope" + ], + "showAttrNames": false, + "showEmptyValues": false, + "inline": true, + "commaSeparated": true, + "showMainElemTextContent": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": [] + }, + "defaultImageZoomLevel": 0.8 + }, + "analogueMarkers": [ + "ParallelPassage", + "parallelPassage", + "Parallel", + "parallel" + ], + "sourcesExcludedFromListByParent": [ + "desc" + ], + "showSubstitutionMarker": true, + "showSeparatorBetweenChanges": true, + "startingFromDefinitiveLayer": true, + "showChangeLayerMarkerInText": true, + "changeSequenceView": { + "showVarSeqAttr": false, + "showSeqAttr": false, + "layerColors": { + "strato-0": "#71e5fa", + "strato-1": "#609cf4", + "strato-2": "#0d6efd", + "strato-3": "#7B66FF", + "strato-4": "#3e22f3", + "strato-5": "#100077" + } + }, + "defaultImageZoomLevel": 0.8, + "multiPageEngineForCriticalEdition": false +} \ No newline at end of file diff --git a/src/assets/config/edition_config_Saba.json b/src/assets/config/edition_config_Saba.json index ec2ce2adf..c9106a719 100644 --- a/src/assets/config/edition_config_Saba.json +++ b/src/assets/config/edition_config_Saba.json @@ -106,7 +106,9 @@ "enable": true } ], - "notSignificantVariants": ["type=orthographic"], + "notSignificantVariants": [ + "type=orthographic" + ], "defaultEdition": "changesView", "defaultViewMode": "documentalMixed", "proseVersesToggler": false, @@ -149,7 +151,9 @@ "Parallel", "parallel" ], - "sourcesExcludedFromListByParent": ["desc"], + "sourcesExcludedFromListByParent": [ + "desc" + ], "showSubstitutionMarker": true, "showSeparatorBetweenChanges": true, "startingFromDefinitiveLayer": false, @@ -169,4 +173,4 @@ "defaultImageZoomLevel": 0.8, "multiPageEngineForCriticalEdition": false, "syncZonesHighlightButton": false -} +} \ No newline at end of file diff --git a/src/assets/config/file_config.json b/src/assets/config/file_config.json index bfb391c2e..e15d84a2b 100644 --- a/src/assets/config/file_config.json +++ b/src/assets/config/file_config.json @@ -1,5 +1,7 @@ { - "editionUrls": ["assets/data/saba.xml"], + "editionUrls": [ + "assets/data/saba.xml" + ], "editionImagesSource": { "manifest": { "value": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", @@ -10,7 +12,7 @@ "enable": false } }, - "imagesFolderUrls":{ + "imagesFolderUrls": { "single": "assets/data/images/single/", "double": "assets/data/images/double/" }, @@ -19,4 +21,4 @@ "ui": "assets/config/ui_config_Saba.json", "editorialConventions": "assets/config/editorial_conventions_config.json" } -} +} \ No newline at end of file diff --git a/src/assets/config/file_config_DOTR.json b/src/assets/config/file_config_DOTR.json index e3b1eb73b..08cf30b7e 100644 --- a/src/assets/config/file_config_DOTR.json +++ b/src/assets/config/file_config_DOTR.json @@ -1,5 +1,7 @@ { - "editionUrls": ["assets/data/VB-DOTR.xml"], + "editionUrls": [ + "assets/data/VB-DOTR.xml" + ], "editionImagesSource": { "manifest": { "value": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", @@ -10,7 +12,7 @@ "enable": false } }, - "imagesFolderUrls":{ + "imagesFolderUrls": { "single": "assets/data/images/single/", "double": "assets/data/images/double/" }, @@ -19,4 +21,4 @@ "ui": "assets/config/ui_config_DOTR.json", "editorialConventions": "assets/config/editorial_conventions_config.json" } -} +} \ No newline at end of file diff --git a/src/assets/config/file_config_Pelavicino.json b/src/assets/config/file_config_Pelavicino.json index 363d9be5b..1c9036373 100644 --- a/src/assets/config/file_config_Pelavicino.json +++ b/src/assets/config/file_config_Pelavicino.json @@ -1,5 +1,7 @@ { - "editionUrls": ["assets/data/pelavicino.xml"], + "editionUrls": [ + "assets/data/pelavicino.xml" + ], "editionImagesSource": { "manifest": { "value": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", @@ -10,7 +12,7 @@ "enable": false } }, - "imagesFolderUrls":{ + "imagesFolderUrls": { "single": "assets/data/images/single/", "double": "assets/data/images/double/" }, @@ -19,4 +21,4 @@ "ui": "assets/config/ui_config_Pelavicino.json", "editorialConventions": "assets/config/editorial_conventions_config.json" } -} +} \ No newline at end of file diff --git a/src/assets/config/file_config_PseudoEdition.json b/src/assets/config/file_config_PseudoEdition.json index 53bf48642..c203cf2d4 100644 --- a/src/assets/config/file_config_PseudoEdition.json +++ b/src/assets/config/file_config_PseudoEdition.json @@ -1,5 +1,7 @@ { - "editionUrls": ["assets/data/pseudoEdition.xml"], + "editionUrls": [ + "assets/data/pseudoEdition.xml" + ], "editionImagesSource": { "manifest": { "value": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", @@ -10,7 +12,7 @@ "enable": false } }, - "imagesFolderUrls":{ + "imagesFolderUrls": { "single": "assets/data/images/single/", "double": "assets/data/images/double/" }, @@ -19,4 +21,4 @@ "ui": "assets/config/ui_config_PseudoEdition.json", "editorialConventions": "assets/config/editorial_conventions_config.json" } -} +} \ No newline at end of file diff --git a/src/assets/config/file_config_Saba.json b/src/assets/config/file_config_Saba.json index bfb391c2e..e15d84a2b 100644 --- a/src/assets/config/file_config_Saba.json +++ b/src/assets/config/file_config_Saba.json @@ -1,5 +1,7 @@ { - "editionUrls": ["assets/data/saba.xml"], + "editionUrls": [ + "assets/data/saba.xml" + ], "editionImagesSource": { "manifest": { "value": "https://www.e-codices.unifr.ch/metadata/iiif/csg-0730/manifest.json", @@ -10,7 +12,7 @@ "enable": false } }, - "imagesFolderUrls":{ + "imagesFolderUrls": { "single": "assets/data/images/single/", "double": "assets/data/images/double/" }, @@ -19,4 +21,4 @@ "ui": "assets/config/ui_config_Saba.json", "editorialConventions": "assets/config/editorial_conventions_config.json" } -} +} \ No newline at end of file diff --git a/src/assets/config/ui_config.json b/src/assets/config/ui_config.json index 632d3c080..2defd94be 100644 --- a/src/assets/config/ui_config.json +++ b/src/assets/config/ui_config.json @@ -106,7 +106,9 @@ ], "properties": { "titleQuotes": true, - "emphasized": [ "publisher" ] + "emphasized": [ + "publisher" + ] } }, "apa": { @@ -129,12 +131,18 @@ }, "publicationStyle": { "citingAcronym": "none", - "inBrackets": [ "issue" ] + "inBrackets": [ + "issue" + ] }, "propsDelimiter": ".", "titleQuotes": false, - "emphasized": [ "publication" ], - "inBrackets": [ "date" ] + "emphasized": [ + "publication" + ], + "inBrackets": [ + "date" + ] } }, "mla": { @@ -155,13 +163,17 @@ }, "publicationStyle": { "citingAcronym": "all", - "inBrackets": [ "issue" ], + "inBrackets": [ + "issue" + ], "includeEditor": true }, "dateInsidePublication": true, "titleQuotes": false, - "emphasized": [ "publication" ] + "emphasized": [ + "publication" + ] } } } -} +} \ No newline at end of file diff --git a/src/assets/config/ui_config_DOTR.json b/src/assets/config/ui_config_DOTR.json index c949d60f5..4b05b58e8 100644 --- a/src/assets/config/ui_config_DOTR.json +++ b/src/assets/config/ui_config_DOTR.json @@ -106,7 +106,9 @@ ], "properties": { "titleQuotes": true, - "emphasized": [ "publisher" ] + "emphasized": [ + "publisher" + ] } }, "apa": { @@ -129,12 +131,18 @@ }, "publicationStyle": { "citingAcronym": "none", - "inBrackets": [ "issue" ] + "inBrackets": [ + "issue" + ] }, "propsDelimiter": ".", "titleQuotes": false, - "emphasized": [ "publication" ], - "inBrackets": [ "date" ] + "emphasized": [ + "publication" + ], + "inBrackets": [ + "date" + ] } }, "mla": { @@ -155,13 +163,17 @@ }, "publicationStyle": { "citingAcronym": "all", - "inBrackets": [ "issue" ], + "inBrackets": [ + "issue" + ], "includeEditor": true }, "dateInsidePublication": true, "titleQuotes": false, - "emphasized": [ "publication" ] + "emphasized": [ + "publication" + ] } } } -} +} \ No newline at end of file diff --git a/src/assets/config/ui_config_Pelavicino.json b/src/assets/config/ui_config_Pelavicino.json index 678993df0..054c940a1 100644 --- a/src/assets/config/ui_config_Pelavicino.json +++ b/src/assets/config/ui_config_Pelavicino.json @@ -106,7 +106,9 @@ ], "properties": { "titleQuotes": true, - "emphasized": [ "publisher" ] + "emphasized": [ + "publisher" + ] } }, "apa": { @@ -129,12 +131,18 @@ }, "publicationStyle": { "citingAcronym": "none", - "inBrackets": [ "issue" ] + "inBrackets": [ + "issue" + ] }, "propsDelimiter": ".", "titleQuotes": false, - "emphasized": [ "publication" ], - "inBrackets": [ "date" ] + "emphasized": [ + "publication" + ], + "inBrackets": [ + "date" + ] } }, "mla": { @@ -155,13 +163,17 @@ }, "publicationStyle": { "citingAcronym": "all", - "inBrackets": [ "issue" ], + "inBrackets": [ + "issue" + ], "includeEditor": true }, "dateInsidePublication": true, "titleQuotes": false, - "emphasized": [ "publication" ] + "emphasized": [ + "publication" + ] } } } -} +} \ No newline at end of file diff --git a/src/assets/config/ui_config_PseudoEdition.json b/src/assets/config/ui_config_PseudoEdition.json index cac6d7cc3..87946fcee 100644 --- a/src/assets/config/ui_config_PseudoEdition.json +++ b/src/assets/config/ui_config_PseudoEdition.json @@ -106,7 +106,9 @@ ], "properties": { "titleQuotes": true, - "emphasized": [ "publisher" ] + "emphasized": [ + "publisher" + ] } }, "apa": { @@ -129,12 +131,18 @@ }, "publicationStyle": { "citingAcronym": "none", - "inBrackets": [ "issue" ] + "inBrackets": [ + "issue" + ] }, "propsDelimiter": ".", "titleQuotes": false, - "emphasized": [ "publication" ], - "inBrackets": [ "date" ] + "emphasized": [ + "publication" + ], + "inBrackets": [ + "date" + ] } }, "mla": { @@ -155,13 +163,17 @@ }, "publicationStyle": { "citingAcronym": "all", - "inBrackets": [ "issue" ], + "inBrackets": [ + "issue" + ], "includeEditor": true }, "dateInsidePublication": true, "titleQuotes": false, - "emphasized": [ "publication" ] + "emphasized": [ + "publication" + ] } } } -} +} \ No newline at end of file diff --git a/src/assets/config/ui_config_Saba.json b/src/assets/config/ui_config_Saba.json index ea0682b81..dde27eb4b 100644 --- a/src/assets/config/ui_config_Saba.json +++ b/src/assets/config/ui_config_Saba.json @@ -106,7 +106,9 @@ ], "properties": { "titleQuotes": true, - "emphasized": [ "publisher" ] + "emphasized": [ + "publisher" + ] } }, "apa": { @@ -129,12 +131,18 @@ }, "publicationStyle": { "citingAcronym": "none", - "inBrackets": [ "issue" ] + "inBrackets": [ + "issue" + ] }, "propsDelimiter": ".", "titleQuotes": false, - "emphasized": [ "publication" ], - "inBrackets": [ "date" ] + "emphasized": [ + "publication" + ], + "inBrackets": [ + "date" + ] } }, "mla": { @@ -155,13 +163,17 @@ }, "publicationStyle": { "citingAcronym": "all", - "inBrackets": [ "issue" ], + "inBrackets": [ + "issue" + ], "includeEditor": true }, "dateInsidePublication": true, "titleQuotes": false, - "emphasized": [ "publication" ] + "emphasized": [ + "publication" + ] } } } -} +} \ No newline at end of file From 7b2b5263f99561b7396955e2aa5e8724a38847de Mon Sep 17 00:00:00 2001 From: davivcu Date: Thu, 3 Oct 2024 15:38:13 +0200 Subject: [PATCH 05/10] Remove bak files --- src/app/app-routing.module.ts.bak | 23 -- src/app/app.component.ts.bak | 66 ---- src/app/app.module.ts.bak | 281 ------------------ .../main-header.component.html.bak | 25 -- src/assets/config/ui_config.json.bak | 65 ---- 5 files changed, 460 deletions(-) delete mode 100644 src/app/app-routing.module.ts.bak delete mode 100644 src/app/app.component.ts.bak delete mode 100644 src/app/app.module.ts.bak delete mode 100644 src/app/main-header/main-header.component.html.bak delete mode 100644 src/assets/config/ui_config.json.bak diff --git a/src/app/app-routing.module.ts.bak b/src/app/app-routing.module.ts.bak deleted file mode 100644 index 7a2ed2473..000000000 --- a/src/app/app-routing.module.ts.bak +++ /dev/null @@ -1,23 +0,0 @@ -import { NgModule } from '@angular/core'; -import { RouterModule, Routes } from '@angular/router'; -import { CollationComponent } from './view-modes/collation/collation.component'; -import { ImageTextComponent } from './view-modes/image-text/image-text.component'; -import { ReadingTextComponent } from './view-modes/reading-text/reading-text.component'; -import { TextSourcesComponent } from './view-modes/text-sources/text-sources.component'; -import { TextTextComponent } from './view-modes/text-text/text-text.component'; -import { TextVersionsComponent } from './view-modes/text-versions/text-versions.component'; - -const appRoutes: Routes = [ - { path: 'imageText', component: ImageTextComponent }, - { path: 'readingText', component: ReadingTextComponent }, - { path: 'textText', component: TextTextComponent }, - { path: 'collation', component: CollationComponent }, - { path: 'textSources', component: TextSourcesComponent }, - { path: 'textVersions', component: TextVersionsComponent }, -]; -@NgModule({ - imports: [RouterModule.forRoot(appRoutes, { relativeLinkResolution: 'legacy' })], - exports: [RouterModule], -}) -export class AppRoutingModule { -} diff --git a/src/app/app.component.ts.bak b/src/app/app.component.ts.bak deleted file mode 100644 index 3babfbf3b..000000000 --- a/src/app/app.component.ts.bak +++ /dev/null @@ -1,66 +0,0 @@ -import { Component, ElementRef, HostBinding, HostListener, OnDestroy, ViewChild } from '@angular/core'; -import { Title } from '@angular/platform-browser'; -import { NavigationCancel, NavigationEnd, NavigationError, NavigationStart, Router } from '@angular/router'; -import { NgxSpinnerService } from 'ngx-spinner'; -import { BehaviorSubject, Observable, Subscription } from 'rxjs'; -import { map } from 'rxjs/operators'; -import { AppConfig } from './app.config'; -import { ThemesService } from './services/themes.service'; -import { ShortcutsService } from './shortcuts/shortcuts.service'; -import { EvtIconInfo } from './ui-components/icon/icon.component'; - -@Component({ - selector: 'evt-root', - templateUrl: './app.component.html', - styleUrls: ['./app.component.scss'], -}) -export class AppComponent implements OnDestroy { - @ViewChild('mainSpinner') mainSpinner: ElementRef; - private subscriptions: Subscription[] = []; - public hasNavBar = AppConfig.evtSettings.ui.enableNavBar; - public navbarOpened$ = new BehaviorSubject(this.hasNavBar && AppConfig.evtSettings.ui.initNavBarOpened); - - public navbarTogglerIcon$: Observable = this.navbarOpened$.pipe( - map((opened: boolean) => opened ? { icon: 'caret-down', iconSet: 'fas' } : { icon: 'caret-up', iconSet: 'fas' }), - ); - - constructor( - private router: Router, - private spinner: NgxSpinnerService, - private shortcutsService: ShortcutsService, - private themes: ThemesService, - private titleService: Title, - ) { - this.router.events.subscribe((event) => { - switch (true) { - case event instanceof NavigationStart: - this.spinner.show(); - break; - case event instanceof NavigationEnd: - case event instanceof NavigationCancel: - case event instanceof NavigationError: - this.spinner.hide(); - break; - default: - break; - } - }); - this.titleService.setTitle(AppConfig.evtSettings.edition.editionTitle || 'EVT'); - } - - @HostBinding('attr.data-theme') get dataTheme() { return this.themes.getCurrentTheme().value; } - - toggleToolbar() { - this.navbarOpened$.next(!this.navbarOpened$.getValue()); - window.dispatchEvent(new Event('resize')); // Needed to tell Gridster to resize - } - - ngOnDestroy() { - this.subscriptions.forEach((subscription) => subscription.unsubscribe()); - } - - @HostListener('window:keyup', ['$event']) - keyEvent(e: KeyboardEvent) { - this.shortcutsService.handleKeyboardEvent(e); - } -} diff --git a/src/app/app.module.ts.bak b/src/app/app.module.ts.bak deleted file mode 100644 index a131051b3..000000000 --- a/src/app/app.module.ts.bak +++ /dev/null @@ -1,281 +0,0 @@ -import { NgxSliderModule } from '@angular-slider/ngx-slider'; -import { ScrollingModule as ExperimentalScrollingModule } from '@angular/cdk-experimental/scrolling'; -import { ScrollingModule } from '@angular/cdk/scrolling'; -import { HttpClientModule } from '@angular/common/http'; -import { APP_INITIALIZER, ApplicationRef, DoBootstrap, NgModule } from '@angular/core'; -import { FormsModule } from '@angular/forms'; -import { BrowserModule } from '@angular/platform-browser'; -import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; -import { FaIconLibrary } from '@fortawesome/angular-fontawesome'; -import { fas } from '@fortawesome/free-solid-svg-icons'; -import { NgbModule, NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap'; -import { GridsterModule } from 'angular-gridster2'; -import { DynamicAttributesModule, DynamicModule } from 'ng-dynamic-component'; -import { NgxSpinnerModule } from 'ngx-spinner'; -import { UiComponentsModule } from './ui-components/ui-components.module'; - -import { RouterModule, Routes } from '@angular/router'; -import { AppRoutingModule } from './app-routing.module'; -import { AppTranslationModule } from './app-translation.module'; -import { AppComponent } from './app.component'; - -import { Ng2HandySyntaxHighlighterModule } from 'ng2-handy-syntax-highlighter'; -import { AppConfig } from './app.config'; - -import { AdditionComponent } from './components/addition/addition.component'; -import { AdditionalComponent } from './components/additional/additional.component'; -import { ApparatusEntryDetailComponent } from './components/apparatus-entry/apparatus-entry-detail/apparatus-entry-detail.component'; -import { ApparatusEntryReadingsComponent } from './components/apparatus-entry/apparatus-entry-readings/apparatus-entry-readings.component'; -import { ApparatusEntryComponent } from './components/apparatus-entry/apparatus-entry.component'; -import { CharComponent } from './components/char/char.component'; -import { ChoiceComponent } from './components/choice/choice.component'; -import { ContentViewerComponent } from './components/content-viewer/content-viewer.component'; -import { DamageComponent } from './components/damage/damage.component'; -import { DeletionComponent } from './components/deletion/deletion.component'; -import { EditionLevelSelectorComponent } from './components/edition-level-selector/edition-level-selector.component'; -import { EditionStmtComponent } from './components/edition-stmt/edition-stmt.component'; -import { EditorialDeclComponent } from './components/editorial-decl/editorial-decl.component'; -import { EncodingDescComponent } from './components/encoding-desc/encoding-desc.component'; -import { EntitiesSelectComponent } from './components/entities-select/entities-select.component'; -import { ExtentComponent } from './components/extent/extent.component'; -import { FileDescComponent } from './components/file-desc/file-desc.component'; -import { GComponent } from './components/g/g.component'; -import { GapComponent } from './components/gap/gap.component'; -import { GenericElementComponent } from './components/generic-element/generic-element.component'; -import { GlobalListsComponent } from './components/global-lists/global-lists.component'; -import { HistoryComponent } from './components/history/history.component'; -import { IdentifierComponent } from './components/identifier/identifier.component'; -import { LbComponent } from './components/lb/lb.component'; -import { ManuscriptThumbnailsViewerComponent } from './components/manuscript-thumbnails-viewer/manuscript-thumbnails-viewer.component'; -import { MsContentsComponent } from './components/ms-contents/ms-contents.component'; -import { MsDescSelectorComponent } from './components/ms-desc-selector/ms-desc-selector.component'; -import { MsDescComponent } from './components/ms-desc/ms-desc.component'; -import { MsFragComponent } from './components/ms-frag/ms-frag.component'; -import { MsIdentifierComponent } from './components/ms-identifier/ms-identifier.component'; -import { MsItemComponent } from './components/ms-item/ms-item.component'; -import { MsPartComponent } from './components/ms-part/ms-part.component'; -import { NamedEntitiesListComponent } from './components/named-entities-list/named-entities-list.component'; -import { NamedEntityRefComponent } from './components/named-entity-ref/named-entity-ref.component'; -import { NamedEntityRelationComponent } from './components/named-entity-relation/named-entity-relation.component'; -import { NamedEntityDetailComponent } from './components/named-entity/named-entity-detail/named-entity-detail.component'; -import { NamedEntityOccurrenceComponent } from './components/named-entity/named-entity-occurrence/named-entity-occurrence.component'; -import { NamedEntityComponent } from './components/named-entity/named-entity.component'; -import { NamespaceComponent } from './components/namespace/namespace.component'; -import { NoteComponent } from './components/note/note.component'; -import { NotesStmtComponent } from './components/notes-stmt/notes-stmt.component'; -import { OriginalEncodingViewerComponent } from './components/original-encoding-viewer/original-encoding-viewer.component'; -import { OsdComponent } from './components/osd/osd.component'; -import { PageSelectorComponent } from './components/page-selector/page-selector.component'; -import { PageComponent } from './components/page/page.component'; -import { ParagraphComponent } from './components/paragraph/paragraph.component'; -import { PhysDescComponent } from './components/phys-desc/phys-desc.component'; -import { ProjectDescComponent } from './components/project-desc/project-desc.component'; -import { ProjectInfoComponent } from './components/project-info/project-info.component'; -import { PublicationStmtComponent } from './components/publication-stmt/publication-stmt.component'; -import { ReadingComponent } from './components/reading/reading.component'; -import { RenditionComponent } from './components/rendition/rendition.component'; -import { RespStmtComponent } from './components/resp-stmt/resp-stmt.component'; -import { SamplingDeclComponent } from './components/sampling-decl/sampling-decl.component'; -import { SeriesStmtComponent } from './components/series-stmt/series-stmt.component'; -import { SicComponent } from './components/sic/sic.component'; -import { SuppliedComponent } from './components/supplied/supplied.component'; -import { SurplusComponent } from './components/surplus/surplus.component'; -import { TagsDeclComponent } from './components/tags-decl/tags-decl.component'; -import { TextComponent } from './components/text/text.component'; -import { TitleStmtComponent } from './components/title-stmt/title-stmt.component'; -import { VerseComponent } from './components/verse/verse.component'; -import { VersesGroupComponent } from './components/verses-group/verses-group.component'; -import { WordComponent } from './components/word/word.component'; -import { AnnotatorDirective } from './directives/annotator.directive'; -import { EditorialConventionLayoutDirective } from './directives/editorial-convention-layout.directive'; -import { HighlightDirective } from './directives/highlight.directive'; -import { HtmlAttributesDirective } from './directives/html-attributes.directive'; -import { EvtInfoComponent } from './evt-info/evt-info.component'; -import { MainHeaderComponent } from './main-header/main-header.component'; -import { MainMenuComponent } from './main-menu/main-menu.component'; -import { NavBarComponent } from './nav-bar/nav-bar.component'; -import { ImagePanelComponent } from './panels/image-panel/image-panel.component'; -import { PinboardPanelComponent } from './panels/pinboard-panel/pinboard-panel.component'; -import { SourcesPanelComponent } from './panels/sources-panel/sources-panel.component'; -import { TextPanelComponent } from './panels/text-panel/text-panel.component'; -import { VersionPanelComponent } from './panels/version-panel/version-panel.component'; -import { WitnessPanelComponent } from './panels/witness-panel/witness-panel.component'; -import { PinboardComponent } from './pinboard/pinboard.component'; -import { PinnerComponent } from './pinboard/pinner/pinner.component'; -import { FilterPipe } from './pipes/filter.pipe'; -import { HumanizePipe } from './pipes/humanize.pipe'; -import { StartsWithPipe } from './pipes/starts-with.pipe'; -import { XmlBeautifyPipe } from './pipes/xml-beautify.pipe'; -import { AnnotatorService } from './services/annotator/annotator.service'; -import { IdbService } from './services/idb.service'; -import { ThemesService } from './services/themes.service'; -import { GenericParserService } from './services/xml-parsers/generic-parser.service'; -import { XMLParsers } from './services/xml-parsers/xml-parsers'; -import { ShortcutsComponent } from './shortcuts/shortcuts.component'; -import { MsDescSectionComponent } from './ui-components/ms-desc-section/ms-desc-section.component'; -import { CollationComponent } from './view-modes/collation/collation.component'; -import { ImageTextComponent } from './view-modes/image-text/image-text.component'; -import { ReadingTextComponent } from './view-modes/reading-text/reading-text.component'; -import { TextSourcesComponent } from './view-modes/text-sources/text-sources.component'; -import { TextTextComponent } from './view-modes/text-text/text-text.component'; -import { TextVersionsComponent } from './view-modes/text-versions/text-versions.component'; -import { HandleImgErrorDirective } from './directives/handle-img-error.directive'; - -const routes: Routes = [ -]; - -export function initializeApp(appConfig: AppConfig) { - return () => appConfig.load(); -} - -const DynamicComponents = [ - AdditionalComponent, - AdditionComponent, - ApparatusEntryComponent, - ApparatusEntryDetailComponent, - ApparatusEntryReadingsComponent, - CharComponent, - ChoiceComponent, - DamageComponent, - DeletionComponent, - EditionStmtComponent, - EditorialDeclComponent, - EncodingDescComponent, - ExtentComponent, - FileDescComponent, - GapComponent, - GComponent, - GenericElementComponent, - HistoryComponent, - IdentifierComponent, - LbComponent, - MsContentsComponent, - MsDescComponent, - MsFragComponent, - MsIdentifierComponent, - MsItemComponent, - MsPartComponent, - NamedEntitiesListComponent, - NamedEntityComponent, - NamedEntityDetailComponent, - NamedEntityRefComponent, - NamedEntityRelationComponent, - NamespaceComponent, - NoteComponent, - NotesStmtComponent, - ParagraphComponent, - PhysDescComponent, - ProjectDescComponent, - PublicationStmtComponent, - ReadingComponent, - RenditionComponent, - RespStmtComponent, - SamplingDeclComponent, - SeriesStmtComponent, - SicComponent, - SuppliedComponent, - SurplusComponent, - TagsDeclComponent, - TextComponent, - TitleStmtComponent, - VerseComponent, - VersesGroupComponent, - WordComponent, -]; - -@NgModule({ - declarations: [ - AnnotatorDirective, - AppComponent, - CollationComponent, - ContentViewerComponent, - EditionLevelSelectorComponent, - EditorialConventionLayoutDirective, - EntitiesSelectComponent, - EvtInfoComponent, - FilterPipe, - GlobalListsComponent, - HandleImgErrorDirective, - HighlightDirective, - HtmlAttributesDirective, - HumanizePipe, - ImagePanelComponent, - ImageTextComponent, - MainHeaderComponent, - MainMenuComponent, - ManuscriptThumbnailsViewerComponent, - MsDescSectionComponent, - MsDescSelectorComponent, - NamedEntityOccurrenceComponent, - NavBarComponent, - OriginalEncodingViewerComponent, - OsdComponent, - PageComponent, - PageSelectorComponent, - PinboardComponent, - PinboardPanelComponent, - PinnerComponent, - ProjectInfoComponent, - ReadingTextComponent, - ShortcutsComponent, - SourcesPanelComponent, - StartsWithPipe, - TextPanelComponent, - TextSourcesComponent, - TextTextComponent, - TextVersionsComponent, - VersionPanelComponent, - WitnessPanelComponent, - XmlBeautifyPipe, - ...DynamicComponents, - ], - imports: [ - AppRoutingModule, - AppTranslationModule, - BrowserModule, - BrowserAnimationsModule, - DynamicAttributesModule, - DynamicModule, - ExperimentalScrollingModule, - FormsModule, - GridsterModule, - HttpClientModule, - Ng2HandySyntaxHighlighterModule, - NgbModule, - NgbPopoverModule, - NgxSliderModule, - NgxSpinnerModule, - RouterModule.forRoot(routes, { useHash: true, relativeLinkResolution: 'legacy' }), - ScrollingModule, - UiComponentsModule, - ], - providers: [ - AnnotatorService, - AppConfig, - { - provide: APP_INITIALIZER, - useFactory: initializeApp, - deps: [AppConfig], multi: true, - }, - AppConfig, - GenericParserService, - IdbService, - ThemesService, - XMLParsers, - ], - bootstrap: [ - AppComponent, - ], -}) -export class AppModule implements DoBootstrap { - constructor( - library: FaIconLibrary, - ) { - library.addIconPacks(fas); - - } - - ngDoBootstrap(appRef: ApplicationRef): void { - DynamicComponents.forEach((c) => appRef.bootstrap(c)); - } -} diff --git a/src/app/main-header/main-header.component.html.bak b/src/app/main-header/main-header.component.html.bak deleted file mode 100644 index 25aa8c8d0..000000000 --- a/src/app/main-header/main-header.component.html.bak +++ /dev/null @@ -1,25 +0,0 @@ - - - \ No newline at end of file diff --git a/src/assets/config/ui_config.json.bak b/src/assets/config/ui_config.json.bak deleted file mode 100644 index fe0b49fac..000000000 --- a/src/assets/config/ui_config.json.bak +++ /dev/null @@ -1,65 +0,0 @@ -{ - "availableViewModes": [ - { - "icon": "txt", - "iconSet": "evt", - "id": "readingText", - "label": "Reading Text", - "enable": true - }, - { - "icon": "imgTxt", - "iconSet": "evt", - "id": "imageText", - "label": "Image Text", - "enable": true - }, - { - "icon": "txtTxt", - "iconSet": "evt", - "id": "textText", - "label": "Text Text", - "enable": true - }, - { - "icon": "collation", - "iconSet": "evt", - "id": "collation", - "label": "Collation", - "enable": true - }, - { - "icon": "srcTxt", - "iconSet": "evt", - "id": "textSources", - "label": "Text Sources", - "enable": true - }, - { - "icon": "versions", - "iconSet": "evt", - "id": "textVersions", - "label": "Text Versions", - "enable": true - } - ], - "localization": true, - "defaultLocalization": "en", - "availableLanguages": [ - { - "code": "en", - "label": "languageEn", - "": true - }, - { - "code": "it", - "label": "languageIt", - "enable": true - } - ], - "enableNavBar": true, - "initNavBarOpened": true, - "thumbnailsButton": true, - "viscollButton": true, - "theme": "modern" -} \ No newline at end of file From 43db78116f28bdae6a572fca6525a72eef1ad81e Mon Sep 17 00:00:00 2001 From: davivcu Date: Thu, 3 Oct 2024 22:40:48 +0200 Subject: [PATCH 06/10] fix lb inside w --- src/assets/config/custom-styles.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/assets/config/custom-styles.css b/src/assets/config/custom-styles.css index 122c40258..907f0eec9 100644 --- a/src/assets/config/custom-styles.css +++ b/src/assets/config/custom-styles.css @@ -1,3 +1,7 @@ +.w .lb { + display: none; +} + .ab[rend="align-center"] { display: block; text-align: center; From a3bfc8b7a0e32bc83328820669e0f5edd7ba2813 Mon Sep 17 00:00:00 2001 From: RobertoRDT Date: Fri, 4 Oct 2024 10:21:41 +0200 Subject: [PATCH 07/10] Update for beta release --- README.md | 32 +++++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index bcae64a29..c230f329b 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ Wanting to maintain the original feature of EVT, and therefore do not give up th Before the refactoring, EVT was composed of two main units: EVT Builder, for the transformation of the encoded text using special XSLT 2.0 templates, and EVT Viewer, for the visualization into a browser of the results of the transformations and the interaction with them. The idea under the new version of EVT is instead to leave to EVT Viewer the task of reading and parsing with JavaScript functions the encoded text, and “save” as much as possible within a data model, that persists in the client main memory, and is organized in a way that allows a very quick access to the data in case of need. This has obviously led to the elimination of the EVT Builder level, and therefore it allows to open a digital edition directly in the browser without any previous XSLT transformation. ### 1.3 - Main features -At the present moment, EVT is being moved from AngularJS to Angular 2+. +At the present moment, EVT is being moved from AngularJS to Angular. For a complete list of features, please refer to the [AngularJS version] (https://github.com/evt-project/evt-viewer) 2 - A short guide to EVT -------------------------------- -If you are interested in **using** EVT to prepare an edition right away, you should probably download the ready-to-use release package that can be downloaded from [SourceForge](https://sourceforge.net/projects/evt-project/). See the *Installation and use* section first, then *Configuration*, to understand how EVT works and how you can use it to publish your editions. A more detailed guide will be published separately, as a reference manual, and will also include instructions about customization. +If you are interested in **using** EVT to prepare an edition right away, you should probably download the ready-to-use release package that can be downloaded from the [release page on GitHub](https://github.com/evt-project/evt-viewer-angular/releases). See the *Installation and use* section first, then *Configuration*, to understand how EVT works and how you can use it to publish your editions. A more detailed guide will be published separately, as a reference manual, and will also include instructions about customization. -If, on the other hand, you are interested in **developing** a specific functionality in EVT, or in modifying an existing one, or preparing your edition with the most recent (yet stable) version of EVT, you should download the [*GitHub Development framework*](https://github.com/evt-project/evt-viewer). See the *Development framework installation and use* section to know how to install and configure the environment needed for this purpose. If you intend to change the source code for personal needs, please **fork** the project. If you want to contribute to the main project (by fixing a bug or adding a feature), please ask for a **pull request** and/or contact us at evt.developers@gmail.com. +If, on the other hand, you are interested in **developing** a specific functionality in EVT, or in modifying an existing one, or preparing your edition with the most recent (yet stable) version of EVT, you should download the [*GitHub Development framework*](https://github.com/evt-project/evt-viewer-angular). See the *Development framework installation and use* section to know how to install and configure the environment needed for this purpose. If you intend to change the source code for personal needs, please **fork** the project, and remember to contribute your changes back (see below for contact). If you want to contribute to the main project (by fixing a bug or adding a feature), please ask for a **pull request** and/or contact us at evt.developers@gmail.com. ### 2.1 - Installation and use EVT 3 can be used to prepare an edition right away, immediately after downloading the release package on your hard drive: see the [​Installation and management of the edition data](https://github.com/evt-project/evt-viewer-angular/wiki/Installation-and-use#installation-and-management-of-the-edition-data) section of the Wiki first, then [Configuration​](https://github.com/evt-project/evt-viewer-angular/wiki/Configuration), to understand how EVT works and how you can use it to publish your editions. @@ -35,13 +35,13 @@ If, on the other hand, you are interested in ​developing a specific functional ### 2.2 - Configuration -There are several configuration options, ranging from setting the folders where edition data is stored to choosing the User Interface layout and the tools to be made available for the final user, that can be set by editing the configuration files in the `assets/config` directory. To facilitate the configuration work, configuration options are divided into three macro groups: +There are several configuration options, ranging from setting the folders where edition data is stored to choosing the User Interface layout and the tools to be made available for the final user, that can be set by editing the configuration files in the `assets/config` directory. To facilitate the configuration work, configuration options are divided into three macro groups with corresponding files: * Edition Configuration (`edition_config.json`), where to set the configurations closely related to the digital edition, such as the title, the edition level(s), etc. [See details in the Wiki page](https://github.com/evt-project/evt-viewer-angular/wiki/Edition-Configuration). * File Configuration (`file_config.json`), where to set the path(s) to the file(s) of the digital edition. [See details in the Wiki page](https://github.com/evt-project/evt-viewer-angular/wiki/File-Configuration). * UI Configuration (`ui_config.json`), where to set the configuration closely related to the UI, such as the default language, the default/available theme(s), etc. [See details in the Wiki page](https://github.com/evt-project/evt-viewer-angular/wiki/Ui-Configuration). -It is also possible to configurate the style of editorial phenomena (e.g. addition, deletion, etc), in order to override the EVT default layouts. This particular configuration should be defined in the file `editorial_conventions_config.json`. [See details in the Wiki page](https://github.com/evt-project/evt-viewer-angular/wiki/Editorial-Conventions-Configuration) +It is also possible to configure the style of editorial phenomena (e.g. addition, deletion, etc), in order to override the EVT default layouts. This particular configuration should be defined in the file `editorial_conventions_config.json`. [See details in the Wiki page](https://github.com/evt-project/evt-viewer-angular/wiki/Editorial-Conventions-Configuration) For more information please refer to the [Configuration section](https://github.com/evt-project/evt-viewer-angular/wiki/Configuration) on the Wiki. @@ -55,9 +55,9 @@ This project was generated with [Angular CLI](https://github.com/angular/angular For development, you will only need Node.js installed on your environement. And please use the appropriate Editorconfig plugin for your Editor (not mandatory). ### 3.2 - Node -[Node](http://nodejs.org/) is really easy to install & now include [NPM](https://npmjs.org/). +[Node](http://nodejs.org/) is really easy to install & now includes [NPM](https://npmjs.org/). You should be able to run the following command after the installation procedure -below. To properly install all the dependency, please use 12.20.x/14.15.x/16.10.x or later minor version of NodeJS. +below. To properly install all the dependencies, please use 12.20.x/14.15.x/16.10.x or later minor version of NodeJS. To know which versions are installed on your computer: $ node --version v14.15.0 @@ -66,12 +66,22 @@ below. To properly install all the dependency, please use 12.20.x/14.15.x/16.10. v6.14.8 ### 3.3 - Install +To download and install the current stable version of EVT use these commands: + $ git clone https://github.com/evt-project/evt-viewer-angular.git $ cd evt-viewer-angular $ npm install +You may be interested in installing the development branch (`develop`) which is the more up to date one, and generally quite stable: + + $ git clone -b develop https://github.com/evt-project/evt-viewer-angular.git + $ cd evt-viewer-angular + $ npm install + ### 3.4 - Start & watch with development server +To start EVT directly just type + $ npm run start If nothing happens, then open your browser and navigate to `http://localhost:4205/`. @@ -84,12 +94,16 @@ If you want to use a different port where to run the application you can run `np Run `npm run ng generate component component-name` to generate a new component. You can also use `npm run ng generate directive|pipe|service|class|guard|interface|enum|module`. ### 3.6 - Simple build for production +This command will create a build of the current installation which you can use for testing or other purposes: + $ npm run build The build artifacts will be stored in the `dist/` directory. With the second instruction you can use the `--c=production` flag for a production build. ## 3.6.1 - Build for release +This command will create a build of the current installation flagging it as a release build: + $ npm run build:release The build artifacts will be stored in the `release/` directory. If you set properly the variables in user_paths.sh file, both xml sample data and sample config will be copied in `release/assets` folder. @@ -176,7 +190,7 @@ btn-primary { ### 4.2 - Localization To handle localization we use the plugin angular-l10n[https://github.com/robisim74/angular-l10n]; in this way we can offer a runtime solution for language switching without fully reload the application. -Translations are defined in a JSON file (one for each language), saved inside the folder `assets/l10n`. This JSON is organized as follows: +Translations are defined in a JSON file (one for each language), saved inside the folder `assets/i18n`. This JSON is organized as follows: ``` { "KEY": "Text in a particular language", @@ -276,7 +290,7 @@ If you want to add a parameter in configuration, you need to add it first to the As a user manual please refer to the [Wiki](https://github.com/evt-project/evt-viewer-angular/wiki). It will always be updated based on the features merged into the `develop` branch. -For the functionalities and instructions related to a specific release, it is possible to refer to the `evt-documentation.pdf` file inside the `doc` folder in the release package. +For the functionalities and instructions related to a specific release, when the manual is ready it will be possible to refer to the `evt-documentation.pdf` file inside the `doc` folder in the release package. 7 - Feedback From b6def2aca61ff0770d830496d688688b12d91031 Mon Sep 17 00:00:00 2001 From: davivcu Date: Fri, 4 Oct 2024 14:33:15 +0200 Subject: [PATCH 08/10] Remove unused edition xml --- src/assets/data/edition.xml | 28098 ---------------------------------- 1 file changed, 28098 deletions(-) delete mode 100644 src/assets/data/edition.xml diff --git a/src/assets/data/edition.xml b/src/assets/data/edition.xml deleted file mode 100644 index f5674c4c6..000000000 --- a/src/assets/data/edition.xml +++ /dev/null @@ -1,28098 +0,0 @@ - - - - - - - - Codice Pelavicino - Edizione Digitale - - Edizione critica di: - Enrica Salvatori - Edilio Riccardini - Franco Bonatti - Laura Balletto - - - Codifica di: - Alessio Miaschi - Chiara Alzetta - - - Revisione alla codifica di: - Roberto Rosselli Del Turco - Enrica Salvatori - - - - - Università di Pisa - Pisa - Da definire - -

Il progetto è realizzato per la libera consultazione. Tutti i contenuti sono - riproducibili a patto che se ne indichi la fonte.

-
-
- - - - - - - Sarzana - Archivio del Capitolo della cattedrale - Codice Pelavicino - - - - - - Latino - Il codice si compone di 426 cc. numerate e 20 cc. non numerate; - contiene diversi testi tra cui il Liber Iurium della Chiesa di - Luni. Principale responsabile della sua redazione - fu il vescovo di Luni Enrico da Fucecchio, che salì al - soglio episcopale nel 1273 e vi rimase fino al 1289. Al fine di - salvaguardare i beni e i diritti della Chiesa di - Luni, il vescovo Enrico - riorganizzò infatti gli uffici della curia, fece compilare un inventario - generale dell’archivio ecclesiastico e attivò uno scrittorio nel quale - lavorarono diversi amanuensi, da cui uscì appunto buona parte del codice. Il - nome di Codice Pelavicino deriva da una piccola parte del - codice stesso, il cosìddetto Liber Magister, cioè il libro dei - redditi e dei proventi della Chiesa di Luni, che è - riportato nel codice nella copia tardoduecentesca, ma che originariamente - venne compilato al tempo di Uberto Pelavicino, vicario - in Lunigiana dell’imperatore Federico II nel quarto - decennio del secolo XIII. Il nome tuttavia si impose presto nell’uso per - indicare l’intero codice, compreso il Liber Iurium, come - testimonia un documento del 1487 trascritto nello stesso - manoscritto. - - - - - - - -

Il volume è rilegato in pelle con piatti in legno - (360 * 255 * 5mm); il - fondello presenta cinque nervature; la chiusura è data da una correggia - con fibbia in metallo. La guardia anteriore è formata da due fogli di - carta relativi al restauro del 1984, operato presso l’Istituto - centrale per la patologia del libro “Alfonso Gallo” di Roma - (ACS Corrispondenza 1982-1987, n.6). Seguono 5 fogli di - carta (10 cc.) con una fine vergellatura e filigrana a mezzaluna databile - alla seconda metà XVI-inizio XVII secolo. La risguardia è di un foglio di - carta di epoca recente incollato sulla coperta.

-

La guardia posteriore è formata da due fogli di carta recente e la - risguardia da un foglio di carta recente incollato alla coperta. - Precedono tre fogli di carta identici a quelli della guardia anteriore (6 - cc.) recanti la medesima filigrana, preceduti da un foglio irregolare di - pergamena con un crittogramma del secolo XVI numerato a matita 426. I - fogli cartacei del XVI-XVII secolo misurano 475 * - 335 mm.

-

Il codice conta 37 fascicoli. Molti fascicoli sono numerati con numeri - romani sia cardinali che ordinali.

-

Il 1° fascicolo è privo di indicazioni che ne stabiliscano la posizione - nel codice; il 2° non presenta indicazioni, ma originariamente possedeva - probabilmente la numerazione I(us) scomparsa in - seguito alla rifilatura; il 3° e il 4° presentano nel margine inferiore, - nel verso dell’ultima carta, II(us) e III(us) in inchiosto nero; il 5° fascicolo non - presenta indicazioni, ma possedeva probabilmente la numerazione IIII(us), scomparsa in seguito alla rifilatura.

-

La numerazione dei 6° al 20° è in inchiostro rosso, a cui segue dal 21 in - poi una numerazione in inchiostro nero. Il 21° fascicolo (XVI) presenta - una nota, probabilmente della medesima mano che ha numerato i fascicoli - del liber iurium, in cui si avverte di una lacuna: hic deficiunt - quatuor quinterni (in realtà sesterni) qui perpere ablati - fuerunt. A questo una mano più tarda ha aggiunto: in - quibus continebantur instrumenta n(umer)o 58 ut colligitur ex rubrica - precedente 158 et seguente 217, utcumque cartarum sive foliorum series - continuato numero currat. Vide retro carta 201 a t(ergo) in margine. - Vide etiam ante carta 401 postposita quedam instrumenta. - Effettivamente si registra un salto nella numerazione interna dei - documenti del liber da CLVIIII a CCXVII. La numerazione del - fascicolo seguente (il 22°) non è visibile così come quella successiva - (23°). Dato tuttavia che la numerazione dei documenti presenti all’inizio - del fascicolo 22° prosegue senza salti e che il fascicolo 24° presenta il - numero XXIII, se ne deduce che i fascicoli 22° e 23° recassero - originariamente la numerazione XXI e XXII. La lacuna riguarda quindi i - fascicoli un tempo contrassegnati dai numeri XVII – XX. Il 35° fascicolo - non è numerato e reca in calce la chiusura del liber iurium - con la sottoscrizione di maestro Egidio. Seguono i tre fogli centrali (6 - cc.) di uno dei fascicoli mancanti, quasi certamente il XVII della - primitiva redazione. Segue l’ultimo fascicolo (il 37°) composto di 6 - fogli (11 carte di cui la prima mancante) e contenente una altra versione - del liber magister.

-

Le carte dei fascicoli dal 1° al 36° misurano 345 * - 245 mm, ma presentano mozzature e rifilature; il 37° - fascicolo ha dimensioni maggiori 345 * 255 - mm, ritagliato irregolarmente nel margine inferiore.

-

I fogli di pergamena sono collocati dorso contro dorso e interno contro - interno.

-

Il codice non è un volume unitario, ma risulta composto di 4 parti, che - in origine formavano unità distinte e che sono state rilegate insieme in - età moderna:

-

La 1a parte (cc. 1r-8v), su supporto pergamenaceo, è - composta da un Indice e da una Memoria, in - pratica l’inventario dell’archivio vescovile lunense così come si - presentava all’epoca del vescovo Enrico da Fucecchio (fine XIII secolo). - Numerata in cifre romane da I a VIII. Copre interamente il primo - fascicolo.

-

La 2a parte (cc. 9r-56v), su supporto pergamenaceo, - è costituito in parte dal cosiddetto Liber Magister, cioè un - lungo elenco ricognitivo di beni, diritti, censi in denaro o in natura - spettanti al vescovo di Luni e in parte da altri documenti che sono in - corso di studio. Questa parte è numerata in crifre romane a partire da I; - la numerazione continua poi nella 3a parte senza soluzione di continuità - da I a CCCCVI. Copre interamente i fascicoli 2-5. Nella parte finale del - fascicolo 5, le ultime 3 cc. contengono ta trascrizione di un documento - del secolo XV (il n. 26, del 1487 agosto 9 e 30), il più recente - dell’intero codice.

-

La 3a parte (cc. 57r-414v.), su supporto - pergamenaceo, è la più consistente ed è costituita dal Liber - Iurium, dove sono trascritti 510 documenti di natura pubblica o - privata che al compilatore parvero importanti come prova della - legittimità dei diritti feudali e dei possessi patrimoniali della Chiesa - lunense. Una numerazione progressiva, in cifre romane, contrassegna i - documenti nel margine esterno ed è dovuta, molto probabilmente, allo - scriba che compilò l’indice della 1a parte.

-

La 4a ed ultima parte (cc.415r.-425v.) su supporto - cartaceo, è costituita da una seconda e più tarda redazione del - Liber Magister, databile alla fine del XIV secolo in base - alla scrittura. Le carte non sono state numerate.

-
-
- -

Nel manoscritto sono riconoscibili diversi scrittori. Si elencano qui i - principali fino ad ora (ottobre 2015) riconosciuti. L’elenco definitivo - verrà pubblicato al termine del lavoro di trascrizione ed edizione - critica.

-

(1) Un amanuense di cui ignoriamo il nome ha iniziato a - scrivere il 12 dicembre 1287 e ha redatto i primi 22 documenti del - Liber Iurium (nn. 27-48, cc. 57r.-70r)., dopodiché il lavoro - fu interrotto; la scrittura di questo primo amanuense è riconducibile al - tipo della rotunda italiana, avvicinabile alla littera - bononiensis, propria dei manoscritti universitari bolognesi, ma - diffusa anche in molti altri centri italiani; è più tondeggiante, la - caratteristica del tratto spezzato, tipica della gotica, è poco avvertibile, - mentre le lettere sono più addossate l’una all’altra. Le principali - differenze rispetto alla scrittura n° 2 (di magister Egidio) - sono così riassumibili:

-

- - la g rotonda, assomigliante ad un 8, l’occhiello - inferiore è rotondo anziché schiacciato a formare un triangolo; - la p con il significato di per reca il - taglio orizzontale alla base e non a metà dell’asta; - il segno tachigrafico per et è sempre a forma di 7, ma - non reca il taglio orizzontale; non compare mai il segno a forma di 9 - con significato di cum/con; - le i non presentano apici; - la y è priva di puntino al centro della - biforcazione; - accanto alla d onciale, con asta abbattuta e quasi - orizzontale, lo scriba adopera sovente la d diritta - pressoché assente in Egidio. - -

-

Ignoriamo i motivi per cui questo amanuense abbia interrotto il lavoro di - trascrizione poco tempo dopo averlo intrapreso. Dovette comunque trattarsi - di un’interruzione brusca, imputabile a cause di forza maggiore, perché non - ebbe neppure tempo e modo di apporre la propria sottoscrizione che valesse - come autentica globale dei documenti trascritti sino a quel momento.

-

(2) Il secondo amanuense era di origine e cultura - francese, il magister Egidio di Bligny sur Ouche, nella diocesi - di Autun (Borgogna). Ne conosciamo il nome grazie alla sottoscrizione che - egli appose a chiusura del suo lavoro durato dalla fine del 1288 alla fine - del 1289 (doc n. 531, c. 408v.) e al termine del Liber Magister - (c. 48r.). A maestro Egidio si deve quindi la parte più consistente del - Liber Iurium e la copia del Liber Magister. La - sua scrittura appartiene al tipo delle littere scholasticae - elaborate in ambiente universitario.

-

Tra le caratteristiche salienti della grafia di magister Egidio - meritano di essere segnalate:

-

- - il largo, per non dire larghissimo, ricorso alle abbreviazioni, sia - per troncamento sia per contrazione; - la d è quasi sempre di tipo onciale con l’asta - ripiegata, talvolta con un trattino finale che gira verso - destra; - la g presenta l’occhiello inferiore schiacciato a - formare una sorta di triangolo; - la m e la n a fine di parola presentano - l’asta terminale cosiddetta “a proboscide”; - l’asta finale della h si prolunga sotto il rigo con - uno svolazzo a sinistra; - la l, la b, la h iniziano - con un tratto complementare a sinistra assai pronunciato; - la i è segnalata dalla presenza di segni diacritici - per differenziarla dalle aste di m e di n, - altrimenti non distinguibili; - la y presenta un puntino al centro della - biforcazione; - le aste delle lettere maiuscole raddoppiate; - frequenti nessi tra le lettere di forma rotonda (de, - po); - uso pressoché costante del segno tachigrafico di et, - che si presenta nella tipica forma a 7 con l’asta discendente tagliata - a metà altezza da un breve tratto orizzontale; - uso costante del segno tachigrafico a forma di 9 con il significato - di cum / con. - -

-

Via via che il copista procede con il suo lavoro lo specchio scrittorio - della pagina si dilata e si riduce lo spazio interlineare, aumenta il numero - di righe per ogni carta; viene meno l’uso dell’inchiostro rosso a scopo - ornamentale sino a scomparire nella seconda metà del codice, così come - diminuisce la cura del riprodurre i signa tabellionis dei notai - che avevano a suo tempo autenticato la copia trascritta.

-

Come detto, sempre alla mano sicura di Egidio da Bligny si deve l’intero - Liber magister, la cui redazione, sebbene non databile con - esattezza, dovette seguire a breve distanza di tempo – quasi una sorta di - logico complemento – la compilazione del Liber Iurium. Qui, in - verità, la scrittura appare più ariosa e meno compressa lateralmente, il - ductus palesa la tendenza ad una maggiore rotondità. - Tuttavia grafismi come la g acuta, il segno tachigrafico per - et, la l con trattino iniziale verso sinistra, - la y con puntino centrale, non lasciano spazio a dubbi circa - l’identità dello scriba.

-

(3) L’indice del Liber Iurium (cc. - 1r.-5r.) e la Memoria cartarum Lunensis curie (cc. 5v.-8v.) - sono invece riconducibili alla fatica di un terzo scriba, di cui purtroppo - ignoriamo il nome. Egli utilizza una minuscola di tipo italiano, piuttosto - accurata, dal ductus regolare e con un accentuato contrasto di - chiaroscuro. Tra le particolarità grafiche più significative spiccano:

-

- - la g con occhiello inferiore non chiuso; - la s sigmatica; - la v acuta, anzi acutissima, ad inizio di - parola; - le aste in evidenza rispetto al corpo della scrittura (il che non - avviene né in Egidio né per l’anonimo scriba che ha copiato i primi 22 - documenti del Liber Iurium). - -

-

(4) Una quarta mano ha vergato una seconda e più tarda - versione del Liber Magister (cc.415r.-425v.). Siamo qui di - fronte ad una scrittura notarile tendente al corsivo, di corpo più minuto, - ricca di svolazzi, distribuita su due o tre colonne, databile forse ai - decenni finali del XIV secolo.

-

(5) Una quinta mano, anch’essa tarda, ha trascritto un - documento del 1297 dopo la chiusura del Liber Magister fatta da - maestro Egidio, utilizzando le carte rimaste bianche del fascicolo 5 (doc. - n. 25 cc. 49r-54r.).

-

(6) Una sesta mano, della fine del secolo XV, ha infine - trascritto il documento n. 26 del 1487, contenente l’autenticazione del - codice (cc. 54v-56v, n. 26), sempre nelle pagine finali del fascicolo 5.

-
- -

Sono presenti le riproduzioni dei timbri notarili a volte con scopi - decorativi. Alcuni capilettera sono in rosso.

-
-
- - - - -

Si compone di 426 carte e contiene in copia documenti dall’anno - 900 (diploma di Berengario re d’Italia a favore del vescovo - lunense) fino al 1289.

-
- -

La maggior parte del manoscritto risale alla seconda metà XIII secolo.

-

Le diverse parti in cui ora è composto il codice vennero assemblate in una - prima rilegatura plausibilmente conservata nella sede del vescovo di Luni, - ossia nel castrum Sarzane, attuale - Sarzanello, prima del 1487.

-

Come ci informa un documento trascritto nello stesso codice (CP cc. 54v-56v, - n. 26), a quell’epoca il vescovo di Luni risiedeva temporameamente a - Pontremoli, presso la chiesa di S. Colombano, a causa della guerra di - Sarzana, 49-52). Da qui il vescovo Tommaso aveva indirizzato una supplica a - papa Innocenzo VIII affinché attribuisse ai documenti trascritti nel codice - valore di prova nelle contestazioni giudiziarie. Dietro mandato papale il - giureconsulto Tomaso Amadeo di Ferrara, in Modena, autenticò il - liber, già detto all’epoca Pelavicinus, il 9 - agosto 1487. In quest’atto il codice è detto composto di 408 carte, che - iniziano con l’indice (attuale c. 1, fascicolo 1) e terminano con un - documento del 1289 (attuale c. 408v., fascicolo 35): questo significa che - già nel 1487 mancavano dal volume i fascicoli dal XVII al XX. In un momento - successivo, non noto, furono recuperati alcuni fogli di un fascicolo - perduto, quasi certamente il XVII (attuali cc. 409r-414v. del fascicolo 36) - e quindi inseriti in una nuova rilegatura. In questa nuova composizione al - codice vennero probabilmente aggiunte le carte perdute che ora formano il - fascicolo 37 contenenti una redazione del Liber Magister - differente da quella copiata da maestro Egidio.

-

A una terza rilegatura dovrebbero appartenere i fogli di carta della guardia - anteriore e posteriore dotati di una filigrana databile a cavallo tra i - secoli XVI e XVII.

-
-
- -
- - - From Codice PelavicinoFrom Codice Pelavicino - - - - Edward - George - Bulwer-Lytton, - Baron Lytton of - Knebworth - - - M - syndicus et procurator communium et universitatum de Marola et de - Matrono - - - - 11850004X - Abaelardus, Petrus - Abälard, Peter - Abaelard, Pierre - - - Le Pallet bei Nantes - - - - Saint-Marcel bei Chalon-sur-Saône - - m - Theologe - Philosoph - Abt von St. Gildas. - - - 14003563X - Abbiate, Luigi - Abbiate, Louis - m - Cellist - Komponist - - - Monaco - - - - Monaco - - Monaco - Paris - St. Petersburg - 1896: Paris, 3rue de la Néva; - 1911–20: Konservatoriumslehrer in St. Petersburg; - 1901: Celloschule in drei Abteilungen (Verlag Enoch & Cie, Paris, Anzeige: SmW 59 (1901), S. 64 (16.1.)). - - - - 118917382 - Agricola, Johann Friedrich - Olibrius, Flavius Anicius - Olibrius, Flavius Anicius - - - - - Dobitschen bei Altenburg - - - - - - - Berlin - - - m - Komponist - Publizist - Musiker - Leipzig - Berlin - - - - - People From CP - - - Abraçalene - de Barbazano - - M - - - - Abraciator - quondam Armannini - - M - - - - Abraciatus - de Ponzano - - M - - - - Acaritus - - M - - - - Acciliana - - F - - - - Accursetus - quondam Vitalis de castro Sarzane - - M - - - - Acursus - quondam Petri - - M - syndicus et procurator communium et universitatum de Marola et de - Matrono - - - - Accursus / Acursus - filius Sermonuti - - M - - - - Acoltus - quondam Bonavite de Trebiano - - M - - - - Actocani - de Bibola - - M - nobiles - - - - Actocaninus - Actocaninus de Masio - - M - - - - Actocaninus - quondam domini Parentis de Terrarossola - - M - - - - Adalasia - quondam Lommannete - - F - - - - Adalgrinus - - F - - - - Adalbertinus - - M - - - - Adalbertinus - quondam Bonaiuti de Puleca - - M - - - - Adalbertinus - de Sarzana - - M - - - - Adiutus / Aiutus - - M - - - - Adiutus / Aiutus - - M - presbiter, capellanus domini Guilielmi - - - - Adiutus / Aiutus - de Lune - - M - - - - - Adiutus / Aiutus - - M - sacri palatii notarius - attestato dal 1230 al 1260 - - - - Adiutus / Aiutus - - M - presbiter - - - - Adiutus / Aiutus - de valle Ylioli - - M - presbiter - - - - Adiutus / Aiutus - quondam Dominici - - M - - - - Adornellus - domini Tranchedi comitis de Advocatis de Luca - - M - iudex ordinarius, notarius - attestato nel 1281 - - - - Adornetus - de Balognano - - M - - - - Advocatus - - M - - - - Advocatus - de Sarzana - - M - - - - Afflorata - filia Belmese - - F - - - - Agnellus - de Sarzana - - M - calçolarius - - - - Agnesia - uxor Gerardi - - F - domina de Falcinello - - - - Agnesia - uxor Guidonis - - F - domina de Falcinello - - - - Agnesia - filia quondam Iacopini, uxor Rollandi quondam Guilielmi de - Valdonega - - F - - - - Aicardellus - quondam Bosi - - M - - - - Aicardellus - quondam Venture Brageri - - M - - - - Aicardinus - - M - - - - Aidans - quondam Aimeline de Ponzanello - - M - - - - Aidans - de Amelia - - M - - - - Aidans - quondam Bottoni /quondam Botonis - - M - - - - Aidans - quondam Gondeti de Ponzanello - - M - consul de Ponzanello - - - - Aidans - quondam Meliorati - - M - - - - Aidans - quondam Pellini - - M - syndicus et procurator communium et universitatum de Marola et de - Matrono - - - - Aidans - de Ponzanello - - M - - - - Aidans - de castro Sarzane - - M - - - - Aidans - de Serra - - M - - - - Aidelina - - F - - - - Aimelina / Aymelina - - F - - - - Aimelina / Aymelina - quondam Bonfilioli - - F - - - - Aimelina / Aymelina - de Castronovo - - F - - - - Aimellus - - M - - - - Aimericus - - M - - - - Aitantellus - <filiius Aidantis de Ponzanello> - - M - - - - Aiutellus - Bonaiuti - - M - - - - Alamannus - de Malliola - - M - - - - Albanensis - - F - - - - Albercellus - - M - - - - Albergucius - quondam Formenti de castro Sarzane - - M - - - - Albergus - - M - - - - Albergus - de Fontenella - - M - - - - Albergus - de Valdonica - - M - - - - Albertellus - Albertellus de Pignoto - - M - - - - Albertinellus - - M - - - - Albertinellus - de Berzola - - M - - - - Albertinellus - frater Mauricii de la Cala - - M - - - - Albertinellus - de Supravia - - M - - - - Albertinucius / Albertinutius - - M - - - - Albertinus - - M - - - - Albertinus - - M - magister - - - - Albertinus - quondam Bernardi - - M - dominus de Falcinello - - - - Albertinus - de Castronovo - - M - - - - Albertinus - Ceolaschi - - M - - - - Albertinus - quondam Compagni - - M - - - - Albertinus - Cornachini - - M - - - - Albertinus - quondam Gerardini Veroni de Soleria - - M - - - - Albertinus - de Monte Franzo - - M - - - - Albertinus - de Orbagnano - - M - - - - Albertinus - de Piçolo - - M - - - - Albertinus - de donna Rossa - - M - - - - Albertolda - de Certiola - - M - - - - Albertonus - - M - - - - Albertonus - quondam Guidonis - - M - - - - Albertosca - filia quondam Petri olim domini Alberti - - F - - - - Albertus - - M - - - - Albertus - - M - magister, canonicus Lunensis, presbiter, - subdiaconus - - - - Albertus - - M - consul - - - - Albertus - - M - episcopus Lunensis - Alberto, vescovo di Luni, di cui non esistono testimonianze dirette; viene - detto successore di Gottifredo II (1129-1156) in un documento del 1181 e predecessore di Pietro - (1178-1190) in un documento del 1212; - viene poi citato in un documento del 1230. Il Podestà (PODESTÀ - 1895, pp. 38-42) lo pone tra l'ultima attestazione di Gottifredo II - (1156) e la prima di Andrea II (1160), - ma quest'ultima indicazione non è certa in quanto il prelato vi è indicato - dalla sola cifra iniziale. - - - - Albertus - - M - magister - - - - Albertus - - M - marchio - Alberto/Adelberto, III marchese di questo nome della stirpe obertenga, - figlio di Alberto/Adelberto II è attestato dal 1033 (CALLERI 1993 doc. 38, p. 66-67) - al 1077 ( FALCO 1916 XXIV). - Probabilmente già defunto nel 1080 ( - FALCO 1916 XXVI). - - - - Albertus - - M - notarius invictissimi Frederici imperatoris - attestato dal 1180 al 1200 - - - - Albertus - - M - presbiter - - - - Albertus - filius Albini - - M - - - - Albertus - de Amelia - - M - - - - Albertus - quondam Barendini - - M - - - - Albertus - Bellonis - - M - - - - Albertus - quondam filio Benedicti - - M - - - - Albertus - de Buiano - - M - - - - Albertus - de Calvo - - M - - - - Albertus - de Cruce - - M - - - - Albertus - quondam Ferri de Lacala - - M - - - - Albertus - de Formicoso - - M - - - - Albertus - filio Frederici de Carraria - - M - - - - Albertus - quondam Gandulphini / de Gandulfino - - M - - - - Albertus - quondam Gerardi - - M - nobilis, vicedominus episcopi - - - - Albertus - filius Gerardi de Carraria - - M - - - - Albertus - quondam domini Guidonis - - M - - - - Albertus - quondam Guilielmini de Lune - - - - - Albertus - filius quondam domini Opiçoni marchionis Malaspine - - M - Alberto marchese Malaspina, figlio di Opizzino capostipite dello Spino - Fiorito, fratello di Bernabò e Isnardo; è attestato dal 1255 (ASFi DM, n. 155), nel 1257 (FERRETTO 1909, n. DCCCCLV) è - ancora minorenne; già defunto nel 1281 (ASFi DM, n. 280). - - - - Albertus - Malvicinus - - M - vicarius Lunisiane pro communi Pisano - - - - Albertus - dictus Mascardus de Trebiano - - M - - - - Albertus - quondam Nobelini - - M - - - - Albertus - quondam Parentini de castro Sarzane / de Balzano - - M - - - - Albertus - quondam Parentis - - M - - - - Albertus - quondam Passarini / de Passarino de Sarzana - - M - - - - Albertus - de Rainerio - - M - - - - Albertus - de Carraria filius quondam Rodulfini - - M - - - - Albertus - qui dicor Ruffus, filius quondam Alberti marchionis - - M - marchio - Alberto Rufo, IV marchese di questo nome della stipe obertenga, figlio di - Alberto III. Nel 1080 risulta sposato a Iolicta, figlia di Uberto conte di - Parma (FALCO_1916, XXVI); è - menzionato l’ultima volta da vivo nel 1084 (doc. 184. Forse morto già nel 1085 (BERNOLDUS, pp. 443–444), lo è - certamente nel 1094 (FALCO_1916, - XXXIII). Cfr.BROOK-PAVONI - 1984 XXVI, 1. - - - - Albertus - filius quondam Ubaldi de Parente - - M - - - - Albertus - quondam Ubaldi de Valechia - - M - - - - Albertus - de Valle - - M - - - - Albertus - de Valle - - M - - - - Albertus - de Valle Stephani - - M - - - - Albertus - de Valporcara - - M - - - - Albizellus - de Veçale - - M - - - - Albizi - de Cazano - - M - - - - Alzadellus / Alçadellus - quondam Araldi - - M - operarius de curte Sarzane - - - - Alzadellus / Alçadellus - de castro Sarzane - - M - - - - Alcarinus - quondam Folcerii - - M - - - - Alcherius - de Luca - - M - notarius - attestato in numerose autentiche non datate ma ascrivibili alla seconda metà - del XIII secolo; probabilmente da identificare con il notaio Alcherius - Pagani - - - - Alcherius - Pagani - - M - vicarius province Lunisiane, imperialis aule iudex et - notarius - attestato dal 1271 al 1272; probabilmente da identificare con il notaio - Alcherius de Luca - - - - Aldebertinus - - M - - - - Aldebertinus - quondam Aliardi - - M - - - - Aldebertinus - quondam Armannini - - M - - - - Aldebertinus - de Bonafide - - M - - - - Aldebertinus - de Bursello - - M - - - - Aldebertus - nepos Çanforni - - M - - - - Aldebrandetus /Aldeprandetus - fiulius Aldeprandi vicedomini - - M - - - - Aldebrandetus / Aldeprandetus - de Soleria filius Guidolini de Fossato - - M - - - - Aldebrandetus /Aldeprandetus - de burgo Sarzane - - M - - - - Aldebrandinus / Aldeprandinus - - M - vicedominus - - - - Aldebrandinus / Aldeprandinus - de Castello Radaldo - - M - forse figlio di domina Diamante, certo fratello dei figli di lei - - - - Aldebrandinus / Aldeprandinus - quondam Catti de Trebiano / quondam Gatti - - M - - - - Aldebrandinus / Aldeprandinus - <filius Iohannini quondam Aldeprandi de Rapugnana> - - M - - - - Aldebrandinus / Aldeprandinus - Malanaca - - M - - - - Aldebrandinus / Aldeprandinus - de Miselia - - M - - - - Aldebrandinus / Aldeprandinus - de Oletto - - M - - - - Aldebrandinus / Aldeprandinus - filius Symoneti notarii - - M - notarius - Attivo nel 1279 - - - - Aldebrandinus / Aldeprandinus - Talliamelo - - M - dominus, vicarius provincie Lunisiane - - - - Aldebrandinus / Aldeprandinus - Veltri de Corvaria - - M - - - - Aldebrandus /Aldeprandus - - M - vicedominus - - - - Aldebrandus / Aldeprandus - filius quondam Alberti vicedomini - - M - vicedominus - - - - Aldebrandus / Aldeprandus - de Antiquo - - M - - - - - Aldebrandus / Aldeprandus / Aldibrandus / Aldevrandus - quondam Azo, filius quondam Rodolfi quondam Bonizoni de loco - Ponzano - - M - - - - Aldebrandus / Aldeprandus / Aldibrandus / Aldevrandus - quondam Brici/quodam Berci - - M - consul Sancti Terencii - - - - Aldebrandus / Aldeprandus / Aldibrandus / Aldevrandus - quondam Oliverii de castro Sarzane - - M - - - - Aldebrandutius - quondam Vinciguerre - - M - - - - Aldeitrandinus - <de Soleria> - - M - - - - Aldisia - uxor Vivaldi de Capriola - - F - - - - Aldoinus / Aldonus / Alduinus - - M - - - - Aldoinus / Aldonus / Alduinus - filius quondam domini Gibertini <de Herberia> - - M - - - - Aldoinus / Aldonus / Alduinus - quondam Guidi de Ubaldo - - M - - - - Aldoinus / Aldonus / Alduinus - quondam Petri - - M - - - - Alegranza / Alegrança - - F - - - - Alegretus - - M - - - - Alegretus - <de Apognana quondam Alberti> - - M - - - - Alegretus - filius quondam Cyceris de Magnano - - M - - - - Alegretus - quondam Tiniosi Barencini - - M - - - - Alexander - - M - episcous, servus servorum Dei - Papa Alessandro IV, eletto il 21 maggio 1254 e consacrato il 20 dicembre - successivo. Muore a Viterbo il 25 maggio 1261 come da scheda di Raul Manselli - nel Dizionario Biografico degli italiani, vol. 2 - (1960.) - - - - Aliottus / Aliotus - Marrontinus / quindam Marroncini de Luca - - M - notarius, scriba - attestato nel 1269 - - - - Alsaldellus - quondam Vitalis de Valmoro - - M - - - - Amatus - - M - - - - Amatus - de Orbagnano - - M - - - - Ambrosinus - de Orbagnano - - - - - Ambrosius - - M - episcopus Bergamensis - Ambrogio II, vescovo di Bergamo attestato dal 1023 e morto nel 1058 (SCHWARTZ 1913, p. 101). - - - - Amica - - F - - - - Amica - quondam Guidoli - - F - - - - Amezetus / Amizetus / Amigetus - - M - - - - Amezetus/Amizetus/Amigetus - de Sporliano - - M - - - - Amicus - - M - - - - Amicus - quondam Aicardini - - M - operarius de curte Sarzane - - - - Amicus - quondam Angelerii - - M - - - - Amicus - de Beduçano - - M - - - - Amicus - de Colle - - M - - - - Amicus - quondam Gerardi de Mezana - - M - - - - Amicus - quondam Gerardini - - M - consul comunis de Ponzanello - - - - Amicus - Martignoni de Barbaçano / de Barbaçano - - M - - - - Amicus - de Çugnaco - - M - - - - Amiliarinus - filius Parluntii - - M - - - - Andrea - - M - - - - Andrea - - M - episcopus Lunensis - Andrea II, vescovo di Luni, attestato in maniera non certa - perché indicato - con la sola iniziale del nome proprio - dal 26 gennaio 1160 al 3 aprile - 1164. - - - - Andrea - - M - massarius - - - - Andrea - - M - marchio de Massa - si tratta probabilmente di Andrea Bianco, marchese di Parodi e di - Massa-Corsica, figlio di Moruello - - - - Andrea - de Balognano - - M - - - - Andrea - Calvo - - M - - - - Andriolus - de Sancto Stephano - - M - - - - Androinus - - M - - - - Andrucius / Andrecius - - M - - - - Andrucius / Andrecius - Caciaguerra - - M - - - - Andrucius / Andrecius - de Poppio - - M - - - - Angelellus - - M - - - - Antonius - - M - canonicus Lunensis, presbiter, subdiaconus - - - - Antonius - Tursaccus - - M - - - - Anselmus - - M - Anselmo vescovo di Como attestato per la prima volta nel 1170 e morto - il 1° di aprile del 1193 o del 1194 come da scheda nel Dizionario Biografico degli italiani, vol. 3 - (1961). - - - - Aprile - quondam Sabrini - - M - - - - Ardengus - - M - - - - Arditio / Ardicio - - M - - - - Arditio / Ardicio - quondam Aicardi - - M - - - - Arditus - - M - - - - Arduinus - - M - - - - Arduinus - - M - consul Carrarie - - - - Arduinus - - M - ferrarius - - - - Arduinus - Çuffus - - M - - - - Arduinus - filius Guideti - - M - - - - Arduinus - de Herberia filius quondam Giberti de Herberia - - M - - - - Arduinus - de Petrognano - - M - dominus - - - - Arduinus - de Vallecla filio quondam Bononi - - M - - - - Arengus - filius Bonafidei de Castronovo quondam Aldebertini - - M - - - - Argunnitosus - de Moneta - - M - - - - Armannina - uxor Gibertini - - F - domina de Falcinello - - - - Armanninus - - M - - - - Armanninus - quondam Gibertini de Soleria - - M - - - - Armanninus - quondam Iacobini - - M - - - - Armanninus - quondam Michaelis - - M - - - - Armanninus - de Plebe - - M - - - - Armanninus - quondam Sabbatini de castro Sarzane - - M - - - - Armanninus - de Soleria - - M - - - - Armanninus - de Trebiano - - M - - - - Armannus - - M - diaconus, plebanus de Amelia - - - - Armannus - - M - imperialis aule iudex, notarius - attestato nel 1219 - - - - Armannus - de Iovello - - M - - - - Armingardina - - F - - - - Armniardula - - F - - - - Arnaldus - - M - - - - Arnaldus - quondam Ugolini - - M - operarius de curte Sarzane - - - - Arnaldus - de Castello - - M - - - - Arrigus - quondam Aldibertini - - M - - - - Assalitus - quondam Tiniosi de Sancto Stephano - - M - - - - Astexanus - de Torano - - M - - - - Atto / Azo - - M - - - - Atto / Azo - - M - iudex, advocatus - - - - Atto / Azo - Burgundius - - M - - - - Atto / Azo - de Cerro Alto - - M - - - - Atto / Azo - filius quondam Compagni - - M - - - - Atto / Azo - de Faucenova - - M - - - - Atto / Azo - filius Gerardi de Carraria - - M - - - - Atto / Azo - de Grangnano - - M - - - - - Atto / Azo - filius Villani - - M - - - - Attolinus - - M - - - - Attolinus - - M - castaldus - - - - Attolinus - - M - consiliarius Carrarie - - - - Attolinus - - M - sacri palatii notarius - attestato dal 1231 al 1265 - - - - Attolinus - quondam domini Alberti dicti Mascardi de Trebiano - - M - - - - Attolinus - quondam Armannini de Carraria - - M - - - - Attolinus - quondam Bandini - - M - consiliarius castri Sarzane - - - - Attolinus - quondam Belloti de Miselia - - M - - - - Attolinus - Cactii de Sarzana/quondam Catii de Sarzana/quondam Caccii /quondam - Caccii de burgo Sarzane - - M - dominus - - - - Attolinus - Frandalonis - - M - - - - Attolinus - de Gualdo - - M - operarius de curte Sarzane - - - - Attolinus - quondam Iuxtamontis - - M - - - - Attolinus - de Malliola - - M - - - - Attolinus - quondam Opiçonis de Pilodericio de Soleria - - M - - - - Attolinus - quondam Symonis de Soleria - - M - sacri palatii notarius - attestato nel 1197 - - - - Audixia - uxor Vivaldeti - - F - - - - Augustinus / Agustinus - - M - - - - Augustinus / Agustinus - de loco dicto Peretolo filius quondam Guilicionis - - M - - - - Augustinus / Agustinus - quondam Martinelli - - M - - - - Augustinus / Agustinus - Termeselli / Tremecellus - - M - - - - Augustus - - M - correrius - - - - Avitellus - quondam Bonaiuti - - M - - - - Avitus - de Sancto Vitali - - M - castaldus curie marchionis Sardi - - - - Azoansaldus - - M - - - - - - - Badinus - - M - - - - Baisa Casium - - M - - - - Balzanus - Bottacungo - - M - dominus de Falcinello - - - - Balzanus - de castro Sarzani - - M - - - - Baldancia - - M - canonicus Lunensis, cantor - - - - Baldancia - de Torano quondam Micheleti / quondam Michilleti - - M - - - - Baldicio - de Ponzanello - - M - - - - Baldiçonus filius Mandriani de castro Sarzane - - M - - - - Baldinellus - - M - - - - Baldinellus - - M - castaldus - - - - Baldinellus - de Amelia - - M - - - - Baldinetus - - M - - - - Baldinotus - - M - notarius - attetstato nel 1269 - - - - Baldinotus - Caldovillanus / Caldovillanus de Porticu civitatis Lucane - - M - imperii Romanorum iudex, notarius provincie Lunisiane, scriba - episcopi - Attestato nel 1269. - - - - Baldinotus - de Moneta - - M - consiliarius Carrarie - - - - Baldinotus - de Pulica - - M - operarius de curte Sarzane - - - - Balditio - - M - - - - Balditio - de Colle - - M - - - - Baldoinus - quondam Guilielmi - - M - - - - Baldoinus / Balduinus - - M - - - - Baldoinus / Balduinus - filius Facii - - M - - - - Baldolinus / Baldulinus - - M - - - - Balianus - - M - - - - Ballionus - filius Gibertini Coalimi - - M - - - - Balognanus - - M - - - - Balzanus - - M - - - - Balzanus - de Sarzana - - M - - - - Bambetus - - M - - - - Bambolus - - M - - - - Bandinetus - de Castro Sarzane - - M - - - - Bandinetus - quondam Guilielmi - - M - consiliarius castri Sarzane - - - - Bandinetus - quondam Guilielmi Rubei - - M - - - - Bandinus / Bamdinus - - M - - - - Bandinus / Bamdinus - Crassus de Pisis - - M - - - - Bandinus / Bamdinus - de Torgnano - - M - - - - Banicus - - M - - - - Bardellinus - de Viano - - M - - - - Bardiranus - de Cornilione - - M - - - - Barellus - de Aciliano - - M - - - - Barletus - de Sarzana - - M - - - - Baroccus - - M - - - - Baroncellus - quondam Nobelini - - M - - - - Barosellus / Barotellus - - M - - - - Bartholomeus - - M - notarius - attivo sotto il vescovo di Luni Pipino - - - - Bartholomeus - - M - presbiter, monacus - - - - Barus - - M - - - - Bastardus - quondam Guilielmi - - M - - - - Bastardus - quondam Guilielmi Blanci - - M - - - - Bastardus - de Cignano - - M - - - - Bastardus - de Valentino - - M - - - - Bastardus - de Veçano - - M - - - - Baudeçonus - - M - - - - Bazuchus - - M - - - - Beatrix - de Barbazano - - F - domina - - - - Beatrix - quondam Martini - - F - - - - Becatus - - M - - - - Beccus - - M - - - - Becotus - - M - - - - Befulketus - - M - - - - Begolus - - M - - - - Beivinum - - M - - - - Belerçus - - F - - - - Beliana - - F - - - - Bella - de Balognano - - F - - - - Bella - de Colle - - F - - - - Bella - de la Serra - - F - - - - Bellacrosa - - F - - - - Bellandellus - - M - - - - Bellandinus - filius quondam Cyceris de Magnano - - M - - - - Bellandus - - M - - - - Bellandus - quondam Vitalis escarii - - M - operarius de curte Sarzane - - - - Bellaserra - - F - - - - Bellenzonus - - M - - - - Belleronus - - M - magister - - - - Belletus - - M - - - - Bellinus - - M - clericus - - - - Bellomus - - M - - - - Bellomus - Cyte - - M - - - - Bellomus - quondam Pastenelli - - M - - - - Bellomus - de Torano - - M - - - - Bellomus - Tosabechi - - M - - - - Bellone - Codesorbolo - - M - - - - Bellonus / Bellon - - M - - - - Bellonus / Bellon - - M - consiliarius Carrarie - - - - Bellonus / Bellon - - M - sacri palacii notarius - attestato in un autentica non datata - - - - Bellonus / Bellon - de Abate - - M - - - - Bellonus / Bellon - Belleti - - M - - - - Bellonus / Bellon - Betus - - M - - - - Bellonus / Bellon - de Columpnata - - M - - - - Bellonus / Bellon - de Helena - - M - - - - Bellonus / Bellon - quondam Guicciardi de Gragnana de Carraria - - M - - - - Bellonus / Bellon - filius Guilielmi - - M - - - - Bellonus / Bellon - de Lara - - M - - - - Bellonus / Bellon - de Lato - - M - - - - Bellonus / Bellon - de Valle Stephani - - M - - - - Bellosa - - F - - - - Bellosus - - M - - - - Bellotus - - M - - - - Bellotus - de Aciliano - - M - - - - Bellucius / Bellutius - - M - - - - Bellucius / Bellutius - - M - consiliarius comunis de Ponzanello - - - - Bellucius / Bellutius - de Moneta - - M - - - - Bellucius / Bellutius - de Stabuo - - M - - - - Bellus - - M - - - - Belmese - quondam Girardini de Castilione de Varese - - F - - - - Benarellus - - M - consiliarius Carrarie - - - - Benedellus - - M - - - - Benedictus - - M - abbas de Avula - - - - Benedictus - - M - domnus - - - - Benedictus - - M - domnus, monacus monasterii de Capparana - - - - Benedictus - quondam Bono de Ponçano - - M - - - - Benedictus - de Monte Bello - - M - notarius - attestato nel 1236 - - - - Benedictus - de Toreclo - - M - - - - Benencasa - de Area - - M - - - - Benencasa - quondam Boneti de Ara - - M - consul de Micoarra - - - - Benencasa - <quondam Rodulfini de Vico> - - F - - - - Benesia - - M - - - - Benesia - - M - consiliarius de Ortonovo - - - - Benesia - quondam Benencase - - M - - - - Benesia - dictus Maccangnano - - M - consiliarius de Ortonovo - - - - Benesia - de Sorgnano - - M - - - - Benesia - quondam Ugolini - - M - - - - Benesia - de Vechio - - M - consiliarius de Ortonovo - - - - Benetinus - - M - ioculator - - - - Benevenus - quondam Castellani - - M - - - - Benfatta - - F - - - - Bennatus - - M - magister, archipresbiter de Marnasco - - - - Bennatus - de Spedizano - - M - mariscalcus - - - - Bennatus - de Spuliçano / de Speluçano de Garfagnanoa - - M - - - - Bentevegna / Bentevenia - - M - - - - Bentevegna / Bentevenia - de Sancto Stephano - - M - archipresbiter - - - - Bentevegna / Bentevenia - de Lacanova - - M - - - - Bentevegna / Bentevenia - de Lutignana - - M - - - - Benvenuta - <filia quondam Castellani> - - F - - - - Benvenutus - - M - - - - Benvenutus - - M - clericus Sancti Vitalis - - - - Benvenutus - - M - domini Ottonis quarti Romanorum imperatoris - notarius - attestato dal 1214 al 1226 - - - - Benvenutus - - M - notarius sacri palacii - attestato nel 1229 - - - - Benvenutus - quondam Beloti de Iuccano - - M - - - - Benvenutus - quondam Borgheri - - M - - - - Benvenutus - quondam Bonfilioli de Soleria de Luna - - M - calzolarius - - - - Benvenutus - de Codano - - M - consiliarius Carrarie - - - - Benvenutus - de Pectenato - - M - - - - Benvenutus - de Oliveto - - M - - - - Benvenutus - de Rainerio - - M - - - - Benvenutus - de Stazone - - M - - - - Benvenutus - de Turolo - - M - - - - Benzus - - M - - - - Beraimus - - M - - - - Berardus - - M - notarius sacri palacii, notarius et iudex sacri - palacii - attivo nel 998 - - - - Bercalitius - - M - - - - Berizus - - M - - - - Bernabos - filius quondam domini Opiçoni marchionis Malaspine / marchio - Malaspina - - M - marchio - Bernabò Malaspina, marchese, figlio del capostipite dello Spino Fiorito - Opizzino, è attestato dal 1247 (Annali - Placentini Gibellini, p. 495) all'agosto 1264 (ASFi DM, n. 190). Il Codice Pelavicino conserva un - estratto del suo testamento dell'8 settembre 1265, redatto quasi certamente in prossimità della morte, - certamente già avvenuta nel 1267 (ASFi - DM, n. 207). - - - - Bernardinus - - M - - - - Bernardinus - - M - consul - - - - Bernardinus - de Castro Sarzane - - M - - - - Bernardinus - de Fornoro - - M - - - - Bernardinus - de Gragnano - - M - - - - Bernardinus - filius Guidonis de Herberia - - M - - - - Bernarduccius - filius Maineti - - M - - - - Bernarduccius - de Sarzana - - M - - - - Bernardus - - M - - - - Bernardus - - M - massarius - - - - Bernardus - - M - notarius, iudex sacri palacii - attivo nel 1021 - - - - Bernardus - - M - imperialis aule notarius - attivo in un autentica non datata ma riconducibile alla prima metà del XIII - secolo - - - - Bernardus - quondam domini Bertoldi de Dallo - - M - - - - Bernardus - de la Cala - - M - - - - Bernardus - quondam Guiscardelli - - M - - - - Bernardus - de Lucio - - M - - - - Bernardus - quondam Moregnoli - - M - operarius de curte Sarzane - - - - Bernardus - - M - mulinarius - - - - Bernardus - quondam Rafanini - - M - operarius de curte Sarzane - - - - Bernardus - quondam Rollandini - - M - - - - Bernardus - de Summo Vico - - M - - - - Bernardus - de Tedisio - - M - - - - Bernardus - de Vallecla - - M - - - - Bernaçonus - - M - - - - Bernaçonus - filii Guilielmini Pilloti - - M - - - - Bernerius - de Verricula - - M - notarius sacri palacii - attivo nel 1265 - - - - Bernutius - - M - - - - Berra - de Tavola - - M - - - - Berta - - F - - - - Berta - Grassa - - F - - - - Bertola - - F - - - - Bertoldus - - M - marchio Istrie - Bertoldo IV d'Andechs, conte di Andechs, primo duca di Merania e marchese - d'Istria (dal 1175). Muore nel 1204. Si veda scheda di Heinrich Appelt su Neue Deutsche - Biographie , Band 2 (1955). - - - - Bertolotus - - M - - - - Bertolotus - Gilii - - M - dominus, iudex vicarii province Lunisiane - - - - Bertolotus - quondam Oliverii - - M - - - - Bertolus - - M - canonicus Lunensis - - - - Bertramus - - M - presbiter de Sancto Mauricio - - - - Bertucia - - M - - - - Bettus - Betti filii ser Castilionis quondam Betti de Correlia - - M - publicus imperiali autoritate notarius - attivo nel 1346 - - - - Biatella - - - - - Biliolus - olim Bremonis - - M - - - - Billa - filia quondam Galosnini - - F - - - - Binamonte - quondam Attolini de Sischia - - M - - - - Bisanus - - M - - - - Bius - - M - - - - Blanci - de Herberia - - M - - - - Blancus - - M - - - - Blancus - quondam Belloni de Codesorbo - - M - - - - Blancus - de Flumine - - M - - - - Blancus - de Posa - - M - - - - Blancus - quondam Sabrini - - M - - - - Blancus - quondam Ugolini - - M - - - - Blasius - quondam Viviani de Soleria - - M - - - - Blonda - quondam Giberti - - F - - - - Boccadecanis - quondam Codargollii de castro Sarzane - - M - - - - Boiccaccius - de Falcinello - - M - - - - Bolanetus - de Cuna - - M - - - - Bolanetus - de la Cobia - - M - - - - Boldroncinus - de burgo Sancti Stephani - - M - - - - Boldroncinus - de burgo Sarzane - - M - - - - Bolgarinus - de Guerceto - - M - - - - BonaGuidonis - quondam Guidonis - - F - - - - Bona - quondam Martini - - F - - - - Bona - de Serra - - F - - - - Bonabroca - - M - notarius sacri palacii - attivo dal novembre 1120 (Archivio di Stato di Lucca, Diplomatico S. - Frediano) al 1160 (n. 479-DXVI) - - - - Bonacaptus / Bonacattus - - M - - - - Bonacaptus - de Brasile - - M - - - - Bonacaptus - de castro Sarzane - - M - - - - Bonacaptus - filius Girardetti de castro Sarzane - - M - notarius - attivo nel 1269 - - - - Bonacaptus - quondam Girardi de Braisile - - M - - - - - Bonaccoltus - quondam Benvenuti - - M - - - - Bonacursellus - quondam Bendicase de Sarzana - - M - - - - Bonacursetus - filius Bonfancelli - - M - - - - Bonacursus - - M - - - - Bonacursus - - M - castaldus - - - - Bonacursus - - M - notarius sacri palacii - attivo dal 1243 al 1260 - - - - Bonacursus - - M - domini Frederici serenissimi Romanorum imperatoris - notarius - attivo nel 1273 - - - - Bonacursus - - M - notarius, sacri palacii notarius - attestato nel 1235 fino al 1241 - - - - Bonacursus - - M - sacri palacii notarius - attestato nel 1214 - - - - Bonacursus - filius Albertini de Nobelino - - M - - - - Bonacursus - quondam Alcarini - - M - - - - Bonacursus - filius Aldebrandi vicedomini - - M - - - - Bonacursus - de Arenano - - M - - - - Bonacursus - de Biduçano - - M - - - - Bonacursus - quondam Bontempi de Veçale - - M - notarius - attivo nel 1260 - - - - Bonacursus - de Buiano - - M - - - - Bonacursus - quondam Burgensis - - m - sindicus generalis de Nicola - - - - Bonacursus - quondam Carandi - - M - - - - Bonacursus - de Carrara - - M - - - - Bonacursus - de Factore - - M - - - - Bonacursus - de Ficola - - M - - - - Bonacursus - Fosse / Folle - - M - - - - Bonacursus - quondam Guilielmini de Germagnano - - M - - - - Bonacursus - quondam Guilielmini de la Padule - - M - - - - Bonacursus - de Lanigra - - M - - - - Bonacursus - quondam Levacastelli de Buçano - - M - - - - Bonacursus - quondam Longi de Avencia - - M - - - - Bonacursus - quondam Martini de Losio - - M - - - - Bonacursus - de Marzasio - - M - - - - Bonacursus - Muculi - - M - - - - - Bonacursus - de la Padule - - M - - - - Bonacursus - filius Petri notarii de castro Sarzane / filio Petri quondam Gentis de - castro Sarzane - - M - notarius sacri palacii - attivo nel 1283 - - - - Bonacursus - quondam Rollandini de Yliolo - - M - - - - Bonacursus - - M - scario - - - - Bonacursus - Tascacinta - - M - - - - Bonacursus - de Veçale - - M - - - - Bonacursus - quondam Vitalis - - M - molendinarius - - - - Bonacursus - quondam Vivelli - - M - - - - Bonafemina - - F - - - - Bonafemina - filia quondam Amati - - F - - - - Bonafesta - - M - - - - Bonafesta - de Debia - - M - - - - Bonafesta - quondam Durantis - - M - - - - Bonafesta - quondam Pellini de Marola - - M - - - - Bonafesta - de Ponzanello - - M - - - - Bonafesta - de castro Sarzane - - M - - - - Bonafides / Bonafe - - M - - - - Bonafides / Bonafe - de Castronovo quondam Aldebertini - - M - - - - Bonafides / Bonafe - quondam Buce - - M - - - - Bonafides / Bonafe - de Donna quondam Aldebertini - - M - - - - Bonafides / Bonafe - de Fonti - - M - - - - Bonafides / Bonafe - de Lasoro - - M - - - - Bonafides / Bonafe - quondam Molinarii de Posticio - - M - - - - Bonafides / Bonafe - quondam Molinarii de Monteçanne - - M - - - - Bonafides / Bonafe - dictus Pappaciçia de Castronovo - - M - - - - Bonagratia - quondam Thedeschi - - M - - - - Bonaiuncta - - M - - - - Bonaiuncta - - M - archipresbiter Lunensis, canonicus Lunensis - - - - Bonaiuncta - - M - presbiter de castro Sarzane - - - - Bonaiuncta - filius quondam Bonaiuti de Sarzana - - M - auctoritate imperiali notarius - attivo nel 1262 - - - - Bonaiuncta - quondam Bonosi de Germagnano - - M - - - - Bonaiuncta - de Cervarolo - - M - - - - Bonaiuncta - quondam Ferrucci - - M - - - - Bonaiuncta - quondam Iuvenelli - - M - - - - Bonaiuncta - de Luna - - M - - - - Bonaiuncta - quondam Machagnagni - - M - - - - Bonaiuncta - de Monti - - M - diaconus - - - - Bonaiuncta - dicto Pesticio / Pisticio / Pesticio de Luca - - M - - - - Bonaiuncta - de Podio de Luca - - M - iudex, dominus - attestato dal 1270 al 1272 - - - - Bonaiuncta - de Puleca - - M - consul de Puleca - - - - Binaiuncta - de Sorgnano - - M - consiliarius Carrarie - - - - Binaiuncta - de Summo Fonti - - M - - - - Bonaiuncta - quondam Tancredi - - M - - - - Bonaiuncta - quondam Ubertini - - M - - - - Bonaiuncta - quondam Veçii de Veçale - - M - - - - Bonaiutus - - M - - - - Bonaiutus - filius Bonfilioli de Sorgnano - - M - - - - Bonaiutus - de Camtellino - - M - - - - Bonaiutus - de Ciçerano - - M - - - - Bonaiutus - Maiesta - - M - - - - Bonaiutus - de Miselia - - - - - Bonaiutus - de Barbaçano quondam Paganelli - - M - - - - Bonaiutus - de Castillione de Varese quondam Porcarii - - M - - - - Bonalbergus - - M - - - - Bonalbergus - - M - castaldus episcopi - - - - Bonalbergus - - M - consul Carrarie - - - - Bonalbergus - - M - iudex - attestato nel 1217 - - - - Bonalbergus - - M - notarius - attestato nel 1235 - - - - Bonalbergus - - M - iudex ordinarius et notarius domini Ottonis - imperatoris - attivo nel 1215 - - - - Bonalbergus - filium quondam Gerardoni de castro Sarzane - - M - notarius - attivo prima del 1279 - - - - - Bonalbergus - quondam Alberti - - M - - - - Bonalbergus - filius Bonaiuncte - - M - - - - Bonalbergus - quondam Calderone - - M - - - - Bonalbergus - quondam Iohannis de Torano, de Carraria - - M - notarius - attestato dal 1263 al 1273. - - - - Bonalbergus - de Carraria - - M - domini Frederici invictissimi Romanorum imperatoris - notarius - attestato dal 1253 al 1255, padre di Tadeus de Carraria, apostolice - sedis auctoritate notarius - - - - Bonalbergus - de la Cobia - - M - - - - - Bonalbergus - de monte Xanne - - M - - - - - Bonalbergus - quondam Ogerini - - M - - - - Bonalbergus - de Prato - - M - - - - Bonalbergus - de Sancto Stephano - - M - - - - Bonamicus - de Cannovo - - M - - - - Bonamicus - de Covaclo - - M - - - - Bonandinus - - M - - - - Bonandinus - de Castello - - M - - - - Bonandus - de Butracanca - - M - - - - Bonannus - - M - consiliarius Carrarie - - - - Bonaora - de Veçale - - M - - - - Bonaparte - de Sarzana - - M - notarius - attivo nel 1269 - - - - Bonaparte - - M - presbiter - - - - Bonaparte - quondam Bonafidei - - M - - - - Bonaparte - de Ponchano - - M - correrius - - - - Bonardellus - - M - - - - Bonardinus - quondam Albertini de Arcula - - M - - - - Bonattus - de Capanna quondam Duranti - - M - - - - Bonaventura - - M - - - - Bonaventura - - M - notarius - presente in autentiche non datate - - - - Bonaventura - - M - vicarius Lucani episcopi, plebanus de Cropale - presente in autentiche non datate - - - - Bonaventura - de Iovello - - M - - - - Bonaventura - Luchese - - M - - - - Bonaventura - de Monte - - M - - - - Bonaventura - quondam Occletti - - M - - - - Bonaventura - quondam Ogerini - - M - - - - Bonaventura - de Roasia - - M - - - - Bonaventura - de la Treguana de Carcandula - - M - - - - Bonaventura - quondam Ubaldini de Felecta - - M - - - - - Bonavere - - M - - - - Bonavere - - M - consiliarius Carrarie - - - - Bonavere - quondam Aimeline de Castronovo - - M - - - - Bonavere - quondam Benencase - - M - - - - Bonavere - quondam Bonfilieti - - M - - - - Bonavere - quondam Cepelli - - M - consul de Marola - - - - Bonavere - quondam Grimandi - - M - - - - Bonavere - quondam Macognani - - M - operarius de curte Sarzane - - - - Bonavere - de Portasione - - M - - - - Bonavere - de castro Sarzane - - M - - - - Bonavia - quondam Dominici de Montedarmo - - M - operarius de curte Sarzane - - - - Bonavia - de Serra - - M - - - - Bonavita - - M - - - - Bonavita - - M - consiliarius Carrarie - - - - Bonavita - - M - presbiter, rector de Ponzanello - - - - Bonavita - de Balognano, filio quondam Iohannis - - M - - - - Bonavita - quondam Guidonis - - M - - - - Bonavita - quondam Guilielmi Tancredi / quondam Guilielmini de Tancredo - - M - - - - Bonburgensis - quondam Mançeti filius - - M - - - - Boncadosa - - F - - - - Bonconsellus - - M - - - - Bondeccia - de burgo Sarzane - - M - - - - Bondies - - M - castaldus - - - - Bondies - quondam Alberti de Factore - - M - - - - Bondies - quondam Charistoli de castro Sarzane - - M - - - - Bondies - de Cirisolo - - M - - - - Bondies - de Ciserano - - M - - - - Bondies - de Orbagnano - - - - - Bondies - Petorialis - - M - - - - Bondies - filius domini Rubei de burgo Sarzane - - M - iudex de Sarzana, sacri palacii notarius, iudex - ordinarius - attestato dal 1275 al 1283 - - - - Bonifacius - de Ardano - - M - - - - Bonifacius - de Castello Novo - - M - - - - Bonefacte - de Paterno - - F - - - - Bonellus - - M - - - - Bonencasa - - M - - - - Bonencasa - de Ara - - M - - - - Bonencontrinus - - M - - - - Bonencontrus - - M - - - - Bonencontrus - - M - magister - - - - Bonencontrus - - M - senescalcus - - - - Bonencontrus - quondam Bosonis de Montevallese - - M - - - - Bonencontrus - de Miselia - - M - consiliarius Carrarie - - - - Bonencontrus - Ottoboni - - M - operarius de curte Sarzane - - - - Bonencontrus - de Sarzana - - M - - - - Bonencontrus - quondam Sarzanelli - - M - operarius de curte Sarzane - - - - Bonencontrus - de Soleria - - M - imperialis aule notarius, sacri palacii notarius - attivo dal 1219 al 1237 - - - - Bonensegna - - M - consiliarius comunis de Ponçanello - - - - Bonensegna - de Cruce - - - - - Bonensegna - de Porreto - - M - - - - Bonensegna - de Quaragiota - - M - - - - Bonensegna - quondam Rainerii de Cortiola - - M - operarius de curte Sarzane - - - - Bonensegna - quondam Venutelli - - M - - - - Bonensegna - de Villiano - - M - - - - Bonetellus - - M - - - - Bonezetus - - M - - - - Bonfancellus / Bonusfancellus - - M - - - - Bonfancellus - - M - consiliarius Carrarie - - - - Bonfancellus - quondam Bernoli de Yliolo - - M - - - - Bonfancellus - quondam Pagani - - M - - - - Bonfante - de Amelia - - M - - - - Bonfante - quondam Martini - - M - - - - Bonfante - de Plazio - - M - - - - Bonfiletus - - M - - - - Bonfiletus - quondam Bonencase - - M - consiliarius comunis de Ponçanello - - - - Bonfiletus - de Iovello - - M - - - - Bonfiletus - de Ponzanello - - M - - - - Bonfiletus - quondam Ubertini de Boccognano - - M - - - - Bonfiliolus - - M - - - - Bonfiliolus - de Cornilione - - M - - - - Bonfiliolus - quondam Messerendi / quondam Messerandi de Apiola - - M - - - - Bonfiliolus - de Molino - - M - - - - Bonfiliolus - Uberti - - M - - - - Bonfiliolus - filius Uberti de Soleria - - M - - - - Bonfiliolus - de Veciale - - M - - - - Bonfilius - - M - archipresbiter Lunensis - - - - Bonfilius - - M - archipresbiter de Soleria - - - - Bonfilius - de Acola - - M - - - - Bonfilius - de Cervaria - - M - - - - Bonfilius - de Cruce - - - - - Bonfilius - de Morechello - - - - - Bonfivilla - - F - - - - Bonguido - - M - - - - Bonzannis / Boniannis - de Lune - - M - - - - Bonicinus - - M - - - - Bonifacius - - M - canonicus Lunensis - - - - Bonifacius - Gottoni - - M - iudex - - - - Bonifacius - de Herberia - - M - - - - Boniohannis - - M - - - - Boniornus - de Luca - - M - - - - Boniovannus - - M - - - - Bonissima - de Capagnana - - F - - - - Bonicus - de Mezana - - M - - - - Bonizo / Bonicio / Boniço / Boneço - - M - - - - Bonizo / Bonicio / Boniço / Boneço - - M - massarius - - - - Bonizo / Bonicio / Boniço / Boneço - filius quondam Eldeberti - - M - - - - Bonizo / Bonicio / Boniço / Boneço - de Furno - - M - - - - Bonizo / Bonicio / Boniço / Boneço - filius quondam Martini - - M - presbiter - - - - Bonizo / Bonicio / Boniço / Boneço - de Moneta - - M - - - - Bonomus / Bonommo / Bonomo - - M - - - - Bonomus / Bonommo / Bonomo - Antognolo / de Antognolo - - M - - - - Bonomus / Bonommo / Bonomo - de plebe Carrarie - - M - calzolarius - - - - Bonomus / Bonommo / Bonomo - de Occara - - M - - - - Bonomus / Bonommo / Bonomo - de Fontana - - M - - - - Bonomus / Bonommo / Bonomo - de Nichola - - M - - - - Bonone - - M - - - - Bonora - - M - - - - Bonsegnus / Bonsignus - quondam Gerardini de Bonfante - - M - operarius de curte Sarzane - - - - Bonsegnus / Bonsignus - quondam Annoboni - - M - - - - Bonsenior / Bonsengnore - - M - - - - Bonsenior / Bonsengnore - filius Bonaiuncte - - M - - - - Bonsenior / Bonsengnore - de Via - - M - - - - Bontempus - frater Bonacursi de Veçale - - M - - - - Bontempus - de Veçale - - M - - - - Bonus - - M - - - - Bonus - - M - prior sancti Fridiani - - - - Bonus - quondam Minoeti - - M - - - - Bonus - de Montexello - - M - - - - Bonus - de Sorgnano - - M - - - - Bondies - de Plaça - - M - - - - Bonusfilius / Bonusfiliolus - - M - - - - Bonusfilius / Bonusfiliolus - Ninnolus - - M - - - - Bonusinfans - - M - - - - Bonusiohannes - - M - - - - Bonusiohannes - de Montale - - M - - - - Bonussenior - - M - - - - Bonuzolus - - M - - - - Bonvalligus - de donno Nobilino - - M - - - - Bonvicinus - de Alamanno - - M - - - - Bonvicinus - - M - discipulus Conforti notarii - - - - Bonvicinus - quondam Bellandi de Monteçangni - - M - - - - Bonvicinus - filio Bonvicini - - M - - - - Bonvicinus - filius Calderoni de Castronovo - - M - - - - Bonvillanus / Bonusvillanus - - M - - - - Bonvillanus / Bonusvillanus - quondam Acursi, dicti Pape - - M - - - - Bonvillanus / Bonusvillanus - quondam Anniboni - - M - - - - Bordanus - de Bolano - - M - - - - Bordanus - de Quaroçola - - M - - - - Borgensis / Burgensis / Borgesius - - M - - - - Borgensis / Burgensis / Borgesius - quondam Bellotti - - M - consul de Micoarra - - - - Borgensis / Burgensis / Borgesius - de Capagnano - - M - consul de Micoarra - - - - Borgensis / Burgensis / Borgesius - de Nichola - - - - - Borgensis / Burgensis - de Pulica - - M - operarius de curte Sarzane - - - - Borgensis / Burgensis / Borgesius - de castro Sarzane - - M - - - - Borgese - uxor quondam Amati - - F - consiliarius castri Sarzane - - - - Borgesellus - - M - imperiali auctoritate notarius - attestato nel 1279; forse da identificare con il notaio Borgesetus de - Sarzana - - - - Borgesetus - quondam Manceti - - M - - - - Borgesetus - quondam Hubertini - - M - consiliarius castri Sarzane - - - - Borgesetus - de Sarzana - - M - notarius - attestato nel 1269; forse da identificare col notaio Borgesellus - - - - Borgetus - - M - - - - Borlengus - de Falcinello - - M - consul de Falcinello - - - - Borrelus - filius Ugonis - - M - - - - Borthesella - - F - - - - Boso - - M - - - - Boso - - M - archipresbiter de Amelia - - - - Boso - de Castello Novo - - M - - - - Boso - quondam Cicoli de Colle - - M - - - - Boso - quondam Gerardi de Casine - - M - - - - Boso - de Ortonovo - - M - - - - Boso - de la Torsella - - M - - - - Boso - de Viano - - M - - - - Boso - de Ugeto - - M - - - - Boso - filius Ugolini - - M - - - - Bosulinus / Bosulinus / Bosolinus - - M - - - - Botellus - - M - - - - Botrigellus - quondam Fantinelli de Monçolono - - M - operarius de curte Sarzane - - - - Botrigellus - de Gragnana - - M - - - - Bottaccius - filio Gerardi de Falcinello - - M - - - - Bottacungi - - M - Nome collettivo derivato probabilmente da Bottaccio, padre di Carbone, del - doc. 151. - - - - Bovesia - de Furno - - M - - - - Bozano - de - - M - domini - nome collettivo - - - - Boçarellus - - M - - - - Bozus - quondam Raimundini Marchodoro - - M - - - - Branchetus - - M - - - - Brendellus - - M - - - - Brescianus - quondam Iacopini, frater Agnesie - - F - - - - Bricaldus - - M - - - - Brictius - - M - - - - Brisiolus - de Ara - - - - - Bruna - - F - - - - Bruna - quondam Fortini - - F - - - - Bruna - quondam Venuti de Panicali et filia Belle de la Serra - - F - - - - Brunetus - - M - - - - Brunetus - de Monte - - M - - - - Bruniconus - - - - - Bruniconus - quondam Gerardini Labromeci - - - - - Brunus - - M - - - - Bucadecanis - - M - - - - Buconcus - - M - - - - Buiardus - quondam Gerardini de castro Sarzane - - M - - - - Buiardus - quondam Gerardini de Bonfante - - M - operarius de curte Sarzane - - - - Bulgarinus - de Sarzana - - M - - - - Bullionus / Bullione - - M - - - - Bullionus / Bullione - filio Rugerini de Sarzano - - M - - - - Bullionus / Bullione - de Sarzana - - M - - - - Burdonis - de Sarzana quondam Prefecti de Campiza - - M - - - - Burgisius - de Capagnano - - M - - - - Burgo - - M - iudex - - - - Burgundius - Malabura - - M - - - - Burnengi - de Cazano - - - - - Bursinus - - M - - - - Buscalinus - - M - - - - Buscallanus - - M - - - - Busimannus - - M - - - - Bussetus - quondam Martini de Tilia - - M - - - - Bussus - de Balognano - - M - - - - Buttafava - - M - - - - Buttafava - - M - episcopus Lunensis - Buttafava, vescovo di Luni. Forse già canonico lunense - dato che troviamo - un Buttafava in quel ruolo il 31 marzo - del 1206 - è attestato la prima volta il 14 luglio 1224 e l’ultima il 31 gennaio 1226. - - - - Buttafava - de Arcula - - M - - - - Buttafava - nepos domini Saladini - - M - - - - Butarellus - - M - - - - Buterus - - M - - - - Butrigellus - - M - - - - Buxus - filius quondam Tipi - - M - - - - - Cacciaguerra / Cacia Werra - - M - - - - Cacciaguerra - quondam Rollandini - - M - - - - Caccius - - M - - - - Caçialeta - - M - - - - Cafadiolus - - M - - - - Çafferrus - - M - - - - Cagnola - quondam Boccadecanis - - M - - - - Cagnolus - - M - - - - Cagonus - de Collecchio - - M - - - - Calandrinus - quondam Pagani de Brina - - M - - - - Calderolus - - M - - - - Calandronus - - M - - - - Calderonus - de Castronovo - - M - - - - Calderonus - de Marçano - - M - - - - Calvinus - - M - - - - Calvinus - - M - castaldus domini Lambertucii de Illano Pontis - - - - Calvucius / Calvutius - - M - - - - Campus - - M - - - - Cancellerius / Cancellarius - - M - - - - Cancellerius / Cancellarius - Mercadus de donna Roasia - - M - - - - Cancellinus - de Falcinello - - M - - - - Cancius - - M - - - - Cancius / Cançus - quondam Paganni / de Castronovo quondam Pagani - - M - - - - Canetus - - M - - - - Canorus - - M - canonicus Lunensis - - - - Cantillina - - F - domina de Falcinello - - - - Zapironellus - qui prenominatur Pirolus, quondam Actocanini de Masio - - M - - - - Carabona - - MF - - - - Caracosa - - F - - - - Caraita - - F - - - - Carandus - - M - - - - Caravita - - M - - - - Caravita - quondam Bonaçunte Parteconi - - M - - - - Carbo / Carbonus - - M - - - - Carbo / Carbonus - - M - massarius - - - - Carbo / Carbonus - de Falcinello /quondam Bottaccii - - M - dominus de Falcinello - - - - - Carbuncellus - - M - - - - Carentionus - - M - - - - Carenutus - - M - - - - Caretus - filius Bernardi - - M - - - - Carinbonus - Gerardini quondam Burnengii de Cazano - - M - - - - Carlaxarius - - M - - - - Carlinus - - M - - - - Carrarese - - F - - - - Carrerius - - M - - - - Carcedonius - - M - iudex de Vallecla - - - - Carus Amicus - - M - notarius sacri palacii - attestato dal 1075 al 1084 - - - - Carus - Vassallus - - M - - - - Casalinus - - M - - - - Casavetranus - quondam Martinelli de Casavetri - - M - - - - Casolinus - - M - - - - Castagnola / Castangnola - - F - - - - Castagnola / Castangnola - de Castronovo - - F - - - - Castagnolus - - M - - - - Castagnolus - de Summo Tranci quondam Talamelli - - M - - - - Castaldus - de Ficola - - M - - - - - Castellana - filia quondam Fancelli - - F - - - - Castellanus - - M - - - - Castellanus - quondam Gerardini de Veiano - - M - - - - Castellanus - de Monti - - M - operarius de curte Sarzane - - - - Castilio - de Castilione - - M - - - - Castilio - quondam Bondineti de castro Sarzane - - M - - - - Catenacius / Catenatius - - F - - - - Catia - Regis - - F - domina de Bozano - - - - Caudasius - qui prenominatur Albertus, quondam Actocanini de Masio - - M - - - - Cavallinus - - M - correrius, publicus nuntius - - - - Cecius - - M - - - - Çenepria / Zenepria - - F - - - - Çente / Zente - gener Iohannini de Agina - - M - - - - Ceredanus - - M - presbiter - - - - Cereolus - - M - cocus - - - - Ceretus - de Tendola - - M - - - - Cerrus - de Balano - - M - - - - Çica - - F - - - - Cichignolus - - M - - - - Cichinellus / Çikinellus - - M - - - - Cicolinus / Çicolinus - - M - - - - Cicolinus - filius quondam Tipi - - M - - - - Cicolus / Çicolus - - M - - - - Cicolinus / Çicolinus - de Cannebiano - - M - - - - Cicolus / Çicolus - de Conano - - M - - - - Ciconus - de Vallecla - - M - - - - Cita - quondam Compagni - - - - - Citellus - - M - - - - Citellus - <filius Ubaldini de Nichola> - - M - - - - Citus / Çitus - - M - - - - Citus / Çitus - - M - consiliarius Carrarie - - - - Citus / Çitus - de Campagnano - - M - - - - Clericus - - M - - - - Cobolus / Çobolus - - M - - - - Codargogius - quondam Biancheti - - M - consul castri Sarzane - - - - Codorgollius / Codorgollius / Codorgollus - - M - - - - Codorgollius / Codorgollius / Codorgollus - de castro Sarzane - - M - castaldus de Supra Luna - - - - Codevilla - - M - - - - Colin... - - M - - - - Collis - de Brusco - - M - - - - Çolombardo - - M - archiprebiter de Amelia - - - - Comes - - M - notarius - attestato nel 1234 - - - - Compagnola - quondam Compagni, uxor Valentini quondam Favalini - - F - - - - Compagnolus - - M - - - - Compagnonus - - M - consiliarius de Ponzanello - - - - Compagnonus - de Bertoloto - - M - operarius de curte Sarzane - - - - Compagnonus - de Lano - - M - - - - Compagnonus - Magistri - - M - - - - Compagnonus - de Malliola - - M - - - - Compangnonus - de Provinchale - - M - - - - Compagnus - - M - - - - Compagnus - - M - operarius de curte Sarzane - - - - Compagnus - de Favale - - M - - - - Conagettinus - - M - - - - Conettus / Conetus - - M - - - - Conettus / Conetus - de Casalechio - - M - sacri palacii notarius - - - - Confalonerius - - M - sacri palacii notarius - attestato nel 1231 - - - - Confortinus - Deteaide - - M - - - - Confortus - - M - - - - Confortus - - M - notarius, sacri palatii et Lunensis curie notarius, sacri - palatii iudex et notarius - attestato dal 1195 al 1212 (forse 1223) - - - - Confortus - de Cepparana - - M - notarius - attestato nel 1237 - - - - Confortus - de Fosdenova - - M - notarius - attestato nel 1230 - - - - Coniator - - M - - - - Corradina - - F - - - - Corradinus - - M - notarius illustris et summi Henrici regis - attestato nel 1275 - - - - Conradus / Corradus / Curradus - - presbytero ecclesie de Serravalle - - - - Conradus / Corradus / Curradus - - presbytero ecclesie de Serravalle - - - - Conradus / Corradus / Curradus - domini Çapironi de Terrarossola - - M - - - - Conradus / Corradus / Curradus - domini Çapironi de Terrarossola - - M - dominus - forse appartenente agli Obertenghi, figlio di Palodino e nipote di Guglielmo - Saraceno - - - - Conradus / Corradus / Curradus - de Tivegna - - M - - - - Contebonus - - - - - Contiatore - de Marola - - M - syndicus et procurator communium et universitatum de Marola et de - Matrono - - - - Corbellarius - - M - - - - Corsus - - M - - - - Corsus - de Amelia - - M - - - - Corsus - de Balognano - - M - - - - Corvarinus - - - - - Cosa - quondam Cançii de Castro Novo - - M - - - - Cosone - - M - - - - Costantinus - - M - notarius domini Frederici imperatoris - attestato nel 1178 - - - - Cothanellus - - M - - - - Cottivechia - - M - - - - Çuchanus - quondam domini Saladini de Fosdenova - - M - - - - Çukinus - - M - - - - Çucketus - - M - - - - Çucus - - M - - - - Çuffettus - - M - - - - Cumçaferrus - de Marçasio - - M - magister - - - - Çunta - de Maruco - - M - - - - Cuffus - de Malunto - - M - - - - Cunimundus - filius quondam Benzoni - - M - - - - Cunimundus - de Verazano - - M - - - - Cursus - quondam Alberti - - M - consul castri Sarzane - - - - Cursus - de Donnisia de castro Sarzane - - M - - - - Cursus - de Vezano quondam Vitalis de Campola - - M - - - - Curtis - de Carnea - - M - - - - - Dainense - - M - - - - Dalfinetus - - M - - - - Dallindusius - - M - - - - Damianus - de Camua - - M - - - - Daninus - - M - calzolarius - - - - Datius - gener quondam Rodolfini - - M - - - - Datus - - M - minister hospitalis Sanctissime Crucis siti iuxta ripam et iuxta - faucem Sarni - - - - Datus - - M - rector et minister ecclesie Sancti Mauricii - - - - Datus - filius quondam Bonacursi de Limite - - M - imperialis aule notarius - attestato nel 1270 - - - - Datus - filius Conforti - - M - iurisperitus, iudex - - - - Datus - quondam Guidonis de Montedarmo - - M - - - - Davinus - - M - - - - Declara - filia Ugerini de Petro - - F - - - - Delfinellus - - M - cocus - - - - Demeldede - de Balognano - - M - - - - Diamante - - F - domina - - - - Deotisalvi / Detesalve - - M - - - - Deotisalvi / Detesalve - de Portuveneris - - M - - - - Detefe - quondam Moreschi - - M - - - - Diamante - filia quondam Guiscardelli - - F - - - - Dido - de Carame - - M - - - - Divicia - - F - - - - Divicia - quondam Martini - - F - - - - Dolceamata - quondam Guirisii de Torano - - F - - - - Dolcebonus / Dulcebonus - - M - - - - Dolcebonus / Dulcebonus - de Miselia - - M - - - - Dolcebonus / Dulcebonus - quondam Pasqualini - - M - - - - Domalfollus - de Terrarossola - - M - - - - Dominicus - - M - - - - Dominicus - - M - presbiter - - - - Dominicus - de Area - - M - - - - Dominicus - de Biduçano - - M - - - - Dominicus - de Castagnetulo - - M - - - - Dominicus - Peraboche - - M - - - - Dominicus - Peralloca - - M - - - - Dominicus - de Ponzanello - - M - - - - - Dominicus - Secatelli - - M - - - - Dominicus - de Serravalle - - M - - - - Dominicus - quondam Viviani de Functi - - M - - - - Donamenta - quondam Veçi - - F - - - - Donatus - - M - - - - Donna - - - - - Donna - de Apiola - - F - - - - Donnellus - - M - massarius - - - - Donnetola - - F - - - - Dux - - M - - - - Dundetus - de Ponzanello - - M - - - - Durans / Durantus - - M - - - - Durans / Durantus - quondam Benencase - - M - - - - Durans / Durantus - quondam Bonaiute de Castronovo - - M - - - - Durans / Durantus - quondam Bonevite - - M - - - - Durans / Durantus - de Carame - - M - - - - Durans / Durantus - de Cepparana - - M - - - - Durans / Durantus - de Colle - - M - - - - Durans / Durantus - de Fornolo - - M - - - - Durans / Durantus - quondam Guilielmi - - M - - - - Durans / Durantus - quondam Porroneti de Porreto/quondam Pontonetti de Poreto - - M - - - - Durans / Durantus - de la Ripa - - M - - - - Durans / Durantus - quondam Rubaldi de la Caneva de Petroçuca - - M - - - - Durans / Durantus - de Posticio - - M - - - - Durans / Durantus - Simonis - - M - - - - Durans / Durantus - de Testa - - M - - - - Durans - quondam Ugolini de Rofiano - - M - - - - Durans / Durantus - de Valle - - M - - - - Durans / Durantus - de Valmoro - - M - - - - Durans / Durantus - de Veçale - - M - - - - Durans / Durantus - de Vitea - - M - - - - - Dutius / Dusius - - M - presbiter, rector Sancti Terencii - - - - Dionisus - - M - episcopus Placentinus - Dionigi, vescovo di Piacenza, attestato a partire dall'inizio del 1049, - venne deposto nel 1075 (SCHWARTZ - 1913, p. 191). - - - - - Egalinus - de la Ferrata - - M - - - - Egidius - de Cremona - - M - frater - - - - Egidius - quondam Durantis de Valle - - M - - - - Egidius - filius Rodulfi de Cervaria - - M - - - - Eldezo - - M - - - - Enulis - de Funti - - M - - - - Eugenius - - M - episcopus, servus servorum Dei - Papa Eugenio III, eletto il 15 febbraio 1145, muore a Tivoli l'8 luglio 1153 - come da scheda di Harald Zimmermann nel Dizionario Biografico degli italiani, vol. 43 - (1993) - - - - Ezo - de Bibola - - M - - - - - - Facius - quondam Garmignoni - - M - - - - Fancinellus - quondam Sinibaldi de Prato - - M - - - - Falco - - M - presbiter - - - - Fancellus - - M - - - - Fancinellus - quondam Rafanini - - M - operarius de curte Sarzane - - - - Fasianus - - M - presbiter, plabanus de Amelia - - - - Fatorensis - - M - - - - Fatennançus - - M - - - - Favalinus - - M - - - - Fellolus - - M - - - - Femenella - filia quondam Gerarducii de la Serra - - F - - - - Festa - filius Detesalve - - M - - - - Festa - quondam Pellini - - M - - - - Filimannus - - M - - - - Flobertus - de Ponçanello - - M - - - - Fortinus - de Ponçanello - - M - - - - Foscolus - - M - - - - Federicus / Fredericus - - M - castaldus de Carrara - - - - Federicus / Fredericus - - M - dux Suevie - Federico VI di Hohenstaufen, figlio di Federico Barbarossa, duca di Svevia - dal 1170 fino alla morte intervenuta nel 1191 durante l'assedio di S. Giovanni - d'Acri come da scheda di Hansmartin Schwarzmaier in Neue Deutsche Biographie, Band 5 (1961) - - - - Federicus / Fredericus - - M - imperator - Federico I imperatore, incoronato il 18 giugno 1155, morto il 10 giugno 1190 - come da CAPPELLI 1988, pp. 257-260. - - - - Federicus / Fredericus - - M - imperator - Federico II imperatore, incoronato il 22 novembre 1220, morto il 13 dicembre - 1250 come da scheda di Norbert Kamp nel Dizionario Biografico degli italiani, vol. 45 - (1995) - - - - Federicus / Fredericus - - M - sacri palacii notarius, iudex ordinarius - attestato in una autentica senza data - - - - Federicus / Fredericus - filis Comitis de Vezano - - M - - - - Federicus / Fredericus - filius Pelegrini de Carraria - - M - castaldus - - - - Feminella - filia quondam Amati de Orbagnano - - F - - - - Fercinus - - M - - - - Ferettus / Ferretus - - M - - - - Ferettus / Ferretus - de Ponzanello - - M - consul de Ponzanello - - - - Ferrarius - - M - - - - Ferrinus - - M - - - - Ferrinus - quondam Vivaldi de Donnisia - - M - - - - Ferrus - - M - - - - Ferrus - de Aventia - - M - - - - Ferrus - Bonaiuti de castro Sarzane - - M - - - - Ferrus - de Carrara - - M - - - - Ferrus - Dolcebene de Veçiali - - M - - - - Ferrus - quondam Dolcebene de Monteserino - - M - - - - Festa - quondam Venture - - M - - - - Festa - Vitalis - - M - - - - Fidancia - de Valporcara - - M - - - - Fidanzetus - - M - - - - Florentia - quondam Gualteroni de Carcandula - - F - - - - Floreta - - F - - - - Floretus - - M - - - - Fluminellus - - F - - - - Fluminellus - Pitecus - - F - - - - Focerius - de Cervara - - M - - - - Folbertinus - - M - - - - Folbertus - - M - - - - Folbertus - - M - consul comunis de Ponzanello - - - - Folcerius - quondam Cervaroli - - M - - - - Forinus - quondam Ugolini de Pilato - - M - operarius de curte Sarzane - - - - Forçore - de Sancta Maria Monte - - M - dominus - - - - Formentinus - - M - - - - Formentinus - de Calmesana - - M - - - - Formentinus - quondam Rafanini - - M - operarius de curte Sarzane - - - - Formentinus - de castro Sarzane - - M - - - - Formentinus - Tranpulii - - M - - - - Fornarius - - M - - - - Fornarius - de Furno - - M - - - - Fornarius - quondam Ianelli de Ponzanello - - M - - - - Fortinus - de Torano - - M - consul comunis Carrarie - - - - Fortis - quondam Gerardi de Picolo - - M - - - - Foscherius - de Fosdenova quondam Rustichelli - - M - - - - Foscolinus - - M - - - - Fosdenoctus - filius ipsius Guidonis - - M - - - - Francesca - quondam Bonefacte de Paterno - - F - - - - Franciscus - - M - castaldus de Carraria - - - - Franciscus - filius quondam domini Bernabovis <Malaspina> - - M - marchio - Francesco Malaspina, figlio di Bernabò, ramo dello Spino Fiorito, attestato - dal 1267 (ASFi DM, n. 207) al 1312 - (MGH CONST IV, II, pp. - 904-905). - - - - Francolus - - F - - - - Frandina - - F - domina de Falcinello - - - - - Frolinus - - M - - - - Fruminellus - Pitetus quondam Pugneti - - M - - - - Fromundinus - - M - - - - Fulcus - - M - - - - Fusca - filia quondam Galosnini - - F - - - - Fuscolinus / Foscolinus - de Nave quondam Balduini - - M - - - - Fuscolinus / Foscolinus - de Valle Stephani - - M - - - - Fuscolus / Fusculus - - M - - - - Fuscolus - de Yliolo - - M - - - - Fusculus - de Susano - - M - - - - Fuscus - Berte de Castronovo - - M - - - - Fuscus - quondam Cançii - - M - - - - Fuscus - de Ferrino de castro Sarzane - - M - - - - Fuscus - Guidi / quondam Guidi - - M - - - - Fuscus - quondam Guidonis Sagine - - M - - - - - G. - - M - presbiter de Ciserano - - - - G. - de Braçano - - M - - - - Gabardus - de Sarzana - - M - - - - Gabriel - marchio Malaspina, filius quondam domini Ysnardi marchionis - Malaspina - - M - marchio - Gabriele Malaspina, marchese, figlio di Isnardo dello Spino Fiorito, - attestato dal 1272 (ASFi DM, n. 238) al 1286 (ASFi DM, n. 311) è probabilmente già defunto nel - giugno del 1288 (ASFi DM, n. 318). - - - - Gaforetidus - - M - - - - Gaforius - - M - - - - Gaforius / Igaforius - de Faucenova - - M - - - - Gaideferus - - M - - - - Gaideferus - filius Guilielmi de Sancto Stephano - - M - - - - Gaideferus - quondam Pasqueti de Falcinello - - M - - - - Gaitanus - Pisanus - - M - iudex - - - - Galardus - quondam Homodei de Luca - - M - iudex, notarius - attestato nel 1260 - - - - Galeardus - filius Rapalli de Veraxano - - M - - - - Galganus - - M - - - - Galganus - quondam Bonosi de Germagnano - - M - - - - Galimarus - de Sarzana - - M - - - - Gallascus - de Summo Tranci - - M - - - - Galletus - - M - - - - Gallus - de Miselia - - M - - - - Gallicus - - M - - - - Gallicus - filius Michaelis - - M - - - - Galopinus - quondam Ricii de Montedarmo - - M - operarius de curte Sarzane - - - - Gandulfinus / Gandolfinus - - M - - - - Gandulfinus / Gandolfinus - de Carraria - - M - - - - Gandulfinus / Gandolfinus - quondam Gerardeti de Fontana - - M - - - - Gandulfus - filius quondam Henrici de Luca - - M - - - - Gandulfus - frater Stephani de la Crosa - - M - - - - Garindonus - - M - - - - Garminella - - ? - - - - Gavarrus - de Castronovo - - M - - - - Gedaldus - - M - - - - Genetius - quondam Rolandi - - M - - - - Genetius - quondam Rolandi - - M - - - - Georgius - - M - - - - Georgius - - M - sacri palacii notarius - presente in un autentica non datata ma attribuibile alla prima metà del XIII - secolo - - - - Gerardetus - - M - - - - Gerardetus - - M - diaconus - - - - Gerardetus - de Amelia - - M - - - - Gerardetus - dictus Capellus quondam Boccadecanis de castro Sarzane - - M - - - - Gerardetus - de Carraria - - M - - - - Gerardetus - quondam Dimandi de castro Sarzane - - M - - - - Gerardetus - quandam Gandolfini - - M - consiliarius Carrarie - - - - Gerardetus - filius Gibertini de Ponzanello - - M - - - - Gerardetus - de Monte Vallese - - M - - - - Gerardetus - qui nominor Montonus / Muntoni - - M - sacri palacii notarius, consiliarius castri Sarzane - - - - Gerardetus - Rossus - - M - escarius - - - - Gerardina - - F - - - - Gerardinellus / Girardinellus - - M - - - - Gerardinus / Girardinus - - M - - - - Gerardinus / Girardinus - - M - castaldus Lunensis curie - - - - Gerardinus / Girardinus - quondam Bettotii - - M - operarius de curte Sarzane - - - - Gerardinus / Girardinus - Bifulci - - M - - - - Gerardinus / Girardinus - de Boiardo - - M - - - - Gerardinus / Girardinus - de Bona - - M - - - - Gerardinus / Girardinus - de Bucciliano - - M - - - - Gerardinus / Girardinus - quondam Burnengii de Cazano - - M - - - - Gerardinus / Girardinus - de Butrone - - M - - - - Gerardinus / Girardinus - de Carola - - M - - - - - Gerardinus / Girardinus - de Cazacane - - M - - - - Gerardinus / Girardinus - de Cobiata - - M - - - - Gerardinus / Girardinus - de Çobolo - - M - - - - Gerardinus / Girardinus - Comitis - - M - - - - Gerardinus / Girardinus - quondam Coneti de Mommio - - M - - - - Gerardinus / Girardinus - filius quondam Cyceris de Magnano - - M - - - - Gerardinus - quondam Ferreti de Ponzanello / Feretti de Ponzanello - - M - - - - Gerardinus / Girardinus - de Fontana - - M - - - - Gerardinus / Girardinus - de Graçano - - M - - - - Gerardinus / Girardinus - quondam Guilielmoti de Viano - - M - - - - Gerardinus / Girardinus - de Guitone - - M - operarius de curte Sarzane - - - - Gerardinus / Girardinus - de Loran - - - - - Gerardinus / Girardinus - de Mandrola - - - - - Gerardinus / Girardinus - de Miselia - - - - - Gerardinus / Girardinus - de Mommio - - M - - - - Gerardinus / Girardinus - de Montione - - M - - - - Gerardinus / Girardinus - de Moritiola - - M - - - - Gerardinus / Girardinus - de Oliva - - M - - - - Gerardinus / Girardinus - de Ortonovo - - M - - - - Gerardinus / Girardinus - de Padule - - M - - - - Gerardinus / Girardinus - Pecagnosus - - M - - - - Gerardinus / Girardinus - de Pilloto - - M - consiliarius de Ortonovo - - - - Gerardinus / Girardinus - de Poncisone - - M - consiliarius de Ortonovo - - - - Gerardinus / Girardinus - de Posticio - - M - - - - Gerardinus / Girardinus - de Roza - - M - consiliarius de Micoarra - - - - Gerardinus / Girardinus - de San Martino - - M - - - - Gerardinus / Girardinus - de Traversara - - M - - - - Gerardinus / Girardinus - filius quondam Ugolini de Ponçano - - M - - - - Gerardinus / Girardinus - Veronus quondam Gerardini Veroni de Soleria - - M - - - - Gerardinus / Girardinus - de Via - - M - - - - Gerardus / Girardus - - M - - - - Gerardus / Girardus - de Marnasco - - M - magister, archipresbiter de Marnasco - - - - Gerardus / Girardus - - M - canonicus Lunensis - - - - Gerardus / Girardus - - M - clericus de Viano - - - - Gerardus / Girardus - - M - magister - - - - Gerardus / Girardus - - M - massarius - - - - Gerardus / Girardus - - M - presbiter - - - - Gerardus / Girardus - - M - presbiter de Sancto Venerio - - - - Gerardus / Girardus - quondam Acursi - - M - - - - Gerardus / Girardus - filii Aimonis de Bolano - - M - - - - Gerardus / Girardus - filius quondam Alberti vicedomini - - M - vicedominus episcopi - - - - Gerardus / Girardus - quondam Alberti - - M - - - - Gerardus / Girardus - quondam Alberti de Gandulfino - - M - dominus - - - - Gerardus / Girardus - quondam domini Aldebrandi - - M - vicedominus de Trebiano - - - - Gerardus / Girardus - Aletrine - - M - dominus - - - - Gerardus / Girardus - Beaigue de castro Sarzane - - M - - - - Gerardus / Girardus - de la Bella - - M - - - - Gerardus / Girardus - quondam Bellandini de Oliveto - - M - - - - Gerardus / Girardus - quondam Bonensingne - - M - - - - Gerardus / Girardus - filius Bonfilioli de Sorgnano - - M - - - - Gerardus / Girardus - quondam Borgeti - - M - - - - Gerardus / Girardus - quondam Bosi de Falcinello - - M - - - - Gerardus / Girardus - de Colle quondam Bosolini - - M - - - - Gerardus / Girardus - quondam Bottaccii - - M - dominus de Falcinello - - - - Gerardus / Girardus - de Bruscaliano - - M - - - - Gerardus / Girardus - de Carrara - - M - dominus - - - - Gerardus / Girardus - Carbonis - - M - consiliarius de Ponzanello - - - - Gerardus / Girardus - quondam Cicoli / Çicoli - - M - - - - Gerardus / Girardus - de Colle - - M - - - - Gerardus / Girardus - de Codesorbo - - M - - - - Gerardus / Girardus - de Cornilio - - M - presbyter Parmensis dyocesis, familiare ipsius domini - episcopi - - - - Gerardus / Girardus - filius domine Dyamantis - - M - - - - Gerardus / Girardus - quondam domini Gandulfini - - M - dominus - - - - Gerardus / Girardus - quondam domini Henrici de Trebiano - - M - - - - Gerardus / Girardus - dicto Ferro de Fosdenova - - M - nobilis - - - - Gerardus / Girardus - quondam Gerardini - - M - operarius de curte Sarzane - - - - Gerardus / Girardus - filius Guidictionis Morellini - - M - magister - - - - Gerardus / Girardus - quondam Guilielmini - - M - - - - Gerardus / Girardus - quondam Guiscardelli - - M - - - - Gerardus / Girardus - filius Imelle de Luca - - M - - - - Gerardus / Girardus - quondam Lealis de Sarzana - - M - - - - Gerardus - quondam Levacastelli de Bozano - - M - - - - Gerardus / Girardus - Lucanus - - M - magister - - - - Gerardus / Girardus - de Munzone - - M - - - - Gerardus / Girardus - de Pannesa - - M - - - - Gerardus / Girardus - de Petrognano - - M - consiliarius Carrarie - - - - - Gerardus / Girardus - quondam Rollandini de Masio - - M - - - - Gerardus / Girardus - Rubei - - M - - - - Gerardus / Girardus - de Carraria filius quondam Rodulfini - - M - - - - Gerardus / Girardus - Russus - - M - - - - Gerardus / Girardus - Rursus - - M - - - - Gerardus / Girardus - de Sarzana - - M - - - - Gerardus / Girardus - de la Serra - - M - - - - Gerardus / Girardus - de Traversara - - M - castaldus Lunensis - - - - Gerardus / Girardus - de Trebiano - - M - vicedominus - - - - Gerardus / Girardus - de Ulmeto - - M - - - - Gerardus / Girardus - Vernaccii / de Vernaccio de castro Sarzane - - M - - - - Gerardus - de Vezano - - M - - - - Gerardus / Girardus - quondam Villani /quondam Villani de Sarzana - - M - - - - Gerardus / Girardus - quondam Viviani de Gragnana - - M - - - - Gerardus / Girardus - Wulpilionis - - M - - - - Gerardutius - Maluso - - M - vicarius Lunisiane pro communi Lucano - - - - Gervasinus - - M - - - - Getreducius - Malusii - - M - vicarius pro communi Lucano et domini episcopi in provincia - Lunisiane - - - - Gibertina - filia quondam Bonacursi de Fontenella - - F - - - - Gibertinus - - M - - - - Gibertinus - de Bernaçone - - M - - - - Gibertinus - de Carpena / Bottacungo - - M - dominus - - - - Gibertinus - Coalimi - - M - - - - Gibertinus - quondam Code Iudei / Bottacungo/ quondam Codeindei de - Burcione - - M - dominus - - - - Gibertinus - de Fosdenova - - M - - - - Gibertinus - filius Hardunini <de Herberia> - - M - - - - Gibertinus - filius Henrici Blanci de Herberia - - M - - - - Gibertinus - de Mabilia quondam Butafabe - - M - - - - Gibertinus - de Porencario - - M - - - - Gibertus - - M - diaconus - - - - Gibertus - Fancellus Adorneti - - M - - - - Gibertus - quondam Bosi de Falcinello - - M - - - - Giliensis - quondam Vivaldi Parre - - M - - - - Giliola - - F - - - - Giliolus - - M - dominus - - - - Giliolus - quondam domini Alberti dicti Mascardi de Trebiano - - M - - - - Giliolus - quondam domini Parentis de Terrarossola - - M - - - - Giliolus - quondam Riçoli - - M - - - - Gislitiono - de Iovello, habitator burgi Sarzane - - M - - - - Gilius - quondam Ricioli - - M - - - - Giofredus - - M - - - - Giovagallus/ Çiovagallus - de Fonti - - M - - - - Girreus - - M - - - - Gircus - - M - - - - Girus - - M - - - - Gisla - - F - - - - Gisla - quondam Iohannis de la Fontana - - F - - - - Gislana - - F - - - - Gisleta - - F - - - - Gislucia - - F - - - - Giso - - M - - - - Giunta / Çunta - de laSerra - - F - - - - Glunus - de Verucola - - M - - - - Goggus - - M - - - - Gomitanus - - M - rector ecclesie Sancti Mauricii - - - - Gondetus - - M - - - - Gondetus - de Bolano - - M - castaldus - - - - Gordianus - - M - - - - Gordianus - quondam Dominici - - M - - - - Gordianus - quondam Gerardeti - - M - - - - Gordianus - de castro Sarzane - - M - - - - Gordianus - de la Serra - - M - - - - Gotefredus - - M - episcopus Lunensis - Gotifredo, vescovo di Luni, attestato per la prima volta in un privilegio di - Ottone II del 18 luglio 981 a - l'ultima in un documento del 14 ottobre - 998. - - - - Gotefredus - - M - episcopus Lunensis - Gotifredo II, vescovo di Luni, attestato probabilmente nel 1129 (FREGGIA 1989 p. 166), con - certezza dal 19 marzo 1134 fino al 13 - marzo 1156 (ASLu SF). - - - - Gotefredus / Gotifredus - - M - iudex, assessor pro communi Pisano in provincia - Lunisiane - - - - Gotefredus / Gotifredus - - M - imperialis aule cancellarius - Si tratta molto probabilmente di Goffredo da Viterbo, cappellano, notaio del - Sacro Palazzo e cancelliere con Corrado III, Federico I Barbarossa ed Enrico - VI, esponente di rilievo dell'entourage imperiale svevo, autore di compilazioni - storiche universali. Nacque probabilmente a Viterbo intorno al 1125 e morì - nell'ultimo decennio del XII secolo come da scheda di Gian Maria Varanini nel - Dizionario Biografico degli italiani, vol. 57 - (2001). - - - - Gotefredus / Gotifredus - frater Veltri quondam Guilielmi de donna Emma - - M - - - - Gotolus / Gottolus / Gotulus - - M - - - - Gotolus / Gottolus / Gotulus - quondam Bonensegne - - M - - - - Gotolus / Gottolus / Gotulus - filius quondam Amati de Ascletulo - - M - - - - Gotolus / Gottolus / Gotulus - de Sarzana - - M - - - - Gracianus - - M - - - - Graganellus - - M - - - - Grassus - - M - canonicus Lunensis - - - - Grecus - de Carraria - - M - - - - Grecus - de donna Gallitia - - M - - - - Grecus - de Petrognano - - M - - - - Gregorius - - M - - - - Gregorius - - M - vitrarius - - - - Gregorius - de Bozano - - M - - - - Grillus - - M - - - - Grillus - de Beriola - - M - - - - Grillus - - M - potestas Carrarie - - - - Grimaldus - - M - - - - Grimaldus - dela Trina - - M - - - - Grimaldus - de Vezano - - M - potestas dominorum de Vezano - - - - Grimaldus - frater Buconci - - M - - - - Grimolus - - M - - - - Grislus - - M - - - - Griutus - - M - - - - Grongnutus - - M - - - - Gromone - quondam Rollandini - - M - - - - Groppinus - - M - - - - Grugnus - - M - - - - Grumpus - de Vallecla - - M - - - - Guadagninus - - M - - - - Guadagnus - - M - sacri palacii notarius - attestato in una autentica non datata - - - - Gualandus - de Sporliano - - M - - - - Gualanginus - filius Opiçonis de Soleria - - M - - - - Gualardus - Melanense - - M - notarius - attestato nel 1260 - - - - Gualdus - - M - potestas Bolani - - - - Gualdus - de Sancto Stephano - - M - - - - Gualdus - de Verugula - - M - - - - Gualterius / Walterius - - M - - - - Gualterius - - M - episcopus Lunensis - Gualtiero II, vescovo di Luni, attestato la prima volta il 5 novembre 1193 e l'ultima il 2 aprile 1212. - - - - Gualterius - de Carcandula - - M - - - - Gualterone / Gualteronus - - M - - - - Gualterone / Gualteronus - de Barbaçano - - M - - - - Gualterone / Gualteronus - frater Hengerami - - M - - - - Gualterotus - - M - - - - Gualterotus - - M - canonicus Lucanus - - - - Gualterotus - - M - consiliarius Carrarie - - - - Gualterotus - <frater Peregrini archipresbyteri> - - M - - - - Gualterotus - quondam Mançeti - - M - - - - Gualterotus - de Soleria - - M - - - - Gualterotus - de Veçale - - M - - - - Guastapanis - quondam Gerardoni - - M - - - - Guelfus - - M - canonicus Lunensis, arcidiaconus - - - - Guercius - - M - episcous Lucanus - Guercio Tebalducci, di origine senese, vescovo di Lucca dal 1236 al 1255. - Cfr. MANSI BARSOCCHINI 1836 - , p. 326 - - - - Guerinus / Werinus - - M - - - - Guerinus / Werinus - de Cobiata - - M - - - - Guerinus / Werinus - de Sarzana - - M - - - - Guerisius / Werisius - - M - - - - Guerrisietus - - M - - - - Guerrolus - - M - - - - Guibertus - - M - - - - Guibertus - de Burcione, quondam Gotezonis de Burzone - - M - - - - Guicardus - quondam Favalini - - M - - - - Guicholinus / Guiçolinus - - M - - - - Guicholinus / Guiçolinus - - M - hescarius, consiliarius de Micoarra - - - - Guicholinus / Guiçolinus - quondam Rusticoni de castro Sarzane - - M - - - - Guicholinus / Guiçolinus - Strivane - - M - - - - Guicholinus / Guiçolinus - quondam Surni - - M - - - - Guicholinus / Guiçolinus - quondam Iuncte de Lacapanna - - M - - - - - Guicholinus / Guiçolinus - de Nichola - - - - - Guiçolus - - M - - - - Guiçolus - quondam Çunte - - M - - - - Guiçolus - de Cuscugnano - - M - - - - Guiconis - - M - - - - Guidarellus - quondam Bonacursi - - M - - - - Guidetus - - M - - - - Guidetus - - M - camparius - - - - Guidetus - de Amelia - - M - - - - Guidetus - de Miliaciola - - M - - - - Guidetus - Ymilia - - M - - - - Guidetus - Rubeus quondam Venture - - M - - - - Guido - - M - - - - Guido - - M - archiepiscopus Mediolanesis - Guido da Velate, arcivescovo di Milano dal 1045 al 1068, morto nel 1071 (si - veda Guido da Velate nel Dizionario Biografico degli - Italiani). - - - - Guido - - M - abbas abbatie de Caparana - - - - Guido - - M - archipresbiter Lunensis - - - - Guido - - M - archipresbiter de Santo Stephano - - - - Guido - - M - episcopus Lunensis - Guido, vescovo di Luni, primo con questo nome, attestato la prima volta nel - gennaio 1021 e l'ultima il 7 aprile 1027 - - - - Guido - - M - episcopus Lunensis - Guido, secondo vescovo di Luni a portare questo nome. Attestato la prima - volta il 5 maggio 1055 e l'ultima - il 14 giugno 1078. - - - - Guido - - M - marchio - Guido, primo marchese di questo nome della stipe obertenga, figlio di - Alberto III. Attestato dal 1051 (FALCO - 1916, III) al luglio 1060 (FALCO 1916, XVIII). - - - - Guido - - M - sacri palacii notarius - attestato in due autentiche non datate - - - - Guido - - M - presbiter de Ponzanello - - - - Guido - Alberti - - M - - - - Guido - de li Albizi - - M - - - - Guido - de Bibula - - M - - - - Guido - Biteccio - - M - - - - Guido - quondam Bonacursi de Veçale - - M - - - - Guido - Bulgius / Bulçius de Aventia - - M - - - - Guido - de Burgo - - M - ferrarius - - - - Guido - de Cassano - - M - - - - Guido - de Cergnano - - M - - - - Guido - quondam Dominici Lucano - - M - - - - Guido - de Donna de Vezano quondam Franciescini - - M - arbiter - - - - Guido - filius Fancelli - - M - - - - - Guido - de Ficario - - M - - - - Guido - frater Guilliemi episcopi - - M - - - - Guido - filius Gerardi de Tancredino / Bottacungo - - M - dominus de Falcinello - - - - Guido - de Herberia quondam Gerardi Blanki - - M - - - - Guido - de Canneto quondam Guilielmi - - M - - - - Guido - filius Guilielmini marchionis de Massa - - M - - - - Guido - de Henricino - - M - - - - Guido - Henrigeti / quondam Henrigeti - - M - - - - Guido - de Herberia - - M - dominus - - - - Guido - quondam Iacopini - - M - - - - Guido - Lucanus quondam Dominici - - M - dominus - - - - Guido - de Lucia - - M - consiliarius Carrarie - - - - Guido - de Montedarmo quondam Dominici - - M - operarius de curte Sarzane - - - - Guido - Muri - - M - - - - Guido - de Nizola - - M - - - - Guido - filius quondam Oliverii - - M - - - - Guido - quondam Pandulfini - - M - consiliarius comunis de Ponzanello - - - - Guido - de Petrognano - - M - - - - Guido - de Piculo - - M - - - - Guido - de Ponçanello - - M - - - - Guido - de Porta - - M - - - - Guido - de Puzolo - - M - - - - Guido - de Riolo - - M - - - - Guido - quondam Rolandi - - M - - - - Guido - Runtius - - M - - - - Guido - Ringus filius Gerardi de Vexana / Runcius quondam Gerardi de - Vafana - - M - - - - Guido - Saçine / Sazine, filio Boti de Minizano - - M - - - - Guido - de Soleria - - M - - - - Guido - quondam Tiniosi - - M - - - - Guido - Ugolinus quondam Brancii - - M - - - - Guido - de Valle Stephani - - M - - - - Guido - de Vallechia - - M - - - - Guido - quondam Venture de Codesorbo - - M - - - - Guido - de Vexano - - M - - - - Guidobonus - - M - - - - Guidobonus - - M - consul comunis de Ponzanello - - - - Guidobotus - - M - - - - Guidolinus - - M - - - - Guidolinus - de Foscherio - - M - - - - Guidolinus - de Malliola - - M - - - - Guidolinus - de Peravulpe - - M - - - - Guidolinus - de Peretolo - - M - - - - Guidolinus - Pretelli de Cazano - - M - - - - Guidolinus - de Tancredo - - M - - - - Guidolinus - de Via - - M - - - - Guidolinus - Zanza - - M - - - - Guidolotus - - M - - - - Guidolotus - quondam Ioboli de Miselia - - M - - - - Guidolus - de Loiso - - M - - - - Guidolus - de Popio - - M - - - - Guiducius - filio Rubei de Carpina - - M - - - - Guilia - - F - - - - Guilicionellus - de Scoriso - - M - - - - Guiliecio / Guilicio - - M - - - - Guiliecio / Guilicio - de Amelia - - M - - - - Guilielmetus - - M - - - - Guilielmina - - F - - - - Guilielmina - quondam Bonaiuncte de Castronovo - - F - - - - Guilielminus - - M - - - - Guilielminus - quondam Accursi - - M - - - - Guilielmus - Albus de Vezano - - M - - - - Guilielminus / Wilielminus - de Annobono - - M - - - - Guilielminus / Wilielminus - Barbadegati - - M - - - - - Guilielminus / Wilielminus - quondam Bastardi de Amelia - - M - da identificarsi con Guilielmus quondam Bastardi de Amelia - - - - Guilielminus / Wilielminus - quondam Belli de Columnata - - M - - - - - Guilielminus / Wilielminus - dictus Boscus - - M - consiliarius Carrarie - - - - Guilielminus / Wilielminus - quondam Burriani - - M - - - - Guilielminus / Wilielminus - de la Cala - - M - - - - Guilielminus / Wilielminus - de Carraria - - M - - - - Guilielminus / Wilielminus - de Clarella - - M - - - - Guilielminus / Wilielminus - Ferri de Ortonovo - - M - - - - Guilielminus / Wilielminus - de Fontana - - M - - - - Guilielminus / Wilielminus - de Gragnano - - M - - - - Guilielminus / Wilielminus - quondam Lumbardi - - M - - - - Guilielminus / Wilielminus - marchio de Massa - - M - Guglielmo marchese di Massa, obertengo, figlio di Alberto Corso, attestato - dal 1173 (LIBRI IURIUM, I.3, n. - 562) al 1202. - - - - Guilielminus / Wilielminus - de Moneta - - M - - - - Guilielminus / Wilielminus - de Oletulo - - M - - - - Guilielminus / Wilielminus - de Capannara quondam Picerii - - M - - - - Guilielminus / Wilielminus - Pilloti - - M - scarius - - - - Guilielminus / Wilielminus - de Povici - - M - - - - Guilielminus - de Rivo - - M - - - - Guilielminus / Wilielminus - de Rivo - - M - - - - Guilielminus / Wilielminus - de Tedesca - - M - - - - Guilielminus / Wilielminus - de Tilloia - - M - - - - Guilielminus / Wilielminus - filius Ugolini quondam Armannini - - M - - - - Guilielmolus - - M - - - - Guilielmus - - M - - - - Guilielmus - - M - archipresbiter de Viano - - - - Guilielmus - - M - archipresbiter, canonicus Lunensis - - - - Guilielmus - - M - castaldus - - - - Guilielmus - - M - episcopus Lunensis - Guglielmo vescovo di Luni, attestato dal - 17 maggio 1228 al 3 aprile - 1272. - - - - Guilielmus - - M - episcopus Lucensis - Guglielmo II di Monte Albano, vescovo di Lucca dal 1330 al 1349 MANSI BARSOCCHINI 1836 - , p. 327. - - - - Guilielmus - - M - episcopus Astensis - Guglielmo da Capriano, nato intorno all 1130-1135, fu secondo vescovo di - Asti con questo nome dal 1173 al 1191 e in seguito arcivescovo di Ravenna, come - da scheda di Giuseppe Mazzanti nel Dizionario Biografico degli italiani, vol. 60 - (2003) - - - - Guilielmus - - M - magister, fisicus - - - - Guilielmus - quondam Symonis Asinelli - - M - iudex - - - - Guilielmus - quondam Guidonis Pisani - - M - notarius sacri palacii - attestato dal 1233 al 1252 - - - - Guilielmus - - M - notarius sacri palacii - attestato nel 1055 - - - - Guilielmus - - M - notarius sacri palacii - attestato nel 1168 - - - - Guilielmus - - M - notarius sacri palacii, scriba publicus communis - Carrarie - attestato nel 1260 - - - - Guilielmus - - M - sacri palacii et Lunensis curie notarius - attestato nel 1198 - - - - Guilielmus - - M - prepositus Lunensis, canonicus Lunensis - - - - Guilielmus - - M - presbiter de Pegaçano - - - - Guilielmus - - M - presbiter de Pegaçano - - - - Guilielmus - - M - vicedominus episcopi - - - - Guilielmus - Acorseti - - M - - - - Guilielmus - quondam domini Alberti dicti Mascardi de Trebiano - - M - - - - Guilielmus - de Albrico - - M - - - - - Guilielmus - quondam Attolini de Gragnana - - M - - - - Guilielmus - Baldineti - - M - - - - Guilielmus - quondam Bastardi de Amelia / filio quondam Bastardi de Guilielmo - Blanco de Vezano - - M - da identificarsi con Guilielminus quondam Bastardi de Amelia - - - - - Guilielmus - de Bianca - - M - - - - Guilielmus - de Bleccoe - - M - - - - Guilielmus - quondam Bonacursi Tascacincte de Sorgnano - - M - - - - Guilielmus - quondam Bonensigne - - M - - - - Guililemus - quondam Bonfilioli - - M - - - - Guilielmus - Brancasicce - - M - vicarius - - - - Guilielmus - dicto Canuto quondam Bordoni - - M - - - - Guilielmus - de Cafazo - - M - - - - - Guilielmus - de Codano - - M - magister - - - - Guilielmus - Cornachie/Corvachie - - M - - - - Guilielmus - Corsus - - M - forse appartenente ai marchesi di Massa-Corsica, identificazione possibile - in Guglielmo Bianco figlio di Opizzino - - - - Guilielmus - quondam Dainensis de Burçone - - M - - - - Guilielmus - de donna Emma - - M - - - - Guilielmus - de Factore - - M - - - - Guilielmus - Ferri de Ortonovo - - M - - - - - Guilielmus - de Fosdenova - - M - nobilis - - - - Guilielmus - frater Gerardi Russi - - M - - - - Guilielmus - de Gragnano - - M - - - - Guilielmus - quondam Gerardi de Monzone - - M - - - - Guilielmus - filius quondam Gerardini de Monçone - - M - - - - Guilielmus - Graffi - - M - - - - Guilielmus - de Groppollo - - M - - - - Guilielmus / Guillermus - de Gragnana - - M - - - - Guilielmus - quondam Gualteroni - - M - consiliarius Carrarie - - - - Guilielmus - quondam Guidonis Pisani de la Plebe - - M - - - - Guilielmus - de Gragnana - - M - donnus, monacus - - - - Guilielmus - de Lamura - - M - - - - Guilielmus - Lombardus - - M - - - - Guilielmus - de Luna - - M - consiliarius Carrarie - - - - Guilielmus - Ma... - - M - - - - Guilielmus - de Marcucio - - M - - - - Guilielmus - quondam Martinelli de Rafanino - - M - operarius de curte Sarzane - - - - Guilielmus - Mascardus filius quondam domini Alberti vicedomini de Trebiano - - - M - - - - Guilielmus - de Mezana - - M - - - - Guilielmus - Nigro de Castello - - M - dominus - - - - Guilielmus - Parentini - - M - - - - Guilielmus - quondam Patiti de Ortale - - M - - - - Guilielmus - Pisani de Ponte de Carraria - - M - - - - Guilielmus - de la Plebe - - M - consiliarius Carrarie - - - - Guilielmus - de Poncellana - - M - - - - Guilielmus - quondam Ramundini / domine Emme - - M - consul comunis Carrarie - - - - Guilielmus - de Renario - - M - - - - Guilielmus - quondam Rolandi - - M - - - - Guilielmus - de Sarrevallo - - M - - - - Guilielmus - de Sorgnano - - M - consiliarius castri Sarzane - - - - - Guilielmus - quondam Testafortis / Testaforte - - M - consiliarius castri Sarzane - - - - Guilielmus - de Torano, filius quondam Spinelli - - M - dominus de Carrara - Si veda RICCI 2012, pp. - 42-45 - - - - Guilielmus - de la Trina - - M - - - - Guilielmus - Ugolini de Nichola - - M - - - - Guilielmus - de Vallechia - - M - - - - Guilielmus - de Veçale - - M - iudex - - - - Guilielmus - de Viano - - M - - - - Guilielmus - Guilielmi de Vicino - - M - - - - Guilielmus - quondam Vidaleti - - M - - - - Guilielmus - quondam Vitaleti - - M - - - - Guilieta - - F - - - - Guirisecta - quondam Guirisii de Torano - - F - - - - Guirisius - - M - presbiter, canonicus Lunensis - - - - Guirisius - - M - notarius sacri palacii - attestato nel 1161 - - - - Guiscardellus - - M - - - - Guiscardellus - de Ysembardo Befulki de Soleria - - M - - - - Guiscardus / Wiscardus - - M - - - - Guiterninus - de Trebiano - - M - - - - Guitholinus - Schivane de castro Sarzane - - M - - - - Guizolus - de Monciculo - - M - - - - Guizolus - quondam Paganini de Stazone - - M - - - - Guizolus - Rusticoni de castro Sarzane - - M - - - - Gumpulus - de Pegazana - - M - - - - Gunforutus - - M - - - - Guntardus - de Caricino - - M - - - - Gunsmaretus - - M - - - - - Hengeramus - - M - - - - Hengeramus / Hengeramutius - - M - notarius sacri palacii - attestato nel 1267, fratello di Tignoso - - - - Hengeramus - - M - rector hospitalis de Ponte Tecto - - - - Hengeramus - filio Attolini de Cacio - - M - - - - Hengeramus - frater Gualteroni - - M - - - - Hengeramus - quondam Parentis de castro Sarzane - - M - notarius sacri palacii - attetstato nel 1274, quasi certamente da identificare con Hengeramus - notarius, fratello di Tignoso, attestato nel 1267 - - - - Hengeramus - de Padule - - M - - - - Hengeramus - filio Attolini de Caço - - M - - - - Hengolins - - M - - - - Henricolus - de Soleria - - M - - - - Henricolus - filius Ysembardi de Soleria, - - M - - - - Henricus - - M - - - - Henricus - - M - becarius - - - - Henricus - - M - castaldus episcopi - - - - Henricus - - M - Enrico da Fucecchio, vescovo di Luni, nominato da Gregorio X poco prima del - 4 aprile 1273, resignò la carica - tra il 24 ottobre 1296 e l’inizio del 1297 (cfr. VECCHI 2011, p. 70 nota 3). - - - - Henricus - - M - imperator - Enrico II imperatore, detto il Santo (Hildesheim 973 -Göttingen, - 1024). - - - - Henricus - - M - imperator - Enrico III detto il Nero assunse il titolo di tertius rex; alla - morte del padre il 4 giugno 1039; venne poi incoronato imperatore a Roma il 25 - dicembre 1046 e da quel momento lo troviamo citato come tercius rex, - secundus Romanorum imperator augustus; (MGH DD HIII, pp. XXII-XXXI). Muore nel 1056 (si veda - Enrico III su l’Enciclopedia Treccani ). - - - - Henricus - - M - presbiter, plebanus de Monte Libero - - - - Henricus - - M - prior de Carraria / domnus - - - - Henricus - - M - vicedominus episcopi - - - - Henricus - quondam Ardoini - - M - - - - Henricus - de Balzano - - M - - - - Henricus - Blancus quondam Ardoini <de Herberia> - - M - potestas - - - - Henricus - quondam Boni de Vignola - - M - operarius de curte Sarzane - - - - Henricus - de Dies - - M - comes - Forse da identificare con Enrico II conte di Diez (Rheinland-Pfalz) nato - intorno al 1142 e morto nel 1189. Si veda SCHIEFFER 2001 - - - - Henricus - de Falcinello - - M - legum doctor, notarius - - - - Henricus - filius Gerardi - - M - - - - Henricus - quondam Guerini - - M - - - - Henricus - filius Guiterni - - M - - - - Henricus - quondam domini Henrici vicedomini de Trebiano - - M - - - - Henricus - de castro Sarzane - - M - notarius sacri palacii - attestato in numerose autentiche non datate - - - - Henricus - filius Sorete / Sorecte - - M - - - - Henruicus - de Ysembardo - - M - - - - Henrigenus - <de Debicoe> / <de Debbice> - - M - - - - Henrigetus - - M - - - - Henrigetus - - M - correrius - - - - Henrigetus - quondam Guidonis - - M - - - - Henrigetus - de Prato - - M - medicus, castellanus Amelie - - - - Henrigucius - quondam Henrici de Canneto - - M - - - - Hermannus - - M - episcopus Monasteriensis - Ermanno II di Katzenelnbogen, vescovo di Münster dal 1173 al 1203 come da - scheda di Hugo Stehkämper in Neue Deutsche Biographie (NDB), 8 (1969) - - - - Herbellus - filius quondam Trebianelli de la Cala - - M - - - - - Iacopinus / Iacobinus - - M - - - - Iacopinus / Iacobinus / Iacominus / Iacopus - - M - archipresbiter de Amelia - - - - Iacopinus / Iacobinus - - M - clericus de Monte - - - - Iacopinus / Iacobinus - - M - consiliarius - - - - Iacopinus / Iacobinus - - M - ferrarius - - - - Iacopinus / Iacobinus - - M - presbiter, cappellanus Lunensis capituli - - - - Iacopinus / Iacobinus - quondam Albertini - - M - consul - - - - Iacopinus / Iacobinus - de Ara - - M - - - - Iacopinus / Iacobinus - filio quondam Bernardi - - M - - - - Iacopinus / Iacobinus - quondam Bonvisi Lucanus - - M - - - - Iacopinus / Iacobinus - de Boso / quondam Bosi - - M - - - - Iacopinus / Iacobinus - de Caçano - - M - - - - Iacopinus / Iacobinus - de Carraria - - M - - - - Iacopinus / Iacobinus - quondam Curadeti de Tivegna - - M - - - - Iacopinus / Iacobinus - de donna Diamante - - M - iudex - - - - Iacopinus / Iacobinus - Donnisi curie Lucane - - M - - - - Iacopinus / Iacobinus - de donna Faina / quondam Faine - - M - castaldus de Supraluna - - - - Iacopinus / Iacobinus - quondam Formentini de Cepparana - - M - - - - Iacopinus / Iacobinus - de Fosdenova - - M - - - - Iacopinus - de Sarzana quondam Ienuini calçolarii de Felegaria - - M - magister, fisico - - - - Iacopinus / Iacobinus - Lucanus - - M - - - - Iacopinus / Iacobinus - dictus Maledice - - M - - - - Iacopinus / Iacobinus - domini Noradini - - Dei gratia Lunensis curie iudex - M - attivo nel 1223 - - - - Iacopinus / Iacobinus - de la Padule - - M - - - - Iacopinus / Iacobinus - quondam Pegolotti - - M - sindicus de Nicola - - - - Iacopinus / Iacobinus - domini Salomonis - - M - - - - Iacopellus - Santeno - - M - - - - Iacopinus / Iacobinus - de Soleria - - M - - - - Iacopinus / Iacobinus - Talliavacha - - M - notarius, sindicus, actor, procurator episcopi - - - - Iacopinus / Iacobinus - de Veçale - - M - iudex - - - - Iacopellus - quondam Bonvassalli de S..ano - - M - - - - Iacopinellus - - M - - - - Iacobucius / Iacopucius - - M - potestas Carrarie - - - - Iacobucius / Iacopucius - quondam domini Alberti de Carraria / de Gandulfino - - M - dominus - - - - Iacobucius / Iacopucius - dictus Piçofridus - - M - - - - Iacopus / Iacobus - - M - medicus - - - - Iacobus / Iacopus - - M - presbiter rector ecclesie sancti Terentii - - - - Iacobus / Iacopus - - M - dominus, vicedominus de Trebiano - - - - Iacobus / Iacopus - quondam domini Aldebrandi de Trebiano - - M - - - - Iacobus / Iacopus - quondam Curadi de Brina - - M - - - - Iacopus / Iacobus - Finuccij de sancto Miniate - - M - publicus imperiali autoritate notarius - attestato nel 1346 - - - - Iacopus / Iacobus - de Prato - - M - frater de ordine Fratrum Minorum / frater de ordine Minorum - - - - - Ianninus - de Gropo - - M - - - - Iannis - de Roberto - - M - - - - Iannonus - de Burgonovo - - M - notarius sacri palacii - attestato nel 1253 - - - - Ianuensis - de Ylice - - M - - - - Ieronimus - - M - domnus - - - - Imiliola - - F - - - - ...inerius - quondam Bonaiuti - - M - - - - Incuntro - quondam Monteseni de Monte - - M - - - - Ingelese - - M - - - - Ingo - filius Otberti - - M - - - - Ingolinus - de Miselia - - M - - - - Innocentius - - M - episcous, servus servorum Dei - Papa Innocenzo IV, al secolo Sinibaldo Fieschi, eletto il 25 giugno 1243; - muore a Napoli il 7 dicembre 1254 come da scheda di Agostino Paravicini - Bagliani nel Dizionario Biografico degli italiani, vol. 62 - (2004) - - - - Iocolus - - M - massarius - - - - Iohannellus - de Colle - - M - - - - Iohannellus - de Valcava - - M - - - - Iohannes - - M - - - - Iohannes - - M - abbas monasterii de Cepparana - - - - Iohannes - - M - custos episcopi - - - - Iohannes - - M - massarius - - - - - Iohannes - - M - prepositus - - - - - Iohannes - - M - prepositus, subdiaconus - - - - Iohannes - qui est Amezo seu Gotezo - - M - - - - Iohannes - Iohanni, qui est Amizoni - - M - - - - Iohannes - Anagninus - - M - presbyter cardinalis tituli Sancti Marci - Giovanni d'Anagni, nato poco dopo il primo quarto del secolo XII dalla - famiglia dei conti di Segni. Alessandro III lo elevò al titolo presbiteriale di - S. Marco alla fine del 1167 o agli inizi del 1168. Attestato l'ultima volta il - 22 marzo 1196 come da scheda di Gabriele Archetti nel Dizionario Biografico degli italiani, vol. 55 - (2001). - - - - Iohannes - de Bithazano - - - - - Iohannes - filius quondam Bonezi - - M - - - - Iohannes - Bonus - - M - - - - Iohannes - Bonus - - M - consul de Ponzanello - - - - Iohannes - de Collichia - - M - - - - Iohannes - Formichella de Luca - - M - - - - Iohannes - quondam Francisci de Flammis - - M - publicus imperiali autoritate notarius - attestato nel 1346 - - - - Iohannes - Lombardus - - M - - - - Iohannes - filius quondam Parentini de Mançeto - - M - - - - Iohannes - de Pisis - - M - priorem capituli et conventus S. Fridiani - attestato nel 1346 - - - - Iohannes - Ricio de Sorgnano - - M - - - - Iohannes - de Sancto Martino - - M - - - - Iohannes - Scocosagolli - - M - vicarius potestatis Carrarie - - - - Iohannes - Stado - - M - - - - Iohannetus / Iohanetus - - M - - - - Iohannetus / Iohanetus - de Montale - - M - - - - Iohanninellus - - M - - - - Iohanninus - - M - - - - Iohanninus - - M - magister - - - - Iohanninus - de Sancto Martino filius quondam Alberti - - M - - - - Iohanninus - quondam Aldeprandi de Rapugnana - - M - - - - Iohanninus - de Gropo - - M - - - - Iohanninus - de Quaroçola - - M - stiparius - - - - Iohanninus - de Piciolo - - M - - - - Ionas - de Portuveneris - - M - sacri palacii notarius - attestato nel 1235 - - - - Iordanellus - - M - - - - Iordanus / Iordanis - - M - - - - Iordanus / Iordanis - de Balognano - - M - - - - Iordanus / Iordanis - - M - frater, monacus monasterii de Capparana - - - - Iovenetus - - M - correrius - - - - Isa - - F - - - - Itta - filia quondam Cari Amici de Sarzana - - F - - - - Iulita - - F - - - - Iulita - de Sarzana - - F - - - - Iuncta - - M - - - - Iuncta - - M - notarius - attestato nel 1258 - - - - Iuncta - quondam Brunete - - M - - - - Iuncta - quondam Cerri de Beriola - - M - castaldus domini Curradi Corsi - - - - Iuncta - quondam Guilielmini de Serraursi - - M - operarius de curte Sarzane - - - - Iuncta - filius Madii - - M - - - - Iuncta - quondam Malagonelle de Vezano - - M - - - - Iuncta - quondam Petri de Montemarcello - - M - - - - Iuncta - de Terria - - M - operarius de curte Sarzane - - - - Iuncta - Ugolini de Soleria - - M - - - - Iuncta - de Vallerano - - M - - - - Iunctarellus - quondam Gerardi Cacciarute de Torano - - M - - - - Iunctus - quondam Alineti - - M - - - - Iuncuncellus - de Stabio - - M - - - - Iurnis - - M - - - - Iuso - - M - - - - Iustamonte - quondam Ruffinelli de Marçano - - M - - - - Iustamons / Iuxtamons / Iustamonte / Iuxtamonte - - M - - - - Iustamons / Iuxtamons / Iustamonte / Iuxtamonte - - M - correrius vicarie, nuncius - - - - Iustus - quondam Guidi - - M - - - - - Laborans - - M - - - - Laborans - quondam Borgeti - - M - - - - Laborans - quondam Pancie - - M - - - - Labrutus - - M - - - - Lazarellus - quondam Calderoni - - M - - - - Lambernonus - de Vallecla - - M - - - - Lambertucius - - M - - - - Lambertucius - de Illano Pontis - - M - dominus - probabilmente legato per via familiare ai marchesi di Massa Corsica, ma si - ignora come - - - - Lamberzonus - - M - consiliarius de Ortonovo - - - - Landus - quondam Gerardini de Gualterono de Luca - - M - sindicus - - - - Lanfranchetus - - M - - - - Lanfranchinus / Lanfrankinus - - M - - - - Lanfranchinus / Lanfrankinus - - M - calzolarius - - - - Lanfranchinus / Lanfrankinus - quondam Albertini de Levacastello - - M - - - - Lanfranchinus / Lanfrankinus - de Colle - - M - consiliarius Carrarie - - - - Lanfranchinus / Lanfrankinus - quondam Guidonis Sagine - - M - - - - Lanfranchinus / Lanfrankinus - quondam Ugonis de Herberia / de Herberia - - M - - - - Lanfranchinus / Lanfrankinus - quondam Meliorati - - M - - - - Lanfranchinus / Lanfrankinus - de Petrognano nepos <Bonacursi> - - M - - - - Lanfranchinus / Lanfrankinus - de Sancto Terencio - - M - - - - Lanfranchinus / Lanfrankinus - de Stabulo - - M - - - - Lanfrancus - - M - - - - Lanfrancus - - M - clericus - - - - Lanfrancus - de Herberia - - M - - - - Lanfreducius - - M - - - - Lanfredus - Bonacursi - - M - vicarius in provincia Lunisiane - - - - Lanfredus - quondam domini Bonacursi Lanfredi de Luca - - M - vicarius in provincia Lunisiane, dominus - - - - Laurentius / Lorencius - de Bona - - M - - - - Laurentius / Lorencius - de Via - - M - - - - Laurentius / Lorencius - quondam Vitalis - - M - - - - Lazarellus - de Castro Novo - - M - - - - Lazarinus - quondam Bonsegnori de castro Sarzane - - M - - - - Lealis - de Ara - - M - - - - Leo - de Buto - - M - castaldus domini Andree marchionis de Massa - - - - Leo - de Torano - - M - consiliarius Carrarie - - - - Likese - - M - - - - Lillus - - M - - - - Lingus - de Torano - - M - - - - Litelda - - M - - - - - Lombardellus - de Soleria, filius quondam Ubertini - - M - - - - Lombardellus - quondam Guilielmi - - M - dominus de Falcinello - - - - Lombardetus - de Blecce - - M - - - - Lombardia - - F - - - - Lombardinus - - M - - - - Lombardinus - de Ciserano - - M - - - - Lombardus / Lumbardus - - M - - - - Lombardus / Lumbardus - - M - domini imperatoris et Lunensis curie notarius - in attività dal 1180 al 1190 - - - - Lombardus / Lumbardus - de Aventia - - M - - - - Lombardus / Lumbardus - de Corfezano - - M - - - - Lombardus / Lumbardus - quondam Ugolini de Ticçano - - M - - - - Losignolus - - M - - - - Losius - - M - - - - Losus - de Rivo - - M - - - - Lucanus - - M - consiliarius Carrarie - - - - Lucanus - quondam Bonacursi - - M - - - - Luciana - de Paxano - - F - - - - Lusiardus - - M - - - - - Maccius - de Rio - - M - - - - Machetus - - M - - - - Machetus - de Quaroçola - - M - - - - Macionus - de Castro - - M - - - - Madonina - - F - - - - Magister - de Albano - - M - - - - Magistrellus - - M - - - - Magnetus - de Amelia - - M - castaldus - - - - Mainardus - - M - - - - Mainelda - - F - - - - Mainetus - - M - - - - Maior - filia quondam Amorosi de Arcula - - F - - - - Malabranca - - M - - - - Malabranca - de Petrognano quondam Tiniosi - - M - - - - Malabuca - de Treblano - - M - - - - Malamensis - - M - - - - Melanese - - M - senescalcus episcopi - - - - Malrasus - Ritius - - M - - - - Mançetinus - de Amelia / quondam Panigacii de Amelia - - M - - - - Mançetus / Manzetus / Mangetus / Mangettus - - M - castaldus - - - - Mançetus / Manzetus / Mangetus / Mangettus - de Miliaciola - - M - - - - Mançetus / Manzetus / Mangetus / Mangettus - de Tivenia / de Tivegna - - M - - - - Mançolinus - - M - - - - Manehesellis - - M - - - - Manfredinus - - M - - - - Manfredus - de Luca - - M - potestas Carrarie - - - - - Manfredus - olim principis Tarentini - - M - - - - Mangenus / Mançetus / Manzetus - - M - castaldus / castaldus curie de Sarzana - - - - Mannolus - - M - - - - Mannutius - - M - - - - Mansilius - quondam Baldeçonis de Barbaçano - - M - frater - - - - Mansuetus - de Sarzana - - M - frater - - - - Mantectus - de Amelia - - M - castaldus - - - - Mantignonus - - M - - - - Manzetinus - - M - - - - Manzetus - - M - - - - Maorus - - M - massarius - - - - Marabotus - - M - - - - Marabotinus - de Petrognano - - M - - - - Marapicus - - M - - - - Marcellus - de Cisirano - - M - - - - Marchese / Markese - - M - - - - Marchese / Markese - filius Alberti quondam Hengolini de Miselia - - M - - - - Marchesellus / Markesellus - - M - - - - Marchesellus - Markesellus - quondam Rusticelli de Utilia - - - - - Marchesellus - Markesellus - de Turano - - - - - Marchesellus - Markesellus - de Carraria quondam Venture Batigiati - - - - - Marchesina / Markesina - - F - - - - Marchesinus / Markesinus - - M - - - - Marchesinus / Markesinus - de Colinezolo - - - - - Marchesinus / Markesinus - filius Gibertini - - - - - Marchesinus / Markesinus - de Vallecla - - M - - - - Marchetus / Marketus - - M - - - - Marcollinus - - M - - - - Marcus - de la Via - - M - - - - Maria - - F - - - - Maria - quondam Gerardini de Ruffino - - F - - - - Marinellus - - M - - - - Marinus - de Placentia - - M - iudex - - - - Marrucius - - M - - - - Martellus - - M - - - - Martignonus - quondam Bonacursi de Veçale - - M - - - - Martignonus - de Barbazano quondam Bonaventure - - M - - - - Martignonus - Corsi de Amelia - - M - - - - Martignonus - quondam Martini - - M - - - - Martignonus - de Miliaciola - - M - - - - Martinella - quondam Martini de Pera - - F - - - - Martinellus - - - - - Martinellus - de Ara - - - - - Martinellus - Cavallus - - M - - - - Martinellus - Martinellus de Orbagnano - - - - - Martinellus - de Plano - - M - - - - Martinellus - de Rio - - M - - - - Martinellus - de Robiano - - - - - Martinetus - - - - - Martinetus - de Valporcara - - - - - Martinoçus - - - - - Martinonus - - - - - Martinus - - M - - - - Martinus - - M - massarius - - - - Martinus - - M - presbiter - - - - Martinus - quondam Acursi - - M - - - - Martinus - quondam Alegre - - M - - - - Martinus - quondam Alineti - - M - - - - Martinus - de Ara - - M - - - - Martinus - Becone - - M - - - - Martinus - Bondonnus - - M - - - - Martinus - filius quondam Bonezi - - M - - - - Martinus - quondam Buce - - M - - - - Martinus - Cerrianus - - M - - - - Martinus - de Codena - - M - - - - Martinus - de Colle - - M - - - - Martinus - de Corano - - M - - - - Martinus - Drago de Codana - - M - - - - Martinus - Durans - - M - - - - Martinus - Fantonus - - M - - - - Martinus - de Foravino / de Foravino de Monteçanne - - M - - - - Martinus - Gerardini quondam Burnengii de Cazano - - M - - - - Martinus - de Gezo - - M - - - - Martinus - de donna Greca - - M - castaldus episcopi - - - - Martinus - quondam Guerini - - M - operarius de curte Sarzane - - - - Martinus - de Losio - - M - - - - Martinus - de Maliola - - M - - - - Martinus - quondam Marcheselli - - M - - - - Martinus - de Mezana - - M - - - - Martinus - de Miselia - - M - - - - Martinus - quondam Molinarii de Posticio - - M - - - - Martinus - de Pera - - - - - Martinus - de Peroza - - M - consiliarius - - - - Martinus - de la Plaça - - M - - - - Martinus - de lo Podio - - - - - Martinus - de Porcilliola - - M - - - - Martinus - de Oliveto - - M - - - - Martinus - de Ravenna - - M - - - - Martinus - de Sancto Paulo - - M - magister, fisicus - - - - Martinus - de la Serra - - M - - - - Martinus - quondam Soboli de Montechio - - M - - - - Martinus - de Stabio - - M - - - - Martinus - Tinellus - - M - - - - Martinus - Venture - - M - - - - Martinus - quondam Vitaleti - - M - - - - Matronis - - M - canonicus Lucensis - - - - - Marzericolus - - M - - - - Marzuccus - - M - episcopus Lunensis - Marzucco, vescovo di Luni, attestato la prima volta il 26 marzo 1214, anche se un documento - del 5 febbraio 1213 (ASLu SF) fa - pensare che l’avvicendamento fosse già avvenuto a quella data o poco dopo; - l'ultima attestatzione è del 25 marzo - 1220. - - - - Marzuccus - Pisanus - - M - - - - Mascarius - de Panicale - - M - - - - Masnerius - - M - - - - Masnerius - de Trebiano - - M - - - - Massaria - - F - - - - Matelda - quondam uxori Oliverii de canale Ianni - - F - - - - Matelda - de Orbagnano - - F - - - - Matelda - quondam Pagani de Balognano, uxor quondam Gregorii vitrarii, uxor - Faime quondm Sinibaldi de Prato - - F - - - - Matolinus - - M - - - - Mattolus - de Aciliano - - M - - - - Mauricius - de la Cala - - M - - - - Maurus - - M - - - - Mazarasius - de Rezola - - M - - - - Mazencollus - - M - - - - Mectarellus - quondam Bernardi - - M - - - - Mediuslombardus - - M - archipresbiter de Amelia - - - - Melanese - - M - - - - Melanese - - M - senescalcus episcopi - - - - Melanese - Brixiolini, civis Lucano - - M - - - - Melanese - quondam Grossoli de Platia - - M - - - - Meldeprata - - F - - - - Melioratus / Melioretus - - M - - - - Melioratus / Melioretus - de Amelia - - M - - - - Melioratus / Melioretus - de Fornoro - - M - - - - Melioratus / Melioretus - de Moneta - - M - - - - Meliore - - F - - - - Meliore - quondam Aiuti de Serravalle - - M - - - - Meliore - quondam Bonaiute de Castronovo - - M - - - - Meliore - quondam Bonensingne - - M - - - - Meliore - quondam Bonevite - - M - - - - Meliore - - M - consul - - - - Meliore - de Roncio - - M - - - - Meliore - quondam Venuti de Ortonovo - - M - sindicus generalis - - - - Melioretus - quondam Richeti - - M - sindicus generalis - - - - Meliorinus - - M - - - - Mellodia - mulier Ugolini Marzoli - - F - - - - Menabos - - M - - - - Mercadante / Mercadantus / Mercatantus - - M - - - - Mercadante / Mercadantus / Mercatantus - quondam Armannini - - M - - - - Mercadante / Mercadantus / Mercatantus - de Carraria - - M - - - - Mercadante / Mercadantus / Mercatantus - de la Felecta - - M - - - - Mercadante / Mercadantus / Mercatantus - filio Gerardini de Panicali - - M - - - - Mercadante / Mercadantus / Mercatantus - quondam Rainaldini de Fosdenova - - M - - - - Mercadante / Mercadantus / Mercatantus - de Sancto Stephano - - M - - - - Mercadellus - - M - - - - Mercadellus - filius Benvenuti - - M - - - - Mercadellus - de la Via - - M - - - - Mercadus - Bonnannus - - M - - - - Mercadus - filius Rose - - M - - - - Mercator - quondam Rollandini dicti Pecçamecçane de Sarzana - - M - - - - Mercadus - de Valdonica - - M - - - - Mercadus - de Via - - M - - - - Messandinus - - M - - - - Messeretus - - M - - - - Messerotus - de la Serra - - M - - - - Messerus - - M - - - - Messerus - de Casaposi - - M - - - - Michael - quondam Albertoni de Balognano - - M - - - - Michael - de Pozolo - - M - - - - Micheletus - - M - - - - Miletus - de valle Stephani - - M - - - - Milium - - M - - - - Mimonus - de Vallecla - - M - - - - Minicucius - - M - - - - Molinarius - - M - - - - Molinarius - de Campilia - - M - - - - Molinarius - de Veciale - - M - - - - - Molioretus - - M - - - - Monachellus - - M - - - - Montaninus - - M - - - - Montaninus - Muçagallina - - M - - - - Montaninus - de Sporliano - - M - - - - Montecellus - de Capagnano - - M - - - - Monteclese - - M - - - - Montesanus - - M - - - - Morandus - de Arcula - - M - - - - Morectus / Moretus - - M - - - - Morectus / Moretus - de Sarzana - - M - - - - Moregnanus - - M - - - - Morengnolus - quondam Gerardini de Terria - - M - operarius de curte Sarzane - - - - Morescus - de Bracelli - - M - - - - Morruellus - Malaspina - - M - vicarius, marchio - Moroello marchese Malaspina, figlio di Corrado l’Antico, capostipite del - ramo di Mulazzo (Spino Secco). La prima attestazione certa è del 1266 (FERRETTO 1901, p. 39, doc. CX); - nel 1269 è vicario del vescovo Guglielmo in provincia Lunisiane; - (Codice Pelavicino 140 e 141). Muore nel 1285 in Sardegna - (FHP, col. 693). - - - - Mulinarius - - M - - - - Muscius - - M - - - - Musus - - M - - - - Muzeconus - - M - - - - - Natalicius - - M - - - - Nicholaus - - M - advocatus Lunensis curie - - - - Nicholaus - - M - iudex domini episcopi - - - - Nicholaus - - M - presbyter, cappellanus plebis Sancti Michelis de - Trebiano - - - - Nicholaus - de Flisco - - M - comite Lavanie - Niccolò Fieschi, appartenente al ramo ligure dei conti di Lavagna, è - attestato dal 1247 al 1307 (si veda Niccolò Fieschi nel Dizionario Biografico degli - Italiani). - - - - Nicholaus - filius Gerardini Mercati - - M - imperialis aule iudex et notarius et scriba publicus - - - - - Nicholaus - Maconis - - M - notarius, locum tenens absentis vicarii et iudicis provincie - Lunisiane - attestato nel 1271 - - - - Nicholaus - Plontodoris - - M - iudex ordinarius et notarius - attestato nel 1277 - - - - Nicholaus - Vinciguerre filius de Sancto Stephano - - M - iudex ordinarius, notarius sacri palacii - attestato nel 1261 - - - - Nicholetus - - M - - - - Nicholetus - quondam Martini Grassi - - M - - - - Nicholetus - de castro Sarzane - - M - castaldus episcopi - - - - Nicholetus - quondam Ugolini Blanci de Soleria - - M - procurator, castaldus - - - - Nicholosius - - M - - - - Nicholosius - - M - notarius - - - - Nicholosius - de Castro Sarzane - - M - - - - Nicholosius - Bonaccursi de Biana - - M - consiliarius Carrarie - - - - Nicholosius - quondam Claramici de Orto - - M - - - - Nigronus - quondam Bonomi - - M - consul - - - - Nigrus / Niger - - M - - - - Nigrus / Niger - de Capriliola - - M - - - - Nigrus / Niger - de la Serra - - M - - - - Nobilinus - - M - - - - Norandinus - - M - episcopus Lunensis - Norandino, vescovo di Luni, attestato da pochissimi documenti, uno del gennaio 1222, uno del maggio successivo e uno non datato, forse redatto nel - 1221. - - - - Normanninus - - M - iudex, assessor, vicarius pro episcopo - - - - Normanninus - de Bernanduccis de Luca - - M - iudex - - - - Normanninus - de Luca - - M - iudex - - - - Nuvelonus - - M - - - - Nux - de Lune - - M - - - - - Ochetus - de Avencia - - M - - - - Octoflos - filius quondam Domalfolli - - M - - - - Octonellus - natus Ponçanini quondam Folberti - - M - consul comunis de Ponzanello - - - - Octonellus - de Noceto - - M - - - - Odecio - de Ysola - - M - - - - Odo - - M - - - - Odo - - M - presbiter del Calesa - - - - Odo - de Bibola - - M - - - - Odo - de Casapoci - - M - - - - Odo - filius Mascari - - M - - - - Odo - de Sarzana - - M - - - - Odolinus - - M - - - - Ogerius - de Contebono - - M - - - - Ogerius - de Cuna - - M - - - - Ogerius - de Propezo - - M - - - - Olgerius - de Pontremulo quondam Aldeberti - - M - arbiter - - - - Oliverius / Uliverius - - M - - - - Oliverius / Uliverius - - M - presbiter, cappellanus Lunensis episcopi - - - - Oliverius / Uliverius - de Barbazano de Lamica - - M - - - - Oliverius / Uliverius - de Blarono - - M - - - - Oliverius / Uliverius - de la Cala - - M - - - - Oliverius / Uliverius - de Canale Iannis - - M - operarius de curte Sarzane - - - - Oliverius / Uliverius - filius Gervaseti, qui fuit de Gassano - - M - - - - Oliverius / Uliverius - de Milliacia - - M - - - - Oliverius / Uliverius - de Puleca - - M - - - - Oliverius / Uliverius - filius quondam Tesi - - M - - - - Oliverius / Uliverius - de Valdonica - - M - - - - Omodeus - quondam Aldebertini - - M - - - - Oncomus - - M - magister, canonicus Lunensis - - - - Opecinus / Opicinus / Opizinus - - M - balistarius - - - - Opecinus / Opicinus / Opizinus - - M - balistarius - - - - Opecinus / Opicinus / Opizinus - - M - iudex - - - - Opicellus - de Silva Maiori - - M - - - - Opizus / Oppizus / Opeçus - - M - - - - Opizus / Oppizus / Opeçus - - M - custos, canonicus Lunensis - - - - Opizus / Oppizus / Opeçus - de Seravalle - - M - notarius - attivo nel XIII secolo - - - - Opizus / Oppizus / Opeçus - qui moratur Selvaricie - - M - presbiter - - - - Opizus / Oppizus / Opeçus - dictus Bastardo de Olivola - - M - - - - Opizus / Oppizus / Opeçus - Gerardi Lealis - - M - iudex - - - - Opizus / Oppizus / Opeçus - quondam Peregrini de la Padule - - M - - - - Opizus / Oppizus / Opeçus - filius Pili - - M - - - - Opizus / Oppizus / Opeçus - de Sarzana - - M - dominus, iudex - - - - Opizus / Oppizus / Opeçus - de Soleria - - M - - - - Opizus / Oppizus / Opeçus - de Vernatio - - M - canonicus Lunensis - - - - Oradinus - quondam Bellomi/quondam Bellomi de Fonci - - M - - - - Obertus - filius quondam item Otberti, itemque marchio - - M - marchio - Oberto II marchese della stirpe obertenga, figlio di Oberto I e capostipite - della linea detta Obertina. Attestato dal 975 (MURATORI 1773, I, coll. 631-636) al 1014 (CALLERI 1997, n. 21). - - - - Otto - - M - - - - Otto - - imperator - Ottone III, imperatore e re di Germania (Kessel, Cleve, 980 - Castel Paterno - 1002). - - - - Otto - - dux Bawarie - Ottone I di Wittelsbach, duca di Baviera, nato intorno al 1120, conte - palatino, fedele partigiano di Federico I imperatore. Morì a Pfullendorf l'11 - luglio 1183 come da scheda di Ludwig Holzfurtner nel Neue Deutsche Biographie, Band 19 (1999). - - - - Otto - de Ronciliolo - - M - - - - Ozegnolus - de Sancto Stephano - - M - - - - - Paganella - filia quondam Amati / filia quondam Amati de Orbagnano - - F - - - - Paganellus - - M - - - - Paganellus - quondam Bernardi de Valmori - - M - - - - Paganellus - de Padule - - M - - - - Paganellus - quondam Petri - - M - - - - Paganellus - Çaccangni - - M - - - - Paganetus - de Cornilione - - M - - - - Paganetus - filius quondam Paganelli de Linario - - M - - - - Paganinus - de Antognolo - - M - - - - Paganinus - quondam Boni - - M - - - - Paganinus - quondam Boni de Oliveto - - M - operarius - - - - Paganinus - quondam Dannacini - - M - - - - Paganinus - quondam Iohannis - - M - consuls de Marola - - - - Paganinus - quondam Mainardi - - M - - - - Paganinus - de Oliva - - M - - - - Paganinus - de Piazo - - M - - - - Paganinus - de Ponçano - - M - - - - Paganucius - de Padule - - M - - - - Paganinus - de Sancto Stephano - - M - notarius; syndicu, actor et procurator ac negociorum gestor - episcopi Lunensis - attestato dal 1253 al 1255 - - - - Paganinus - - M - domini Frederici secundi Romanorum imperatoris - notarius - attestato in una autentica non datata - - - - Paganus - - M - - - - Paganus - - M - notarius sacri palacii - presente in diverse autentiche non datate, posteriori al 1230 - - - - Paganus - de rivo de Armo - - M - - - - Paganus - de Balognano - - M - - - - Paganus - filius Matelde de Balognano et Faime quondam Sinibaldi de - Prato - - M - - - - Paganus - Ramundini - - M - - - - Palmeria - quondam Bonfilioli - - F - - - - Palmerinus - de Avula quondam Çanni - - M - - - - Palmerinus - filius Guidonis de Herberia - - M - - - - Palmerius - - M - - - - Palmerius - - M - consiliarius Carrarie - - - - Palmerius - quondam Acursi - - M - - - - Palmerius - de Savia - - M - - - - Palmerolus - de Fontana - - M - - - - Pançera - - M - - - - Panicacius - de Vallecla - - M - - - - Panicia - - - - - Panicolus - - M - - - - Panigacius - - M - - - - Paninus - - M - - - - Pansutus - - M - - - - Papa - - M - - - - Parcis - - M - correrius - - - - Parens - - M - - - - Parens - - M - iudex de Vallecla - - - - Parens - - M - magister - - - - Parens - de Capriliola - - M - - - - Parens - quondam Pasqualini / quondam Pasqualini de castro Sarzane - - M - castaldus - - - - Parens - quondam Patrisii de Bibola - - M - - - - Parens - quondam Pellini - - M - castaldus - - - - Parens - de Terrarossa - - M - - - - Parens - quondam Upecini de castro Sarzane - - M - - - - Parens - de Vallecla - - M - - - - Parenstina - de Terrarossola - - F - - - - Parentinus - - M - - - - Parentinus - - M - domini Frederici Dei gratia Romanorum imperatoris - notarius - attivo nel 1253 - - - - Parentinus - de Balzano - - M - - - - Parentinus - quondam Guilielmini de Serravalle - - M - - - - Parentinus - quondam Mançeti / quondam Manceti / quondam Manzeti - - M - castaldus curie Amelie - - - - Parentinus - frater Peregrini - - M - - - - Parentinus - Todeschie - - M - - - - Parisius - de Regnano - - M - - - - Pasquale - quondam Acursi de Barbaçano - - M - - - - Pasqualinus - - M - notarius sacri palacii, scriba publicus provincie - Lunisiane - attestato dal 1260 al 1272 - - - - Pasqualinus - de Brasile - - M - operarius - - - - Pasqualinus - de castro Sarzane - - M - notarius - - - - Pasqualinus - filius Parentis de Pasqualino de castro Sarzane - - M - - - - Passador - - M - - - - Passaventus - quondam Bonsengni de castro Sarzane - - M - - - - Pastor - - M - pastor Lunensis ecclesie - - - - Paulus - - M - - - - Paulus - - M - frater, minister hospitalis Sancte Crucis ad Faucem Arni - - - - Paulus - - M - frater, monacus monasterii de Capparana - - - - Paunessa - - F - - - - Pedone - quondam Bonaventure de Cepparana - - M - - - - Pegolotus - - M - - - - Pelerinus - filius Uberti de Soleria - - M - - - - Peradellus - - M - - - - Perasonus - de Aventia - - M - - - - Percival - quondam Guilielmi - - M - - - - Percival - Guilielmini de Portoverio - - M - - - - Peregrinus - - M - archipresbiter de Soleria - - - - Peregrinus - - M - canonicus Lunensis - - - - Peregrinus - - M - castaldus - - - - Peregrinus - filius Bonalbergi notarii / filius Bonalbergi de Carraria - notarii - - M - summi pontificis auctoritate notarius, iudex - ordinarius - attestato nel 1267 - - - - Peregrinus - de Apognana quondam Alberti - - M - - - - Peregrinus - filio Capreti de Popellano - - M - - - - Peregrinus - de Caria - - M - canonicus Lunensis - - - - Peregrinus - de Carraria - - M - castaldus - - - - Peregrinus - de Cotto - - M - - - - Peregrinus - de Burcione, filius quondam Gotezonis - - M - - - - Peregrinus - de Palude / de la Padule - - M - castaldus - - - - Peregrinus - de Puleca - - M - - - - Peregrinus - de Torano - - M - - - - Perosius - de castro Sarzane - - M - notarius - - - - Persona - de castro Sarzane - - M - - - - Persona - quondam Ubertini de Seraursi - - M - operarius de curte Sarzane - - - - Personeta - de castro Sarzane - - M - - - - Pesellus - - M - - - - Petrus - - M - dominus, canonicus Sancti Fridiani - - - - Petrus - - M - consiliarius - - - - Petrus - - M - episcopus Lunensis - Pietro vescovo di Luni, attestato probabilmente la prima volta nell'ottobre 1178; con certezza nell'aprile 1179 e l'ultima nel febbraio 1190. In un documento del - novembre 1180 è detto vescovo e - conte (Dei gratia Lunensi episcopo et eiusdem comitatus - comite). - - - - Petrus - - M - iudex domini imperatoris - roga alla metà del XII secolo - - - - Petrus - - M - iudex sacri palacii - roga alla metà del XII secolo - - - - - Petrus - - M - massarius - - - - Petrus - - M - magister, medicus - - - - Petrus - - M - notarius sacri palacii - attestato dal 1209 al 1229 - - - - Petrus - - M - presbiter de Soleria - - - - Petrus - Adalaxie de Sarravalle - - - - - Petrus - quondam Alberti - - M - - - - Petrus - de Ançelina - - M - - - - Petrus - de Arcula - - M - iudex de Vallecla - - - - Petrus - quondam domini Bernardini de Herberia - - M - - - - Petrus - quondam Blanci de Marçano - - M - - - - Petrus - <filius Bonacursi> - - M - - - - Petrus - de Brancheto - - M - - - - Petrus - de Capagno - - M - - - - Petrus - de Capriliola - - M - - - - Petrus - Cibiliani - - M - - - - Petrus - - M - presbiter de Cuscugnano - - - - Petrus - Dalportone - - M - - - - Petrus - de Donata - - M - - - - Petrus - de Florino - - M - - - - Petrus - filius quondam Gentis de castro Sarzane - - M - notarius sacri palacii - attestato nel 1267 - - - - Petrus - quondam Gibertini - - M - - - - Petrus - quondam domini Girardini <de Herberia> - - M - - - - Petrus - quondam Gualteroti de Soleria - - M - notarius sacri palacii - attestato dal 1255 al 1278 - - - - Petrus - quondam Henrigoli - - M - - - - Petrus - de Herberia - - M - - - - Petrus - Iordani - - M - consiliarius - - - - - Petrus - de Lamusca de Soleria - - M - - - - Petrus - quondam Macchangnani de Canaleçensi - - M - - - - - Petrus - de Orbagnano - - - - - Petrus - quondam Panicacii - - M - - - - Petrus - filius quondam Petri - - M - - - - Petrus - de Pontremulo - - M - - - - Petrus - de Porreto - - M - - - - Petrus - de Pullola - - M - - - - Petrus - quondam Sabrini - - M - - - - Petrus - de la Serra - - M - - - - Petrus - de Soleria - - M - notarius sacri palacii - attestato nel 1267 - - - - Petrus - de Summo Vico - - M - - - - Petrus - de Valdonnica - - M - - - - Petrus - de Valença - - M - - - - Petrus - quandam Villaneti de Soleriade Luna - - M - - - - Pettenarius - de Cervaria - - M - - - - Philamannus - - M - - - - Philippinus - - M - - - - Philippucius - de Sarzana - - M - - - - Philippus - - M - - - - Philippus - - M - episcopus Lunensis - Fiippo vescovo di Luni, secondo con questo nome, attestato un'unica volta - nel marzo 1096. - - - - Philippus - - M - domini Ottonis quarti Romanorum serenissimi imperatoris - notarius - attestato dal 1215 al 1225 - - - - Philippus - filius Maccii - - M - - - - Philippus - de Prato - - M - - - - Philippus - de Soleria - - M - - - - Philippus - de Viciale - - M - - - - Picus - - M - - - - Piciolbonus / Piçolbonus / Pizolbonus - - M - - - - Piciolbonus / Piçolbonus / Pizolbonus - - M - archipresbiter - - - - Piciolbonus / Piçolbonus / Pizolbonus - quondam Ugolini de Arcula, de loco dicto Monte - - M - - - - Piçolus - - M - - - - Pildiritius - filius Opiçonis de Soleria - - M - - - - Pilinketus - - M - - - - Pilius - de Susano - - M - - - - Pillitius - - M - - - - Pillotus - de Ortonovo - - M - - - - Pilosus - - M - - - - Piluchus - filius Guidonis de la Feletta - - M - - - - Pilus - - M - - - - Pilus - de Campagnano - - M - - - - Pilus - Ricii - - M - - - - Pina - filia quondam Rogerini de Maretima - - F - - - - Pinus - Compagneti - - M - - - - Pinosius - nomine Iacopinus - - M - Romanorum imperatoris notarius - attestato nel 1231 - - - - Pipinus - - M - episcopus Lunensis - Pipino, vescovo di Luni, attestato la prima volta nell'agosto 1970 e l'ultima nel febbraio 1176. - - - - Pisanella - - F - - - - Pisanus - - M - - - - Pisanus - de Monteclo - - M - - - - Piscialaqua - - M - - - - Pizolus - filius Albertide Follis de Barzi - - M - - - - Pizus - Iordanis - - M - - - - Placentia / Plasentia - - F - - - - Placentinus - de Vallecla - - M - - - - Plebanetus - quondam Aldebertini - - M - consul castri Sarzane - - - - Plebanus - - M - consiliarius Carrarie - - - - Plebanus - quondam Ugolini de Veçale - - M - - - - Pocobella - de Molino - - F - - - - Podestas - de Fliolino - - M - - - - Poletus - de Polo - - - - - Polletus - frater Mellodie - - M - - - - Ponçaninus - - M - - - - Ponçius / Pontius - - M - - - - Ponçius / Pontius - quondam Albertinelli pecciatoris - - M - - - - Pontremulus - - M - domnus, clericus monasterii de Capparana - - - - Porcarinus - - M - - - - Portenarius / Portonarius - - M - presbiter - - - - Portenarius / Portonarius - de Tivegna - - M - - - - Prebosus - - M - - - - Prefectus - - M - domini imperatoris atque Lunensis curie notarius - attivo dal 1198 al 1227 - - - - Prefectus - - notarius domini Henrici imperatoris invictissimi - attestato in attività nel 1197 - - - - Proculus - de Amelia - - M - - - - Prodominus - - M - - - - Prodomus / Prodohomo - - M - - - - Prodomus / Prodohomo - quondam Alcarini - - M - - - - Prodomus - - M - - - - Pucius - de Soleria - - M - - - - Pugnetus - de Orbagnano - - - - - - Rafiolus - - M - - - - Rafiolus - quondam Guidonis Calmangarii - - M - - - - Raimençus - - M - - - - Raimondus - - M - episcopus Lunensis - Raimondo, vescovo di Luni, attestato la prima e ultima volta nel febbraio - 1168 come electus, ossia eletto ma non ancora consacrato. - - - - Raimundinus / Raimondinus / Ramondinus - - M - - - - Raimundinus / Raimondinus / Ramondinus - quondam Formentini de Corciola - - M - operarius de curte Sarzane - - - - Raimundinus / Raimondinus / Ramondinus - Gerardini - - M - - - - Raimundinus / Raimondinus / Ramondinus - quondam Guidonis de Opizo - - M - operarius de curte Sarzane - - - - Raimundinus / Raimondinus / Ramondinus - de Petrognano - - M - - - - Rainardus - - M - presbiter - - - - Rainerius / Raynerius/ Reinerius - - M - pelliciarius - - - - Rainerius / Raynerius/ Reinerius - - M - presbiter Sancti Mauricii - - - - Rainerius / Raynerius/ Reinerius - - M - scarius - - - - Rainerius / Raynerius/ Reinerius - quondam Aicardini de Orto - - M - - - - Rainerius / Raynerius/ Reinerius - filius Bottomini de Rofianus - - M - - - - Rainerius / Raynerius/ Reinerius - de Castronovo - - M - - - - Rainerius / Raynerius/ Reinerius - de Corvaria - - M - - - - Rainerius / Raynerius/ Reinerius - de Fosdenova - - M - - - - Rainerius / Raynerius/ Reinerius - Gualteroti - - M - vicarius pro comuni Pisano in provincia Lunisiane - - - - Rainerius - quondam Guilielmini de Guertio - - M - - - - Rainerius / Raynerius/ Reinerius - quondam Rustichini - - M - - - - Rainerius / Raynerius/ Reinerius - filius quondam Salli de Ripa Arni - - M - domini Henrici serenissimi Romanorum imperatoris iudex et - notarius - attestato in autentica non datata - - - - Rainerius / Raynerius/ Reinerius - quondam Tancredi - - M - - - - Rainerius / Raynerius/ Reinerius - de Terençoliis - - M - - - - Ramanenseus - de Sarzana - - M - - - - Ramengus - - M - - - - Ramengus - de Casapoci - - M - - - - Ramundetus - - M - - - - Ramundetus - de Iovello - - M - - - - Rainaldus - Franciscus - - M - - - - Rangolellus - de Lacanova - - - - - Rangone - - M - - - - Ranucinus - de Carraria - - M - miles - - - - Ranucinus - <filius Henricoli> - - M - - - - Ranucius - quondam Iacobi Quiviquii - - M - - - - Rapallus - quondam Barçi de Guaraçano - - M - - - - Rapallus - de Veraxano - - M - - - - Ravanellus - - M - - - - Rapestra - - F - - - - Recordatus - de Sarzana - - M - - - - Reigetus / Rigettus - - M - - - - - Remburça - - F - - - - Renanus - - M - frater de ordine Fratrum Predicatorum - - - - Retondalus - de Castronovo quondam Gerardini - - M - - - - Retondolus - de Colle - - M - - - - Retondolus - de Vallecla - - M - - - - Retondus - de Castronovo quondam Gerardini de Colle - - M - - - - Ribellus - - M - - - - Ricandus - - M - notarius - attestato nel 1236 - - - - Ricardellus - de Castello Novo - - M - - - - Riccadonna - - F - - - - Riccadonna - filia quondam Bonacapti - - F - - - - Riccadonna - quondam Henrici de castro Sarzane - - F - - - - Riccius - de Montemarcello - - M - - - - Riccolus - - M - - - - Riccomannus - quondam Monaci de Ponzanello - - M - - - - Riccomannus - quondam Vitaleti - - M - - - - Riccomannus - Bolgarini de Luca - - M - vicarius in provincia Lunisiane - - - - Riccovillanus - de Veçale - - M - consiliarius Carrarie - - - - Riccus - de castro Sarzane - - M - - - - Richelda / Richalda - - F - - - - Richelda - filia Amate - - F - - - - Richelda - quondam Bonici - - F - - - - Richelda - magistri Fancelli - - F - - - - Richelda - de Minuçano - - F - - - - Richelda - <quondam Rodulfini de Vico> - - F - - - - Richelda - filia quondam Vicini de Vico - - F - - - - Ricius - quondam Bottocii de Oliveto - - M - operarius de curte Sarzane - - - - Ricobaldus - - M - - - - Ricolus - de Trebiano - - M - - - - Ricomannus - - M - consiliarius - - - - Ricomannus - de Colle - - M - - - - Ricourus - Gaberthus quondam Oradini de Avula - - M - - - - Rigalporus - de Amelia - - M - - - - Rippellus - - M - - - - Ripus - - M - - - - Robertus - de Sarzana - - M - - - - Rodulfinus - - M - - - - Rodulfinus - de Carersto - - M - - - - Rodulfinus - de Vico - - M - - - - Rodulfus - - M - - - - Rodulfus - - M - arcidiaconus Lunensis - - - - Rodulfus - - M - camemarius - Da indentificarsi probabilmente con Rodolfo di Castelmur, sul quale CASTELMUR_1978 - - - - Rodulfus - - M - domini imperatoris notarius - attestato tra 1139 e 1141 - - - - Rodulfus - de Panzano / Ponzano - - M - - - - Rodulfus - de Sancto Stephano - - M - castaldus domini Gualterii Lunensis episcopi - - - - Rodulfus - de Torano - - M - - - - Rodulfus - quondam Ugolini - - M - consiliarius - - - - Roffinellus - de Marzano - - M - - - - Rofinellus - de Colle - - M - - - - Rofinus - - M - dominus de Bozano - - - - Rogerinus - - M - - - - Rogerinus - quondam Advocati - - M - - - - Rogerinus - Sinischie de castro Sarzane - - M - - - - Rogerius - - M - - - - Rognosus / Rongnosus - - M - - - - Rolandetus - de Fosdenova quondam Gerardi - - M - - - - Rolandinus / Rollandinus - quondam Guilielmi de Folo - - M - - - - Rolandinus / Rollandinus - - M - - - - Rolandinus / Rollandinus - - M - canonicus Lunensis - - - - Rolandinus / Rollandinus - <quondam Bonadoni> - - M - - - - Rolandinus / Rollandinus - quondam Code Iudei / Bottacungo - - M - dominus de Falcinello - - - - Rolandinus / Rollandinus - quondam Gualdi - - M - operarius de curte Sarzane - - - - Rolandinus / Rollandinus - quondam Guilielmini - - M - operarius de curte Sarzane - - - - Rolandinus / Rollandinus - de Marola - - M - - - - Rolandinus / Rollandinus - de Montecello - - M - operarius de curte Sarzane - - - - Rolandinus / Rollandinus - de Monteclaro - - M - - - - Rolandinus / Rollandinus - de la Padule - - M - - - - Rolandinus / Rollandinus - de Portesone - - M - - - - Rolandinus / Rollandinus - filio quondam Torselli - - M - - - - Rollandus - - M - - - - Rollandus - - M - abbas de Cepparana - - - - Rollandus - - M - canonicus Lunensis, diaconus - - - - Rollandus - - M - castaldus - - - - Rollandus - - M - diaconus - - - - Rollandus - - M - diaconus, monacus - - - - Rollandus - - M - ferrarius - - - - Rollandus - - M - presbiter de Castro Novo - - - - Rollandus - - M - vicecomes - - - - Rollandus - de Carraria - - M - miles - - - - Rollandus - <frater Peregrini archipresbyteri> - - M - - - - Rollandus - filius quondam Gerardini de Monçone - - M - - - - Rollandus - quondam Guilielmi de Valdonega - - M - - - - Rollandus - quondam domini Henrici Blanci de Herberia - - M - - - - Rollandus - de Panigale - - M - clericus - - - - Rollandus - de Soleria - - M - castaldus - - - - Rollandus - quondam Ugolini de Veçale - - M - - - - Rollandus - quondam Tebaldini de Soleria - - M - - - - Rollandus - de Torano - - M - - - - Rollandus - filius Ugolini de Valcava - - M - - - - Rolandus - Vagus de Luca / Vagus / Vagus Lucanus / Vagi - - M - - - - Rolandinus / Rollandinus - de Vezano - - M - - - - Rollandutius - - M - - - - Romanus - - F - abbas abbatie Sancti Venantii Cepparane - - - - Romea - - F - - - - Romea - filiam quondam Gerardini de Sorbo - - F - - - - Romeus - - M - - - - Romeus - quondam Brancheti - - M - - - - Romeus - - M - consul de Falcinello - - - - Romeus - Lazarelli de Castronovo - - M - - - - Romeus - Morsellere de burgo Sarzane - - M - - - - Romeus - de Soleria - - M - - - - Romeus - quondam Vitalis escarii - - M - operarius de curte Sarzane - - - - Rondarella - quondam Formenti de castro Sarzane - - F - - - - Rosa - - F - - - - Rosa - de Balognano - - F - - - - Rosada - mater filiorum quondam Alberti - - F - - - - Rubeus / Rossus - - M - - - - Rubeus / Rossus - - M - iudex, assessor in provincia Lunisiane - - - - Rubeus / Rossus - quondam Philippi - - M - consiliarius Sancti Terencii - - - - Rubeus / Rossus - de Fosdenova - - M - - - - Rubeus / Rossus - quondam Iacomini - - M - iudex - - - - Rubeus / Rossus - de Sarzana - - M - iudex, dominus - Probabilmente da identificarsi con Rossus iurisperitus presente - in diversi altri documenti nella seconda metà del XIII secolo. - - - - Rubeus / Rossus - quondam Gerardi - - M - - - - Rubeus / Rossus - de Sarzana - - M - iurisperitus - Probabilmente da identificarsi con Rubeus / Rossus iudex presente in diversi - altri documenti nella seconda metà del XIII secolo. - - - - Rubeus / Rossus - de Ysola - - M - - - - Rossolus - de Favale - - M - - - - Rustichinus - de Orbagnanno - - M - - - - Rubbertus - - M - pistor - - - - - Ruffaldus - - M - - - - Ruffinus - - M - - - - Rugelettus - - M - - - - Rundanellus - - M - - - - Rustegonus - - M - - - - Rustichellus / Rusticellus / Rustigellus - - M - - - - Rustichellus / Rusticellus / Rustigellus - de loco dicto Peretolo filius quondam Guilicionis - - M - - - - Rustichellus / Rusticellus / Rustigellus - Rogete Stiporto - - M - - - - Rustichellus / Rusticellus / Rustigellus - de Sanctomeniaco - - M - - - - Rustichellus / Rusticellus / Rustigellus - de Vignola - - M - - - - Rustichellus / Rusticellus / Rustigellus - quondam Vitalis escarii - - M - operarius de curte Sarzane - - - - Rustichinus / Rustiginus - - M - - - - Rustichinus / Rustiginus - de Castro Novo - - M - - - - Rustichinus / Rustiginus - de Gisla - - M - - - - Rusticus - - M - - - - Rusticus - - M - magister Sancte Crucis de ripa Sarni - - - - Rusticus - - M - presbiter, cappellanus domini episcopi - - - - - Sabbatinus - - M - - - - Sabbatinus - quondam Albertacii - - M - operarius de curte Sarzane - - - - Sabbatinus - de Apiola filius quondam Donne de Apiola - - M - - - - Sabbatinus - quondam Durantis Ravolati - - M - operarius de curte Sarzane - - - - Sabbatinus - de Monteçanne - - M - - - - Sabbatinus - de Plaza - - M - - - - Sabbatinus - de castro Sarzane - - M - - - - Sabbatinus - de Seraursi - - M - operarius de curte Sarzane - - - - Sabbatellus - <filius Bonguidi> - - M - - - - Sachinus - quondam domini Gualdi de Sancto Stephano - - M - - - - Sachinus - filius Nuveloni - - M - notarius - attivo nel 1279 - - - - Saconus - - M - - - - Safarone - Picialboni - - M - - - - Saladinellus - filius quondam Iacopini Malaraice - - M - - - - Saladinus - - M - magister, archipresbiter de Viano - - - - Saladinus - - M - magister - - - - Saladinus - de Fosdenova - - M - - - - Saladinus - quondam domini Saladini de Fosdenova - - M - - - - Saladus - quondam Actocanini de Masio - - M - - - - Salamoncellus/Salomone - Baratella - - M - dominus - Probabilemnte da identificare con Salamone Lucano presente in numerosi - documenti - - - - Salicia - - M - domina - - - - Salomon - Lucanus - - M - dominus, nobilis - Probabilemnte da identificare con Salamone o Salamoncellus Baratella Lucano - presente in altri documenti - - - - Salvagius - de Marciasio - - M - dominus - - - - Salve - quondam Alberti - - M - - - - Salve - de Fontenella - - M - - - - Salve - de Montia - - M - - - - Salvetus / Salvettus - - M - - - - Salvetus / Salvettus - de Castronovo - - M - - - - Salvetus / Salvettus - de Fontenella - - M - - - - Salvetus / Salvettus - de Petrognano - - M - - - - Salvetus / Salvettus - quondam Ugolini de Ortonovo - - M - - - - Salvus - quondam Carençoli - - M - operarius de curte Sarzane - - - - Samuel - quondam Blanci de Marçano - - M - - - - Samuellus - quondam Blanci - - M - - - - Saracinus - Colmezano - - M - - - - Saracina - - F - - - - Sarda - - F - - - - Sardus - - M - - - - Sardus - - M - marchio - da identificare col marchese di Massa attestato nel 1213 come detentore di - Castello Aghinolfi e poi ancora nel 1216 - - - - Saricinus - - M - - - - Sarzanensis - quondam Gandolfi - - M - operarius de curte Sarzane - - - - Sarzanensis - de castro Sarzane - - M - - - - Savarisius - - M - consul de Ponzanello - - - - Scoita - - F - - - - Segnorellus / Seniorellus - - M - - - - Segnoretus / Senioretus - - M - - - - Segnoretus / Senioretus - - M - consiliarius - - - - Segnoretus / Senioretus - de Ponzano - - M - consiliarius - - - - Segnoretus / Senioretus - quondam Rainerii de Cortiola - - M - - - - Segnoretus / Senioretus - de Vallecla - - M - - - - Segnorinus - - M - - - - Segnorinus / Seniorinus - de Vallecla - - M - - - - Selveradus - filius quondam Enzoni - - M - - - - Sembardus - - M - - - - Sensus - - M - - - - Septembrina - - F - - - - Septembrina - filia quondam Guilielmi de la Trina - - F - - - - Septembrina - de castro Sarzane - - F - - - - Sibilia - - F - - - - Sibilia - quondam Mansi - - F - - - - Sibilia - quondam Venture - - F - - - - Sifredus - - M - - - - Sygenaldus - de Orbagnano - - M - - - - Sikinus - - M - - - - Sigezo - - M - - - - Simona - - F - - - - Simon / Symon - quondam Iuncte de Sancto Stephano - - M - - - - Simon/Symon - - M - scarius - - - - Simon / Symon - Asinellus de Carraria - - M - - - - Simon / Symon - de Porta - - M - - - - Simonetus / Symonetus - - M - operarius de curte Sarzane - - - - Simonetus / Symonetus - - M - notarius, sacri palacii notarius - attestato dal 1255 al 1279 - - - - Simonetus / Symonetus - quondam Gerardini de Terriola - - M - operarius de curte Sarzane - - - - Simonetus / Symonetus - quondam Sabrini - - M - - - - Simonetus / Symonetus - de Serra - - M - - - - Simonetus / Symonetus - quondam Vite - - M - - - - Sismundus - - M - camerlengus - - - - Sismundus - - M - canonicus Lunensis, custos - - - - Soldanus - frater Norandini episcopi - - M - - - - Spagnolus - Bonfantis - - M - - - - Spinelli - - M - nome collettivo - - - - Spinellus - - M - - - - Spinellus - quondam Baldicioni de Ponzanello - - M - - - - Spinellus - filius Caruccii - - M - - - - Squasius - - M - - - - Stancius - - M - massarius - - - - Statius - - M - - - - Stephanellus - de Summo Tranci quondam Bessi - - M - - - - Stephanetus - de Cepparana - - M - - - - Stephanus / Stevanus - - M - - - - Stephanus / Stevanus - de la Crosa - - M - - - - Stephanus / Stevanus - de Guerceto - - M - - - - Stephanus / Stevanus - de Ponzanello - - M - - - - Sticius - Conforti de Mulathuso - - M - - - - Stoplius - de burgo Sarzane - - M - - - - Stoppus - quondam Alberti de burgo Sarzane/ filio Alberti Corbellarii - - M - corbellarius - - - - Stoppus - de Sarzana - - M - speciarius - - - - Strapatus - - M - - - - Strapatus - de Padule - - M - - - - Suscarius - de Trebiano - - M - - - - - - T. - - M - presbiter de Biliolo - - - - Taddeus - de Carraria Bonalbergi notarii filius - - M - apostolice sedis auctoritate notarius - attestato in una autentica non datata - - - - Tancredinus - - M - - - - Tancredinus - quondam Bernardi - - M - dominus de Falcinello - - - - Tancredinus - filius Gerardi de Tancredino / Bottacungo - - M - dominus de Falcinello - - - - Tancredinus - de Vallechia - - M - - - - Tancredus - - M - - - - Tancredus - Lucanus - - M - iurisperitus - - - - Tancredus - de Padule - - M - - - - Tegrinus - filio Albertini de Nirono - - M - - - - Tedaldinus - - M - - - - Tedaldus - quondam Pagani - - M - - - - Tedora - - F - - - - Tedora - - F - domina de Falcinello - - - - Tedora - de Ficola quondam Franceschini - - F - molendinaria - - - - Tegrinus - - M - iudex - - - - Tempanellus - - M - iudex provincie Lunisiane - - - - Temus - - M - cantor - - - - Terraforte - - M - - - - Testa - - M - - - - Testa - de plano Carrarie - - M - - - - Testaforte - de Sarzana - - M - imperii sacri iudex, notarius, syndico et procuratori episcopi - Lunensis - attestato nel 1255 - - - - Teuzo - - M - presbiter - - - - Thebaldinus - - M - - - - Thebaldinus - de Debicoe / de Debbice /de Bobice - - M - - - - Thebaldinus - de Padule - - M - - - - Thebaldinus - quondam Robertini - - M - - - - Thebaldinus - de Soleria - - M - castaldus - - - - Thodescus - quondam Beccafabe - - M - - - - Theopoldus - de Leschemunde - - M - comes - Forse identificabile con Diepold conte di Lechsgemünd, nato intorno al 1140 - e morto nel 1192 come da scheda di Doris Pfister pubblicata il 14.05.2012 nel - Historisches Lexikon Bayerns - - - - Thodescus - quondam Bonizi - - M - operarius de curte Sarzane - - - - Tholomeus - - M - archipresbiter de Castello - - - - Tholomeus - de Congia - - presbiter - - - - Tholomeus - de Fonticlo - - - - - Thomas - de Ponçano - - M - - - - Tillora - - F - - - - Timpus - - - - - Tiniosus / Tignosus / Tigniosus - - M - - - - Tiniosus / Tignosus / Tigniosus - de Baldolino - - M - - - - Tiniosus / Tignosus / Tigniosus - Buraio - - M - - - - Tiniosus / Tignosus / Tigniosus - de Fontanella - - M - - - - Tiniosus / Tignosus / Tigniosus - quondam Gerardini - - M - operarius de curte Sarzane - - - - Tiniosus / Tignosus / Tigniosus - de Maroalco - - M - - - - Tiniosus / Tignosus / Tigniosus - - M - consuli de Moncicolo - - - - Tiniosus / Tignosus / Tigniosus - quondam Parentis de castro Sarzane - - M - castaldus episcopi - - - - Tiniosus / Tignosus / Tigniosus - de Ripola - - M - castaldus episcopi - - - - Tinnisius - - M - - - - Tiralducius - - M - - - - Todescha - quondam Gualteroni de Carcandula - - F - - - - Todeschinus - - M - - - - Todeschus / Todescus - - M - - - - Todeschus / Todescus - - M - rector ecclesie Sancti Mauricii - - - - Todeschus / Todescus - quondam Guilielmi - - M - - - - Torisendus - filius quondam domini Gibertini <de Herberia> - - M - - - - Torreculus - - M - - - - Torsellero - de Sarzana - - M - - - - Tosus - de Calesana - - M - consul de Marola - - - - Trafanellus - quondam Gerardini de Ysola - - M - - - - Trampulius - quondam Dominici cortesiani - - M - operarius de curte Sarzane - - - - Trapedecinus - quondam Gonforuti de Beduçano - - M - - - - Trebaldinus - - M - - - - Trumbolus - de Amelia - - M - - - - Tudiscus - quondam Bonapartis - - M - - - - Turchius / Turcus - - M - - - - Turpha - - M - - - - Tursaccus - - M - Lunensis canonicus - - - - Tursus - - M - magister - - - - Tursus - de Tivennia - - M - - - - Tuscanus - - M - - - - Tutobonus - - M - - - - - Ubaldettus - - M - - - - Ubaldinus - - M - - - - Ubaldinus - de Nichola - - M - - - - Ubaldus - - M - cantor, canonicus Lunensis - - - - Ubaldus - filius Guidonis de la Feletta - - M - - - - Ubaldus - de Parente / quondam Parentis - - M - - - - Ubertellus - - M - - - - Ubertinus - - M - - - - Ubertinus - de la Cala - - M - - - - Ubertinus - Grassus de Sarzana / Crassi / Crassus - - M - - - - Ubertinus - de Rio - - M - - - - Ubertinus - de la Serra - - M - - - - Ubertinus - de Thufara - - M - - - - Ubertinus - de Valmoro - - M - - - - Ubertus - - M - - - - Ubertus - - M - magister - - - - Ubertus - de Boiano, Pagani filius - - M - magister - - - - Ubertus - de Formicoso - - M - - - - Ubertus - Rossus - - M - - - - Ubertus - de Soleria - - M - - - - Ubertus - de Torano, filius quondam Spinelli - - M - dominus de Carrara - Si veda RICCI 2012, pp. - 42-45 - - - - - Ubertus - quondam Çurri / Çurri Lucano - - M - - - - Uguicius - de Fano - - M - - - - Ugerinus - - M - - - - Ugerinus - de Petro - - M - - - - Ugetus - - M - - - - Ugitius - - M - - - - Ugitius - - M - archipresbter ecclesie sancti Stephani - - - - Ugitius - - M - camerarius - - - - Ugo - - M - - - - Ugo - - M - archidiaconus - - - - Ugo - - M - archipresbyter de Colognola - - - - Ugo - - M - presbiter de Ponzanello - - - - Ugo - < filius quondam Alberti marchionis> - - M - marchio - Ugo, marchese della stipe obertenga, figlio di Alberto III; risulta già - defunto nel 1080 (FALCO 1916, - XXVI). - - - - Ugo - filius quondam Azonis - - M - - - - Ugo - de Casapoli - - M - - - - Ugo - de Herberia - - M - - - - Ugo - Machetus filio quondam Guidonis Rubei - - M - - - - Ugo - Melice - - M - - - - Ugo - de Pilato - - M - - - - Ugolinus - - M - - - - Ugolinus - - M - canonicus Lunensis, subdiaconus - - - - Ugolinus - - M - consiliarius Carrarie - - - - Ugolinus - - M - sacri palacii et Lunensis curie notarius - sacri palacii notarius - ativo dal 1204 al 1230 - - - - Ugolinus - de Amelia - - M - - - - Ugolinus - quondam Annoboni - - M - - - - Ugolinus - Armannini /quondam Armannini - - M - - - - Ugolinus - dictus Bellapença de Castronovo - - M - - - - Ugolinus - de Bellosa - - M - - - - Ugolinus - Bicus de Vezano - - M - - - - Ugolinus - de Bonaora - - M - - - - Ugolinus - quondam Bonfilioli - - M - - - - Ugolinus - quondam Bonusii - - M - consiliarius - - - - Ugolinus - de Carraria - - M - - - - Ugolinus - de Columba - - M - - - - Ugolinus - quondam domini Dati iudicis, olim filii Conforti notarii /quondam - domini Dati iudicis de Sarzana - - M - - - - Ugolinus - Dominice - - M - consiliarius - - - - Ugolinus - de Ficaro, quondam Falconi - - M - - - - Ugolinus - frater Botrigellus quondam Fantinelli de Monçolono - - M - operarius de curte Sarzane - - - - Ugolinus - de Ficolungo - - M - - - - Ugolinus - de Genestulo - - M - - - - Ugolinus - filium Girardi de Saleceto - - M - - - - Ugolinus - quondam Gualteronis de Petrognano - - castaldus - M - - - - Ugolinus - quondam Grilli - - M - - - - Ugolinus - quondam domini Guidonis - - M - - - - Ugolinus - quondam Guilielmi de Carboncello de castro Sarzane - - M - - - - Ugolinus - quondam Henrigeti - - M - - - - Ugolinus - quondam Lanfranchini / filio Lanfranchini / quondam Lanfranchini de - Ponzanello - - M - consiliarius - - - - Ugolinus - <Lucanus> - - M - - - - Ugolinus - de castro Sarzane quondam Macchangnani de Canaleçensi - - M - - - - Ugolinus - de Marciasio quondam He....i - - M - - - - Ugolinus - de Marzeno - - M - - - - Ugolinus - Marzolus - - M - - - - Ugolinus - de Monte - - M - forse da identificarsi con Ugolinus Sambucus - - - - Ugolinus - de Padule - - M - - - - Ugolinus - Philippi - - M - - - - Ugolinus - Recçani - - M - - - - Ugolinus - de Rizola - - M - - - - Ugolinus - de Roselmino - - M - - - - Ugolinus - quondam Sabbatini - - M - - - - Ugolinus - dictus Sambucus de Monte - - M - frse da identificarsi con Ugolinus de Monte - - - - Ugolinus - de Valechia - - M - - - - Ugolinus - quondam Venuti - - M - consul de Ponzanello - - - - Ugolinus - de Veçale - - M - - - - Ugolinus - de Vexana - - M - - - - Ugolinus - Ymelde - - M - consiliarius - - - - Ugolinus - de Zucheto - - M - - - - Uguito - - M - - - - Urdidio - quondam Arcardi - - M - - - - Ursettus - filius quondam Bellucii de Cacano - - M - - - - Ursolus/Urçolus - de Burçono - - M - - - - Ursus - de Drivi - - M - notarius - - - - Ursus - quondam Durantis - - M - - - - Ursus - filius quondam Gerarducii de la Serra - - F - - - - Ursus - quondam Laçarelli - - M - - - - Ursus - quondam Marsilii - - M - - - - Ursus - quondam Ruffinelli de Marçano - - M - - - - - Valentina - - F - - - - Valentinus - - M - - - - Valentinus - de Carpeneto - - M - - - - Valentinus - de Castegneto - - M - - - - Valentinus - filius Descaltii de castro Sarzane - - M - - - - Valentinus - quondam Favalini - - M - - - - Valentinus - de La Fontana - - M - cocus - - - - Valletus - - M - - - - Vassallus - de Ficaro, quondam Falconi - - M - - - - Veçale - quondam Ugonis Rubei de Veçale / quondam Guidonis Rubei de - Veçale - - M - - - - Veçalinus - - M - - - - Veclus - - M - - - - Veltrus - quondam Guilielmi de donna Emma - - M - - - - Vegnante - - M - - - - Vegnutus / Venutus - - M - - - - Vegnutus / Venutus - de Torano - - scarius - M - - - - Vegnutus / Venutus - Basiadore de Torano - - M - forse da identificarsi con Venutus de Torano - - - - Vegnutus / Venutus - filio Bellutii de Moneta - - M - - - - Vegnutus / Venutus - quondam Bianchi de castro Sarzane - - M - - - - Vegnutus / Venutus - filius Bonaiuncte - - M - - - - Vegnutus / Venutus - quondam Carentani de Puleca - - M - - - - Vegnutus / Venutus - Corroçatus - - M - - - - Vegnutus / Venutus - qui nuncupor Gallotollus de Beriola - - M - - - - Vegnutus / Venutus - quondam Musini - - M - consiliarius - - - - Vegnutus / Venutus - de Ponzanello - - M - - - - Vegnutus / Venutus - quondam Ramondini de castro Sarzane - - M - - - - Vegnutus / Venutus - de Torano - - M - forse da identificarsi con Venutus Basiadore - - - - Vegnutus / Venutus - quondam Viviani - - M - - - - Veido / Guido - - M - - - - Veltro - de Avencia - - M - - - - Veltro - de castello Aginulfi - - M - - - - Veltro - quondam Guilielmi de donna Hemina - - M - - - - Veltro - de Corvaria quondam Guilielmi - - M - - - - Veltro - de Petrognano - - M - - - - Venacius - - M - abbas Sancti Caprasii - - - - Venenus - filius quondam Martini - - M - - - - Ventitus - de Torano - - M - consiliarius Carrarie - - - - Ventralinus - quondam Monaci de Ponzanello - - M - - - - Ventura - - M - - - - Ventura - quondam Alberti - - M - - - - Ventura - filius Aldeberadi - - M - - - - Ventura - de Aventia - - M - consiliarius Carrarie - - - - Ventura - de Balognano - - M - - - - Ventura - Basiadore - - M - - - - Ventura - Batigiati - - M - - - - Ventura - quondam Bellomi de Codena - - M - - - - Ventura - quondam Benedicti - - M - - - - Ventura - quondam Bernardi - - M - - - - Ventura - de Biduçano - - M - magister - - - - Ventura - de Ciserano - - M - - - - Ventura - de Colle de Gragnana - - M - - - - Ventura - quondam Gandolfini - - - - - Ventura - quondam Guilielmi de Codesorbo - - M - - - - Ventura - quondam Martini Brageri - - M - - - - Ventura - quondam Molinarii de Posticio - - M - - - - Ventura - quondam Monteseni de Monte - - M - - - - Ventura - de Oratorio - - M - domini Frederici Romanorum imperatoris notarius et postea - excellentissimi Henrici imperatoris iudex - attestato in autentica non datata - - - - Ventura - de Plaça - - M - - - - Ventura - de Puleca - - M - consul de Puleca - - - - Ventura - quondam Rollandini - - M - - - - Ventura - de Sarzana - - M - - - - Ventura - de Thufara / de Tufara - - M - - - - Venturellus - - M - - - - Venturellus - quondam Bonaiuti - - M - - - - Venturentus - de Fontanella - - M - - - - Venturolus - quondam Portonarii - - M - - - - Verdilia - - F - - - - Verdilia - de Castronovo - - F - - - - Vernacius - - M - archipresbiter de Offiano - - - - Vernacius - - M - presbiter, canonicus Lunensis - - - - Vernacius - quondam Guilielmi de Cantio - - M - operarius de curte Sarzane - - - - Verrinus - - M - - - - Versavinus - - M - - - - Versus - quondam Gordiani de Castronovo - - - - - Vescontinus - quondam Bonencontri de Trebiano - - M - - - - Vesina - filia Bonissime de Capagnana - - F - - - - Vessosa - quondam Petri de Florino - - F - - - - Vestitus - - M - - - - Vetius - - M - - - - Viciale - quondam Ugolini de Ventura - - - - - Vicina - - F - - - - Vicinus - quondam Agustini de Casapoci - - M - - - - Vicinus - de Vico - - M - - - - Vidalis - de Busco - - M - - - - Vidalnus - - M - - - - Villana - - F - - - - Villanellus - de Vallecla - - M - - - - Villanetus - filius quondam Attolini de Soleria - - M - - - - Villanus - - M - - - - Villanus - quondam Alioti Lucanus - - M - - - - Villanus - - M - archipresbiter - - - - Villanus - - M - massarius - - - - Villanus - Lucanus - - M - - - - Villanus - filius Philippi de Prato - - M - - - - Villanus - Pitiani - - M - - - - Villanus - quondam Porroneti de Porreto/quondam Pontonetti de Poreto - - M - - - - Villanus - de Portu Veneris - - M - - - - Villanus - de Sarzana - - M - - - - Villanus - quondam Tancredi de la Sala - - M - - - - Villanus - de Vallecla - - M - - - - Vincentius - de Carraria Proyni filius - - M - Sancte Romane Sedis auctoritate notarius ac iudex - ordinarius - attivo nel 1272 - - - - Vinciguerra - <filius Aldeprandi vicedomini> - - M - - - - Viridis - - F - domina de Falcinello - - - - Vita - Sicco - - M - - - - Vitale - de Martinella - - M - - - - Vitaletus - - M - - - - Vitaletus - de Bonno - - M - operarius de curte Sarzane - - - - Vitaletus - Capusoli - - M - operarius de curte Sarzane - - - - Vitaletus - de Perbeçola - - M - - - - Vitaletus - de Pira - - M - - - - Vitaletus - de Plaça - - M - - - - Vitalis - - M - - - - Vitalis - de Beagua - - M - operarius de curte Sarzane - - - - Vitalis - quondam Belseris - - M - operarius de curte Sarzane - - - - Vitalis - quondam Benedicti - - M - - - - Vitalis - quondam Bernardi - - M - - - - Vitalis - quondam Boneti - - M - operarius de curte Sarzane - - - - Vitalis - de Donnolina - - M - operarius de curte Sarzane - - - - Vitalis - frater Martini de lo Podio - - - - - Vitalis - de Gragnano - - M - consiliarius Carrarie - - - - Vitalis - quondam Lumbardi - - M - - - - Vitalis - quondam Oliverii - - M - - - - Vitalis - quondam Oliverii de castro Sarzane - - M - - - - Vitalis - de Plaça - - M - - - - Vitalis - de Porta - - M - - - - Vitalis - de Torano - - M - - - - Vitalis - quondam Vindemioli de Tortiliano - - M - operarius de curte Sarzane - - - - Vita - quondam Piçolboni - - M - - - - Vitarellus - de Galisingna - - M - - - - Vitus - - M - - - - Vivalda - filia quondam Anselmi de Antoxuolo - - F - - - - Vivaldetus - - M - - - - Vivaldetus - filius Bonvisini de Caprilliola - - M - - - - Vivaldus / Wivaldus - - M - - - - Vivaldus / Wivaldus - - M - consiliarius Carrarie - - - - Vivaldus / Wivaldus - - M - notarius - atttivo prima del 1263 - - - - Vivaldus / Wivaldus - Adiuti - - M - - - - Vivaldus / Wivaldus - quondam Ardoini Mignochia de Veçale - - M - - - - Vivaldus / Wivaldus - de Avencia - - M - - - - Vivaldus / Wivaldus - de Capriola - - M - - - - Vivaldus / Wivaldus - - M - consul de Ponzanello - - - - Vivaldus / Wivaldus - quondam Ferreti de Ponzanello / Ferreti - - M - - - - Vivaldus / Wivaldus - filius Ferrini - - M - - - - Vivaldus / Wivaldus - - M - consiliarius de Ponzanello - - - - Vivaldus / Wivaldus - quondam Pagani de Balognano - - M - - - - Vivaldus / Wivaldus - de Polverara quondam Pugneti - - M - - - - Vivaldus / Wivaldus - quondam Rollandina de Agina - - M - - - - Vivasinus - - M - Lunensis canonicus - - - - Vivasinus - de Cepparana - - M - - - - Vivasinus - - M - Lunensis cumcanonicus - - - - Vivelda - quondam Salveti uxor Nicholosii - - F - - - - Vivianus - - M - - - - Vivianus - - M - notarius sacri palacii - attivo nel 1263 - - - - Vivianus - Boniçi de Ortonovo - - M - - - - Vivianus - de Bidiçano - - M - - - - Vivianus - quondam Bosi - - M - operarius de curte Sarzane - - - - Vivianus - de Ficula - - M - - - - Vivianus - filio Prodomi de Ponzanello - - M - - - - Vivolus - de Puzolo - - M - - - - Volta - de castro Sarzane - - M - - - - Vualcausus - - M - - - - Guibertus - - M - - - - Wçeronus - - M - - - - - - Yliolo - de Yliolo - - M - - - - Ymelda / Ymeldina - - F - - - - Ymelda / Ymeldina - quondam Dominici - - F - - - - Ymelda / Ymeldina - - F - - - - Ymelda / Ymeldina - quondam Tancredi de Miselia - - F - - - - Ymeldola - de Noceto - - F - - - - Isnardus - filius quondam domini Opiçoni marchionis Malaspine - - M - Isnardo marchese Malaspina, figlio di Opizzino capostipite dello Spino - fiorito, fratello di Bernabò e Alberto, è attestato dal 1250 (ASFi DM, n. 135) al 1271 (ASFi DM 235); nel 1257 (FERRETTO 1909, n. DCCCCLV) è - ancora minorenne; già defunto nell'agosto del 1276 (ASFi DM 238). - - - - Zanbonus - - M - - - - Zazon - - M - - - - Zencius - de Boiano - - M - - - - Zikinus - - M - - - - Zitus - de li Albizi - - M - - - - Zugnus - de Balognano - - M - - - - - - TEST from TEI example - - - Rochester, - New York - - - - - Laos, - Southeast Asia - - - - - 6ème - Paris, - France - - - - - - La roche qui pleure - - - Ile aux cerfs - - - - - - Mascarene Islands - Mascarenhas Archipelago - - Mauritius - - - La roche qui pleure - - - Île aux cerfs - - - - - Rodrigues - - - Réunion - - - - - Herefordshire - - - Abbey Dore - - 51.969604 -2.893146 - - - - Acton Beauchamp - - - - - - Hereford - - - Leominster - - - - - - - - - Mascarene islands - Mascarenhas Archipelago - - - Mauritius - - - - Rodrigues - - - Réunion - - - - - - - From CP - - Aciliano - Si propone in via ipotetica l'identificazione con l’attuale località - Argigliano (Casola di Lunigiana, MS), come da REPETTI 1846, I, p. 132, col. 2 e dalla Cartografia - topografica conservata presso l'Archivio di Stato di Genova, in particolare - ASGe Topographia, Toponimi, Massa (MS) 25: La Lunigiana (ca. - 1770); ASGe Topographia, Toponimi, Pontremolese (MS), pagina 3 di 3, 1: - La Riviera di Levante, Stato di Genova ed altri.... Altra forma - antica attestata: Arziliano nel 1748. Il paese è situato a circa 3 - km. a sud-est di Casola. Segnalazione di Sergio Mussi. - - - Acola - - - Agina - - - Aguto - Luni - - - Aitenetulo - - - Albano - - - Albrico - - - Alione - Aglione - Castelnuovo Magra - Si può identificare nella attuale località Aglione, oggi parte del comune di - Castelnuovo Magra (SP), situata a nord di Luni Mare, a nord-ovest di - Colombiera-Molicciara. Cfr. SALVATORI 2007, - p. 9. Segnalazione di Sergio Mussi. - - - Alpes - Alpi Apuane - - - Amelia - Ameglia - Ameglia - - - Amola - Amola o Falcinello, torrente che nasce dal monte Boscoleto (m590); affluente - di sinistra del fiume Magra nel piano di Ponzano. - - - Anagni - Anagni - Anagni - - - Antognolo - Antoniolo - Fosdinovo - Sebbene il contesto dei documenti non consenta una localizzazione certa, è - molto probabile che si tratti della attuale località di Antoniolo, a sud-est di - Carignano e a nord-ovest di Giucano (comune di Fosdinovo, MS). Cfr. BALDASSARRI - ANDREAZZOLI 2007, - p. 9, r.10. Segnalazione di Sergio Mussi. - - - Antoniano - Antoniano - La Spezia - Si tratta molto probabilmente dell'area dove sorge la pieve di S. Venerio - detta appunto in Antoniano a La Spezia. Cfr. VECCHI 1986. - - - Antoxuolo - - - Apiola - - - Apognana - Pognana - Fivizzano - Ipotesi di identificazione in Pognana, frazione di Fivizzano di Sergio - Mussi. - - - Aqua Fredola - - - Aquavivola - - - Aque Nigre - Fosdinovo - - - Angarecia - - - Ara/Area - Fosdinovo - - - ala Valentina/Ara Valentina - Fosdinovo - - - Aramonte - - - Arenale - - - Arcinasia - - - Arcola/Arcula - Arcola - Arcola - - - Ardano - - - Arena - Luni - - - Armo / rivo Armo - - - Arno - Arno - L'Arno è il principale fiume della Toscana. - - - Ascletulo - - - Assento - - - Asta - Asti - Asti - - - Atilliano - - - Avula - Aulla - Aulla - - - Avencia/Avenza - Avenza - Carrara - - - Balano - - - Balognano - Ameglia - - - Banco - - - Balzano - - - Bantiola - - - Barbaçano - Barbazzano - Lerici - - - Barci/Barzi - Fivizzano - Secondo FORMENTINI 1970, - p.10 la villa di Barci si trovava tra l’attuale Collecchia e il santuario di - Santa Maria dei Colli, dove è attestato ancora il toponimo - Bargia. - - - Bardano - Fosdinovo - - - Bargi - - - Basano - - - Bawaria - Baviera / Bayerns - Baviera / Bayerns - - - Beagua - - - Bebulo - - - Becarolo - Carrara - - - Beduçano - - - Bergamo - Bergamo - Bergamo - - - Beriola - Carrara - nei pressi di Carrara come da documento n. 274. Probabilmente da identificarsi con l'attuale Bergiola - Foscalina, sopra Carrara (suggerimento di Stefano Landini) - - - Berzola - - - Bertrame/Bertemme/Bertani - Lago di Porta - Montignoso - località oggi identificabile con Lago di Porta, come si evince da REPETTI_1846. La torre detta - Porta Betrame o Porta Bertrami, oggi scomparsa, si - trovava in località Salto della Cervia (oggi comune di - Pietrasanta), segnalata come ancora esistente alla data del 1810 dal Repetti. - La torre era situata sull'antico confine che correva tra il Lago di Porta e - Monte della Rocca di Montignoso, precisamente nel distretto di Castel - Aghinolfi, sulla strada romana che da Massa conduceva a Lucca. La prima - attestatazione del toponimo si trova in un placito di Enrico III emanato il 15 - maggio 1055 a favore del vescovo di Luni che rivendicava alcuni possedimenti in - quella zona. Si ringrazia Sergio Mussi per le precisazioni. - - - Betigna - - - Biana - - - Bianca - - - Bibola - Bibola - Aulla - - - Bicarro - - - Biduçano/Biduzzano - Carrara - Nei pressi di Carrara come da documento in ASLU_DA, 1393 agosto 27. - - - Bifurca - Fosdinovo - - - Biliolo - Bigliolo - Aulla - - - Bioran - - - Bistioleta - Sarzana - - - Bithazano / Bitusanum - - - Blecce/Deblecce/Bleccoe - - - Bocco - - - Boccognano - - - Boinaculo - Fosdinovo - - - Bolano - Bolano - Bolano - - - Bollesne - - - Bonaco - La costa di Bonaco / Bonacho è situata a ovest di Carignano di Ponzano e - detta anche Costa di Carlassaro del Pianza; nominata costa di Benaco dagli - abitanti di Fosdinovo ASGe_MAPPA_33. Segnalazione di Sergio Mussi. - - - Bonasculo - Carrara - - - Burgonuovo - - - Bostiola - - - Botognano - - - Bovetulo - - - Bradia - - - Branzoli - - - Bracellis - Bracelli - Beverino - - - Brasile - - - Brina - Sarzana - - - Brissiana - - - Broilo / Brolo - Carrara - - - Bruscaliano - - - Buçano / Buzano / Bozano - - - Buiano, Boiano - Buggiano - Pistoia - - - Burcione Burçone - Burcione - Aulla - - - Burçono - - - Burculum/Burculo - Fosdinovo - - - Bursello - - - Busco - - - Butracanca - - - Butracanca - - - Caço / Cacio - - - Cafaçaro - Fosdinovo - - - Cafaçola - - - Cafadio - - - Cafadio Baruçoli - Fosdinovo - - - Cafazo - Fosdinovo - - - Cafilectata - - - Cala - - - Calasobtana - Lerici - - - Calesa - - - Calesana - - - Calmesana - - - Calvo - - - Camisiano - - - Campacolle - - - Campilia - - - Campiza - Parma - - - Campo Honeste - - - Campo de la Stella - - - Campo de la Plata - - - Campodonico - - - Campola - Vezzano - - - Campolo - - - Camporaqua - - - Campotendoli - - - Camtellino - - - Camua - - - Canale - - - Canale Iannis - - - Canapariolo - - - Caneva - - - Caneva de Petroçuca - - - Cannebiano - - - Canneto - Ameglia - - - Capagnana - - - Capagnano - Fosdinovo - - - Capagno - - - Capanella - Fosdinovo - - - Capanna - - - Capanna Martina - Fosdinovo - - - Capannara - - - Caporaqua - - - Capo Corvo - nei pressi di Ameglia e Lerici - detta anche punta Corvo, è la propaggine sul mar Ligure del monte Marcello - tra Bocca di Magra e il golfo della Spezia. Il promontorio costituisce il - limite orientale della Riviera Ligure, andando a dividerla geograficamente - dalla costa apuana. - - - Caprilliola - Caprigliola - Aulla - - - Capriola - Fosdinovo - - - Caprione - - - Capranello - Carrara - nei pressi di Carrara come da doc. n. - 274 - - - Caprognano - - - Carame - - - Carbonara - Fosdinovo - - - Carbovario - - - Carcandola / Carcandula - Sarzana - - - Carersto - - - Caria - - - Caricino - - - Carnea - Carnea - Follo - - - Carola - - - Carpena/Carpina - Carpena - Bolano - - - Carpeneta - - - Carpeneto - - - Carpenetulo - - - Carraria - Carrara - Carrara - - - Casalechio - Carrara - nei pressi di Carrara come da doc. n. - 274 - - - Casaliclo / Casaleclum - - - Casapoci/Casaposi/Casapoli - Castelpoggio - Carrara - Identificazione con Castelpoggio proposta sulla base del REPETTI_1846, I, p. 580. - Segnalazione di Sergio Mussi. - - - Casavetri - - - Casella - - - Casine - - - Cassiola - - - Castagneto - Sarzana - - - Castagneto Plano - - - - Castagnetulo - - - Castagno - - - Castellano - - - Castello - - - Castellum Aginulfi/castrum Aginulfi - Castello Aghinolfi - Montignoso - - - Castello Radaldo - - - Castelnuovo - - - Castrum Novum de Barci/de Barzi - Fivizzano - - - Castelnuovo/Castrum Novum - Castelnuovo Magra - Castelnuovo Magra - - - Castilione - - - Castillione de Varese - - - Capanana - - - Castangna Robbia - Carrara - - - Cavallo - - - Cazacane - - - Cazano / Caçano / Cacano - - - Cepparana - Ceparana - Bolano - - - Ceppata - - - Ceppato - - - Cergnano - - - Cernetorio/Cernitoris - Fosdinovo - - - Cernitere - - - Cerreto - - - Cerro Alto - - - Cerro Suvero - - - Cervaria/Cervara - - - Cervarolo - Sarzana - - - Cesari - - - Cisirano/Ciçerano - Ceserano - Fivizzano - - - Cetulo - - - Chisicto - - - Cignano - - - Cirisolo - - - Clarella - - - la Cobia - - - Cobiata - - - Codena / Codano / Codana - Codena - Carrara - - - Codesorbo - Fosdinovo - - - Codesorbolo - - - Colignolo - Fosdinovo - - - Colimento/Colintenti - Fosdinovo - forse identificabile con l'attuale Colletto, nel comune di Fosdinovo - - - Colinezolo - - - Coliusciola - - - Colla - Fosdinovo - - - Colle - Fosdinovo - - - Collecchia/Collicclum/Collechio - Fivizzano - - - Colle de Gragnana - - - Colle de Marci - - - Colle Mezaitum - - - Collentento - - - Colli - - - Colmezano - - - Colognola - Colognola - Fivizzano - - - Columnata - Colonnata - Carrara - - - Comum - Como - Como - - - Conano - - - Concula - - - Congia - - - Consi - - - Contebono - - - Corano - - - Corchiola - - - Corfeciano/Corfezano - - - Cornilio - - - Cornilione - - - Corsetula - - - Cortiola / Certiola - - - Corvaia - Serravezza - - - Corvaxana - Fosdinovo - Toponimo collocabile tra Falcinello e Ponzanello, da legarsi probabilmente - alla curte de Curvasano nominata nel diploma di Ottone I del 963 (GENTILE 2000, p. 7-8). - - - Corvo - Ameglia - - - Costa - - - Costancia - Kostanz - Baden-Württemberg - - - Cothalo - - - Cremona - Cremona - - - Cropale - Groppoli - Pistoia - - - Cruce - Fosdinovo - - - Çuchi - - - Cuna - - - Çunseto - - - Cuscugnano - - - Cute - Fosdinovo - - - Dallo - - - Debia - - - Debicoe / Debbice / Debioce - forse Debicò nei pressi di Soliera (suggerimento di Stefano Landini) - - - Deblola - Fosdinovo - - - Dies - Diez - Rheinland-Pfalz - - - Draggiare - - - Dremone - - - Ecclesia Nova - Chiesanuova - Levanto - - - Erberia/Herberia - - - Fabiano - La Spezia - - - Falcinello - Sarzana - - - Fano - - - Fatorense - - - Faucem de Montorbolo - - - Favale - - - Fayto - Fosdinovo - - - Façeto - Fosdinovo - - - Felegaria - - - Felicina/Filicina - - - Felicta/Feletta/Felecta - - - Ferrata - - - Feschalino - - - Ficaro / Ficario - - - Ficola / Ficula - - - Ficolungo - - - Ficortiçola - Fosdinovo - - - Figadia - - - Finili - - - Fivizano/Fiveçano - Fivizzano - Fivizzano - - - Fliolino - - - Florino - - - Flumine - - - Flumeneço - Carrara - - - Follo - Follo - Follo - - - Fontana - - - fontana Romana - - - Fontanella - - - Fonte - - - Fontenella - - - Fonti/Fonci/Functi - Carrara - nei pressi di Carrara come da documento n. 274 - - - Fonticlo - - - Fontola - - - Forano - - - Foravino - - - Foresto - - - Formicoso / Formicosa - - - Fornoro - - - Fornolo - Sarzana - - - Fosdinovo/Fosdenova/Fauce Nova/Faucenova - Fosdinovo - Fosdinovo - - - Fossa Ceca - Fosdinovo - - - Fossa Lupara - Fosdinovo - - - Fossato - - - Fotigero - - - Frederciana - - - Fridiano - Carrara - - - Furno - - - Garfagnana - Garfagnana - - - Gassano - Gassano - Fivizzano - - - Genestitulo - - - Genestulo - - - Germagnano - - - Gezo - - - Iuccano - Giuncano - Fosdinovo - - - Gnaulo - - - Graçano - - - Gragnana - Carrara - - - Gragnano - - - Gragnola - Fivizzano - - - Grazano / Graçano - Carrara - - - Gropario - Sarzana - - - Gropo - - - Groppino de Lutignano - Carrara - nei pressi di Carrara come da doc. n. - 274 - - - Groppo Talliato - Carrara - nei pressi di Carrara come da doc. n. - 274 - - - Groppolo - Groppolo - Bolano - - - Gropolo - - - Guaraçano - - - Guado de Insula - - - Guardia - - - Guecçola - Fosdinovo - - - Guerceta - - - Guercia - Carrara - - - Ianua - Genova - Genova - - - Illano Pontis - - - Iovello - - - Isola / Ysola / Insula - Nei documenti medievali della Lunigiana si trovano più luoghi chiamati - Isola - Ysola ad esempio presso Ortonovo, vicino ad Ameglia e - sulle colline della Spezia. - - - Isolella - - - Istria - Istria - Istria - - - Lacanova - - - Lacapanna - - - Lamura - - - Langolo - - - Lanigra - - - La Sallica - - - Lasoro - - - Lavadarium - Carrara - - - Leschemunde - Burgstall Lechsend / Lechsgemünd - Donau-Ries - - - Levacastello - - - Lignaro - Legnaro - Levanto - - - Lilice - Lerici - Lerici - - - Limite - - - Linari - - - Lintignana - - - Lorano - - - Losio - - - Lotignano / Lutignana / Lotignana / - Lutignano - - - Luca - Lucca - Lucca - - - Lucia - - - Lucio - - - Luna/Luni - Luni - Ortonovo - - - Lunesana - Lunigiana - - - Lupura - - - Magnano - - - Macra / Magra - Magra - La Magra è il principale fiume della Liguria per portata media alla foce, - nasce tra il Monte Borgognone ed il Monte Tavola e scorre tra Toscana e Liguria - bagnando le province della Spezia e di Massa-Carrara. - - - Malliano - Magliano - Fivizzano - - - Malliola - Bolano - - - Mandria - - - Mandriale - Fosdinovo - - - Mandrola - - - Matiçola - - - Marciano - Fosdinovo - - - Marciaso/Marçasio - Marciaso - Fosdinovo - - - Maretema / Maretima - - - Margubio - - - Marlamoça - Lerici - - - Marmore - - - Marola - Marola - La Spezia - - - Marola de Predore - La Spezia - - - Marnasco - - - Marossa - - - Marzano/Marçano - - - Marzeno - - - Maruco - - - Masio - - - Massa - Massa - Massa - - - Materia - - - Matrono / Mathono - La Spezia - - - Mediolano - Milano - Milano - - - Melaro - Carrara - - - Mezana - - - Mezana - Lerici - - - Micoria/Micoarria - Ortonovo - - - Miliaciola / Milliacia - - - Minizano - - - Minuçano - Minucciano - Minucciano - - - Miro - Sarzana - - - Miselia - Miseglia - Carrara - - - Mitifoci - - - Molino - - - Mommio - Mommio - Fivizzano - - - Monasterium - Münster - Nordrhein-Westfalen - - - Moncigoli / Monciculi / Monciculo / Monte - Ciculo - Moncigoli - Fivizzano - - - Moneta - Moeta - Castelnuovo Magra - - - Montale - - - Monte - Sarzana - - - Montexello - - - Monte Bello - Montebello - Bolano - - - Monteclo / Montecchio / Monceto - Montecchio - Castelnuovo Magra - - - Montedarmo - - - Monte Franci - - - Monte Franzo - - - Monte Forca - Il Monte Forca, già citato dal REPETTI - 1846, I p. 486, va identificato con l'attuale Monte Pizzacuto secondo il - CONTI 1976. - - - Monte Ianni/Monteçanne - - - Monte Iudice - - - Monte Leone/Monleone - Fosdinovo - - - Monte Libero - Monte Olivero - Carrara - - - Montemarcello - Montemarcello - Ameglia - - - Monte Martili - - - Monte Orbulo - - - Monte Raso - - - Monte Rossolo - - - Monteserino - - - Montevallese/Monte Vallese - - - Monteverde - Carrara - - - Monti - - - Montia - - - Montirone - Sarzana - - - Montorbo - Fosdinovo - - - Montorbolo - - - Monçolono - - - Monzone/Munzone/Monçone - Monzone - Fivizzano - - - Moritiola - - - Mulathuso - - - Mulnato - Carrara - nei pressi di Carrara come da doc. n. - 274 - - - Neapolis - Napoli - Napoli - - - Natara - - - Nava/Nave - Nave - Sarzana - - - Navola - Fosdinovo - - - Naçano - Carrara - - - Neblone/Nibiono - Fosdinovo - - - Nicola - Nicola - Ortonovo - Micoarra-Nicola. Nel VII secolo Giorgio di Cipro nella Descriptio - orbis romani, trattando delle fortificazioni della zona nella pianura - lunense e aree limitrofe, cita il kastron di - Mikaurìa, che Ubaldo Formentini (FORMENTINI 1936) ha identificato nell’attuale abitato di - Nicola (Ortonovo). Nel Codice Pelavicino il toponimo Micoria - Micoarra si - trova in due atti, rispettivamente del (1096 e del (1226, mentre il - toponimo Nicola è già attestato in uso nel 1219: questa apparente - contraddizione ha spinto Mario Niccolò Conti (CONTI 1960) ha criticare l’ipotesi, che tuttavia è stata - confremata da ulteriori studi (GENTILI 1988 e ZOPPI - 2008). - - - Niça - - - Nirono - - - Nizola - - - la Noce - - - Noceto - Noceto - Carrara - nei pressi di Carrara come da documento n. 274. - - - Occara - - - Oletto/Oleto - - - Oletulo - - - Oliveto - - - Olivetoaimo Sopoçio - Sarzana - - - Olivola - Olivola - Aulla - - - Oratorio - Oratoio - Pisa - - - Orbagnanno/Orbagnano - - - Ortale - Fosdinovo - - - Orto - - - Ortomorano - Carrara - - - Ortonovo - Ortonovo - Ortonovo - - - Ortoriano/Toriano - - - Oserone/Isolone - Si tratta probabilente dell'attuale torrente Isolone (MS-SP), che nasce dal - monte La Foce presso Fosdinovo e affluisce nel Magra a sinistra presso la - foce. - - - Padule/Palude - - - Palanceta - - - Pallaroso/Palleroso - - - Palmerie - - - la Palmia - Ameglia - - - Pannesa - - - Panicale / Panigale - Panicale - Licciana Nardi - - - Pantaleo - - - Parentore - - - Parma - Parma - Parma - - - Parmignola - Torrente, scorre nelle province di Massa Carrara e La Spezia. Nasce dal - monte Pizzacuto col nome di torrente Iara. Sfocia nel Tirreno a - Marinella. - - - Parsano - - - Passana - - - Passano / Paxano - Passano - Deiva Marina - - - Pastena - - - Paternulo/Paterno - Paterno - Sarzana - - - PecteCavallino - Fosdinovo - - - Pectenato - - - Pegaçano - - - Pegazana - Paghezzana - Fosdinovo - L'identificazione tra Pegazana e Paghezzana è stata suggerita da Giorgio - Saporiti (che ringraziamo), sulla base della seguente bibliografia: FORMENTINI 1953, p. 7; PISTARINO 1961, p. 112. - - - Pera - - - Peravulpe - - - Perbeçola - - - Peretolo - - - Peroza - - - Pesiola - - - Petra Cava - Fosdinovo - - - Petrognano/Perrognano - Petrognano di Carrara - Carrara - - - - Placentia - Piacenza - Piacenza - - - Piazo - - - Picaro - - - Picceta - - - Piculo / Piçolo / Piciolo - - - Pignoto - - - Pilla - - - Pilloto - - - Pira - - - Pisa - Pisa - Pisa - - - Pistoria - Pistoia - Pistoia - - - Pizone - - - Plaça/Plaza - - - Planello de Casalina - - - Plano - - - Platia - - - Platula - - - Plaula - - - Plastra - - - Plazio - - - la Plebe - - - Plolo - - - Poçio de Castronovo - - - Podio - - - Podio de Luca - Lucca - - - Pogio - - - Polo - - - Polverara - - - Ponciano - - - Poncisone - - - Ponte di Carrara - - - Ponte Cimatico - Pontecimato - Carrara - - - Pontesella - Pontesella - - - Ponte Tecto Lucano - Pontetetto - Lucca - - - Pontremulo - Pontremoli - Pontremoli - - - Ponzanello/Ponçanello - Ponzanello - Fosdinovo - - - Ponchano / Ponzano / Ponciano - Ponzano Magra - Santo Stefano - - - Poppio/ Popio - - - Porcaria - - - Porchano - - - Porcilliola - - - Porencario - - - Porreto/Poreto - - - Porta - - - Portesone / Portasione / Portexono - - - Portoverio / Portus Veneris - Portovenere - Porto Venere - - - Pasa - - - Posticio - Fosdinovo - - - Posticio de Fontola - - - Povici - - - Pozio - - - Pozzo - - - Prata - Fosdinovo - - - Prato - - - Pratesiana - - - Preiutese - - - Propezo - - - Puleca - Pulica - Fosdinovo - - - Pullola - Pugliola - Lerici - - - Pusterla/Pustella - - - Puzolo - - - Quaragiota / Quaroçola - - - Quarrapane - - - Querca - - - Querceto / Guerceto - - - Querçola - Fosdinovo - - - Raboi - - - Ramaro - - - Rapugnana - - - Regnano - Regnano - Casola di Lunigiana - - - Rezola - - - Ripa d'Arno - Pisa - - - Rio - - - Riolo - - - RiodeVeste - - - Rivo - - - Rizola - - - Roasia - - - Robbiano/Robiano - - - Rofiano - - - Roma - Roma - Roma - - - Romola - Fosdinovo - - - Ronciliolo - - - Roncio - - - Rosarolo - - - Roselmino - - - Rosetulo/Rosseculo - Fosdinovo - - - Rosiano - - - Roza - - - Roncaglia - - - Ruffino - - - Sala - - - Saleceto - - - Saletto - - - - Salungnolo - - - Sancto Miniato - San Miniato - San Miniato - - - Sancto Terencio - Bardine di San Terenzo - Fivizzano - - - Sancto Vitale - - - Santa Maria Monte - - - Sancto Martino - - - Sancto Paolo - - - Sancto Petro - - - Sancto Stephano - Santo Stefano - Santo Stefano - - - Saniconcula - - - Sansile - - - Santomeniaco - - - Sarzana - Sarzana - Sarzana - - - castrum Sarzane - Sarzanello - Sarzana - - - Savia - - - Scara - - - Schiaretulo - - - Sclogneto Veclo - - - Scoriso - - - Scusia - - - Secalaro Subtano - Fosdinovo - - - Segalaria - - - Selvaricia - - - Serra - la Serra - Lerici - - - Serra - Fosdinovo - - - Serram Treçanam - Fosdinovo - - - Serraursi - - - Serravalle / Seravalle - - - Serrade Vecheto - Fosdinovo - - - Sertulo - Fosdinovo - - - Setalaro - Fosdinovo - - - Sevino - - - Silva Maiori - - - Sischia - - - Solario - - - Soleria - Soliera - Fivizzano - - - Soleria de Luna - - - Somo Foresto - Montemarcello - - - Surano - - - Sorbolo - - - Sorbolo Suprano - - - Sorgnano - - - Sorolo - - - Spedizano - - - Sporliano - - - Spuliçano - - - Stanca Caballo / Stancavallo - Fosdinovo - - - Stabio / Stabulo - - - Stazone - - - Strata Romea - - - Succisa - Santo Stefano - - - Suevia - Svevia / Schwaben - Svevia / Schwaben - - - Summo Fonti - - - Summo Lama - - - Summo Prato - Fosdinovo - - - Summo Tranci - - - Summo Vico - - - Supra Luna - - - Supravia - - - Susano - - - Suvero - - - Tapillionica - Fosdinovo - - - Tavola - Fosdinovo - - - Tebiola - Fosdinovo - - - Tendola - - - Terrachium / Torrachium - Luni - - - Terrarossola - - - Terre dei Bianchi - - - Terria - - - Thufara / Tufara - - - Ticçano - - - Tillia - - - Tilloia - - - Tivenia - Tivegna - Follo - - - Torano / Turano - Torano - Carrara - - - Toreclo - - - Torgnano - - - Torrecla - - - Torsella - - - Tortiliano - - - Traversara - - - Trebiano - Trebiano - Arcola - - - Treponçum/Trepuncio - Carrara - localiotà oggi scomparsa ma posta tra la zone di Marinella (Ortonovo) e - Carrara, presso la costa, come si vede da una mappa databile tra i secoli XVII - e XVIII conservata nell'Archivio di Stato di Genova (Pianta o sia tipo - per i confini fra Ortonuovo e Castelnuovo fra i territori di Massa e Sarzana - (XVII - XVIII) dove si vede un fabbricato e il toponimo - l'antiqua Traponcio.. Si ringrazia Sergio Mussi per la - segnalazione. - - - La Trina - - - Trulliano - - - Fontana - - - Ulmeta - Rometta - Fivizzano - - - Ulmeto - - - Urciola - - - Utiola - - - Valcava - - - Valdonica/Valdonega - - - Valença - - - Valerano / Vallerano - Valeriano Lunense - Vezzano Ligure - - - Valle - - - Valle Stephani - - - Valechia/Vallecla - Vallecchia - Pietrasanta - - - Valechia/Vallecla - Vallecchia - Castelnuovo Magra - - - Valentino - - - Valli / Valle - - - Valmaiore - Fosdinovo - - - Valmori - - - Valmoro - - - Valpata - - - Valporcara - - - Vechieta Suprana - - - Velleia - Lugagnano Val d'Arda - - - Venelia - Venelia Monti - Licciana Nardi - - - Ventura - - - Verazano - Lerici - - - - Vernaccio / Vernatio - - - Venicula Bosorum/Verrucola - Bosorum/Verrugula - Verrucola de'Bosi - Fivizzano - - - Veçale - Vezzala - Carrara - - - Vexana/Vafana - - - Vexano/Vezano - Vezzano - Vezzano Ligure - - - Via - - - Viano/Veiano - Viano - Fivizzano - - - Viciale / Veçiali / Veçiale - - - Vico - - - Vignola - Vignola - Fivizzano - - - Villiano - - - Virgareto - - - Vitea - - - Voldano - - - Volpara - - - Volpilione - Volpiglione - Ortonovo - - - Vulporio - - - Xago - - - Xerbio - - - Ylice - Lerici - Lerici - - - Yliolo - - - Zucheto - - - Çugnaco - - - - - - - - Istituti religiosi - - Cappella di Caprognano - Chiesa di cui non si conosce titolazione né collocazione. A Caprognano - (comune di Fosdinovo, provincia di Massa Carrara) è attestato un oratorio - dedicato a S. Lucia, ma edificato nel XVII secolo. Bibliografia: FRANCHI LALLAI 2000, II, p. - 65. - - - Cappella di Vallecchia - Chiesa di cui non si conosce titolazione né collocazione entro l'abitato di - Vallecchia (comune di Castelnuovo Magra, provincia di La Spezia) - - - S. Andrea Apostolo di Carrara - Chiesa plebana di Carrara attestata per la prima volta nel maggio 1099 (ASLU SF). Bibliografia: FRANCHI LALLAI 2000, I, pp. - 177-185; BUSELLI 1972; BERTOZZI 1989. - - - S. Andrea diFabiano - *** - - - S. Andrea di Sarzana - Chiesa attestata con certezza la prima volta il 3 giugno 1137 (ASLU SF), poi elencata come pieve nella - bolla di Egugenio III del 1148 e nelle bolle - successive. Gli studiosi non sono concordi nello stabilire quando la chiesa - avrebbe assunto il ruolo di pieve ripsetto alla vicina pieve di S. Maria di - Sarzana. Bibliografia: FRANCHI - LALLAI 2000, I, pp. 187-194; FORMENTINI 1951; CONTI 1963; PISTARINO - 1961a, p.25; BONATTI - RATTI 1991, p. 14. - - - S. Bartolomeo di Ceserano - Chiesa attestata per la prima volta nelle Decime Bonifaciane del 1296/97 - (PISTARINO 1961a , p. 81) - come cappella de Cisirano sotto la pieve di Soliera; non è chiaro - quando sia attestata per la prima volta la titolatura (FRANCHI LALLAI 2000, II, p. - 151). - - - S. Basilio di Sarzana - Chiesa cattedrale e pieve attestata per la prima volta nella bolla di Egugenio III del 1148 e nelle bolle - successive. Gli studiosi non sono concordi nello stabilire quando la chiesa - avrebbe assunto il ruolo di pieve rispetto alla vicina pieve di S. Andrea di - Sarzana. Nel 1204 vi si trasferì la sede episcopale, fatto che determinò - probabilmente la titolazione alla Madonna e la progressiva decadenza della - titolazione a S. Basilio. Bibliografia: FRANCHI LALLAI 2000, I, pp. 187-194; FORMENTINI 1951; CONTI 1963; PISTARINO 1961a, p.25; BONATTI RATTI 1991, p. - 14. - - - S. Caprasio di Aulla - Monastero di S. Maria e S. Caprasio ad Aulla (MS) fondato nell'884 con la - titolatura alla Madonna a cui si aggiunse quella a Caprasio probabilmente tra X - e XI secolo. Nel 378 venne trasformato in commenda secolare di collazione dei - Malaspina. Trasformato nel 1817 in parrocchia col titolo di prepositura. - Bibliografia: BASSI 1927; MUSSI 1946; FORMENTINI 1955; PISTARINO 1983; PISTARINO 1986; RICCIG 1986 - RICCIG 1989a; FRANCHI LALLAI 2000, - pp.291-294. - - - S. Croce del Corvo - Monastero fondato dal vescovo di Luni Pipino nel luogo in cui sarebbe - approdato il Volto Santo; venne ceduto nel 1186 dal vescovo Pietro - al monastero di S. Michele di Orticaria di Pisa. I monaci lo abbandonarono alla - metà del XIV secolo per trasferirsi nella cappella dipendente di S. Croce. Nel - 1453 papa Niccolò V annesse la chiesa di S. Croce e S. Nicodemo del Corvo con - tutti i suoi bene al Capitolo della cattedrale di Sarzana. Bibliografia: MAZZINI 1970; FRANCHI LALLAI 2000, - pp.192, 202. - - - S. Croce alla Foce dell'Arno - Ospedale e monastero cistercense presso Pisa, alla foce dell'Arno. - Bibliografia: COLOMBINI - 2010. - - - - S. Frediano a Lucca - Chiesa oggi in stile romanico ma edificata su un luogo di culto precedente - che la tradizione fa risalire allo stesso San Frediano, presbitero irlandese - eletto vescovo di Lucca tra il 560 e il 588. Intorno all chiesa si raccolse una - comunità di canonici. Nel 1104 papa Pasquale II confermò i canonici affidandoli - al clero di San Giovanni in Laterano. Bibliografia: COTURRI 1974 - - - S. Leonardo al Figido - Sorto nel luogo dove più autori collocano la stazione di età antica di - Taberne frigide o Taberna frigida nella - Tavola Peutingeriana si veda REPETTI 1846, I, pp. 346, 680; SFORZA - 1878; FORMENTINI 1949, pp. - 16-189). Nel 1950 alcune ricerche archeologiche hanno portato al rinvenimento, - nell’area antistante l’attuale chiesa di S. Leonardo, di tre selciati romani - sovrapposti, fondazioni murarie e frammenti di lapidi romane e medioevali - ( LEVEROTTI 1982, p. 112), l’ospedale - medievale serviva di appoggio all’unico ponte che attraversava il fiume - Frigido in pianura (LEVEROTTI 1982, p. - 111). È ricordato per la prima volta da una cronaca inglese che descrive il - ritorno dalla terza crociata di Filippo Augusto nel 1191 (per Seint - Leonard; MGH_SS_XXVII p. 131). - Nel XIV secolo è di pertinenza dell’Ordine di S. Giovanni di Gerusalemme, ma - non è certo se agli stessi cavalieri gerosolimitani si debba ascrivere anche - la sua fondazione. Per Ubaldo Formentini la risposta al quesito deve essere - positiva: lo proverebbe il fatto che le sculture del portale della chiesa - annessa all’edificio ospedaliero, oggetti attualmente conservati al - Metropolitan Museum of Art di New York, sono opera di maestro - Biduino, artista della seconda metà del XII secolo, che ha decorato con le - medesime scene scolpite a S. Leonardo (in particolare l’entrata trionfante - di Cristo a Gerusalemme) un bassorilievo della pieve di san Casciano nel Val - d’Arno pisano. Formentini suppone che le murature della chiesa possano essere - state ordinate direttamente dal priorato degli Ospitalieri di Pisa a questo - stimato artista. Si deve tuttavia notare che secondo Bertozzi le sculture del - portale, databili intorno al 1175-1180, stridono con l'impianto - architettonico della chiesa, che sembra anticipare a prima del X la sua - edificazione, mentre secondo l'archeologo Quiros Castillo queste potrebbero - appartenere all'XI (AMBROSI - BERTOZZI MANFREDI 1989 , p. 42; Juan Antonio Quiros Castillo, che - ringraziamo, ha espresso la sua opinione verbalmente, in forza della sua - ormai lunga esperienza di scavi medievali nell'area lucchese e lunigianese). - Entrambe le datazioni, comunque, precedono uno o due secoli gli anni di - attività di maestro Biduino: quindi si deve ritenre che la fondazione - dell'ospedale sia da anteporsi a quella della decorazione del portale. Quanto - alla committenza gerosolimitana è solo ipotetica. L'ospedale di S. Leonardo, - tuttavia, è attestato nelle decime bonifaciane, nell’estimo di Massa Lunense - del 1398-1401, fino all’estimo della Chiesa di Luni del 1470-71 come ente - esente, quindi era indubbiamente gestito, fin dalla fine del XIII secolo, da - un ente diverso dal vescovato o dalla canonica di Luni. Dal punto di vista - documentario solo un testo del 1333, frammento di un catasto dei beni - dell’Ordine ospitaliero di Gerusalemme, fornisce la prima prova certa - dell’appartenenza della struttura ai gerosolimitani. Il frammento elenca - tutte le pertinenze dell'ospedale, beni che trovianmo ancora numerosi - nell'estimo della vicaria di Massa del 1398-1401 (LEVEROTTI 1974, III, pp. 626-635; le - proprietà del 1333 sono state esaminate da POGGI - 1957). Nel 1433 la chiesa e l’ospedale di S. Leonardo e la cappella di - S. Margherita di Montignoso ad esso pertinente, erano amministrati da frate - Ludovico degli Enrighini dell’Ordine gerosolimitano della commenda di - Pontremoli, sottoposto al priorato di Pisa. Nel corso del XV secolo la - giurisdizione dell’Ordine sull’ospedale e le due chiese di Massa e di - Montignoso fu contestata dai monaci olivetani di san Venerio del Tino, che - identificarono erroneamente S. Leonardo con il loro distrutto ospedale di S. - Maria Maddalena de Cerbaria. I monaci vinsero la causa e ottennnero il - controllo della struttura e dei suoi beni fino al 1773 quando li cedettero a - Domenico Ricci di Sarzana, provvisioniere dei soldati modenesi (SALVATORI 2001). - - - S. Leonardo in Padule - Ospedale ai piedi del colle di Castelnuovo, tra Luni e Sarzana, nella - località detta ancora oggi Ospedale. Attestato per la prima volta - nel marzo 1151 quando il vescovo di Luni donò l’ospedale in capite - paludis, con la cappella di san Leonardo, ai canonici di S. Frediano - a Lucca, insieme all'ospedale di Monte Forca (ASLU SF 11 marzo 1151). Entrambi gli ospedali rimasero - alle dipendenze di S. Frediano fino al 1204, dopo di cui le loro vicende si - diversificarono. Nel 1204 il vescovo di Luni cedette la chiesa di S. Pietro di - Avenza ai canonici di san Frediano per recuperare l’ospedale di S. Leonardo - (ASLU SF 1204 agosto 23). Anche se - nel documento in questione l’ente è detto semplicemente ecclesia Sancti - Leonardi de Padule l’ospedale doveva ancora sussistere: lo prova il documento di un solo anno anteriore in cui - il vescovo di Luni affittava terre presso l’hospitale de Palude. - Bibliografia: FERRARI 1912, p. - 25; PISTARINO 1961a, p. 50; - CONTI 1976 ; FRANCHI LALLAI 2000, I, pp. - 141-142 e 180-181. - - - S. Lorenzo di Paghezzana - Secondo PISTARINO 1961a la - cappella di Paghezzana è citata nelle collette del 1269 come capella de - Pegaciana e in quelle del 1298/99 come capella de - Pegaçiana. La prima attestazione pare sia de 1211 (LUPO GENTILE 1912, n. 504. - Apparteneva al Capitolo della Cattedrale. Dovrebbe corrispondere all’odierno - oratorio di Santa Burlanda, nella valle della Calcandola. Bibliografia: FORMENTINI 1953 a p.7); PISTARINO 1961a, p.146 nota 3). - Contributo di Giorgio Saporiti che ringraziamo. - - - S. Maria Assunta di Soliera - Chiesa plebana attestata per la prima volta nel - 998, si trovava nel centro dell'abitato dio Soliera ma venne demolita - alla metà del XX secolo e ricostruita in posizione diversa. Bibliografia: FORMENTINI 1970; MANFREDI 1989; RICCI G. 1989; FRANCHI LALLAI 2000, - pp.272-275. - - - - S. Maria di Luni - La cattedrale di Luni, matrice di tutte le chiese dell'omonima diocesi, ha - lasciato tracce archeologiche di età paelocristiana e bizantina; la notizia - documentaria più antica risale tuttavia all'879; nel 1204 la sede episcopale si - trasferì nella chiesa di S. Maria di Sarzana. Bibliografia: FRANCHI LALLAI 2000, I, pp. - 187-194; LUSUARDI SIENA - 2003 - - - S. Maria Assunta di Parma - *** - - - S. Maria di Pontetetto - Ospedale suburbano di Lucca. Si veda REPETTI 1946, I, p. 538. - - - S. Maria di Sarzana - Chiesa cattedrale e pieve sorta sull'area e sulle strutture dell'antica - pieve di San Basilio. In quanto pieve è attestata per la prima volta nella bolla di Egugenio III del 1148 e nelle bolle - successive. Gli studiosi non sono concordi nello stabilire quando la chiesa - avrebbe assunto il ruolo di pieve rispetto alla vicina pieve di S. Andrea di - Sarzana. Nel 1204 vi si trasferì la sede episcopale, fatto che determinò - probabilmente la titolazione alla Madonna e la progressiva decadenza della - titolazione a S. Basilio. Bibliografia: FRANCHI LALLAI 2000, I, pp. 187-194; FORMENTINI 1951; CONTI 1963; PISTARINO 1961a, p.25; BONATTI RATTI 1991, p. - 14. - - - S. Martino di Iliolo - Cappella dipendente dal capitolo della Cattedrale, oggi S. Martino di Casano - nel comune di Ortonovo. Si veda FRANCHI LALLAI 2000, I, pp.50, 141, 144, 337, 375 e II pp. - 54-56. - - - S. Martino di Ponzanello - cappella attestata per la prima volta nel 1255come ecclesia nova, ossia costruita o ricostruita da - poco; poi nelle Decime Bonifaciane della fine del XIII secolo. Bibliografia: - FRANCHI LALLAI 2000, - II, p. 67. - - - S. Martino di Viano - La pieve di Viano, intitolata a san Martino, è attestata per la prima nel - 1140 e poi nelle bolle pontificie di conferma al vescovo di Luni. sorge isolata - nel comune di Fivizzano in località Pieve di Viano. Bibliografia: - FRANCHI LALLAI 2000, - I, pp. 268-271. - - - S. Maurizio - Cappella e ospedale posti alla foce del Magra, prima appartenenti - alL’abbazia di San Venanzio di Ceparana e poi donati nel 1189 all'ospedale - pisano di Santa Croce a Bocca d’Arno. Bibliografia: AMBROSI 1992; FRANCHI LALLAI 2000, pp. 48., 51, 139-140. - - - S. Michele di Montecchio - Chiesa oggi scomparsa nell'abitato di Montecchio, ora comune di Castelnuovo - Magara (SP). - - - S. Michele di Trebiano - Pieve di Trebiano, attestata per la prima volta dalla bolla di Eugenio III - del 1148. Bibliografia: FRANCHI - LALLAI 2000, I, p. 201-205. - - - Ospedale di Monte Forca - Ospedale posto circa un chilometro sopra Castelpoggio vicino al valico detto - La Maestà sulla via che congiungeva la valle del torrente Carrione con quella - del Bardine.Dipendente inizialmente dal vescovo di Luni, nel 1151 venne da - questo ceduto a S. Frediano di Lucca insieme all’ospedale di S. Leonardo - in capite paludis. Rimase alle dipendenze del monastero lucchese fino - al 1204. pare attestato ancora nel 1218. Bibliografia: FRANCHI LALLAI 2000, I, p. - 180; CONTI 1976 - - - - S. Pacrazio - cappella dipendente dall'ospedale di Monte Furca, localizzazione - ignota. - - - S. Paolo a Ripa d'Arno - Chiesa, monastero e ospedale a Pisa. Bibliografia: STIAFFINI 1983. - - - S. Paolo - Pieve attestata per la prima volta nella bolla di Eugenio III del 1148, si - trova anche oggi in posizione isolata nella località Pieve di San - Paolo nel comune di Fivizzano presso il borgo di Vendaso - Bibliografia: FRANCHI LALLAI - 2000, I, pp. 276-279. - - - S. Pietro - ente religioso non identificato, forse S. Pietro di Luni. - - - S. Pietro di Luni - Chiesa oggi scomparsa ubicata fuori dalle mura settentrionali di Luni, nella - località oggi detta San Pero. Bibliografia: DADA 2012, pp. 69-75 - - - S. Pietro di Avenza - cappella attestata per la prima volta nel 1187. Bibliografia: FRANCHI LALLAI 2000, II, p. - 39. - - - S. Sebastiano alle Fabbriche Maggiori - chiesa pisana, attestata dal 1074, si trovava nell'attuale piazza dei - Cavalieri. Bibliografia: GARZELLA - 1991, pp.*** - - - S. Sila - ente religioso non identificato - - - S. Sisto di Monte Forca - cappella dipendente dall'ospedale di Monte Furca, localizzazione - ignota. - - - S. Stefano di Magra - *** - - - S. Terenzo - Cappella dell'omonima località di S. Terenzo al Bardine, pieve di Viano, - oggi comune di Fivizzano. La prima attestazione è incerta: un tale Transualdo - nel 728 o 729 fonda una chiesa dedicata a San Terenzio in Vico - Coloniensis, che Pier Maria Conti (CONTIP 1967, p. ***) identifica con San Terenzo nella - valle del Bardine; nel 981 Ottone II conferma al vescovo di Luni - ecclesiam Sancti Terentii in loco qui dicitur Carrellia che Ubaldo - Fomentini identifica con S. Terenzo al Bardine, ma che Romeo Pavoni ritiene - essere la cappella di Careola, presso Pontremoli (PAVONI 1987, p. 33). - - - S. Venanzio di Ceparana - Abbazia benedettina di S. Venanzio di Ceparana, i cui resti sono attualmente - inglobati nel complesso architettonico del palazzo Giustiniani, edificato nel - XVIII secolo. Bibliografia: CAVALLI GHERARDI 1975-76, POLONIO 1979, BONATTI 1984, BONATTI - 1986, VECCHI 2003, BALDASSARRI ANDREAZZOLI - 2005. - - - S. Venerio - *** - - - S. Vincenzo di Ameglia - chiesa plebana di Ameglia, nominata per la prima volta nella bolla di - Eugenio III del 1148. Bibliografia: FRANCHI LALLAI 2000, I, pp. 201-203. - - - S. Vitale - ente religioso non identificato, forse pieve di S. Vitale presso - Massa. - - - S. Vto di Marola - *** - - - - - - -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- - -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- - -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
- -
- (S.T.) - - -
-
-
- -
-
-
- - - - - - - - - - - - - - - 118 - CI - - - 1212 aprile 2-3, - Sarzanello (in palatio castri de - Sarzana). - - -
-

Il vescovo di Luni Gualtiero, col consiglio di Gerardo visdomino del fu Alberto, - conferma e rinnova agli operarii della corte di - Sarzana - nominalmente elencati - alcune concessioni fatte dai suoi predecessori - Alberto e Pipino. Nella concessione precedente, fatta dal vescovo Pipino e - redatta dal notaio Bartolomeo, si stabiliva che nessuno fosse costretto a - ricevere le tasse relative alla caneva, alla castaldia e alla iscaria, a meno che non lo desiderasse e a patto che uno di loro - fosse una volta all’anno iscarius, ricevendone in - cambio un feudo. I diritti di placitum, districtum, offensiones e amasiamenta rimanevano - del vescovo e gli operarii erano tenuti a dare - venti moggi di frumento all’anno alla caneva o al - granaio e cento congi di vino al palmento e lavorare le bradie e il cafadium, dando metà dei - frutti alla curia e consegnandoli alla caneva. Il - vescovo doveva dare agli operarii gli animali in - soccida e, nel caso non avesse bestie, doveva concedere solo la terza parte - delle bradie, col patto che, se ne facevano le - stoppie, dovevano consegnarne la terza parte. Gli operarii dovevano inoltre portare il fieno del prato al fienile, - mangiando due volte al giorno pane di frumento, vino e formaggio, e dovevano - prendere pane e vino, carne, granaglie e biade dalle corti di Soliera, Bolano, - Carrara, Luni per portarle a Sarzana o ad Ameglia, mangiando una volta al - giorno. In casi peculiari dovevano fare questa raccolta per tutta la diocesi e, - nel caso fossero fatte richieste alle comunità, anch’esse dovevano - parteciparvi.

-

A differenza del patto precedente Gualtiero stabilisce che gli obblighi relativi - al fieno e al recupero di beni dalle corti sopra elencate vengano meno. Il - pagamento annuale viene modificato in ventitre moggi, calcolando venti staia per - moggio alla misura corrente dello staio, da consegnarsi nel mese di agosto; i - congi di vino rimangono cento, ma alla misura corrente del congio. Se qualche - straniero si insedia nel podere di un operario - deve giurare di dare al vescovo quanto dovuto e di abitare nel castrum di Sarzana. Per la conferma del patto il - vescovo riceve un pagamento di venti lire di imperiali, a seguito del quale - libera dal pignoramento la curia di Bolano, che - era stata presa a pegno da Iuncta de - Vallerano.

-
- -
- -
-

Copia di copia autentica [C] CP c. 214v. - 216r., c. CCVIv.- CCVIIIr. secondo - la numerazione originale.

-
- -
-

Edizione pressoché integrale in: LUPO - GENTILE, 1912, n. 101, pp. 132-134.

- -
- -
- Nel margine esterno, di mano moderna: Obligazione che gli operari di - Sarzana debbano pagare ogni anno vinti moggi di grano mondi e cento - condi (condi corretto su precedente scrittura) di vino al vescovo lunese pro tempore. Un’altra - mano ha aggiunto: È equivoco di chi non ha ben capito. -
- -
-

-

- -
-
- - -
-

- - AAggiunta - - magna - - magma - maga - - - laudabilis - laudablis - - In this apparatus entry... - - - virtus - tua, et sapientiae tuae non est numerus et laudare te vult homo, aliqua - portio - - creature tue - creatr ae tuae - creaturas tuas - creaturarum tuarum - This is a note - - - , et homo circumferens - - mortalitem - fragilitatem - - In this apparatus entry, the editor has not decided yet which lectio - should be considered the lemma. The app contains only rdg elements. They - are therefore displayed in a different way from the other apparatus - entries. suam, circumferens testimonium peccati sui et - testimonium, quia superbis resistis: et tamen laudare te vult homo, - - aliqua - aliquando - aliquo - This is a note inside the apparatus - -

-

De castro - SarzaneDe castro Sarzane - in inchiostro rosso..

-

In eterni - Dei nomine, amen. Quemadmodum in instrumento publico manu Bartholomei notarii - confecto, quod ego Confortus - notarius vidi et legi, continebatur, - dominus Pipinus, Dei gratia olim Lunensis - episcopus, renovellavit, fecit et firmavit per se - et successores suos, consilio curie, tale pactum et talem constitutionem quale - et qualem fecerat dominus Albertus, bone memorie - Lunensis episcopus, predecessor suus, cum - operariis omnibus de curte Sarzanei Sarzanei: così - nel testo.. Uterque enim eorum, velut in - eodem instrumento legebatur, condonavit et remisit per se et suos successores - omnibus suprascriptis operariis dona et opera atque quod nullus eorum cogatur ad - canevam recipiendam nec ad castaldiam neque ad iscariam, nisi per voluntatem, - excepto quod omni anno debet unus eorum esse iscarius, si - fuerit voluntas episcopi, et debet suum feudum habere. Placita, districta, - offensiones, amasiamenta omnia retinuerunt in se et successores suos predicti - domini episcopi et pro suprascripto pacto et conventione debent suprascripti - operarii omni anno dare viginti modia frumenti mundi et deferre usque ad canevam - vel ad granarium et centum congia vini ad palmentum et deferre usque in canevam - et debent laborare bradias et cafadium et reddere medietatem curie et portare - usque in canevam. Et episcopus debet eis dare bestias ad socerandum et ipsi - debent socerare; et, si non habuerint bestias ad socerandum, non debent dare - nisi terciam partem bradiarum, et si restopplaverint, terciam partem reddere - debent; fenum de prato debent portare ad fenile et debent bis in die comedere - panem frumenti et vinum, caseum, et episcopus debet facere coadunare fenum in - prato; et alios attractus debent facere, scilicet panem et vinum, carnes et - annonam et fruges, de curte de Soleria, de - curte de Bolano, de curte de Carraria, de curte de Luna ad Sarzanam - vel ad Ameliam, et semel in die comedere. - Pro facto pape vel imperatoris vel cardinalis vel cancellarii debent facere - attractus, si opus fuerit, per totum episcopatum; si pro facto pape vel - imperatoris vel guerre alii homines communiter dederint, atque ipsi dare debent. - Cum autem hec omnia suprascripta in predicto instrumento continerentur:

-

§ Nos Gualterius, Dei - gratia Lunensis episcopus, consilio - Gerardi, vicedomini - nostri, quondam Alberti vicedomini, nobiscum presentis, - renovamus, facimus et confirmamus predicta - pacta et conventiones et constitutiones, addendo tamen et minuendo et mutando - seu commutando quedam ex ipsis, prout dicetur inferius, pro bono et utilitate - atque melioramento nostri episcopatus et nostre curie. Et hanc renovationem - atque confirmationem et commutationem et hec omnia que infra leguntur, facimus - infrascriptis et cum infrascriptis operariis, recipientibus pro se et omnibus - aliis operariis de curte - Sarzane et suo et eorum nomine per nos et nostros - successores. Quorum operariorum nomina sunt hec: Vernacius quondam Guilielmi de Cantio, - Ramundinus quondam Guidonis de - Opizo, Bonavere quondam - Macognani, Compagnonus de - Bertoloto, Formentinus - quondam Rafanini, Ricius quondam - Bottocii de Oliveto, - Sabbatinus quondam - Albertacii, Vitalis quondam - Boneti, Baldinotus de - Pulica, Compagnus, Sarzanensis quondam Gandolfi, Ramondinus quondam Formentini de Corciola, Thodescus quondam Bonizi, Martinus quondam Guerini, Symonetus quondam Gerardini de Terriola, Gerardinus quondam Bettotii, Bonencontrus Ottoboni, Vitalis de Donnolina, Vitalis de Beagua, Burgensis - de Pulica, Oliverius de Canale Iannis, Vitaletus de Bonno, Amicus - quondam Aicardini, Attolinus de - Gualdo, Morengnolus quondam - Gerardini de Terria, - Buiardus quondamquondam: nel - testo segue depennato ed espunto - de Gerardini de - Bonfante, Paganinus quondam - Boni de Oliveto, Fancinellus quondam Rafanini, - Guilielmus quondam Martinelli de - Rafanino, Vitalis quondam - Vindemioli de Tortiliano, Bernardus - quondam Rafanini, Bellandus - quondam Vitalis escarii, Vitalis - quondam Belseris, Guido de - Montedarmo quondam - Dominici, Galopinus quondam Ricii - de Montedarmo, TrampuliusTrampulius: T - corretta su precedente B quondam Dominici - cortesiani, Salvus quondam Carençoli, Bonensegna quondam Rainerii de Cortiola, Botrigellus quondam Fantinelli de Monçolono, Ugolinusfrater eius, Bernardus quondam Moregnoli, Rollandinus quondam Gualdi, Arnaldus quondam Ugolini, Rollandinus de Montecello, Iuncta de Terria, Iuncta - quondam Guilielmini de Serraursi, Forinus - quondam Ugolini de Pilato, Persona quondam Ubertini de Seraursi, Romeus - quondam Vitalis escarii, Sabbatinus de Serraursi, - Rollandinus quondam - Guilielmini, Vivianus quondam - Bosi, Bonavia quondam Dominici - de Montedarmo, Bonencontrus quondam Sarzanelli, - Bonsegnus quondam Gerardini de - Bonfante, Sabbatinus quondam - Durantis Ravolati, Henricus quondam - Boni de Vignola, Alçadellus quondam Araldi, Rustigellus quondam Vitalis escarii, - Gerardus quondam Gerardini, - Tiniosus frater eius, - Pasqualinus de Brasile, Castellanus de Monti, - Gerardinus de Guitone.

-

§ Remittimus enim nos suprascriptus episcopus - atque condonamus omnibus suprascriptis hominibus, recipientibus pro se et - omnibus aliis operariis de curte - Sarzane et suis et eorum heredibus suoque et - eorum nomine, per nos et successores nostros, de hiis que in prefacto - instrumento manu Bartholomei notarii - scripto continebantur, ut de cetero non debeant nec teneantur portare fenum ad - fenile neque facere attractusattractus: nel - testo la terza t corretta su l, scilicet - panem aut vinum vel carnes vel annonam seu fruges, de curte de Soleria vel de curte de - Bolano aut de curte de - Carraria seu de curte de Luna - ad Sarzanam vel ad Ameliam, set pro facto pape et imperatoris vel - cardinalis vel cancellarii debeant facere attractus, si opus fuerit, per totum - episcopatum de pane, vino, carne, annona et frugibus tantum; et insuper pro - facto pape et imperatoris vel guerre debent dare, si alii homines communiter - dederint. Placita vero et districta, offensiones et amasiamenta omnia retinemus - in nos et nostros successores, sicut fecerunt predecessores nostri. De facto - vero bradiarum et cafagii et iscarie et castaldie sit sicut in predicto - instrumento continebatur. Verumptamen pro predictis omnibus que eis remittimus - et condonamus et facimus debeant dare curie nostre annuatim illud affictum quod - in dicto instrumento continebatur et soliti fuerant, et tantum amplius quod - frumentum sit modia viginti tria, ad staria viginti per modium ad starium quod - nunc currit, et vinum debeat esse congia centum, ad congium quod nunc currit, - atque ordeum debeat esse - tantum quantum erat prius, set debet dari de cetero ad starium quod nunc currit, - et starium vel congium quod nunc currit numquam crescere debeat nec minui, set - sicut in eodem statu perpetuo permanere, et totum hoc affictum deferatur ad - granarium et ad canevam nostram de Sarzana; frumentum detur per totum augustum mundum et siccum omni - anno et vinum ad palmentum. Omnes suprascripti homines ad sancta Dei evangelia - iuraverunt dare annuatim curie totum illud quod additum est in predicto afficto - secundum quod cuilibet pro sua contingerit portione. Et si aliquis foretanus de - cetero intraverit in aliquo podere alicuius operariorum, debeat iurare dare - curie semper totum affictum illius poderis ad voluntatem domini episcopi atque - stare precise habitator in castro - Sarzani. Ad horum quoque omnium confirmationem confitemur nos - recepisse ab omnibus predictis operariis bonorum imperialium libras viginti, renuntiando - exceptioni non numerate pecunie, quos et nos et dictus Gerardus, vicedominus - noster, atque ipsimet operarii predicti confitemur fore - datos et spenditos in expignoranda curia de - Bolano, que cuidam Iuncte de - Vallerano fuerat nomine pignoris obligata. Sub pena centum librarum - imperialium. Promiserunt sibi ad invicem contrahentes hec omnia - rata habere, attendere et observare et in nullo contravenire, rato manente - pacto, post penam solutam parti fidem servanti ab altera parte, obligando - dominus episcopus se et suos successores et predicti - operarii se atque alios pro quibus hec faciebant et - suos et eorum heredes, et ita sibi ad invicem, ut supra legitur, per omnia et in - omnibus sunt stipulantistipulanti: così nel testo. - antedicti contrahentes.

-

Acta sunt hec omnia in palatio castri de Sarzana, anno a nativitate Domini M°CCXII, indictione XV, die lune, secundo intrante - mense aprilis, sollempniter. Ibi fuerunt rogati testes presbyter Bonaiuncta de - eodem castro, - Armanus dyaconus atque - plebanus de Amelia, Gibertinus quondam CodeindeiCodeindei - così nel testo per - Code Iudei (cfr. doc. 160-CXXXIV). - de Burtione, Aldebrandetus de - Soleria filius Guidolini de Fossato, Assalitus quondam Tiniosi de sancto - Stephano et Vescontinus quondam Bonencontri de Trebiano.

-

§ - Sequenti proximo die martis, tercio eiusdem - mensis, in eodem castro, in - domo Ferrini, in presentia Vivaldi filii Ferrini et Bonacursi filii Albertini de Nobelino, - rogatorum testium. Alcarinus quondam - Folcerii, pro se et investitus a Gerardo quondam Bellandini de Oliveto, Alberto quondam Nobelini, Baroncello fratre eius, Nicolosio quondam Claramici de Orto, Rainerio quondam Aicardini de Orto, Datio - genero quondam Rodolfini, Gerardo quondam Rollandini de Masio, Segnoreto - quondam Rainerii de Cortiola, Spinello quondam Baldicioni de Ponzanello, Guilielmo quondam Patiti de Ortale, Melanesi - quondam Grossoli de Platia - et Amiliarino filio Parluntii, - et supra suam et eorum animam iuravit et pariter cum omnibus eis promisit - Tinioso de Maroalco et - Ferrino, recipientibus pro dicto domino - episcopo et suis successoribus, omnia que superius leguntur, prout suprascripti - omnes alii operarii iuraverunt et promiserunt, perpetuo - rata habere, attendere et observare atque in nullo contravenire simul atque - quisque pro se, approbantes totum et quicquid predicti fecerant cum dicto domino - episcopo, ut supra legitur, obligando etiam se suosque heredes, sicut predicti - fecerant et ad eamdem penam. Ego Confortus, - sacri palatii et Lunensis curie - notarius, hiis omnibus interfui rogatus et de voluntate - contrahentium de isto contractu plures cartas uno tenore scripsi.

-

Ego - Pinosius nomine Iacopinus, - Romanorum imperatoris notarius, - auttenticum huius exempli vidi et legi et ut in eo continebatur in hoc scripsi, - nichil addens vel minuens quod mutet sensum vel minuat intellectum.

-

- Ego Prefectus, domini imperatoris atque Lunensis curie - notarius, huius exempli autenticum vidi atque legi - et in eo subscripsi, signum proprium apponendo.

-

Ego - Bonencontrus de Soleria, aule sacre - notarius, auttenticum huius exempli vidi et legi, - in quo continetur ut in isto legitur, atque rogatus subscripsi, signum proprium - apponendo.

-
- -
- - - - - - 119 - CII - - - 1234 novembre 20 - 1235 marzo - 23, Sarzanello (in palatio castri - Sarzane). - - -
-

Convenzioni tra il vescovo di Luni Guglielmo, tre consoli e cinque rappresentanti - del consiglio del castrum di Sarzana. Si - stabiliscono: le norme per l’elezione dei consoli, del gastaldo e dei - consiglieri; il contenuto del giuramento dei consoli e dei consiglieri e le - relative tempistiche; le pene e le multe (banna) - in caso di omicidio premeditato (excogitatum) e - non premeditato (non excogitatum), incendio, - tradimento, furto, mancata denuncia di furto, inosservanza dei mandati e dei - doveri, insulti, violenze, danni alla proprietà o contrarie al decoro; - l’ammontare delle tasse per fuoco (fumum); le - regole in caso di eredità con e senza testamento, di debito insoluto, di - richiesta di appello e di partecipazione alle adunate pubbliche o alle - compagnie. Nel corso del presente mandato i consoli devono porre le fondamenta - della porta in monte Iudicis e costruire le mura - da qui per la lunghezza di quattro braccia e l’altezza di un ponte, e poi - procedere al completamento dell’opera costruendo un ponte all’anno.

-
- -
- -
-

Copia [C] CP cc. 216v.- 218r., cc. CCVIIIv-CCXr. secondo la numerazione - originale.

-
- -
-

Edizione in LUPO GENTILE 1912 n. 102, - pp. 135-138; CONTI 1979-1988, I, doc. - XV, pp. 71-78.

-
- -
- Nel margine esterno, di mano moderna: Eletione di - consoli e numero, da farsi per gli homini di Sarzanello ogni anno il - giorno di Santo Martino. Alle convenzioni, stabilite nel novembre - 1234, è stata fatta una breve aggiunta nel marzo successivo: il notaio - Gerardeto la data con la frase eodem anno et - indictione, ma più correttamente, usandosi lo stile della - natività, avrebbe dovuto scrivere sequenti - anno. Essendo marzo, l’indizione era comunque la medesima del - novembre precedente. Il testo delle delle additiones inizia verso la fine di c. 218r. e prosegue, con - segno di richiamo a forma di croce, nel margine inferiore di c. 217v. Una - parte del documento è stata letta con l’ausilio della lampada di - Wood. - -
- -
-

-

- -
-
- - -
- -

In Ihesu Christi eterni nomine, amen. - Anno a nativitate ipsius M°CC trigesimo quarto, indictione VII. - Infrascripte constitutiones statute sunt de voluntate et consensu venerabilis - patris domini Guilielmi, Dei gratia - Lunensis episcopi, atque voluntate - Plebaneti quondam - Aldebertini, Codargogii - quondam Biancheti et Cursi quondam - Alberti, consulum castri - Sarzane, Attolini quondam Bandini, Guilielmi quondam Testafortis, - Borgeseti quondam Hubertini, - Bandineti quondam Guilielmi - et Gerardetti Muntoni - notarii, electorum a consilio - ipsius castri, - perpetuo valiture, ita videlicet quod nec mutari vel removeri nec addi vel - adiungi seu minui non possint, in toto vel parte, sine consensu et voluntate - episcopi et sine consensu et voluntate - consulum et consiliariorum, qui - pro tempore fuerint. Et si quid diminutum, mutatum fuerit vel additum secundum - predictum modum, de addito teneantur atque de diminuto absolvantur.

-

§ Tres consules annis - singulis, per VIII dies ante festum sancti Martini, eligantur per illos - consules qui tunc fuerint, cum consilio et consensu et - voluntate dicti domini episcopi et successorum eius, qui pro tempore fuerint, - vel castaldionis eius, si episcopus presens non fuerit. Et - tales consules eligantur qui iuramento fidelitatis domino - episcopo sint astricti contra omnes homines, et hoc sine fraude. Et electi - consules, facto iuramento istius brevis secundum quod - inferius continetur, a festo sancti Martini usque ad unum annum dominentur, - secundum formam istius brevis. Et nullus eligatur in - consulem, qui fuerit consul infra - tres annos preteritos.

-

§ Item nullus eligatur in - consulem qui sit pater vel filius, patruus vel - avunculus vel nepos, frater, cognatus ex uxore vel sorore, vel consobrinus in - secundo gradu vel socer consulum, qui debent eligere cum episcopo pro sequenti - anno.

-

§ - Castaldio sit semper quartus consul et - dominetur ut unus aliorum consulum et nullum feudum habeat pro consulatu, - excepta quarta parte datie et de IIIIor denariis pro - lamentatione ut unus aliorum consulum, ita tamen quod, si - non fuerit ipse castaldio castellanus suprascripti castri, non sit consul, vacante - sede episcopali. Et quandocumque intraverit vel mutatus fuerit - castaldio, iuret pro toto tempore sui castaldionatus, - sicut iuraverint consules suprascripti, ad istud breve.

-

§ Veteres consules et - castaldio eligant quindecim - consiliarios, qui per totum annum debeant esse - consiliarii suprascripti castri cum - novis consulibus electis, ut dictum est supra. Et mutentur - consiliarii anno quolibet, sicut melius videbitur veteribus - consulibus et castaldioni, in - eorum arbitrio.

-

§ Iuramentum autem consulum - hoc erit: iurabunt enim bona fide, sine fraude, ad honorem Dei et Domini Ihesu - Christi et gloriose matris eius Virginis Marie, sancti Martini et omnium - sanctorum, et ad honorem suprascripti venerabilis patris domini Guilielmi, Lunensis - episcopi, et successorum eius, tam nominicetam nominice: così nel - testo., quod ab hac festivitate sancti Martini usque ad aliam - festivitatem eiusdem confessoris, revoluto anno, regent consulatum castri Sarzane ad - salvamentum hominum eiusdem castri et - curtis qui sub nostro consulatu consistunt, secundum quod melius - cognoverint, dominante Deo, sine fraude atque secundum has constitutiones. Et quod - eligent consiliarios meliores et utiliores quos cognoverint pro ipso episcopo et commune suprascripti castri, secundum predictum modum. - Et facient de lamentatiis, que ad eos devenerint, iusticiam, ita parvo sicut - magnoita - parvo sicut magn: così nel testo., absque - personarum acceptione. Et quod non recipient aliquod precium vel aliquid loco - precii pro aliqua causa - que vertatur coram ipsis, excepta datia, videlicet uno denario de quolibet soldo ab eo qui - perdet causam tantum et IIIIor denariis pro reclamo: et - ipsi IIIIor denarii et datia non accipiantur - nisi post litem contestatemcontestatem: così nel testo per contestatam per negationem. - Passim, ante litem contestatam et post sententiam, liceat cuilibet appellare - atque consules, quocumque modo fuerit appellatio, non se intromittant; set, a - lite contestata usque ad sententiam latam, nulli liceat appellare. Et quod - eligent consules omni anno per VIII dies antequam exeant, - secundum modum superius denotatum. Et quod accipient banna inferius denotata et - non restituent, et medietatem assignabunt curie et aliam medietatem communi vel - sibi retinebunt pro communi. Et teneantur facere banniri per totum castrum - quolibet mense quod, si quis voluerit dicere et probare quod consules iniuste - abstulerint sibi pignus, per mensem sequentem debeat id probare coram - episcopo, si presens fuerit, vel coram - castaldione, si fuerit absens - episcopus; et si infra mensem hoc non probaverit, non - audiatur postea, set solvatsolvat: segue depennato con inchiostro - rosso pignus bannum pro quo - pignus fuerit ablatum.

-

§ Iurabunt consiliarii consulere - consulibus; de hiis, de quibus ab eis fuerint - requisiti, dare rectum consilium, sicut melius cognoverint, ad honorem et - salvamentum suprascripti domini episcopi - et hominum dicti castri.

-

§ - Consules veteres, per IIIIor - dies ante festum sancti Martini, teneantur facere parlamentum et publicent - consules in communi qui electi fuerint secundum - predictum modum atque precipiant per sacramentum ut omnes iurent sequimentum - omnium consulum, de quibus dictum est supra in precedentibus capitulis.

-

§ Banna sunt hec:

-

§ Quicumque fecerit excogitatum homicidium de - aliqua persona suprascripti castri sit perpetuo banno subpositus, de quo non - possit exire nisi concordaverit cum heredibus vel proximis propinquis defuncti - et cum episcopo, qui pro tempore fuerit, atque preterea - nisi solverit soldos C - imperialium, quorum medietas erit domini episcopi et alia medietas - consulum vel communis. Item totum mobile confiscetur et - per medium dividatur inter dominum episcopum et consules - vel commune. Et melior domus, quam habuerit in castro, funditus eradicetur, - excepto muro castellano, et lignamen et copertura extra castrum comburantur. Et - hec omnia fiant, non obstante aliquo debito dotis vel alterius cuiuslibet - obligationis. Item uxor eius et filii non habitent infra castrum predictum, nisi - prius fuerit pax et concordia homicidii suprascripti. Si alias de aliqua persona - suprascripti castri fieret homicidium non excogitatum, puniatur arbitrio domini - episcopi et consulum, qui pro tempore fuerint.

- -

§ Item si aliquis fecerit vel facere fecerit - excogitatum incendium alicuius domus vel capanne alicuius castellani suprascripti castri, emendet dampnum ad - deffensionem prestiti iuramenti eius cui factum fuerit incendium, et perdat - soldos XL - imperialium pro banno. Et si non habuerit unde dampnum emendet et - solvat penam, sit in banno, sicut homicida, quousque satisfecerit de dampno et - pena.

-

§ Traditores domini episcopi et loci puniantur - secundum leges.

-

§ Quicumque fecerit nocte furtum ad valorem sex - imperialium vel ultra, furtum emendet in quadruplumquadruplum: qua aggiunto in - sopralinea., et perdat soldos X imperialium pro banno. Si in - die fecerit furtum, emendet in duplum furtum, et perdat soldos V - imperialiumsoldos V imperialium: nel testo - soldos imperialium V - con segno di richiamo per invertire l’ordine delle - parole. pro banno. Si autem valuerit furtum infra sex - imperialium, perdat soldos - II imperialium pro banno, et emendet furtum de nocte in quadruplum - et de die in duplum.

-

§ Quilibet iuratus teneatur iuramento - manifestare furem, si viderit vel invenerit; et si non manifestaverit et fuerit - inde convictus, puniatur ut latro.

-

§ Quicumque non obedierit mandato - consulum vel eorum nuncii, quando - factum ei fuerit sub debito iuramenti, perdat soldos V imperialium atque iterato - reficiat iuramentum.

-

§ Item quicumque percusserit aliquem excogitate, - ita quod ex percussione illa perdat membra magna corpulentia, id est manum vel - pedem vel decoredecore: così nel testo, forse errore per - aurem vel oculum vel nasum, perdat - soldos XL - imperialium pro banno; si vero os ex percussione fregerit vel - cassale vulnus fecerit, perdat soldos XX imperialium pro banno. Si alias excogitate - vulneraverit aliquo genere armorum et ex illo vulnere percussus perdiderit - operas quas facere non possit, perdat soldos V imperialium pro banno, atque si alias - fecerit perdat soldos III - imperialium pro banno. Si vero fecerit lividum, perdat soldos II imperialium - pro banno; si aliter percusserit excogitate, non faciendo lividum vel sanguinem, - perdat soldos II - imperialium pro banno. Preter hec banna suprascripta, quicumque - fecerit excogitate suprascriptas percussiones emendet operas percusso, solvat - medicaturam et iniuriam - emendet ad estimationem domini episcopi et consulum, qui - pro tempore erunt.

-

§ Quicumque fecerit assaltum ad domum alicuius - cum armis, capitaneus soldos X, et sequentes cum armis et sine armis pro ipso malo - faciendo soldos III - imperialium pro bannoQuicumque ... banno: alla frase manca - un predicato verbale come perdat o solvat..

-

§ Quicumque arma excogitate acceperit contra - iuratum vel iuratos suos pro malo faciendo perdat soldos II imperialium pro banno.

-

§ Item quicumque excogitatum assaltum fecerit - contra iuratum vel iuratos suos perdat II imperialium pro banno.

-

§ Quicumque improperaverit alicui suo iurato vel - iuratis homicidium, unde pax fuerit vel pacem homicidii, perdat soldos V imperialium - pro banno; qui de alio malo improperavit perdat soldum I pro banno.

-

§ Quicumque percusserit excogitate alicuius - uxorem, absque sanguine vel livido, perdat soldos V imperialium pro banno; si - fecerit sanguinem vel lividum, puniatur ut supra de omnibus percussionibus - dictum est, preter suprascriptos soldos V.

-

§ Quicumque vel quecumque dixerit alicui: cucurbita vel spernitus, perdat imperialium XII.

-

§ Quicumque vel quecumque dixerit alicui mulieri - maritatePotrebbe mancare - l’indicazione dell’ingiuria, ma si può anche intendere il termine maritate come imperativo. vel - consimile verbum iniuriosum perdat denarios imperialium XII.

-

§ Quicumque vel quecumque excogitatum vastum - fecerit, de die vel de nocte, a sex denariis infra vel ultra puniatur ut fur, et - quicumque viderit vastantem et non manifestaverit, et inde convictus fuerit, - puniatur ut latro, sicut determinatum est supra.

-

§ Quicumque traxerit aliquem de tenuta rei - immobilis et contempserit coram consulibus, dicens ad se pertinere, soldos V perdat pro - banno, in clam vel precario.

-

§ Quicumque habet facere murum castellanum et - non fecerit unum pontem per annum, infra mensem - septembris, perdat soldos V imperialium pro banno; et si fecerit duos - pontes vel plures uno anno, non cadat in bannum sequentis vel sequentium annorum - secundum numerum factorum pontium muri faciendi et facti.

-

§ - Consules teneantur iuramento suo facere solvi per - unumquemque fumum suorum iuratorum capellano sancti Martini - de suprascripto castro unam minam boni, - mundi et sicci frumenti infra mensem septembris, annis - singulis, eodem capellano mittente ad domum singulorum pro - ipso frumento, exceptis omnibus consulibus et duobus nunciis Communis, qui non - debeant illud solvere.

-

§ Si autem consules vel - eorum aliquis incurrerint excogitate maleficia suprascripta, puniantur ut - supra.

-

§ Si autem minores XII annorum incurrerint - excogitate maleficia suprascripta, puniantur arbitrio - episcopi et consulum.

-

§ Si autem pauperes incurrerint ipsa maleficia - excogitate et non habuerint unde solvant dicta banna, puniantur extraordinarie - arbitrio episcopi et consulum, - exceptis homicidiihomicidiis: così nel testo, - incendiariis et traditoribus, super quorum pena non habeatur remedium, preter quod superius - est notatum.

-

§ Si quis incurrerit aliquod maleficium, quod in - hoc breve non sit scriptum, puniatur arbitrio domini - episcopi et consulum.

-

§ Quicumque perdiderit vel fraudem commiserit in - perdendo statutum istud, perdat soldos XX pro banno, et breve reficiat suis - expensis.

-

§ Super omnibus iniuriis et dampnis - suprascriptis, si querimonia delata fuerit ad dominum - episcopum vel eius vicarium, ipse puniat - secundum suprascripta statuta; et si delata fuerit apud - consules, puniant secundum suprascripta statuta, nisi - per appellationem ad episcopum devenerint, ita tamen quod - si episcopus punierit, consules non puniant, atque si - consules punierint, non puniat - episcopus.

-

§ Medietas omnium suprascriptorum bannorum sit - domini episcopi et alia medietas sit consulum vel communis; preterea medietas - omnium bonorum, que consules habuerint preter hec et sine - scriptis, sit episcopi et alia medietas consulum vel - communis.

-

§ Quicumque advena obierit in suprascripto castro vel eius districtu sine - legitimis heredibus et ab intestato, eius mobilia dividantur per medium inter - episcopum et commune vel consules; si autem fecerit - testamentum, teneatur iudicare denarios XII episcopo et totidem consulibus vel - communi et eius teneat testamentum.

-

§ - Consul teneatur precipere ei qui confessus fuerit in iure - debitum ut infra XV dies illud solvat et, si non solverit et querimonia relata - fuerit consuli, faciat pro banno dari de quolibet soldo denarius I atque, - quamdiu steterit ad solvendum, in qualibet octava solvat eodem modo de quolibet - soldo denarium - I, ita tamen quod, si creditor prorogaverit terminum, inde non cadant - in bannum; consul tamen terminum prorogare tertium non possit.

-

§ Si dominus domus non venerit ad parlamentum - quando sonaverit, perdat denarios IIII pro banno, nisi steterit parabola consulum.

-

§ Si consiliarius non venerit ad consilium - quando sonaverit, perdat denarios sex, nisi steterit parabola consulum.

-

§ Quicumque non redierit ad castrum vel ad - rumorem traxerit quando sonaverit ad sturmum, perdat soldos II, et si traxerit ad rumorem et - erit discordia inter iuratos, teneatur bona fide partiri discordes et non - accipere partem quod, si partem acceperit vel non diviserit, perdat soldos II; si autem - fuerit discordia inter iuratos et alios, teneatur adiuvare iuratos, ita quod non - possit habere iniuriam bona fide, et si non adiuveritadiuverit: nel testo - adiuvaverit con va depennato ed - espunto., perdat soldos II pro banno.

-

§ Quicumque intra castrum fuerit et audierit tintinnabulum pro mortuis pulsare, - teneatur ire ad locum ubi fuerit corpus defuncti et ire cum ipso defuncto ad - sepeliendum; atque, si non iverit, perdat denarios IIII, nisi steterit parabola - consulum.

-

§ Nullus faciat iuramentum compagnie, nisi - fuerit de mercadancia, nec iuram nec obligationem iure, preter iuramentum - communis, atque quicumque fecerit perdat soldos XX, capitaneus et ceteri perdant - soldos XI et - iura destruantur.

-

§ Nullus dominus vel domina intret in ortum - alterius pro dampno faciendo; atque, si intraverit, perdat soldum I, et alia - familia perdat denarios - sex et emendet dampnum, ut de furto superius dictum est.

-

§ Nullus deportet ultra sex cervatinas et, si - aportaverit, perdat denarios VI, excepto quando ligantur vinee, et tunc non portet nisi proprias.

-

§ Quicumque inciderit remondantosremondantos: così nel testo. malo modo, nisi - faceret retortas ad boves vel vernale, perdat denarios VI pro banno.

-

§ Si ficus vel alia arbor pependerit super - terrenum alterius, ille cuius erit terra super qua pependerit colligatur de sua - terra quod poterit et sit suum quod collegerit; si vero per debatituram - ceciderint fructus in alterius terrenum, dividantur per medium inter eum cuius - est arbor et terrenum in quo ceciderint; et si per ventum vel per maturitatem - ceciderint in terrenum alterius, sint eius in cuius terra ceciderint.

-

§ Nemo de suprascripto castro, qui accusatus fuerit de dictis - offensionibus, possit appellare ad episcopum, nisi prius - dederit pignora vel cautiones fecerit coram consulibus de dictis bannis, salvo - iudicio eorumdem episcopum. In aliis autem et super aliis - mandatis que non sunt in hoc breve expressa, si consules - fecerint seu preceperint alicui et visum fuerit quod gravetur, liceat cuilibet - appellare et consules ab appellatione facta non contra - procedant, excepto quod si per sacramentum preceperint, teneanturteneantur: - così nel testo per - teneatur dare pignus soldorum V ille qui - appellaverit et iudicium appellationis salvum sit domino episcopo - suprascripto.

-

§ Nullus ponat linum ad macerandum in rivo - Pucio, a via de Fracta supra in aliquo loco rivi; et quicumque posuerit perdat - denarios - XII pro banno et non teneat ultra et, si tenuerit, per quemlibet - diem quo tenuerit perdat denarios sex.

-

§ Teneantur etiam consules - iuramento hoc anno fundamentum facere porte in monte Iudicis et murare hinc inde - per brachia IIIIor murum ad unum pontem super terram - atque bonum murum ad calcinam factum, et donec compleatur opus fiat unus pons - boni muri annis singulis.

-

§ Nullum aliud statutum fiat preter communem - voluntatem domini episcopi, consulum et consilii dicti loci.

-

<§> Confirmatum est et approbatum istud - breve per omnes consiliarios - dicti castri - XII kalendas decembris, in palatio castri Sarzane, presentibus Salamoncello Baratella, Rolando Vago de Luca, Hugolino - Philippi et multis aliis.

-

§ - Eodem anno et indictione, in camera suprascripti episcopi apud - suprascriptum castrum, X kalendas - aprilis, coram Bonafesta quondam - Durantis et Iacopino - Talliavacha notario, decretio eodemdecretio - eodem: lettura incerta. suprascriptorum - quorumdam capitulorum et additum hoc factum de voluntate et consensu - suprascripti episcopi et consulum et consilii dicti - loci.

-

§ Quando pulsaverint tintinnabula pro mortuis, - si fuerit mortuus in Gropario, vadant - tantum illi de Gropario cum eo ad - sepeliendum; si fuerit de Miro, vadant illi - de Miro; si in Monte, vadant illi de Monte; et, si alii voluerint ire, vadant ad voluntatem suam. Item - consules, elapsis XV diebus, super debito confesso in - iure dominiidominii: inchiostro sbiadito. eis precipiant - per iuramentum debenti ut ab inde ad octo dies id solvat. Item cuilibet de - castro incidenti ficum suam liceat, quandocumque inciderit, proprias deportare - cervatinas. Item nullus faciat fossatum in aliquo ponte Parola illeggibile a - causa dell’inchiostro sbiadito. tocius castri iuxta viam - per quod via possit corrui; et, si fecerit, perdat soldos III et infra duos dies repleat - ipsum fossatum et viam reficiat.

-
-

Item nullus faciat stallam vel aliud excogitatum - impedimentum in viis tocius districtus - suprascripti castri atque, si fecerit, perdat denarios XII; - verumptamen tempore messis, quando in estate tondetur triticum, ordeum atque - similia, a kalendis iulii usque ad kalendas septembris liceat hiis, qui habent aras - et capannas iuxta vias, propter necessitatem deicere paleas et ruscum in - viam, ita tamen quod infra dictos duos menses paleam, ruscum et letamen de - via removeant et deportent; et si non fecerint et si dimiserint, perdant denarios XII.

-

Ego - Gerardetus, qui nominor Montonus, - palatii sacri notarius, hiis omnibus - interfui et rogatus duo instrumenta uno tenore scripsi, de voluntate et - mandato domini episcopi, consulum et consilii predictorumItem nullus-consilii - predictorum: scritto nel margine inferiore di c. - CCVIIIIv. con segno di richiamo in inchiostro - rosso..

-
-
- -
- - - -
- - - -
- - AMBROSI 1992: A.C. Ambrosi, Sulla via dei - pellegrini in Lunigiana e sul porto di s. Maurizio, in Il - pellegrinaggio medievale per Roma e Santiago de Compostela. Itinerari in Val di - Magra, Aulla, pp. 33–67. - - AMBROSI BERTOZZI MANFREDI 1989: A.C. - Ambrosi, M. Bertozzi e G. Manfredi, Massa Carrara. Pievi e territorio della - Provincia Pisa 1989. - - Annales Placentini Gibellini,in Monumenta - Germaniae Historica. Scriptores, XVIII, Hannover 1863, pp. - 457-581 - - ASFi, Diplomatico Malaspina, Spoglio 100. - - Copia della pianta dei confini fra il Serenissimo - Senato di Genova e l'Illustrissimo Signor Marchese di Fosdinovo data in Camera - l'anno 1587 (ca. 1625), Archivio di Stato di Genova, Raccolta dei Tipi, - disegni e mappe, Fondi cartografici originari, Mappe e tipi della Repubblica di - Genova, Miscellanea di carte non riconducibili all'ordinamento originario, n. - 33. - - Archivio di Stato di Lucca, San Frediano. - - Archivio di Stato di Lucca, Diplomatico - Arnolfini. - - BALDASSARRI ANDREAZZOLI 2005: M. - Baldassarri – F. Andreazzoli, Per l’archeologia dell’Abbazia di San Venanzio - di Ceparana: dalla prima analisi ad un progetto per il futuro, in - «Giornale Storico della Lunigiana», LVI, pp. 233–254. - - BALDASSARRI ANDREAZZOLI 2007: M. - Baldassarri – F. Andreazzoli, Fosdinovo (MS). Per la Carta Archeologica comunale: - le ricognizioni di superficie 2005-2006, in «Notiziario della Soprintendenza per i - Beni Archeologici della Toscana, 2» (2006), pp. 6–12. - - BALUZE 1761: É. Baluze, Stephani Baluzii ... - Miscellanea novo ordine digesta et non paucis ineditis monumentis opportunisque - animadversionibus aucta. Opera ac studio Joannis Dominici Mansi, 4 - vols., Apud V. Junctinium 1761-1764 - - BASSI 1927: S. Bassi, Il castello e l’abbazia - dell’Aulla nella storia della Lunigiana, Aulla. - - BERNOLDUS: Bernoldi, Chronicon, in Monumenta Germaniae - Historica Scriptores, V, ed. G. H. Pertz, Hannoverae, 1844, pp. - 385–467. - - BERTOZZI 1989: M. Bertozzi, Pieve di s. Andrea - Apostolo di Carrara, in Massa Carrara. Pievi e territorio della - Provincia, a cura di A. C. Ambrosi, M. Bertozzi e G. Manfredi, Pisa, pp. - 43–66. - - BÖHMER 1931: J.F. Böhmer, Regesta - chronologico-diplomatica regum atque imperatorum Romanorum inde a Conrado I. - usque ad Henricum VII. Die Urkunden der römischen Könige und Kaiser von Conrad - I. bis Heinrich VII. (911 - 1313) in kurzen Auszügen mit Nachweisung der - Bücher, wo solche abgedruckt sind, Frankfurt a. M. - - BONATTI 1984: F. Bonatti (a cura di), Ceparana - storia e tradizioni, Pisa 1984. - - BONATTI 1986: F. Bonatti, Vicende storiche - dell’abbazia di San Venanzio di Ceparana nel secolo XV, in Società - civile e società religiosa in Lunigiana e nel vicino Appennino dal IX al XV - secolo, Atti del Convegno (Aulla 1984), Aulla, pp. 47-60. - - BONATTI RATTI 1991: F. Bonatti e M. Ratti, - Sarzana, Genova - - BROOK PAVONI1984: L.L. Brook e R. Pavoni, - Tavola XXVI. Obertenghi di Massa e Parodi, in Genealogie - medievali di Sardegna, Cagliari-Sassari. - - BUSELLI 1972: F. Buselli, S. Andrea Apostolo duomo - di Carrara, Genova. - - CALLERI 1997: M. Calleri (a cura di), Le carte del - monastero di San Siro di Genova (952 - 1224), Genova. - - CALLERI 2003, Calleri M. (a cura di), Codice - diplomatico del monastero di Santo Stefano di Genova (965-1200), - Genova. - - CAPPELLI 1988: A. Cappelli, Cronologia, - cronografia e calendario perpetuo dal principio dell'era cristiana ai nostri - giorni, 6a ed., Milano 1988. - - CASTELMUR 1978: L. de Castelmur, Rodolfo de - Castelmur e la Valle Bregaglia: Editto di Federico I Barbarossa del 12 maggio - 1179, in "Quaderni grigionitaliani", 47, pp. 7-16. - - CAVALLI GHERARDI 1975-1976: R. Cavalli - Gherardi, L’Abbazia di Ceparana in base alle fonti documentarie,in - “Giornale Storico della Lunigiana”, n.s., XXVI-XXVII, 1-4, pp. 230-240. - - COLOMBINI 2010: G. Colombini, Il primo monastero - cistercense della diocesi di Pisa: Santa Croce alla foce dell’Arno e San - Bernardo in Carraiola (XIII-XIV secolo), in «Bollettino Storico Pisano», - LXXIX (2010), pp. 207–227. - - CONTI 1960: M.N. Conti, Gli statuti quattrocenteschi - di Nicola, in “Memorie dell’Accademia Lunigianese di Scienze e Lettere - ‘G. Capellini’”, XXXI, pp. 183–284. - - CONTI 1976: M.N. Conti, Degli ospedali di Monte Forca - e “in capite paludis” in Lunigiana, in "Atti e Memorie della Deputazione - di Storia Patria per le Antiche Province Modenesi", s. 10ª, XI, pp. 101–110 - - CONTI 1978-1988: M.N. Conti (a cura di), Corpus - statutorum lunigianensium, 3 voll., La Spezia - - CONTI 1988: M.N. Conti, Le carte anteriori al 1400 - nell’archivio malaspiniano di Caniparola nel repertorio del 1760, - Pontremoli. - - CONTIP 1963: P.M. Conti, Il castrum, il burgus e le - due pievi di Sarzana, in "Memorie dell’Accademia Lunigianese di Scienze - e Lettere ‘G. Capellini’" , XXXIV, pp. 3–26. - - CONTIP 1867: P.M. Conti, Luni nell’alto - medioevo, Padova - - COTURRI 1974: E. Coturri, La canonica di S. - Frediano a Lucca dalla prima istituzione (metà del sec. XI) alla unione alla - congregazione riformata di Fregionaia (1517), pp. 47-80. - - DADA 2012: M. Dadà,Archeologia dei monasteri in - Lunigiana. Documenti e cultura materiale degli enti monastici della diocesi di - Luni dalle origini al XII secolo, Pisa 2012. - - FALCO 1916: G. Falco (a cura di),Le carte del - monastero del Tino, I (1050-1220), Pinerolo. - - FALCO PISTARINO 1955: G. Falco e G. Pistarino, - Il cartulario di Giovanni di Giona di Portovenere (sec. XIII), - Depultazione Subalpina di Storia Patria, CLXXVII, Torino. - - FERRARI 1912: M. Ferrari, L'origine di Castelnuovo - Magra, Barga. - - FERRETTO 1901: A. Ferretto, Codice diplomatico - delle relazioni tra la Liguria, la Toscana e la Lunigiana ai tempi di - Dante, in “Atti della Società Ligure di Storia Patria”, XXXI, fascicoli - I e II (1901, 1903). - - FERRETTO 1909: A. Ferretto, Documenti genovesi di - Novi e Valle Scrivia in “Bollettino Storico Bibliografico Subalpino”, - LI, LII. - - L. A. Muratori a cura di), Guido Da Vallecchia, ‘Historiae - Pisanae fragmenta’, in Rerum italicarum Scriptores, XXIV, - Mediolani 1738, coll.*** - - FORMENTINI 1922: U. Formentini, Una podesteria - consortile nei secoli XII e XIII (Le terre dei Bianchi), in «Giornale - Storico della Lunigiana», XII, pp. 195-224. - - FORMENTINI_1936: U. Formentini, Micaur–a - (Georg.Cyprii 533), in Atti del V Congresso Internazionale di - Studi Bizantini, Roma pp. 167-175. - - FORMENTINI_1949: U. Formentini, Le tre pievi del - Massese e le origini della città di Massa, in "Atti e Memorie della - Deputazione di Storia Patria per le Province Modenesi", s. 8ª, II (1949) - - FORMENTINI 1951: U. Formentini, Sarzana (dalla - pieve alla Polis), in "Giornale Storico della Lunigiana, n.s., II, pp. - 1–11. - - FORMENTINI 1953: U. Formentini, La "plebs - civitatis" e il capitolo dei canonici della cattedrale di Luni, in - "Giornale Storico della Lunigiana, n.s. IV, pp. 1–9. - - FORMENTINI 1955: U. Formentini, Aspetti della - storia d’Aulla secondo nuove indagini archeologiche, linguistiche e - storico-politiche, in "Giornale Storico della Lunigiana", n.s. VI, pp. - 109-*** - - FORMENTINI 1970: U. Formentini, La pieve di - Soliera, in «Giornale Storico della Lunigiana e del territorio lucense», - n.s., XXI, pp. 5–19 (postumo). - - FRANCHI LALLAI 2000: G. Franchi e M. Lallai, - Da Luni a Massa Carrara - Pontremoli. Il divenire di una diocesi fra - Toscana e Liguria dal IV al XXI secolo , 3 voll., Modena-Massa. - - FREGGIA 1989: E. Freggia (a cura di),I documenti - dell’Archivio Capitolare di Sarzana dal 1095 al 1776, La Spezia. - - GARZELLA 1991: G. Garzella, Pisa com’era. - Topografia e insediamento dall’impianto tardoantico alla città murata del - secolo XII, Napoli 1991 - - GENTILI 2000: E. Gentili, Falcinello. Origini, - sviluppo e decadenza di un piccolo comune della Lunigiana, Agorà. - - HPM CHARTARUM: Historiae Patriae Monumenta, - Chartarum, Torino 1853. - - HÜBNER 1893: R. Hübner, Gerichtsurkunden der - fränkischen Zeit. 2., in «Zeitschrift der Savigny-Stiftung für - Rechtsgeschichte: Germanistische Abteilung», 14, Deskriptoren: Italien, - Frühmittelalter, Hochmittelalter, Urkunden und Regesten. - - LEVEROTTI 1974: F. Leverotti, L’estimo di Massa - Lunense (1398-1401), tesi di laurea, Università degli Studi di Pisa, - Dipartimento di Medievistica, a.a. 1973-1974. - - LEVEROTTI 1982: F. Leverotti, Massa di Lunigiana - alla fine del Trecento. Ambiente, insediamenti, paesaggio, Pisa - 1982 - - - LIBRI_IURIUM: I libri Iurium della Repubblica di - Genova. 1. Antonella Rovere and Dino Puncuh (eds.), I libri Iurium - della Repubblica di Genova. Introduzione, (Roma, 1992). I.1. Antonella - Rovere, I libri Iurium della Repubblica di Genova, (Ministero per i - beni culturali e ambientali - Ufficio centrale per i beni archivistici: Roma, - 1992) I.2 Dino Puncuh (ed.), I libri iurium della Repubblica di - Genova, (Genova, 1996), I-2. I.4 Sabina Dellacasa (ed.), I libri - Iurium della Repubblica di Genova, (Ministero per i beni culturali e - ambientali - Ufficio centrale per i beni archivistici: Roma, 1998) I.3 Dino Puncuh - (ed.), I libri iurium della Repubblica di Genova, (Genova, 1998), - I-3. I.5 Elisabetta Madia (ed.), I libri Iurium della Repubblica di - Genova, (Ministero per i beni culturali e ambientali - Ufficio centrale - per i beni archivistici: Roma, 1999), I-5. I.6 Maria Bibolini (ed.), I libri - Iurium della Repubblica di Genova, (Ministero per i beni culturali e - ambientali - Ufficio centrale per i beni archivistici: Roma, 2000). - - LÜNIG 1725: J.C. Lünig (a cura di), Codex Italiae - Diplomaticus, Francoforte - Lipsia. - - LUPO GENTILE 1910: M. Lupo Gentile, Le origini - del comune di Carrara, in «Giornale storico della Lunigiana», 11. - - LUPO GENTILE 1912M. Lupo Gentile, Il regesto - del codice Pelavicino, in «Atti della Società Ligure di Storia Patria», - XLIV. - - LUSUARDI SIENA 2003: S. Lusuardi Siena, Gli - scavi nella Cattedrale di Luni nel quadro della topografa cittadina tra tarda - antichità e medioevo, in Roma e la Liguria marittima: secoli - IV-X. La capitale cristiana e una regione di confine , Genova - - Bordighera, pp. 195–202. - - MANFREDI 1989: G. Manfredi, Pieve di - Soliera, in Massa Carrara. Pievi e territorio della - Provincia, a cura di A.C. Ambrosi, M. Bertozzi e G. Manfredi, Pisa, p. - 135 e ss. - - MANSI BARSOCCHINI 1836: G.D. Mansi e D. - Barsocchini, Diario sacro delle chiese di Lucca di mons. Giovan Domenico - Mansi, accomodato all’uso dei tempi presenti ed accresciuto di molte notizie - del nostro paese dall’ab. D. Barsocchini, Firenze. - - MAZZINI 1909: U. Mazzini, Il monastero di Santa - Croce del Corvo, in Dante e la Lunigiana. Nel sesto centenario - della venuta del Poeta in Val di Magra MCCVI-MDCCCCVI, a cura di U. - Mazzini, Milano, pp. 208–231. - - MAZZINI1914: U. Mazzini, Correzioni critiche di - alcune date del Regesto del Codice Pelavicino, Genova. - - MGH DD FI: >Die Urkunden Friedrichs I (Friderici I - diplomata) 1181-1190 , eds. H. Appelt, Hannover 1975-1990 - - MGH DD HIII: Die Urkunden Heinrichs III (Heinrici - III. Diplomata), eds. Harry Bresslau e Paul Fridolin Kehr, in - Monumenta Germaniae Historica. Diplomata, V, Berlin 1931. - - Constitutiones et acta publica imperatorum et regum - inde ab a. MCCXCVIII usque ad a. MCCCXIII (1298-1313), ed. J. Schwalm, 2 - vols, Hannoverae, Lipsiae, 1906-1908. - - Ex gestis Henrici II. et Ricardi I., ed. F. - Liebermann, in Monumenta Germaniae Historica. Scriptores, XXVII, - Hannoverae 1885, pp. 81–132. - - MONTORZI 1991: M. Montorzi, Diritto feudale nel - basso medioevo, Torino. - - MURATORI 1738: L. A. Muratori, Antiquitates - Italicae medi aevii, Mediolani, 1738-1742. - - MURATORI 1773: L. A. Muratori, Delle antichità - estensi, Modena 1773-1780. - - MUSSI 1946: L. Mussi, L’abbazia benedettina di S. - Caprasio di Aulla , Aulla. - - NERI 1882: A. Neri, La cucina del vescovo di - Luni, in «Giornale ligustico di archeologia, storia e letteratura», IX, - pp. 161–169. - - NOBILI 1985: M. Nobili, L'abbazia di Polirone e le - famiglie signorili lunigianesi, in L'Italia nel quadro della - espansione europea del monachesimo cluniacense. Atti del convegno - internazionale di storia medievale (Pescia, 26-28 novembre 1981), Cesena, pp. - 173-186; ora anche in NOBILI 2006, - pp. 385-407. - - NOBILI 1987: M. Nobili, Signorie e comunità nella - Lunigiana orientale fra XII e XIII secolo, in Alle origini della - Lunigiana moderna. Settimo centenario della redazione del Codice Pelavicino - (1287-1987). Atti del convegno, La Spezia 1990, pp. 63-90 - numero - monografico di «Memorie dell'Accademia di Scienze e Lettere 'G. Capellini'», - LVII-LVIII (1987-88); ora anche in NOBILI 2006, - pp. ***. - - NOBILI 1992:M. Nobili, I signori di Buggiano in - Lunigiana, in Signori e feudatari nella Valdinievole dal X al XII - secolo. Atti del convegno, Buggiano, pp. 133–155, ora anche in NOBILI 2006, pp. ***. - - NOBILI 1997:M. Nobili, Le signorie territoriali - degli Obertenghi in Lunigiana, in La signoria rurale nel medioevo - italiano, I, a cura di A. Spicciani e C. Violante, Pisa, pp. 19-37; ora - anche in NOBILI 2006, pp. ***. - - NOBILI 2001: M. Nobili, Il termine capitanei in due - documenti lunigianesi degli inizi dei secoli XII e XIII, in La - vassallità maggiore nel Regno Italico: l'ordo feudale dei capitanei (secoli - XI-XII). Atti del convegno, a cura di A. Castagnetti, Verona, pp. - 285-299; ora anche in NOBILI 2006, pp. - ***. - - NOBILI 2005: M. Nobili, Le 'malae consuetudines' in - Lunigiana: il documento del vescovo Eriberto per gli 'homines' di Trebbiano del - 4 novembre 1039, in «Memorie dell’Accademia Lunigianese di Scienze e - Lettere 'G. Capellini'», LXXV, 129-138. - - NOBILI 2006: M. Nobili, Gli Obertenghi e altri - saggi, Spoleto. - - NOBILI 2009: M. Nobili, La liberazione di un gruppo - di rustici della Chiesa di Luni a Carrara alla metà del Duecento, in - «Atti e memorie della Deputazione di Storia Patria per le Antiche Provincie - Modenesi», ser. 11, 31, pp. 31-42. - - NOCCHI FORZANI 1970: B. Nocchi Forzani, Il - borgo scomparso di Volpiglione, in «Giornale Storico della Lunigiana e - del territorio lucense», XXI, pp. 166–170. - - PAVONI1987: R. Pavoni, La signoria del vescovo di - Luni, in «Memorie dell’Accademia Lunigianese di Scienze e Lettere ‘G. - Capellini’», LVII–LVIII (1987-1988), pp. 29–59. - - PAVONI 1999: R. Pavoni, Ameglia: i vescovi di Luni, - i vicedomini, i Doria e il Comune di Genova, in Ameglia e il suo - territorio nel Medioevo. Atti della giornata di studio, numero - monografico del «Giornale storico della Lunigiana e del territorio lucense», n.s., - XLIII-XLV (1992-1994), La Spezia, pp. 9-170. - - PENNOTTO 1623: G. Pennotto, Historia tripartita - sacri ordini Clericorum Canonicorum, Romae. - - PIEROTTI 1972: P. Pierotti, Urbanistica: storia e - prassi, Firenze - - PISTARINO 1942: G. Pistarino, Un crittogramma nel - Codice Pelavicino dell’Archivio Capitolare di Sarzana, in «Giornale - Storico e Letterario della Liguria», XVIII-3/4, pp. 186-187. - - PISTARINO 1944: G. Pistarino, Le carte del - monastero di San Venerio del Tino relative alla Corsica (1080-1500), - Deputazione Subalpina di Storia Patria, CLXX, Torino. - - PISTARINO 1950: G. Pistarino, Le carte del - monastero di San Venanzio di Ceparana (1185-1441), in «Giornale Storico - della Lunigiana»”, n. s., I.3/4, luglio-dicembre 1950, pp. 34-37; II.1/2, - gennaio-giugno 1951, pp. 12-13; II.3/4, luglio-dicembre 1951, pp. 31-32; III.1/2, - gennaio-giugno 1952, pp. 10-11; III.3/4, luglio-dicembre 1952, pp. 24-28; IV.1/2, - gennaio-giugno 1953, pp. 9-11; IV.3/4, luglio-dicembre 1953, pp. 29-31 (ediz. - separata, La Spezia, 1951). - - PISTARINO 1953: G. Pistarino, Il crittogramma del - Codice Pelavicino, in «Giornale Storico della Lunigiana» n. s., IV.3/4, - p. 29. - - PISTARINO 1955; G. Pistarino, L’ultimo documento - di San Caprasio di Aulla, in «Giornale Storico della Lunigiana», n. s., - VI.2, pp. 48-50. - - PISTARINO 1956: G. Pistarino, Il problema del - “Liber instrumentorum” di Saladino “de castro Sarzane”, in «Giornale - Storico della Lunigiana», n. s., VII.1/1, pp. 42-43. - - PISTARINO 1957: G. Pistarino, Gli scrittori del - Codice Lunense (Pelavicino), in «Bollettino Ligustico», IX, pp. - 3-20. - - PISTARINO_1958a: G. Pistarino, Una fonte - medievale falsa e il suo presunto autore: Saladino “de castro Sarzane” e - Alfonso Ceccarelli, Università di Genova, Istituto di Storia Medievale e - Moderna, Fonti e Studi, II, Genova. - - PISTARINO 1958b: G. Pistarino, Le carte - portoveneresi di Tealdo “de Sigestro” (1258-59), Notai Liguri dei secoli - XII e XIII, VII, Genova. - - PISTARINO 1961a: G. Pistarino, Le pievi della - diocesi di Luni, parte I, C.S.L.O., II, Bordighera - La Spezia. - - PISTARINO 1961b: G. Pistarino, Tre lettere sulle - origini di Sarzana, in “Bollettino Ligustico per la Storia e la Cultura - Regionale”, XIII.3/4, pp. 169-174. - - PISTARINO 1963: G. Pistarino, Il Codice - Pelavicino, il “Registrum Vetus” e gli antichi statuti di Sarzana e di - Sarzanello, in «Giornale Storico della Lunigiana e del Territorio - Lucense», n. s., XIV.1/4,1963, pp. 81-91. - - PISTARINO 1965: G. Pistarino, Il “Registrum - Vetus” del Comune di Sarzana, Università di Genova, Istituto di - Paleografia e Storia Medievale, Istituto di Storia Moderna e Contemporanea, Fonti - e Studi, VIII, Sarzana. - - PISTARINO1983: G. Pistarino, Insediamenti - medievali in Lunigiana : il monastero di Aulla, in Studi dedicati - a Carmelo Trasselli, Messina, pp. 517–532. - - PISTARINO 1986: G. Pistarino, Medioevo ad - Aulla , in Società civile e società religiosa in Lunigiana e nel - vicino Appennino dal IX al XV secolo. Atti del convegno, Sarzana, pp. - 93–132. - - PISTARINO 1990: G. Pistarino, Per una nuova - edizione del Codice Pelavicino, in Alle origini della Lunigiana - moderna. Settimo centenario della redazione del Codice Pelavicino - (1287-1987). Atti del convegno, La Spezia, pp. 9-18. - - PODESTÀ 1895: L. Podestà, I vescovi di Luni - dall'anno 895 al 1289. Studi sul Codice Pelavicino nell'Archivio Capitolare di - Sarzana, in «Atti e Memorie della Reale Deputazione di Storia Patria per - le Province Modenesi», s. 6,, pp. *** - - POGGI 1957: A.G. Poggi, Le terre di San Leonardo “de - Frigido” , in "Giornale Storico della Lunigiana", n.s. VIII (1957). - - POLONIO 1979:V. Polonio, - Bolano.SanVenanziodiCeparana, in Liguria monastica. Italia - benedettina II, Cesena, p. 54. - - REPETTI 1846: E. Repetti, Dizionario geografico, - fisico, storico della Toscana contenente la descrizione di tutti i luoghi del - Granducato di Lucca, Garfagnana e Lunigiana, Firenze 1833-1846. - - Regesta Imperii, V. Die Regesten des Kaiserreiches, - ed. Johann Friedrich Böhmer, J. Ficker e E. Winkelmann, Innsbruck, - 1881-1882. - - RICCIG 1986: G. Ricci, I possessi dell’abbazia di S. - Caprasio dell’Aulla , in Società civile e società religiosa in - Lunigiana e nel vicino Appennino dal IX al XV secolo. Atti del convegno, - Sarzana, pp. 183-190. - - G. Ricci, Aulla e il suo territorio attraverso - secoli. I: dalla preistoria al Quattrocento, Aulla 1989). - - RICCIG 1989: G. Ricci, Nuove fonti per la storia - ecclesiastica della Lunigiana. Un registro della Pieve di Soliera, in - "Giornale Storico della Lunigiana e del territorio lucense", n.s. XL, pp. 51–58. - - RICCI 2012: R. Ricci, Medioevo senza città: la - società medievale carrarese (secoli XII-XIII), Carrara. - - SALVATORI 2007: E. Salvatori, Poteri locali e - popolamento in Lunigiana tra XII e XIII secolo, in Da Luni a - Sarzana 1204 - 2004. Ottavo Centenario della Traslazione della Sede - Vescovile (Sarzana 30 Settembre - 2 Ottobre 2004), Roma, pp. - 255–272. - - SCHIEFFER 2001: R. Schieffer, Graf Heinrich II. - von Diez, in Italia et Germania: Liber Amicorum Arnold - Esch, a cura di H. Keller, W. Paravicini e W. Schieder, Walter de Gruyter, - pp. 425–438. - - SCHWARTZ 1913: G. Schwartz, Die Besetzung der - Bistümer Reichsitaliens unter den sächsischen und salischen Kaisern mit den - Listen der Bischöfe, 951-1122, Leipzig-Berlin. - - SFORZA 1867: G. Sforza, Memorie storiche di - Montignoso, Lucca 1867, ristampa anastatica, Modena. - - SFORZA 1878: G. Sforza, La stazione romana “ad - taberna frigida” e lo spedale di S. Leonardo al Frigido, testo del 1878 - presso la Biblioteca Civica della Spezia - - SFORZA 1890-1891: G. Sforza, Castruccio - Castracani degli Antelminelli , in «Atti e memorie delle RR. Deputazioni - di Storia Patria per le Provincie Modenesi e Parmensi», serie III, vol. VI, parte - II, pp. 300-572. - - SFORZA 1894: G. Sforza, Enrico, vescovo di Luni, e - il Codice Pelavicino dell'Archivio Capitolare di Sarzana, in «Archivio - Storico Italiano», s. 5ª, XIII, pp. 81-88. - - SFORZA 1902: G. Sforza, La vendita di Portovenere a - Genova e i primi signori di Vezzano, in «Giornale Storico e Letterario - della Liguria», n.s., III (1902), pp. 338–368. - - STIAFFINI 1983: D. Stiaffini, La chiesa e il - monastero di S. Paolo a Ripa d’Arno di Pisa, in «Rivista dell’Istituto - Nazionale d’archeologia e storia dell’arte», ser.3,6-7 (1983), pp. 237–284. - - STUMPF BRENTANO 1865: K.F. Stumpf-Brentano (a - cura di), Acta imperii inde ab Heinrico 1. ad Heinricum 6. usque adhuc - inedita: Urkunden des Kaiserreichs aus dem 10., 11. und 12. Jahrhundert, - erstmals herausgegeben, Innsbruck, 1865-1881. - - UGHELLI 1644: F. Ughelli, Italia sacra sive de - episcopis Italiae et insularum adiacentium rebusque ab iis preclare - gestis, I, Roma. - - UGHELLI 1717: F. Ughelli, Italia sacra sive de - episcopis Italiae et insularum adiacentium rebusque ab iis preclare - gestis, a cura di N. Coleti, Venezia 1717-1722. - - VECCHI 1986: E. M. Vecchi, La chiesa di San Venerio - in Antoniano, in S. Venerio del Tino: vita religiosa e civile tra - isole e terraferma in età medievale. Atti del Convegno, La - Spezia-Sarzana, pp. 249–308. - - VECCHI 2003: E. Vecchi, Contributo all’archeologia - cristiana nella diocesi di Luni. Frammenti marmorei di reimpiego a San Venanzio - di Ceparana, in «Giornale Storico della Lunigiana», n.s. LIV, pp. - 117-160. - - VECCHI 2011: E. M. Vecchi, «Ad pacem et veram et - perpetuam concordiam devenerunt». Il cartulario del notaio Giovanni di Parente - di Stupio e l’instrumentum pacis del 1306, in Il - nostro Dante, il Dante di tutti. 1306-2006. Atti del convegno, num. - monografico del «Giornale Storico della Lunigiana», LIX (2008), Pisa, pp. - 69–194. - - ZOPPI 2008: A. Zoppi, Due documenti inediti per - servire alla storia di Nicola di Val di Magra, in «Studi Lunigianesi», - XXXVII-XXXIX (2008-2009), pp. 89–96. - - -
-
- -
- -
From 53e7a577b5d9f4c6380c5af4743cf082b883c5ac Mon Sep 17 00:00:00 2001 From: davivcu Date: Fri, 4 Oct 2024 14:51:00 +0200 Subject: [PATCH 09/10] Update file_config.json --- src/assets/config/file_config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/assets/config/file_config.json b/src/assets/config/file_config.json index e15d84a2b..8a2d7e4e0 100644 --- a/src/assets/config/file_config.json +++ b/src/assets/config/file_config.json @@ -1,6 +1,6 @@ { "editionUrls": [ - "assets/data/saba.xml" + "assets/data/pelavicino.xml" ], "editionImagesSource": { "manifest": { @@ -17,8 +17,8 @@ "double": "assets/data/images/double/" }, "configurationUrls": { - "edition": "assets/config/edition_config_Saba.json", - "ui": "assets/config/ui_config_Saba.json", + "edition": "assets/config/edition_config.json", + "ui": "assets/config/ui_config.json", "editorialConventions": "assets/config/editorial_conventions_config.json" } } \ No newline at end of file From 8b24e70509f40515cc734f7ff7cf22e3588b3adc Mon Sep 17 00:00:00 2001 From: davivcu Date: Fri, 4 Oct 2024 15:13:24 +0200 Subject: [PATCH 10/10] Update file_config with Pelavicino ui and edition config urls --- src/assets/config/file_config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/assets/config/file_config.json b/src/assets/config/file_config.json index 8a2d7e4e0..1c9036373 100644 --- a/src/assets/config/file_config.json +++ b/src/assets/config/file_config.json @@ -17,8 +17,8 @@ "double": "assets/data/images/double/" }, "configurationUrls": { - "edition": "assets/config/edition_config.json", - "ui": "assets/config/ui_config.json", + "edition": "assets/config/edition_config_Pelavicino.json", + "ui": "assets/config/ui_config_Pelavicino.json", "editorialConventions": "assets/config/editorial_conventions_config.json" } } \ No newline at end of file