2018-11-09 00:47:14 +00:00
|
|
|
|
|
|
|
|
2018-11-11 16:44:30 +00:00
|
|
|
package common
|
2018-11-09 00:47:14 +00:00
|
|
|
|
|
|
|
|
2018-11-09 01:12:32 +00:00
|
|
|
|
|
|
|
|
2021-12-19 12:05:22 +00:00
|
|
|
const NamespaceSchemaVersion = "schema"
|
2022-08-26 11:15:31 +00:00
|
|
|
const CurrentSchemaVersion = "kawipiko-2021d"
|
2018-11-20 12:21:22 +00:00
|
|
|
|
2021-12-19 17:18:22 +00:00
|
|
|
|
2021-12-19 12:05:22 +00:00
|
|
|
const NamespaceFilesContent = "files-content"
|
2021-12-19 17:18:22 +00:00
|
|
|
const NamespaceFilesContentPrefix byte = 'f'
|
|
|
|
|
2021-12-19 12:05:22 +00:00
|
|
|
const NamespaceFilesIndex = "files-index"
|
2021-12-19 17:18:22 +00:00
|
|
|
const NamespaceFilesIndexPrefix byte = 'F'
|
|
|
|
|
2021-12-19 12:05:22 +00:00
|
|
|
const NamespaceFoldersContent = "folders-content"
|
2021-12-19 17:18:22 +00:00
|
|
|
const NamespaceFoldersContentPrefix byte = 'l'
|
|
|
|
|
2021-12-19 12:05:22 +00:00
|
|
|
const NamespaceFoldersIndex = "folders-index"
|
2021-12-19 17:18:22 +00:00
|
|
|
const NamespaceFoldersIndexPrefix byte = 'L'
|
|
|
|
|
2022-08-26 11:15:31 +00:00
|
|
|
const NamespaceRedirectsContent = "redirects-content"
|
|
|
|
const NamespaceRedirectsContentPrefix byte = 'r'
|
|
|
|
|
|
|
|
const NamespaceRedirectsIndex = "redirects-index"
|
|
|
|
const NamespaceRedirectsIndexPrefix byte = 'R'
|
|
|
|
|
2018-11-09 00:47:14 +00:00
|
|
|
|
2021-12-19 12:05:22 +00:00
|
|
|
const NamespaceDataMetadata = "resource-metadata"
|
2021-12-19 17:18:22 +00:00
|
|
|
const NamespaceDataMetadataPrefix byte = 'm'
|
|
|
|
|
|
|
|
const NamespaceDataContent = "resource-data"
|
|
|
|
const NamespaceDataContentPrefix byte = 'd'
|
|
|
|
|
|
|
|
|
|
|
|
const NamespaceHeaderName = "header-name"
|
|
|
|
const NamespaceHeaderNamePrefix byte = 'h'
|
|
|
|
|
|
|
|
const NamespaceHeaderValue = "header-value"
|
|
|
|
const NamespaceHeaderValuePrefix byte = 'H'
|
2018-11-09 00:47:14 +00:00
|
|
|
|