hdoc-tools 0.8.29 → 0.8.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/hdoc-build-db.js +4 -4
- package/package.json +1 -1
package/hdoc-build-db.js
CHANGED
@@ -17,14 +17,14 @@
|
|
17
17
|
'doc_family_id'
|
18
18
|
],
|
19
19
|
hdoc_meta: [
|
20
|
-
'
|
20
|
+
'relative_url',
|
21
21
|
'book_id',
|
22
22
|
'contributor_count INTEGER UNINDEXED',
|
23
23
|
'edit_url UNINDEXED',
|
24
24
|
'last_commit UNINDEXED'
|
25
25
|
],
|
26
26
|
hdoc_contributors: [
|
27
|
-
'
|
27
|
+
'relative_url',
|
28
28
|
'book_id',
|
29
29
|
'login',
|
30
30
|
'name',
|
@@ -98,7 +98,7 @@
|
|
98
98
|
|
99
99
|
// Now add metadata
|
100
100
|
const meta_vals = [
|
101
|
-
|
101
|
+
index_path_name,
|
102
102
|
doc_id,
|
103
103
|
index_records[i].metadata.contributor_count,
|
104
104
|
index_records[i].metadata.edit_url,
|
@@ -117,7 +117,7 @@
|
|
117
117
|
// Now add contributor records
|
118
118
|
for (let j = 0; j < index_records[i].contributors.length; j++) {
|
119
119
|
const contrib_vals = [
|
120
|
-
|
120
|
+
index_path_name,
|
121
121
|
doc_id,
|
122
122
|
index_records[i].contributors[j].login,
|
123
123
|
index_records[i].contributors[j].name,
|