numbers-parser 4.13.3__py3-none-any.whl → 4.14.2__py3-none-any.whl
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.
- numbers_parser/__init__.py +5 -4
- numbers_parser/_cat_numbers.py +24 -16
- numbers_parser/_csv2numbers.py +13 -14
- numbers_parser/_unpack_numbers.py +6 -7
- numbers_parser/bullets.py +7 -8
- numbers_parser/cell.py +280 -255
- numbers_parser/constants.py +22 -8
- numbers_parser/containers.py +11 -10
- numbers_parser/document.py +196 -150
- numbers_parser/exceptions.py +1 -8
- numbers_parser/formula.py +29 -32
- numbers_parser/generated/TSKArchives_pb2.py +92 -92
- numbers_parser/generated/TSSArchives_pb2.py +36 -36
- numbers_parser/generated/TSWPCommandArchives_pb2.py +99 -99
- numbers_parser/generated/fontmap.py +16 -10
- numbers_parser/generated/mapping.py +0 -1
- numbers_parser/iwafile.py +16 -16
- numbers_parser/iwork.py +32 -17
- numbers_parser/model.py +222 -210
- numbers_parser/numbers_cache.py +6 -7
- numbers_parser/numbers_uuid.py +4 -1
- numbers_parser/roman.py +32 -0
- {numbers_parser-4.13.3.dist-info → numbers_parser-4.14.2.dist-info}/METADATA +18 -22
- {numbers_parser-4.13.3.dist-info → numbers_parser-4.14.2.dist-info}/RECORD +27 -26
- {numbers_parser-4.13.3.dist-info → numbers_parser-4.14.2.dist-info}/WHEEL +1 -1
- {numbers_parser-4.13.3.dist-info → numbers_parser-4.14.2.dist-info}/LICENSE.rst +0 -0
- {numbers_parser-4.13.3.dist-info → numbers_parser-4.14.2.dist-info}/entry_points.txt +0 -0
numbers_parser/exceptions.py
CHANGED
|
@@ -2,32 +2,25 @@ class NumbersError(Exception):
|
|
|
2
2
|
"""Base class for other exceptions."""
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
|
|
6
5
|
class UnsupportedError(NumbersError):
|
|
7
6
|
"""Raised for unsupported file format features."""
|
|
8
7
|
|
|
9
8
|
|
|
10
|
-
|
|
11
9
|
class NotImplementedError(NumbersError):
|
|
12
|
-
"""Raised for
|
|
13
|
-
|
|
10
|
+
"""Raised for unsuported Protobufs/Formats."""
|
|
14
11
|
|
|
15
12
|
|
|
16
13
|
class FileError(NumbersError):
|
|
17
14
|
"""Raised for IO and other OS errors."""
|
|
18
15
|
|
|
19
16
|
|
|
20
|
-
|
|
21
17
|
class FileFormatError(NumbersError):
|
|
22
18
|
"""Raised for parsing errors during file load."""
|
|
23
19
|
|
|
24
20
|
|
|
25
|
-
|
|
26
21
|
class FormulaError(NumbersError):
|
|
27
22
|
""" "Raise for formula evaluation errors."""
|
|
28
23
|
|
|
29
24
|
|
|
30
|
-
|
|
31
25
|
class UnsupportedWarning(Warning):
|
|
32
26
|
"""Raised for unsupported file format features."""
|
|
33
|
-
|
numbers_parser/formula.py
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import re
|
|
2
2
|
import warnings
|
|
3
|
-
|
|
4
|
-
from pendulum import datetime, duration
|
|
3
|
+
from datetime import datetime, timedelta
|
|
5
4
|
|
|
6
5
|
from numbers_parser.exceptions import UnsupportedWarning
|
|
7
6
|
from numbers_parser.generated import TSCEArchives_pb2 as TSCEArchives
|
|
@@ -28,14 +27,14 @@ class Formula(list):
|
|
|
28
27
|
values += (self._stack.pop(),)
|
|
29
28
|
return values
|
|
30
29
|
|
|
31
|
-
def push(self, val: str):
|
|
30
|
+
def push(self, val: str) -> None:
|
|
32
31
|
self._stack.append(val)
|
|
33
32
|
|
|
34
|
-
def add(self, *args):
|
|
33
|
+
def add(self, *args) -> None:
|
|
35
34
|
arg2, arg1 = self.popn(2)
|
|
36
35
|
self.push(f"{arg1}+{arg2}")
|
|
37
36
|
|
|
38
|
-
def array(self, *args):
|
|
37
|
+
def array(self, *args) -> None:
|
|
39
38
|
node = args[2]
|
|
40
39
|
num_rows = node.AST_array_node_numRow
|
|
41
40
|
num_cols = node.AST_array_node_numCol
|
|
@@ -54,36 +53,36 @@ class Formula(list):
|
|
|
54
53
|
args = ";".join(reversed(rows))
|
|
55
54
|
self.push(f"{{{args}}}")
|
|
56
55
|
|
|
57
|
-
def boolean(self, *args):
|
|
56
|
+
def boolean(self, *args) -> None:
|
|
58
57
|
node = args[2]
|
|
59
58
|
if node.HasField("AST_token_node_boolean"):
|
|
60
59
|
self.push(str(node.AST_token_node_boolean).upper())
|
|
61
60
|
else:
|
|
62
61
|
self.push(str(node.AST_boolean_node_boolean).upper())
|
|
63
62
|
|
|
64
|
-
def concat(self, *args):
|
|
63
|
+
def concat(self, *args) -> None:
|
|
65
64
|
arg2, arg1 = self.popn(2)
|
|
66
65
|
self.push(f"{arg1}&{arg2}")
|
|
67
66
|
|
|
68
|
-
def date(self, *args):
|
|
67
|
+
def date(self, *args) -> None:
|
|
69
68
|
# Date literals exported as DATE()
|
|
70
69
|
node = args[2]
|
|
71
|
-
dt = datetime(2001, 1, 1) +
|
|
70
|
+
dt = datetime(2001, 1, 1) + timedelta(seconds=node.AST_date_node_dateNum) # noqa: DTZ001
|
|
72
71
|
self.push(f"DATE({dt.year},{dt.month},{dt.day})")
|
|
73
72
|
|
|
74
|
-
def div(self, *args):
|
|
73
|
+
def div(self, *args) -> None:
|
|
75
74
|
arg2, arg1 = self.popn(2)
|
|
76
75
|
self.push(f"{arg1}÷{arg2}")
|
|
77
76
|
|
|
78
|
-
def empty(self, *args):
|
|
77
|
+
def empty(self, *args) -> None:
|
|
79
78
|
self.push("")
|
|
80
79
|
|
|
81
|
-
def equals(self, *args):
|
|
80
|
+
def equals(self, *args) -> None:
|
|
82
81
|
# Arguments appear to be reversed
|
|
83
82
|
arg1, arg2 = self.popn(2)
|
|
84
83
|
self.push(f"{arg2}={arg1}")
|
|
85
84
|
|
|
86
|
-
def function(self, *args):
|
|
85
|
+
def function(self, *args) -> None:
|
|
87
86
|
node = args[2]
|
|
88
87
|
num_args = node.AST_function_node_numArgs
|
|
89
88
|
node_index = node.AST_function_node_index
|
|
@@ -111,41 +110,41 @@ class Formula(list):
|
|
|
111
110
|
args = ",".join(reversed(args))
|
|
112
111
|
self.push(f"{func_name}({args})")
|
|
113
112
|
|
|
114
|
-
def greater_than(self, *args):
|
|
113
|
+
def greater_than(self, *args) -> None:
|
|
115
114
|
arg2, arg1 = self.popn(2)
|
|
116
115
|
self.push(f"{arg1}>{arg2}")
|
|
117
116
|
|
|
118
|
-
def greater_than_or_equal(self, *args):
|
|
117
|
+
def greater_than_or_equal(self, *args) -> None:
|
|
119
118
|
arg2, arg1 = self.popn(2)
|
|
120
119
|
self.push(f"{arg1}≥{arg2}")
|
|
121
120
|
|
|
122
|
-
def less_than(self, *args):
|
|
121
|
+
def less_than(self, *args) -> None:
|
|
123
122
|
arg2, arg1 = self.popn(2)
|
|
124
123
|
self.push(f"{arg1}<{arg2}")
|
|
125
124
|
|
|
126
|
-
def less_than_or_equal(self, *args):
|
|
125
|
+
def less_than_or_equal(self, *args) -> None:
|
|
127
126
|
arg2, arg1 = self.popn(2)
|
|
128
127
|
self.push(f"{arg1}≤{arg2}")
|
|
129
128
|
|
|
130
|
-
def list(self, *args):
|
|
129
|
+
def list(self, *args) -> None:
|
|
131
130
|
node = args[2]
|
|
132
131
|
args = self.popn(node.AST_list_node_numArgs)
|
|
133
132
|
args = ",".join(reversed(args))
|
|
134
133
|
self.push(f"({args})")
|
|
135
134
|
|
|
136
|
-
def mul(self, *args):
|
|
135
|
+
def mul(self, *args) -> None:
|
|
137
136
|
arg2, arg1 = self.popn(2)
|
|
138
137
|
self.push(f"{arg1}×{arg2}")
|
|
139
138
|
|
|
140
|
-
def negate(self, *args):
|
|
139
|
+
def negate(self, *args) -> None:
|
|
141
140
|
arg1 = self.pop()
|
|
142
141
|
self.push(f"-{arg1}")
|
|
143
142
|
|
|
144
|
-
def not_equals(self, *args):
|
|
143
|
+
def not_equals(self, *args) -> None:
|
|
145
144
|
arg2, arg1 = self.popn(2)
|
|
146
145
|
self.push(f"{arg1}≠{arg2}")
|
|
147
146
|
|
|
148
|
-
def number(self, *args):
|
|
147
|
+
def number(self, *args) -> None:
|
|
149
148
|
node = args[2]
|
|
150
149
|
if node.AST_number_node_decimal_high == 0x3040000000000000:
|
|
151
150
|
# Integer: don't use decimals
|
|
@@ -153,15 +152,15 @@ class Formula(list):
|
|
|
153
152
|
else:
|
|
154
153
|
self.push(number_to_str(node.AST_number_node_number))
|
|
155
154
|
|
|
156
|
-
def percent(self, *args):
|
|
155
|
+
def percent(self, *args) -> None:
|
|
157
156
|
arg1 = self.pop()
|
|
158
157
|
self.push(f"{arg1}%")
|
|
159
158
|
|
|
160
|
-
def power(self, *args):
|
|
159
|
+
def power(self, *args) -> None:
|
|
161
160
|
arg2, arg1 = self.popn(2)
|
|
162
161
|
self.push(f"{arg1}^{arg2}")
|
|
163
162
|
|
|
164
|
-
def range(self, *args):
|
|
163
|
+
def range(self, *args) -> None:
|
|
165
164
|
arg2, arg1 = self.popn(2)
|
|
166
165
|
func_range = "(" in arg1 or "(" in arg2
|
|
167
166
|
if "::" in arg1 and not func_range:
|
|
@@ -172,15 +171,15 @@ class Formula(list):
|
|
|
172
171
|
else:
|
|
173
172
|
self.push(f"{arg1}:{arg2}")
|
|
174
173
|
|
|
175
|
-
def string(self, *args):
|
|
174
|
+
def string(self, *args) -> None:
|
|
176
175
|
node = args[2]
|
|
177
176
|
self.push('"' + node.AST_string_node_string + '"')
|
|
178
177
|
|
|
179
|
-
def sub(self, *args):
|
|
178
|
+
def sub(self, *args) -> None:
|
|
180
179
|
arg2, arg1 = self.popn(2)
|
|
181
180
|
self.push(f"{arg1}-{arg2}")
|
|
182
181
|
|
|
183
|
-
def xref(self, *args):
|
|
182
|
+
def xref(self, *args) -> None:
|
|
184
183
|
(row, col, node) = args
|
|
185
184
|
self.push(self._model.node_to_ref(self._table_id, row, col, node))
|
|
186
185
|
|
|
@@ -319,7 +318,5 @@ def number_to_str(v: int) -> str:
|
|
|
319
318
|
zeroes = "0" * (abs(int(exp)) - 1)
|
|
320
319
|
if int(exp) > 0:
|
|
321
320
|
return f"{number}{zeroes}"
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
else:
|
|
325
|
-
return v_str
|
|
321
|
+
return f"0.{zeroes}{number}"
|
|
322
|
+
return v_str
|
|
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
|
|
|
14
14
|
import numbers_parser.generated.TSPMessages_pb2 as TSPMessages__pb2
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x11TSKArchives.proto\x12\x03TSK\x1a\x11TSPMessages.proto\"Z\n\x08TreeNode\x12\x0c\n\x04name\x18\x01 \x01(\t\x12 \n\x08\x63hildren\x18\x02 \x03(\x0b\x32\x0e.TSP.Reference\x12\x1e\n\x06object\x18\x03 \x01(\x0b\x32\x0e.TSP.Reference\"\\\n\x17LocalCommandHistoryItem\x12\x1f\n\x07\x63ommand\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12 \n\x08\x62\x65havior\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\"@\n\x18LocalCommandHistoryArray\x12$\n\x0blarge_array\x18\x01 \x02(\x0b\x32\x0f.TSP.LargeArray\"c\n\x1fLocalCommandHistoryArraySegment\x12@\n\x1alarge_object_array_segment\x18\x01 \x02(\x0b\x32\x1c.TSP.LargeObjectArraySegment\"l\n\x13LocalCommandHistory\x12\x12\n\nundo_count\x18\x01 \x02(\r\x12#\n\x0bitems_array\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\x12\x1c\n\x14\x66ixed_radar_13365177\x18\n \x01(\x08\"\xa0\x04\n\x0f\x44ocumentArchive\x12\x19\n\x11locale_identifier\x18\x04 \x01(\t\x12\x31\n\x19\x61nnotation_author_storage\x18\x07 \x01(\x0b\x32\x0e.TSP.Reference\x12,\n\x14\x61\x63tivity_log_entries\x18\x08 \x03(\x0b\x32\x0e.TSP.Reference\x12\"\n\x1a\x63reation_locale_identifier\x18\t \x01(\t\x12(\n prevent_image_conversion_on_open\x18\n \x01(\x08\x12\x1b\n\x13has_floating_locale\x18\x0b \x01(\x08\x12\x1f\n\x17has_user_defined_locale\x18\x0c \x01(\x08\x12\x37\n\x1f\x63ollaboration_operation_history\x18\x0e \x01(\x0b\x32\x0e.TSP.Reference\x12\x38\n0should_measure_negatively_tracked_text_correctly\x18\x0f \x01(\x08\x12-\n%use_optimized_text_vertical_alignment\x18\x10 \x01(\x08\x12\x39\n\x12\x66ormatting_symbols\x18\x11 \x01(\x0b\x32\x1d.TSK.FormattingSymbolsArchive\x12(\n\x0f\x61\x63tivity_stream\x18\xc7\x01 \x01(\x0b\x32\x0e.TSP.Reference\"\xb9\n\n\x18\x46ormattingSymbolsArchive\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x10\n\x08\x63\x61lendar\x18\x02 \x01(\t\x12\x18\n\x10numbering_system\x18\x03 \x01(\t\x12\x0e\n\x06months\x18\x04 \x03(\t\x12\x19\n\x11standalone_months\x18\x05 \x03(\t\x12\x14\n\x0cshort_months\x18\x06 \x03(\t\x12\x1f\n\x17standalone_short_months\x18\x07 \x03(\t\x12\x10\n\x08weekdays\x18\x08 \x03(\t\x12\x1b\n\x13standalone_weekdays\x18\t \x03(\t\x12\x16\n\x0eshort_weekdays\x18\n \x03(\t\x12!\n\x19standalone_short_weekdays\x18\x0b \x03(\t\x12\x11\n\tam_symbol\x18\x0c \x01(\t\x12\x11\n\tpm_symbol\x18\r \x01(\t\x12\x13\n\x0btiny_months\x18\x0e \x03(\t\x12\x1e\n\x16standalone_tiny_months\x18\x0f \x03(\t\x12\x15\n\rtiny_weekdays\x18\x10 \x03(\t\x12 \n\x18standalone_tiny_weekdays\x18\x11 \x03(\t\x12\x10\n\x08quarters\x18\x12 \x03(\t\x12\x1b\n\x13standalone_quarters\x18\x13 \x03(\t\x12\x16\n\x0eshort_quarters\x18\x14 \x03(\t\x12!\n\x19standalone_short_quarters\x18\x15 \x03(\t\x12\x0c\n\x04\x65ras\x18\x16 \x03(\t\x12\x11\n\tlong_eras\x18\x17 \x03(\t\x12\x1a\n\x12short_date_pattern\x18\x18 \x01(\t\x12\x1b\n\x13medium_date_pattern\x18\x19 \x01(\t\x12\x19\n\x11long_date_pattern\x18\x1a \x01(\t\x12\x19\n\x11\x66ull_date_pattern\x18\x1b \x01(\t\x12\x1a\n\x12short_time_pattern\x18\x1c \x01(\t\x12\x1b\n\x13medium_time_pattern\x18\x1d \x01(\t\x12\x19\n\x11long_time_pattern\x18\x1e \x01(\t\x12\x19\n\x11\x66ull_time_pattern\x18\x1f \x01(\t\x12\x19\n\x11\x64\x65\x63imal_separator\x18 \x01(\t\x12\x1a\n\x12grouping_separator\x18! \x01(\t\x12\"\n\x1a\x63urrency_decimal_separator\x18\" \x01(\t\x12#\n\x1b\x63urrency_grouping_separator\x18# \x01(\t\x12\x11\n\tplus_sign\x18$ \x01(\t\x12\x12\n\nminus_sign\x18% \x01(\t\x12\x1a\n\x12\x65xponential_symbol\x18& \x01(\t\x12\x16\n\x0epercent_symbol\x18\' \x01(\t\x12\x18\n\x10per_mille_symbol\x18( \x01(\t\x12\x17\n\x0finfinity_symbol\x18) \x01(\t\x12\x12\n\nnan_symbol\x18* \x01(\t\x12\x17\n\x0f\x64\x65\x63imal_pattern\x18+ \x01(\t\x12\x1a\n\x12scientific_pattern\x18, \x01(\t\x12\x17\n\x0fpercent_pattern\x18- \x01(\t\x12\x18\n\x10\x63urrency_pattern\x18. \x01(\t\x12\x15\n\rcurrency_code\x18/ \x01(\t\x12\x46\n\x10\x63urrency_symbols\x18\x30 \x03(\x0b\x32,.TSK.FormattingSymbolsArchive.CurrencySymbol\x1a.\n\x0e\x43urrencySymbol\x12\x0c\n\x04\x63ode\x18\x01 \x02(\t\x12\x0e\n\x06symbol\x18\x02 \x02(\t\"\x8b\x05\n\x16\x44ocumentSupportArchive\x12\'\n\x0f\x63ommand_history\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12\x12\n\nundo_count\x18\x04 \x01(\r\x12\x12\n\nredo_count\x18\x05 \x01(\r\x12\x1a\n\x12undo_action_string\x18\x06 \x01(\t\x12\x1a\n\x12redo_action_string\x18\x07 \x01(\t\x12!\n\tweb_state\x18\x08 \x01(\x0b\x32\x0e.TSP.Reference\x12\'\n\x18is_in_collaboration_mode\x18\t \x01(\x08:\x05\x66\x61lse\x12\"\n\x1a\x61\x63tion_string_localization\x18\x0c \x01(\t\x12+\n\x13\x63ollaboration_state\x18\r \x01(\x0b\x32\x0e.TSP.Reference\x12\x31\n\x19\x61\x63tivity_notification_map\x18\x0e \x01(\x0b\x32\x0e.TSP.Reference\x12<\n$removed_author_auditor_pending_state\x18\x0f \x01(\x0b\x32\x0e.TSP.Reference\x12>\n\"command_selection_behavior_history\x18\x02 \x01(\x0b\x32\x0e.TSP.ReferenceB\x02\x18\x01\x12&\n\nview_state\x18\x03 \x01(\x0b\x32\x0e.TSP.ReferenceB\x02\x18\x01\x12\x39\n\x1d\x63ollaboration_command_history\x18\n \x01(\x0b\x32\x0e.TSP.ReferenceB\x02\x18\x01\x12\x37\n\x1b\x63ollaboration_session_state\x18\x0b \x01(\x0b\x32\x0e.TSP.ReferenceB\x02\x18\x01\"\x85\x01\n\x10ViewStateArchive\x12\'\n\x0fview_state_root\x18\x01 \x02(\x0b\x32\x0e.TSP.Reference\x12\"\n\x1a\x64ocument_revision_sequence\x18\x02 \x01(\x05\x12$\n\x1c\x64ocument_revision_identifier\x18\x03 \x01(\t\"\xf1\x01\n\x0e\x43ommandArchive\x12)\n\rundoRedoState\x18\x01 \x01(\x0b\x32\x0e.TSP.ReferenceB\x02\x18\x01\x12&\n\x0eundoCollection\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\x12\x1d\n\x15shadowed_by_transform\x18\x03 \x01(\x08\x12\x1a\n\x12shadowed_by_commit\x18\x04 \x01(\x08\x12\x0e\n\x06remote\x18\x05 \x01(\x08\x12&\n\x1eshould_hold_until_group_commit\x18\x06 \x01(\x08\x12\x19\n\x11server_originated\x18\x07 \x01(\x08\"\xb6\x01\n\x13\x43ommandGroupArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12 \n\x08\x63ommands\x18\x02 \x03(\x0b\x32\x0e.TSP.Reference\x12&\n\x0fprocess_results\x18\x03 \x01(\x0b\x32\r.TSP.IndexSet\x12\x15\n\raction_string\x18\x04 \x01(\t\x12\x1a\n\x12\x63\x61n_coalesce_group\x18\x05 \x01(\x08\"\xd7\x01\n\x1fInducedCommandCollectionArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12(\n\x10inducing_command\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\x12(\n\x10induced_commands\x18\x03 \x03(\x0b\x32\x0e.TSP.Reference\x12<\n%indexes_of_processed_induced_commands\x18\x04 \x01(\x0b\x32\r.TSP.IndexSet\"\x8a\x02\n\"PropagatedCommandCollectionArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12,\n\x14propagatable_command\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x12\x32\n#propagatable_command_process_result\x18\x03 \x01(\x08:\x05\x66\x61lse\x12+\n\x13propagating_command\x18\x04 \x02(\x0b\x32\x0e.TSP.Reference\x12\x31\n\"propagating_command_process_result\x18\x05 \x01(\x08:\x05\x66\x61lse\"\xd9\x01\n\x17\x46inalCommandPairArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1f\n\x07\x63ommand\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x12%\n\x16\x63ommand_process_result\x18\x03 \x01(\x08:\x05\x66\x61lse\x12%\n\rfinal_command\x18\x04 \x02(\x0b\x32\x0e.TSP.Reference\x12+\n\x1c\x66inal_command_process_result\x18\x05 \x01(\x08:\x05\x66\x61lse\";\n\x17\x43ommandContainerArchive\x12 \n\x08\x63ommands\x18\x01 \x03(\x0b\x32\x0e.TSP.Reference\"I\n\x1eProgressiveCommandGroupArchive\x12\'\n\x05super\x18\x01 \x02(\x0b\x32\x18.TSK.CommandGroupArchive\"\xcc\n\n\x13\x46ormatStructArchive\x12\x13\n\x0b\x66ormat_type\x18\x01 \x01(\r\x12\x16\n\x0e\x64\x65\x63imal_places\x18\x02 \x01(\r\x12\x15\n\rcurrency_code\x18\x03 \x01(\t\x12\x16\n\x0enegative_style\x18\x04 \x01(\r\x12 \n\x18show_thousands_separator\x18\x05 \x01(\x08\x12\x1c\n\x14use_accounting_style\x18\x06 \x01(\x08\x12\x16\n\x0e\x64uration_style\x18\x07 \x01(\r\x12\x0c\n\x04\x62\x61se\x18\x08 \x01(\r\x12\x13\n\x0b\x62\x61se_places\x18\t \x01(\r\x12\x1b\n\x13\x62\x61se_use_minus_sign\x18\n \x01(\x08\x12\x19\n\x11\x66raction_accuracy\x18\x0b \x01(\r\x12\x1c\n\x14suppress_date_format\x18\x0c \x01(\x08\x12\x1c\n\x14suppress_time_format\x18\r \x01(\x08\x12\x18\n\x10\x64\x61te_time_format\x18\x0e \x01(\t\x12\x1d\n\x15\x64uration_unit_largest\x18\x0f \x01(\r\x12\x1e\n\x16\x64uration_unit_smallest\x18\x10 \x01(\r\x12\x11\n\tcustom_id\x18\x11 \x01(\r\x12\x1c\n\x14\x63ustom_format_string\x18\x12 \x01(\t\x12\x14\n\x0cscale_factor\x18\x13 \x01(\x01\x12%\n\x1drequires_fraction_replacement\x18\x14 \x01(\x08\x12\x17\n\x0f\x63ontrol_minimum\x18\x15 \x01(\x01\x12\x17\n\x0f\x63ontrol_maximum\x18\x16 \x01(\x01\x12\x19\n\x11\x63ontrol_increment\x18\x17 \x01(\x01\x12\x1b\n\x13\x63ontrol_format_type\x18\x18 \x01(\r\x12\x1a\n\x12slider_orientation\x18\x19 \x01(\r\x12\x17\n\x0fslider_position\x18\x1a \x01(\r\x12\x15\n\rdecimal_width\x18\x1b \x01(\r\x12\x19\n\x11min_integer_width\x18\x1c \x01(\r\x12#\n\x1bnum_nonspace_integer_digits\x18\x1d \x01(\r\x12#\n\x1bnum_nonspace_decimal_digits\x18\x1e \x01(\r\x12%\n\x1dindex_from_right_last_integer\x18\x1f \x01(\r\x12\x1c\n\x14interstitial_strings\x18 \x03(\t\x12\x33\n\x1cinters_str_insertion_indexes\x18! \x01(\x0b\x32\r.TSP.IndexSet\x12\x1f\n\x17num_hash_decimal_digits\x18\" \x01(\r\x12 \n\x18total_num_decimal_digits\x18# \x01(\r\x12\x12\n\nis_complex\x18$ \x01(\x08\x12\x1e\n\x16\x63ontains_integer_token\x18% \x01(\x08\x12*\n\"multiple_choice_list_initial_value\x18& \x01(\r\x12\x1f\n\x17multiple_choice_list_id\x18\' \x01(\r\x12$\n\x1cuse_automatic_duration_units\x18( \x01(\x08\x12\x1d\n\ncustom_uid\x18) \x01(\x0b\x32\t.TSP.UUID\x12/\n\rcustom_format\x18* \x01(\x0b\x32\x18.TSK.CustomFormatArchive\x12\x16\n\x0euses_plus_sign\x18+ \x01(\x08\x12\x18\n\x10\x62ool_true_string\x18, \x01(\t\x12\x19\n\x11\x62ool_false_string\x18- \x01(\t*\x07\x08\x90N\x10\xa1\x9c\x01\"\xcf\x02\n\x13\x43ustomFormatArchive\x12\x0c\n\x04name\x18\x01 \x02(\t\x12\x1b\n\x13\x66ormat_type_pre_bnc\x18\x02 \x02(\r\x12\x30\n\x0e\x64\x65\x66\x61ult_format\x18\x03 \x02(\x0b\x32\x18.TSK.FormatStructArchive\x12\x36\n\nconditions\x18\x04 \x03(\x0b\x32\".TSK.CustomFormatArchive.Condition\x12\x13\n\x0b\x66ormat_type\x18\x05 \x01(\r\x1a\x8d\x01\n\tCondition\x12\x16\n\x0e\x63ondition_type\x18\x01 \x02(\r\x12\x17\n\x0f\x63ondition_value\x18\x02 \x01(\x02\x12\x32\n\x10\x63ondition_format\x18\x03 \x02(\x0b\x32\x18.TSK.FormatStructArchive\x12\x1b\n\x13\x63ondition_value_dbl\x18\x04 \x01(\x01\"e\n\x17\x43ustomFormatListArchive\x12\x18\n\x05uuids\x18\x01 \x03(\x0b\x32\t.TSP.UUID\x12\x30\n\x0e\x63ustom_formats\x18\x02 \x03(\x0b\x32\x18.TSK.CustomFormatArchive\"\x83\x01\n\x17\x41nnotationAuthorArchive\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x19\n\x05\x63olor\x18\x02 \x01(\x0b\x32\n.TSP.Color\x12\x11\n\tpublic_id\x18\x03 \x01(\t\x12\x18\n\x10is_public_author\x18\x04 \x01(\x08\x12\x12\n\npublic_ids\x18\x05 \x03(\t\"O\n\x1d\x44\x65precatedChangeAuthorArchive\x12\x0c\n\x04name\x18\x01 \x01(\t\x12 \n\x0c\x63hange_color\x18\x02 \x01(\x0b\x32\n.TSP.Color\"K\n\x1e\x41nnotationAuthorStorageArchive\x12)\n\x11\x61nnotation_author\x18\x01 \x03(\x0b\x32\x0e.TSP.Reference\"\xd1\x02\n*CommandBehaviorSelectionPathStorageArchive\x12\x35\n\x12\x61rchived_selection\x18\x01 \x01(\x0b\x32\x19.TSK.SelectionPathArchive\x12\x39\n\x16\x61rchived_old_selection\x18\x02 \x01(\x0b\x32\x19.TSK.SelectionPathArchive\x12\x39\n\x16\x61rchived_new_selection\x18\x03 \x01(\x0b\x32\x19.TSK.SelectionPathArchive\x12:\n\"forward_selection_path_transformer\x18\x04 \x01(\x0b\x32\x0e.TSP.Reference\x12:\n\"reverse_selection_path_transformer\x18\x05 \x01(\x0b\x32\x0e.TSP.Reference\"o\n\x16\x43ommandBehaviorArchive\x12*\n\x12selection_behavior\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12)\n\x11\x61\x63tivity_behavior\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\"\xfa\x01\n\x1f\x43ommandSelectionBehaviorArchive\x12.\n\x16selection_path_storage\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12\x17\n\x0fselection_flags\x18\x02 \x01(\x04\x12*\n\"additional_forward_selection_flags\x18\x03 \x01(\x04\x12*\n\"additional_reverse_selection_flags\x18\x04 \x01(\x04\x12\x36\n\x1e\x61\x64\x64itional_selection_behaviors\x18\x05 \x03(\x0b\x32\x0e.TSP.Reference\"Q\n\x1fSelectionPathTransformerArchive\x12.\n\x16selection_transformers\x18\x01 \x03(\x0b\x32\x0e.TSP.Reference\"B\n\x14SelectionPathArchive\x12*\n\x12ordered_selections\x18\x01 \x03(\x0b\x32\x0e.TSP.Reference\"A\n\x18\x44ocumentSelectionArchive\x12%\n\rdocument_root\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\"8\n\x12NullCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\"[\n\x19GroupCommitCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1a\n\x12\x63\x61n_coalesce_group\x18\x02 \x01(\x08\"L\n&UpgradeDocPostProcessingCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\"R\n,InducedCommandCollectionCommitCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\"\xb0\x02\n\'ChangeDocumentPackageTypeCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12R\n\x10new_package_type\x18\x02 \x02(\x0e\x32\x38.TSK.ChangeDocumentPackageTypeCommandArchive.PackageType\x12R\n\x10old_package_type\x18\x03 \x02(\x0e\x32\x38.TSK.ChangeDocumentPackageTypeCommandArchive.PackageType\"9\n\x0bPackageType\x12\x0b\n\x07\x44\x65\x66\x61ult\x10\x00\x12\r\n\tDirectory\x10\x01\x12\x0e\n\nSingleFile\x10\x02\">\n\x0cRangeAddress\x12\x1a\n\x12\x61\x64\x64ress_identifier\x18\x01 \x03(\x04\x12\x12\n\nrange_list\x18\x02 \x03(\r\"\x8a\x04\n\tOperation\x12\x38\n\x04type\x18\x01 \x01(\x0e\x32\x1c.TSK.Operation.OperationType:\x0cReplaceRange\x12\x13\n\x04noop\x18\x02 \x01(\x08:\x05\x66\x61lse\x12\x1e\n\x12\x61\x64\x64ress_identifier\x18\x03 \x03(\x06\x42\x02\x10\x01\x12\x18\n\rinsert_length\x18\x04 \x01(\x04:\x01\x31\x12/\n preserve_lower_priority_location\x18\x05 \x01(\x08:\x05\x66\x61lse\x12\x16\n\nrange_list\x18\x06 \x03(\rB\x02\x10\x01\x12\x1d\n\x12transform_behavior\x18\x07 \x01(\r:\x01\x37\x12\x13\n\x0bproperty_id\x18\x08 \x01(\r\x12\x16\n\nfrom_index\x18\t \x01(\x05:\x02-1\x12\x14\n\x08to_index\x18\n \x01(\x05:\x02-1\x12\x19\n\ndominating\x18\x0b \x01(\x08:\x05\x66\x61lse\x12\x18\n\x0cobject_count\x18\x0c \x01(\x05:\x02-1\x12\x1f\n\x14object_counter_space\x18\r \x01(\x05:\x01\x30\"s\n\rOperationType\x12\x07\n\x03\x41\x64\x64\x10\x00\x12\n\n\x06Remove\x10\x01\x12\r\n\tPlacement\x10\x02\x12\r\n\tRearrange\x10\x03\x12\x0c\n\x08UpdateId\x10\x04\x12\x0f\n\x0bUpdateRange\x10\x05\x12\x10\n\x0cReplaceRange\x10\x06\"S\n\x14OperationTransformer\x12\x17\n\x0fhigher_priority\x18\x01 \x02(\x08\x12\"\n\noperations\x18\x02 \x03(\x0b\x32\x0e.TSK.Operation\"\xc5\x02\n\x18OutgoingCommandQueueItem\x12\x1f\n\x07\x63ommand\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12:\n2serialized_json_without_data_base64_encoded_string\x18\x02 \x01(\t\x12L\n0serialized_json_without_data_base64_encoded_data\x18\x04 \x01(\x0b\x32\x12.TSP.DataReference\x12Q\n\x18uuid_to_data_map_entries\x18\x03 \x03(\x0b\x32/.TSK.OutgoingCommandQueueItemUUIDToDataMapEntry\x12+\n\x0flarge_data_list\x18\x05 \x03(\x0b\x32\x12.TSP.DataReference\"g\n*OutgoingCommandQueueItemUUIDToDataMapEntry\x12\x17\n\x04uuid\x18\x01 \x02(\x0b\x32\t.TSP.UUID\x12 \n\x04\x64\x61ta\x18\x02 \x02(\x0b\x32\x12.TSP.DataReference\"\x85\x01\n\x18NativeContentDescription\x12\x10\n\x08\x61pp_name\x18\x01 \x01(\t\x12\x13\n\x0b\x61pp_version\x18\x02 \x01(\t\x12\x13\n\x0b\x64ocument_id\x18\x03 \x01(\t\x12-\n\x15\x64rawable_descriptions\x18\x04 \x03(\x0b\x32\x0e.TSP.Reference\"\x83\x03\n\x1cStructuredTextImportSettings\x12+\n\x04type\x18\x01 \x02(\x0e\x32\x1d.TSK.StructuredTextImportType\x12\x14\n\x0cstarting_row\x18\x02 \x02(\x05\x12\x1a\n\x12\x64\x65\x63imal_separators\x18\x03 \x03(\t\x12\x1c\n\x14thousands_separators\x18\x04 \x03(\t\x12\"\n\x1atranspose_rows_and_columns\x18\x05 \x01(\x08\x12\x12\n\ndelimiters\x18\x06 \x03(\t\x12\x17\n\x0ftext_qualifiers\x18\x07 \x03(\t\x12\x1c\n\x14\x63ollapse_consecutive\x18\x08 \x01(\x08\x12%\n\x0e\x63olumn_offsets\x18\t \x01(\x0b\x32\r.TSP.IndexSet\x12\x1c\n\x14\x61utomatic_delimiters\x18\n \x01(\x08\x12\x19\n\x11\x61utomatic_offsets\x18\x0b \x01(\x08\x12\x17\n\x0fsource_encoding\x18\x0c \x01(\x04\"\xe6\x01\n&OperationStorageCommandOperationsEntry\x12\x36\n.command_identifier_same_as_revision_identifier\x18\x01 \x01(\x08\x12\x1e\n\x12\x63ommand_identifier\x18\x02 \x03(\x06\x42\x02\x10\x01\x12\"\n\noperations\x18\x03 \x03(\x0b\x32\x0e.TSK.Operation\x12\x19\n\x11server_originated\x18\x04 \x01(\x08\x12%\n\x1d\x63oalesced_command_entry_count\x18\x05 \x01(\x04\"\xa2\x02\n\x15OperationStorageEntry\x12(\n\x1c\x64ocument_revision_identifier\x18\x01 \x03(\x06\x42\x02\x10\x01\x12(\n document_revision_sequence_delta\x18\x02 \x01(\x05\x12N\n\x19\x63ommand_operation_entries\x18\x03 \x03(\x0b\x32+.TSK.OperationStorageCommandOperationsEntry\x12!\n\x19\x66irst_entry_creation_time\x18\x04 \x01(\x01\x12!\n\x19\x63reation_time_diff_bucket\x18\x05 \x01(\x05\x12\x1f\n\x13\x66ile_format_version\x18\x06 \x03(\rB\x02\x10\x01\"\xc4\x03\n\x13\x44\x61taReferenceRecord\x12q\n-added_container_uuid_to_referenced_data_pairs\x18\x01 \x03(\x0b\x32:.TSK.DataReferenceRecord.ContainerUUIDToReferencedDataPair\x12s\n/removed_container_uuid_to_referenced_data_pairs\x18\x02 \x03(\x0b\x32:.TSK.DataReferenceRecord.ContainerUUIDToReferencedDataPair\x12\x36\n\x1aunbounded_referenced_datas\x18\x03 \x03(\x0b\x32\x12.TSP.DataReference\x1a\x8c\x01\n!ContainerUUIDToReferencedDataPair\x12!\n\x0e\x63ontainer_uuid\x18\x01 \x02(\x0b\x32\t.TSP.UUID\x12+\n\x0freferenced_data\x18\x02 \x02(\x0b\x32\x12.TSP.DataReference\x12\x17\n\x0freference_count\x18\x03 \x02(\r\"\xea\x02\n\x17PencilAnnotationUIState\x12U\n\x11\x63urrent_tool_type\x18\x01 \x01(\x0e\x32\x35.TSK.PencilAnnotationUIState.PencilAnnotationToolType:\x03Pen\x12\"\n\x0epen_tool_color\x18\x02 \x01(\x0b\x32\n.TSP.Color\x12\x18\n\x10pen_tool_opacity\x18\x03 \x01(\x02\x12\x16\n\x0epen_tool_width\x18\x04 \x01(\x02\x12*\n\x16highlighter_tool_color\x18\x05 \x01(\x0b\x32\n.TSP.Color\x12 \n\x18highlighter_tool_opacity\x18\x06 \x01(\x02\x12\x1e\n\x16highlighter_tool_width\x18\x07 \x01(\x02\"4\n\x18PencilAnnotationToolType\x12\x07\n\x03Pen\x10\x00\x12\x0f\n\x0bHighlighter\x10\x01*g\n\x18StructuredTextImportType\x12\x16\n\x12ImportType_UNKNOWN\x10\x00\x12\x18\n\x14ImportType_DELIMITED\x10\x01\x12\x19\n\x15ImportType_FIXEDWIDTH\x10\x02')
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x11TSKArchives.proto\x12\x03TSK\x1a\x11TSPMessages.proto\"Z\n\x08TreeNode\x12\x0c\n\x04name\x18\x01 \x01(\t\x12 \n\x08\x63hildren\x18\x02 \x03(\x0b\x32\x0e.TSP.Reference\x12\x1e\n\x06object\x18\x03 \x01(\x0b\x32\x0e.TSP.Reference\"\\\n\x17LocalCommandHistoryItem\x12\x1f\n\x07\x63ommand\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12 \n\x08\x62\x65havior\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\"@\n\x18LocalCommandHistoryArray\x12$\n\x0blarge_array\x18\x01 \x02(\x0b\x32\x0f.TSP.LargeArray\"c\n\x1fLocalCommandHistoryArraySegment\x12@\n\x1alarge_object_array_segment\x18\x01 \x02(\x0b\x32\x1c.TSP.LargeObjectArraySegment\"l\n\x13LocalCommandHistory\x12\x12\n\nundo_count\x18\x01 \x02(\r\x12#\n\x0bitems_array\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\x12\x1c\n\x14\x66ixed_radar_13365177\x18\n \x01(\x08\"\xda\x04\n\x0f\x44ocumentArchive\x12\x19\n\x11locale_identifier\x18\x04 \x01(\t\x12\x31\n\x19\x61nnotation_author_storage\x18\x07 \x01(\x0b\x32\x0e.TSP.Reference\x12,\n\x14\x61\x63tivity_log_entries\x18\x08 \x03(\x0b\x32\x0e.TSP.Reference\x12\"\n\x1a\x63reation_locale_identifier\x18\t \x01(\t\x12(\n prevent_image_conversion_on_open\x18\n \x01(\x08\x12\x1b\n\x13has_floating_locale\x18\x0b \x01(\x08\x12\x1f\n\x17has_user_defined_locale\x18\x0c \x01(\x08\x12\x37\n\x1f\x63ollaboration_operation_history\x18\x0e \x01(\x0b\x32\x0e.TSP.Reference\x12\x38\n0should_measure_negatively_tracked_text_correctly\x18\x0f \x01(\x08\x12-\n%use_optimized_text_vertical_alignment\x18\x10 \x01(\x08\x12\x38\n0should_allow_ligatures_in_minimally_tracked_text\x18\x12 \x01(\x08\x12\x39\n\x12\x66ormatting_symbols\x18\x11 \x01(\x0b\x32\x1d.TSK.FormattingSymbolsArchive\x12(\n\x0f\x61\x63tivity_stream\x18\xc7\x01 \x01(\x0b\x32\x0e.TSP.Reference\"\xb9\n\n\x18\x46ormattingSymbolsArchive\x12\x0f\n\x07version\x18\x01 \x01(\t\x12\x10\n\x08\x63\x61lendar\x18\x02 \x01(\t\x12\x18\n\x10numbering_system\x18\x03 \x01(\t\x12\x0e\n\x06months\x18\x04 \x03(\t\x12\x19\n\x11standalone_months\x18\x05 \x03(\t\x12\x14\n\x0cshort_months\x18\x06 \x03(\t\x12\x1f\n\x17standalone_short_months\x18\x07 \x03(\t\x12\x10\n\x08weekdays\x18\x08 \x03(\t\x12\x1b\n\x13standalone_weekdays\x18\t \x03(\t\x12\x16\n\x0eshort_weekdays\x18\n \x03(\t\x12!\n\x19standalone_short_weekdays\x18\x0b \x03(\t\x12\x11\n\tam_symbol\x18\x0c \x01(\t\x12\x11\n\tpm_symbol\x18\r \x01(\t\x12\x13\n\x0btiny_months\x18\x0e \x03(\t\x12\x1e\n\x16standalone_tiny_months\x18\x0f \x03(\t\x12\x15\n\rtiny_weekdays\x18\x10 \x03(\t\x12 \n\x18standalone_tiny_weekdays\x18\x11 \x03(\t\x12\x10\n\x08quarters\x18\x12 \x03(\t\x12\x1b\n\x13standalone_quarters\x18\x13 \x03(\t\x12\x16\n\x0eshort_quarters\x18\x14 \x03(\t\x12!\n\x19standalone_short_quarters\x18\x15 \x03(\t\x12\x0c\n\x04\x65ras\x18\x16 \x03(\t\x12\x11\n\tlong_eras\x18\x17 \x03(\t\x12\x1a\n\x12short_date_pattern\x18\x18 \x01(\t\x12\x1b\n\x13medium_date_pattern\x18\x19 \x01(\t\x12\x19\n\x11long_date_pattern\x18\x1a \x01(\t\x12\x19\n\x11\x66ull_date_pattern\x18\x1b \x01(\t\x12\x1a\n\x12short_time_pattern\x18\x1c \x01(\t\x12\x1b\n\x13medium_time_pattern\x18\x1d \x01(\t\x12\x19\n\x11long_time_pattern\x18\x1e \x01(\t\x12\x19\n\x11\x66ull_time_pattern\x18\x1f \x01(\t\x12\x19\n\x11\x64\x65\x63imal_separator\x18 \x01(\t\x12\x1a\n\x12grouping_separator\x18! \x01(\t\x12\"\n\x1a\x63urrency_decimal_separator\x18\" \x01(\t\x12#\n\x1b\x63urrency_grouping_separator\x18# \x01(\t\x12\x11\n\tplus_sign\x18$ \x01(\t\x12\x12\n\nminus_sign\x18% \x01(\t\x12\x1a\n\x12\x65xponential_symbol\x18& \x01(\t\x12\x16\n\x0epercent_symbol\x18\' \x01(\t\x12\x18\n\x10per_mille_symbol\x18( \x01(\t\x12\x17\n\x0finfinity_symbol\x18) \x01(\t\x12\x12\n\nnan_symbol\x18* \x01(\t\x12\x17\n\x0f\x64\x65\x63imal_pattern\x18+ \x01(\t\x12\x1a\n\x12scientific_pattern\x18, \x01(\t\x12\x17\n\x0fpercent_pattern\x18- \x01(\t\x12\x18\n\x10\x63urrency_pattern\x18. \x01(\t\x12\x15\n\rcurrency_code\x18/ \x01(\t\x12\x46\n\x10\x63urrency_symbols\x18\x30 \x03(\x0b\x32,.TSK.FormattingSymbolsArchive.CurrencySymbol\x1a.\n\x0e\x43urrencySymbol\x12\x0c\n\x04\x63ode\x18\x01 \x02(\t\x12\x0e\n\x06symbol\x18\x02 \x02(\t\"\x8b\x05\n\x16\x44ocumentSupportArchive\x12\'\n\x0f\x63ommand_history\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12\x12\n\nundo_count\x18\x04 \x01(\r\x12\x12\n\nredo_count\x18\x05 \x01(\r\x12\x1a\n\x12undo_action_string\x18\x06 \x01(\t\x12\x1a\n\x12redo_action_string\x18\x07 \x01(\t\x12!\n\tweb_state\x18\x08 \x01(\x0b\x32\x0e.TSP.Reference\x12\'\n\x18is_in_collaboration_mode\x18\t \x01(\x08:\x05\x66\x61lse\x12\"\n\x1a\x61\x63tion_string_localization\x18\x0c \x01(\t\x12+\n\x13\x63ollaboration_state\x18\r \x01(\x0b\x32\x0e.TSP.Reference\x12\x31\n\x19\x61\x63tivity_notification_map\x18\x0e \x01(\x0b\x32\x0e.TSP.Reference\x12<\n$removed_author_auditor_pending_state\x18\x0f \x01(\x0b\x32\x0e.TSP.Reference\x12>\n\"command_selection_behavior_history\x18\x02 \x01(\x0b\x32\x0e.TSP.ReferenceB\x02\x18\x01\x12&\n\nview_state\x18\x03 \x01(\x0b\x32\x0e.TSP.ReferenceB\x02\x18\x01\x12\x39\n\x1d\x63ollaboration_command_history\x18\n \x01(\x0b\x32\x0e.TSP.ReferenceB\x02\x18\x01\x12\x37\n\x1b\x63ollaboration_session_state\x18\x0b \x01(\x0b\x32\x0e.TSP.ReferenceB\x02\x18\x01\"\x85\x01\n\x10ViewStateArchive\x12\'\n\x0fview_state_root\x18\x01 \x02(\x0b\x32\x0e.TSP.Reference\x12\"\n\x1a\x64ocument_revision_sequence\x18\x02 \x01(\x05\x12$\n\x1c\x64ocument_revision_identifier\x18\x03 \x01(\t\"\xf1\x01\n\x0e\x43ommandArchive\x12)\n\rundoRedoState\x18\x01 \x01(\x0b\x32\x0e.TSP.ReferenceB\x02\x18\x01\x12&\n\x0eundoCollection\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\x12\x1d\n\x15shadowed_by_transform\x18\x03 \x01(\x08\x12\x1a\n\x12shadowed_by_commit\x18\x04 \x01(\x08\x12\x0e\n\x06remote\x18\x05 \x01(\x08\x12&\n\x1eshould_hold_until_group_commit\x18\x06 \x01(\x08\x12\x19\n\x11server_originated\x18\x07 \x01(\x08\"\xb6\x01\n\x13\x43ommandGroupArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12 \n\x08\x63ommands\x18\x02 \x03(\x0b\x32\x0e.TSP.Reference\x12&\n\x0fprocess_results\x18\x03 \x01(\x0b\x32\r.TSP.IndexSet\x12\x15\n\raction_string\x18\x04 \x01(\t\x12\x1a\n\x12\x63\x61n_coalesce_group\x18\x05 \x01(\x08\"\xd7\x01\n\x1fInducedCommandCollectionArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12(\n\x10inducing_command\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\x12(\n\x10induced_commands\x18\x03 \x03(\x0b\x32\x0e.TSP.Reference\x12<\n%indexes_of_processed_induced_commands\x18\x04 \x01(\x0b\x32\r.TSP.IndexSet\"\x8a\x02\n\"PropagatedCommandCollectionArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12,\n\x14propagatable_command\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x12\x32\n#propagatable_command_process_result\x18\x03 \x01(\x08:\x05\x66\x61lse\x12+\n\x13propagating_command\x18\x04 \x02(\x0b\x32\x0e.TSP.Reference\x12\x31\n\"propagating_command_process_result\x18\x05 \x01(\x08:\x05\x66\x61lse\"\xd9\x01\n\x17\x46inalCommandPairArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1f\n\x07\x63ommand\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x12%\n\x16\x63ommand_process_result\x18\x03 \x01(\x08:\x05\x66\x61lse\x12%\n\rfinal_command\x18\x04 \x02(\x0b\x32\x0e.TSP.Reference\x12+\n\x1c\x66inal_command_process_result\x18\x05 \x01(\x08:\x05\x66\x61lse\";\n\x17\x43ommandContainerArchive\x12 \n\x08\x63ommands\x18\x01 \x03(\x0b\x32\x0e.TSP.Reference\"I\n\x1eProgressiveCommandGroupArchive\x12\'\n\x05super\x18\x01 \x02(\x0b\x32\x18.TSK.CommandGroupArchive\"\xcc\n\n\x13\x46ormatStructArchive\x12\x13\n\x0b\x66ormat_type\x18\x01 \x01(\r\x12\x16\n\x0e\x64\x65\x63imal_places\x18\x02 \x01(\r\x12\x15\n\rcurrency_code\x18\x03 \x01(\t\x12\x16\n\x0enegative_style\x18\x04 \x01(\r\x12 \n\x18show_thousands_separator\x18\x05 \x01(\x08\x12\x1c\n\x14use_accounting_style\x18\x06 \x01(\x08\x12\x16\n\x0e\x64uration_style\x18\x07 \x01(\r\x12\x0c\n\x04\x62\x61se\x18\x08 \x01(\r\x12\x13\n\x0b\x62\x61se_places\x18\t \x01(\r\x12\x1b\n\x13\x62\x61se_use_minus_sign\x18\n \x01(\x08\x12\x19\n\x11\x66raction_accuracy\x18\x0b \x01(\r\x12\x1c\n\x14suppress_date_format\x18\x0c \x01(\x08\x12\x1c\n\x14suppress_time_format\x18\r \x01(\x08\x12\x18\n\x10\x64\x61te_time_format\x18\x0e \x01(\t\x12\x1d\n\x15\x64uration_unit_largest\x18\x0f \x01(\r\x12\x1e\n\x16\x64uration_unit_smallest\x18\x10 \x01(\r\x12\x11\n\tcustom_id\x18\x11 \x01(\r\x12\x1c\n\x14\x63ustom_format_string\x18\x12 \x01(\t\x12\x14\n\x0cscale_factor\x18\x13 \x01(\x01\x12%\n\x1drequires_fraction_replacement\x18\x14 \x01(\x08\x12\x17\n\x0f\x63ontrol_minimum\x18\x15 \x01(\x01\x12\x17\n\x0f\x63ontrol_maximum\x18\x16 \x01(\x01\x12\x19\n\x11\x63ontrol_increment\x18\x17 \x01(\x01\x12\x1b\n\x13\x63ontrol_format_type\x18\x18 \x01(\r\x12\x1a\n\x12slider_orientation\x18\x19 \x01(\r\x12\x17\n\x0fslider_position\x18\x1a \x01(\r\x12\x15\n\rdecimal_width\x18\x1b \x01(\r\x12\x19\n\x11min_integer_width\x18\x1c \x01(\r\x12#\n\x1bnum_nonspace_integer_digits\x18\x1d \x01(\r\x12#\n\x1bnum_nonspace_decimal_digits\x18\x1e \x01(\r\x12%\n\x1dindex_from_right_last_integer\x18\x1f \x01(\r\x12\x1c\n\x14interstitial_strings\x18 \x03(\t\x12\x33\n\x1cinters_str_insertion_indexes\x18! \x01(\x0b\x32\r.TSP.IndexSet\x12\x1f\n\x17num_hash_decimal_digits\x18\" \x01(\r\x12 \n\x18total_num_decimal_digits\x18# \x01(\r\x12\x12\n\nis_complex\x18$ \x01(\x08\x12\x1e\n\x16\x63ontains_integer_token\x18% \x01(\x08\x12*\n\"multiple_choice_list_initial_value\x18& \x01(\r\x12\x1f\n\x17multiple_choice_list_id\x18\' \x01(\r\x12$\n\x1cuse_automatic_duration_units\x18( \x01(\x08\x12\x1d\n\ncustom_uid\x18) \x01(\x0b\x32\t.TSP.UUID\x12/\n\rcustom_format\x18* \x01(\x0b\x32\x18.TSK.CustomFormatArchive\x12\x16\n\x0euses_plus_sign\x18+ \x01(\x08\x12\x18\n\x10\x62ool_true_string\x18, \x01(\t\x12\x19\n\x11\x62ool_false_string\x18- \x01(\t*\x07\x08\x90N\x10\xa1\x9c\x01\"\xcf\x02\n\x13\x43ustomFormatArchive\x12\x0c\n\x04name\x18\x01 \x02(\t\x12\x1b\n\x13\x66ormat_type_pre_bnc\x18\x02 \x02(\r\x12\x30\n\x0e\x64\x65\x66\x61ult_format\x18\x03 \x02(\x0b\x32\x18.TSK.FormatStructArchive\x12\x36\n\nconditions\x18\x04 \x03(\x0b\x32\".TSK.CustomFormatArchive.Condition\x12\x13\n\x0b\x66ormat_type\x18\x05 \x01(\r\x1a\x8d\x01\n\tCondition\x12\x16\n\x0e\x63ondition_type\x18\x01 \x02(\r\x12\x17\n\x0f\x63ondition_value\x18\x02 \x01(\x02\x12\x32\n\x10\x63ondition_format\x18\x03 \x02(\x0b\x32\x18.TSK.FormatStructArchive\x12\x1b\n\x13\x63ondition_value_dbl\x18\x04 \x01(\x01\"e\n\x17\x43ustomFormatListArchive\x12\x18\n\x05uuids\x18\x01 \x03(\x0b\x32\t.TSP.UUID\x12\x30\n\x0e\x63ustom_formats\x18\x02 \x03(\x0b\x32\x18.TSK.CustomFormatArchive\"\x83\x01\n\x17\x41nnotationAuthorArchive\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x19\n\x05\x63olor\x18\x02 \x01(\x0b\x32\n.TSP.Color\x12\x11\n\tpublic_id\x18\x03 \x01(\t\x12\x18\n\x10is_public_author\x18\x04 \x01(\x08\x12\x12\n\npublic_ids\x18\x05 \x03(\t\"O\n\x1d\x44\x65precatedChangeAuthorArchive\x12\x0c\n\x04name\x18\x01 \x01(\t\x12 \n\x0c\x63hange_color\x18\x02 \x01(\x0b\x32\n.TSP.Color\"K\n\x1e\x41nnotationAuthorStorageArchive\x12)\n\x11\x61nnotation_author\x18\x01 \x03(\x0b\x32\x0e.TSP.Reference\"\xd1\x02\n*CommandBehaviorSelectionPathStorageArchive\x12\x35\n\x12\x61rchived_selection\x18\x01 \x01(\x0b\x32\x19.TSK.SelectionPathArchive\x12\x39\n\x16\x61rchived_old_selection\x18\x02 \x01(\x0b\x32\x19.TSK.SelectionPathArchive\x12\x39\n\x16\x61rchived_new_selection\x18\x03 \x01(\x0b\x32\x19.TSK.SelectionPathArchive\x12:\n\"forward_selection_path_transformer\x18\x04 \x01(\x0b\x32\x0e.TSP.Reference\x12:\n\"reverse_selection_path_transformer\x18\x05 \x01(\x0b\x32\x0e.TSP.Reference\"o\n\x16\x43ommandBehaviorArchive\x12*\n\x12selection_behavior\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12)\n\x11\x61\x63tivity_behavior\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\"\xfa\x01\n\x1f\x43ommandSelectionBehaviorArchive\x12.\n\x16selection_path_storage\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12\x17\n\x0fselection_flags\x18\x02 \x01(\x04\x12*\n\"additional_forward_selection_flags\x18\x03 \x01(\x04\x12*\n\"additional_reverse_selection_flags\x18\x04 \x01(\x04\x12\x36\n\x1e\x61\x64\x64itional_selection_behaviors\x18\x05 \x03(\x0b\x32\x0e.TSP.Reference\"Q\n\x1fSelectionPathTransformerArchive\x12.\n\x16selection_transformers\x18\x01 \x03(\x0b\x32\x0e.TSP.Reference\"B\n\x14SelectionPathArchive\x12*\n\x12ordered_selections\x18\x01 \x03(\x0b\x32\x0e.TSP.Reference\"A\n\x18\x44ocumentSelectionArchive\x12%\n\rdocument_root\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\"8\n\x12NullCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\"[\n\x19GroupCommitCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1a\n\x12\x63\x61n_coalesce_group\x18\x02 \x01(\x08\"L\n&UpgradeDocPostProcessingCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\"R\n,InducedCommandCollectionCommitCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\"\xb0\x02\n\'ChangeDocumentPackageTypeCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12R\n\x10new_package_type\x18\x02 \x02(\x0e\x32\x38.TSK.ChangeDocumentPackageTypeCommandArchive.PackageType\x12R\n\x10old_package_type\x18\x03 \x02(\x0e\x32\x38.TSK.ChangeDocumentPackageTypeCommandArchive.PackageType\"9\n\x0bPackageType\x12\x0b\n\x07\x44\x65\x66\x61ult\x10\x00\x12\r\n\tDirectory\x10\x01\x12\x0e\n\nSingleFile\x10\x02\">\n\x0cRangeAddress\x12\x1a\n\x12\x61\x64\x64ress_identifier\x18\x01 \x03(\x04\x12\x12\n\nrange_list\x18\x02 \x03(\r\"\x8a\x04\n\tOperation\x12\x38\n\x04type\x18\x01 \x01(\x0e\x32\x1c.TSK.Operation.OperationType:\x0cReplaceRange\x12\x13\n\x04noop\x18\x02 \x01(\x08:\x05\x66\x61lse\x12\x1e\n\x12\x61\x64\x64ress_identifier\x18\x03 \x03(\x06\x42\x02\x10\x01\x12\x18\n\rinsert_length\x18\x04 \x01(\x04:\x01\x31\x12/\n preserve_lower_priority_location\x18\x05 \x01(\x08:\x05\x66\x61lse\x12\x16\n\nrange_list\x18\x06 \x03(\rB\x02\x10\x01\x12\x1d\n\x12transform_behavior\x18\x07 \x01(\r:\x01\x37\x12\x13\n\x0bproperty_id\x18\x08 \x01(\r\x12\x16\n\nfrom_index\x18\t \x01(\x05:\x02-1\x12\x14\n\x08to_index\x18\n \x01(\x05:\x02-1\x12\x19\n\ndominating\x18\x0b \x01(\x08:\x05\x66\x61lse\x12\x18\n\x0cobject_count\x18\x0c \x01(\x05:\x02-1\x12\x1f\n\x14object_counter_space\x18\r \x01(\x05:\x01\x30\"s\n\rOperationType\x12\x07\n\x03\x41\x64\x64\x10\x00\x12\n\n\x06Remove\x10\x01\x12\r\n\tPlacement\x10\x02\x12\r\n\tRearrange\x10\x03\x12\x0c\n\x08UpdateId\x10\x04\x12\x0f\n\x0bUpdateRange\x10\x05\x12\x10\n\x0cReplaceRange\x10\x06\"S\n\x14OperationTransformer\x12\x17\n\x0fhigher_priority\x18\x01 \x02(\x08\x12\"\n\noperations\x18\x02 \x03(\x0b\x32\x0e.TSK.Operation\"\x8f\x03\n\x18OutgoingCommandQueueItem\x12\x1f\n\x07\x63ommand\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12:\n2serialized_json_without_data_base64_encoded_string\x18\x02 \x01(\t\x12L\n0serialized_json_without_data_base64_encoded_data\x18\x04 \x01(\x0b\x32\x12.TSP.DataReference\x12\x1c\n\x14\x64id_rollback_reapply\x18\x06 \x01(\x08\x12*\n\"contains_large_pending_upload_data\x18\x07 \x01(\x08\x12Q\n\x18uuid_to_data_map_entries\x18\x03 \x03(\x0b\x32/.TSK.OutgoingCommandQueueItemUUIDToDataMapEntry\x12+\n\x0flarge_data_list\x18\x05 \x03(\x0b\x32\x12.TSP.DataReference\"g\n*OutgoingCommandQueueItemUUIDToDataMapEntry\x12\x17\n\x04uuid\x18\x01 \x02(\x0b\x32\t.TSP.UUID\x12 \n\x04\x64\x61ta\x18\x02 \x02(\x0b\x32\x12.TSP.DataReference\"\x85\x01\n\x18NativeContentDescription\x12\x10\n\x08\x61pp_name\x18\x01 \x01(\t\x12\x13\n\x0b\x61pp_version\x18\x02 \x01(\t\x12\x13\n\x0b\x64ocument_id\x18\x03 \x01(\t\x12-\n\x15\x64rawable_descriptions\x18\x04 \x03(\x0b\x32\x0e.TSP.Reference\"\x83\x03\n\x1cStructuredTextImportSettings\x12+\n\x04type\x18\x01 \x02(\x0e\x32\x1d.TSK.StructuredTextImportType\x12\x14\n\x0cstarting_row\x18\x02 \x02(\x05\x12\x1a\n\x12\x64\x65\x63imal_separators\x18\x03 \x03(\t\x12\x1c\n\x14thousands_separators\x18\x04 \x03(\t\x12\"\n\x1atranspose_rows_and_columns\x18\x05 \x01(\x08\x12\x12\n\ndelimiters\x18\x06 \x03(\t\x12\x17\n\x0ftext_qualifiers\x18\x07 \x03(\t\x12\x1c\n\x14\x63ollapse_consecutive\x18\x08 \x01(\x08\x12%\n\x0e\x63olumn_offsets\x18\t \x01(\x0b\x32\r.TSP.IndexSet\x12\x1c\n\x14\x61utomatic_delimiters\x18\n \x01(\x08\x12\x19\n\x11\x61utomatic_offsets\x18\x0b \x01(\x08\x12\x17\n\x0fsource_encoding\x18\x0c \x01(\x04\"\xe6\x01\n&OperationStorageCommandOperationsEntry\x12\x36\n.command_identifier_same_as_revision_identifier\x18\x01 \x01(\x08\x12\x1e\n\x12\x63ommand_identifier\x18\x02 \x03(\x06\x42\x02\x10\x01\x12\"\n\noperations\x18\x03 \x03(\x0b\x32\x0e.TSK.Operation\x12\x19\n\x11server_originated\x18\x04 \x01(\x08\x12%\n\x1d\x63oalesced_command_entry_count\x18\x05 \x01(\x04\"\xa2\x02\n\x15OperationStorageEntry\x12(\n\x1c\x64ocument_revision_identifier\x18\x01 \x03(\x06\x42\x02\x10\x01\x12(\n document_revision_sequence_delta\x18\x02 \x01(\x05\x12N\n\x19\x63ommand_operation_entries\x18\x03 \x03(\x0b\x32+.TSK.OperationStorageCommandOperationsEntry\x12!\n\x19\x66irst_entry_creation_time\x18\x04 \x01(\x01\x12!\n\x19\x63reation_time_diff_bucket\x18\x05 \x01(\x05\x12\x1f\n\x13\x66ile_format_version\x18\x06 \x03(\rB\x02\x10\x01\"\xc4\x03\n\x13\x44\x61taReferenceRecord\x12q\n-added_container_uuid_to_referenced_data_pairs\x18\x01 \x03(\x0b\x32:.TSK.DataReferenceRecord.ContainerUUIDToReferencedDataPair\x12s\n/removed_container_uuid_to_referenced_data_pairs\x18\x02 \x03(\x0b\x32:.TSK.DataReferenceRecord.ContainerUUIDToReferencedDataPair\x12\x36\n\x1aunbounded_referenced_datas\x18\x03 \x03(\x0b\x32\x12.TSP.DataReference\x1a\x8c\x01\n!ContainerUUIDToReferencedDataPair\x12!\n\x0e\x63ontainer_uuid\x18\x01 \x02(\x0b\x32\t.TSP.UUID\x12+\n\x0freferenced_data\x18\x02 \x02(\x0b\x32\x12.TSP.DataReference\x12\x17\n\x0freference_count\x18\x03 \x02(\r\"\xea\x02\n\x17PencilAnnotationUIState\x12U\n\x11\x63urrent_tool_type\x18\x01 \x01(\x0e\x32\x35.TSK.PencilAnnotationUIState.PencilAnnotationToolType:\x03Pen\x12\"\n\x0epen_tool_color\x18\x02 \x01(\x0b\x32\n.TSP.Color\x12\x18\n\x10pen_tool_opacity\x18\x03 \x01(\x02\x12\x16\n\x0epen_tool_width\x18\x04 \x01(\x02\x12*\n\x16highlighter_tool_color\x18\x05 \x01(\x0b\x32\n.TSP.Color\x12 \n\x18highlighter_tool_opacity\x18\x06 \x01(\x02\x12\x1e\n\x16highlighter_tool_width\x18\x07 \x01(\x02\"4\n\x18PencilAnnotationToolType\x12\x07\n\x03Pen\x10\x00\x12\x0f\n\x0bHighlighter\x10\x01*g\n\x18StructuredTextImportType\x12\x16\n\x12ImportType_UNKNOWN\x10\x00\x12\x18\n\x14ImportType_DELIMITED\x10\x01\x12\x19\n\x15ImportType_FIXEDWIDTH\x10\x02')
|
|
18
18
|
|
|
19
19
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
20
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'TSKArchives_pb2', globals())
|
|
@@ -41,8 +41,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
41
41
|
_OPERATIONSTORAGEENTRY.fields_by_name['document_revision_identifier']._serialized_options = b'\020\001'
|
|
42
42
|
_OPERATIONSTORAGEENTRY.fields_by_name['file_format_version']._options = None
|
|
43
43
|
_OPERATIONSTORAGEENTRY.fields_by_name['file_format_version']._serialized_options = b'\020\001'
|
|
44
|
-
_STRUCTUREDTEXTIMPORTTYPE._serialized_start=
|
|
45
|
-
_STRUCTUREDTEXTIMPORTTYPE._serialized_end=
|
|
44
|
+
_STRUCTUREDTEXTIMPORTTYPE._serialized_start=11204
|
|
45
|
+
_STRUCTUREDTEXTIMPORTTYPE._serialized_end=11307
|
|
46
46
|
_TREENODE._serialized_start=45
|
|
47
47
|
_TREENODE._serialized_end=135
|
|
48
48
|
_LOCALCOMMANDHISTORYITEM._serialized_start=137
|
|
@@ -54,93 +54,93 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
54
54
|
_LOCALCOMMANDHISTORY._serialized_start=398
|
|
55
55
|
_LOCALCOMMANDHISTORY._serialized_end=506
|
|
56
56
|
_DOCUMENTARCHIVE._serialized_start=509
|
|
57
|
-
_DOCUMENTARCHIVE._serialized_end=
|
|
58
|
-
_FORMATTINGSYMBOLSARCHIVE._serialized_start=
|
|
59
|
-
_FORMATTINGSYMBOLSARCHIVE._serialized_end=
|
|
60
|
-
_FORMATTINGSYMBOLSARCHIVE_CURRENCYSYMBOL._serialized_start=
|
|
61
|
-
_FORMATTINGSYMBOLSARCHIVE_CURRENCYSYMBOL._serialized_end=
|
|
62
|
-
_DOCUMENTSUPPORTARCHIVE._serialized_start=
|
|
63
|
-
_DOCUMENTSUPPORTARCHIVE._serialized_end=
|
|
64
|
-
_VIEWSTATEARCHIVE._serialized_start=
|
|
65
|
-
_VIEWSTATEARCHIVE._serialized_end=
|
|
66
|
-
_COMMANDARCHIVE._serialized_start=
|
|
67
|
-
_COMMANDARCHIVE._serialized_end=
|
|
68
|
-
_COMMANDGROUPARCHIVE._serialized_start=
|
|
69
|
-
_COMMANDGROUPARCHIVE._serialized_end=
|
|
70
|
-
_INDUCEDCOMMANDCOLLECTIONARCHIVE._serialized_start=
|
|
71
|
-
_INDUCEDCOMMANDCOLLECTIONARCHIVE._serialized_end=
|
|
72
|
-
_PROPAGATEDCOMMANDCOLLECTIONARCHIVE._serialized_start=
|
|
73
|
-
_PROPAGATEDCOMMANDCOLLECTIONARCHIVE._serialized_end=
|
|
74
|
-
_FINALCOMMANDPAIRARCHIVE._serialized_start=
|
|
75
|
-
_FINALCOMMANDPAIRARCHIVE._serialized_end=
|
|
76
|
-
_COMMANDCONTAINERARCHIVE._serialized_start=
|
|
77
|
-
_COMMANDCONTAINERARCHIVE._serialized_end=
|
|
78
|
-
_PROGRESSIVECOMMANDGROUPARCHIVE._serialized_start=
|
|
79
|
-
_PROGRESSIVECOMMANDGROUPARCHIVE._serialized_end=
|
|
80
|
-
_FORMATSTRUCTARCHIVE._serialized_start=
|
|
81
|
-
_FORMATSTRUCTARCHIVE._serialized_end=
|
|
82
|
-
_CUSTOMFORMATARCHIVE._serialized_start=
|
|
83
|
-
_CUSTOMFORMATARCHIVE._serialized_end=
|
|
84
|
-
_CUSTOMFORMATARCHIVE_CONDITION._serialized_start=
|
|
85
|
-
_CUSTOMFORMATARCHIVE_CONDITION._serialized_end=
|
|
86
|
-
_CUSTOMFORMATLISTARCHIVE._serialized_start=
|
|
87
|
-
_CUSTOMFORMATLISTARCHIVE._serialized_end=
|
|
88
|
-
_ANNOTATIONAUTHORARCHIVE._serialized_start=
|
|
89
|
-
_ANNOTATIONAUTHORARCHIVE._serialized_end=
|
|
90
|
-
_DEPRECATEDCHANGEAUTHORARCHIVE._serialized_start=
|
|
91
|
-
_DEPRECATEDCHANGEAUTHORARCHIVE._serialized_end=
|
|
92
|
-
_ANNOTATIONAUTHORSTORAGEARCHIVE._serialized_start=
|
|
93
|
-
_ANNOTATIONAUTHORSTORAGEARCHIVE._serialized_end=
|
|
94
|
-
_COMMANDBEHAVIORSELECTIONPATHSTORAGEARCHIVE._serialized_start=
|
|
95
|
-
_COMMANDBEHAVIORSELECTIONPATHSTORAGEARCHIVE._serialized_end=
|
|
96
|
-
_COMMANDBEHAVIORARCHIVE._serialized_start=
|
|
97
|
-
_COMMANDBEHAVIORARCHIVE._serialized_end=
|
|
98
|
-
_COMMANDSELECTIONBEHAVIORARCHIVE._serialized_start=
|
|
99
|
-
_COMMANDSELECTIONBEHAVIORARCHIVE._serialized_end=
|
|
100
|
-
_SELECTIONPATHTRANSFORMERARCHIVE._serialized_start=
|
|
101
|
-
_SELECTIONPATHTRANSFORMERARCHIVE._serialized_end=
|
|
102
|
-
_SELECTIONPATHARCHIVE._serialized_start=
|
|
103
|
-
_SELECTIONPATHARCHIVE._serialized_end=
|
|
104
|
-
_DOCUMENTSELECTIONARCHIVE._serialized_start=
|
|
105
|
-
_DOCUMENTSELECTIONARCHIVE._serialized_end=
|
|
106
|
-
_NULLCOMMANDARCHIVE._serialized_start=
|
|
107
|
-
_NULLCOMMANDARCHIVE._serialized_end=
|
|
108
|
-
_GROUPCOMMITCOMMANDARCHIVE._serialized_start=
|
|
109
|
-
_GROUPCOMMITCOMMANDARCHIVE._serialized_end=
|
|
110
|
-
_UPGRADEDOCPOSTPROCESSINGCOMMANDARCHIVE._serialized_start=
|
|
111
|
-
_UPGRADEDOCPOSTPROCESSINGCOMMANDARCHIVE._serialized_end=
|
|
112
|
-
_INDUCEDCOMMANDCOLLECTIONCOMMITCOMMANDARCHIVE._serialized_start=
|
|
113
|
-
_INDUCEDCOMMANDCOLLECTIONCOMMITCOMMANDARCHIVE._serialized_end=
|
|
114
|
-
_CHANGEDOCUMENTPACKAGETYPECOMMANDARCHIVE._serialized_start=
|
|
115
|
-
_CHANGEDOCUMENTPACKAGETYPECOMMANDARCHIVE._serialized_end=
|
|
116
|
-
_CHANGEDOCUMENTPACKAGETYPECOMMANDARCHIVE_PACKAGETYPE._serialized_start=
|
|
117
|
-
_CHANGEDOCUMENTPACKAGETYPECOMMANDARCHIVE_PACKAGETYPE._serialized_end=
|
|
118
|
-
_RANGEADDRESS._serialized_start=
|
|
119
|
-
_RANGEADDRESS._serialized_end=
|
|
120
|
-
_OPERATION._serialized_start=
|
|
121
|
-
_OPERATION._serialized_end=
|
|
122
|
-
_OPERATION_OPERATIONTYPE._serialized_start=
|
|
123
|
-
_OPERATION_OPERATIONTYPE._serialized_end=
|
|
124
|
-
_OPERATIONTRANSFORMER._serialized_start=
|
|
125
|
-
_OPERATIONTRANSFORMER._serialized_end=
|
|
126
|
-
_OUTGOINGCOMMANDQUEUEITEM._serialized_start=
|
|
127
|
-
_OUTGOINGCOMMANDQUEUEITEM._serialized_end=
|
|
128
|
-
_OUTGOINGCOMMANDQUEUEITEMUUIDTODATAMAPENTRY._serialized_start=
|
|
129
|
-
_OUTGOINGCOMMANDQUEUEITEMUUIDTODATAMAPENTRY._serialized_end=
|
|
130
|
-
_NATIVECONTENTDESCRIPTION._serialized_start=
|
|
131
|
-
_NATIVECONTENTDESCRIPTION._serialized_end=
|
|
132
|
-
_STRUCTUREDTEXTIMPORTSETTINGS._serialized_start=
|
|
133
|
-
_STRUCTUREDTEXTIMPORTSETTINGS._serialized_end=
|
|
134
|
-
_OPERATIONSTORAGECOMMANDOPERATIONSENTRY._serialized_start=
|
|
135
|
-
_OPERATIONSTORAGECOMMANDOPERATIONSENTRY._serialized_end=
|
|
136
|
-
_OPERATIONSTORAGEENTRY._serialized_start=
|
|
137
|
-
_OPERATIONSTORAGEENTRY._serialized_end=
|
|
138
|
-
_DATAREFERENCERECORD._serialized_start=
|
|
139
|
-
_DATAREFERENCERECORD._serialized_end=
|
|
140
|
-
_DATAREFERENCERECORD_CONTAINERUUIDTOREFERENCEDDATAPAIR._serialized_start=
|
|
141
|
-
_DATAREFERENCERECORD_CONTAINERUUIDTOREFERENCEDDATAPAIR._serialized_end=
|
|
142
|
-
_PENCILANNOTATIONUISTATE._serialized_start=
|
|
143
|
-
_PENCILANNOTATIONUISTATE._serialized_end=
|
|
144
|
-
_PENCILANNOTATIONUISTATE_PENCILANNOTATIONTOOLTYPE._serialized_start=
|
|
145
|
-
_PENCILANNOTATIONUISTATE_PENCILANNOTATIONTOOLTYPE._serialized_end=
|
|
57
|
+
_DOCUMENTARCHIVE._serialized_end=1111
|
|
58
|
+
_FORMATTINGSYMBOLSARCHIVE._serialized_start=1114
|
|
59
|
+
_FORMATTINGSYMBOLSARCHIVE._serialized_end=2451
|
|
60
|
+
_FORMATTINGSYMBOLSARCHIVE_CURRENCYSYMBOL._serialized_start=2405
|
|
61
|
+
_FORMATTINGSYMBOLSARCHIVE_CURRENCYSYMBOL._serialized_end=2451
|
|
62
|
+
_DOCUMENTSUPPORTARCHIVE._serialized_start=2454
|
|
63
|
+
_DOCUMENTSUPPORTARCHIVE._serialized_end=3105
|
|
64
|
+
_VIEWSTATEARCHIVE._serialized_start=3108
|
|
65
|
+
_VIEWSTATEARCHIVE._serialized_end=3241
|
|
66
|
+
_COMMANDARCHIVE._serialized_start=3244
|
|
67
|
+
_COMMANDARCHIVE._serialized_end=3485
|
|
68
|
+
_COMMANDGROUPARCHIVE._serialized_start=3488
|
|
69
|
+
_COMMANDGROUPARCHIVE._serialized_end=3670
|
|
70
|
+
_INDUCEDCOMMANDCOLLECTIONARCHIVE._serialized_start=3673
|
|
71
|
+
_INDUCEDCOMMANDCOLLECTIONARCHIVE._serialized_end=3888
|
|
72
|
+
_PROPAGATEDCOMMANDCOLLECTIONARCHIVE._serialized_start=3891
|
|
73
|
+
_PROPAGATEDCOMMANDCOLLECTIONARCHIVE._serialized_end=4157
|
|
74
|
+
_FINALCOMMANDPAIRARCHIVE._serialized_start=4160
|
|
75
|
+
_FINALCOMMANDPAIRARCHIVE._serialized_end=4377
|
|
76
|
+
_COMMANDCONTAINERARCHIVE._serialized_start=4379
|
|
77
|
+
_COMMANDCONTAINERARCHIVE._serialized_end=4438
|
|
78
|
+
_PROGRESSIVECOMMANDGROUPARCHIVE._serialized_start=4440
|
|
79
|
+
_PROGRESSIVECOMMANDGROUPARCHIVE._serialized_end=4513
|
|
80
|
+
_FORMATSTRUCTARCHIVE._serialized_start=4516
|
|
81
|
+
_FORMATSTRUCTARCHIVE._serialized_end=5872
|
|
82
|
+
_CUSTOMFORMATARCHIVE._serialized_start=5875
|
|
83
|
+
_CUSTOMFORMATARCHIVE._serialized_end=6210
|
|
84
|
+
_CUSTOMFORMATARCHIVE_CONDITION._serialized_start=6069
|
|
85
|
+
_CUSTOMFORMATARCHIVE_CONDITION._serialized_end=6210
|
|
86
|
+
_CUSTOMFORMATLISTARCHIVE._serialized_start=6212
|
|
87
|
+
_CUSTOMFORMATLISTARCHIVE._serialized_end=6313
|
|
88
|
+
_ANNOTATIONAUTHORARCHIVE._serialized_start=6316
|
|
89
|
+
_ANNOTATIONAUTHORARCHIVE._serialized_end=6447
|
|
90
|
+
_DEPRECATEDCHANGEAUTHORARCHIVE._serialized_start=6449
|
|
91
|
+
_DEPRECATEDCHANGEAUTHORARCHIVE._serialized_end=6528
|
|
92
|
+
_ANNOTATIONAUTHORSTORAGEARCHIVE._serialized_start=6530
|
|
93
|
+
_ANNOTATIONAUTHORSTORAGEARCHIVE._serialized_end=6605
|
|
94
|
+
_COMMANDBEHAVIORSELECTIONPATHSTORAGEARCHIVE._serialized_start=6608
|
|
95
|
+
_COMMANDBEHAVIORSELECTIONPATHSTORAGEARCHIVE._serialized_end=6945
|
|
96
|
+
_COMMANDBEHAVIORARCHIVE._serialized_start=6947
|
|
97
|
+
_COMMANDBEHAVIORARCHIVE._serialized_end=7058
|
|
98
|
+
_COMMANDSELECTIONBEHAVIORARCHIVE._serialized_start=7061
|
|
99
|
+
_COMMANDSELECTIONBEHAVIORARCHIVE._serialized_end=7311
|
|
100
|
+
_SELECTIONPATHTRANSFORMERARCHIVE._serialized_start=7313
|
|
101
|
+
_SELECTIONPATHTRANSFORMERARCHIVE._serialized_end=7394
|
|
102
|
+
_SELECTIONPATHARCHIVE._serialized_start=7396
|
|
103
|
+
_SELECTIONPATHARCHIVE._serialized_end=7462
|
|
104
|
+
_DOCUMENTSELECTIONARCHIVE._serialized_start=7464
|
|
105
|
+
_DOCUMENTSELECTIONARCHIVE._serialized_end=7529
|
|
106
|
+
_NULLCOMMANDARCHIVE._serialized_start=7531
|
|
107
|
+
_NULLCOMMANDARCHIVE._serialized_end=7587
|
|
108
|
+
_GROUPCOMMITCOMMANDARCHIVE._serialized_start=7589
|
|
109
|
+
_GROUPCOMMITCOMMANDARCHIVE._serialized_end=7680
|
|
110
|
+
_UPGRADEDOCPOSTPROCESSINGCOMMANDARCHIVE._serialized_start=7682
|
|
111
|
+
_UPGRADEDOCPOSTPROCESSINGCOMMANDARCHIVE._serialized_end=7758
|
|
112
|
+
_INDUCEDCOMMANDCOLLECTIONCOMMITCOMMANDARCHIVE._serialized_start=7760
|
|
113
|
+
_INDUCEDCOMMANDCOLLECTIONCOMMITCOMMANDARCHIVE._serialized_end=7842
|
|
114
|
+
_CHANGEDOCUMENTPACKAGETYPECOMMANDARCHIVE._serialized_start=7845
|
|
115
|
+
_CHANGEDOCUMENTPACKAGETYPECOMMANDARCHIVE._serialized_end=8149
|
|
116
|
+
_CHANGEDOCUMENTPACKAGETYPECOMMANDARCHIVE_PACKAGETYPE._serialized_start=8092
|
|
117
|
+
_CHANGEDOCUMENTPACKAGETYPECOMMANDARCHIVE_PACKAGETYPE._serialized_end=8149
|
|
118
|
+
_RANGEADDRESS._serialized_start=8151
|
|
119
|
+
_RANGEADDRESS._serialized_end=8213
|
|
120
|
+
_OPERATION._serialized_start=8216
|
|
121
|
+
_OPERATION._serialized_end=8738
|
|
122
|
+
_OPERATION_OPERATIONTYPE._serialized_start=8623
|
|
123
|
+
_OPERATION_OPERATIONTYPE._serialized_end=8738
|
|
124
|
+
_OPERATIONTRANSFORMER._serialized_start=8740
|
|
125
|
+
_OPERATIONTRANSFORMER._serialized_end=8823
|
|
126
|
+
_OUTGOINGCOMMANDQUEUEITEM._serialized_start=8826
|
|
127
|
+
_OUTGOINGCOMMANDQUEUEITEM._serialized_end=9225
|
|
128
|
+
_OUTGOINGCOMMANDQUEUEITEMUUIDTODATAMAPENTRY._serialized_start=9227
|
|
129
|
+
_OUTGOINGCOMMANDQUEUEITEMUUIDTODATAMAPENTRY._serialized_end=9330
|
|
130
|
+
_NATIVECONTENTDESCRIPTION._serialized_start=9333
|
|
131
|
+
_NATIVECONTENTDESCRIPTION._serialized_end=9466
|
|
132
|
+
_STRUCTUREDTEXTIMPORTSETTINGS._serialized_start=9469
|
|
133
|
+
_STRUCTUREDTEXTIMPORTSETTINGS._serialized_end=9856
|
|
134
|
+
_OPERATIONSTORAGECOMMANDOPERATIONSENTRY._serialized_start=9859
|
|
135
|
+
_OPERATIONSTORAGECOMMANDOPERATIONSENTRY._serialized_end=10089
|
|
136
|
+
_OPERATIONSTORAGEENTRY._serialized_start=10092
|
|
137
|
+
_OPERATIONSTORAGEENTRY._serialized_end=10382
|
|
138
|
+
_DATAREFERENCERECORD._serialized_start=10385
|
|
139
|
+
_DATAREFERENCERECORD._serialized_end=10837
|
|
140
|
+
_DATAREFERENCERECORD_CONTAINERUUIDTOREFERENCEDDATAPAIR._serialized_start=10697
|
|
141
|
+
_DATAREFERENCERECORD_CONTAINERUUIDTOREFERENCEDDATAPAIR._serialized_end=10837
|
|
142
|
+
_PENCILANNOTATIONUISTATE._serialized_start=10840
|
|
143
|
+
_PENCILANNOTATIONUISTATE._serialized_end=11202
|
|
144
|
+
_PENCILANNOTATIONUISTATE_PENCILANNOTATIONTOOLTYPE._serialized_start=11150
|
|
145
|
+
_PENCILANNOTATIONUISTATE_PENCILANNOTATIONTOOLTYPE._serialized_end=11202
|
|
146
146
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -15,7 +15,7 @@ import numbers_parser.generated.TSPMessages_pb2 as TSPMessages__pb2
|
|
|
15
15
|
import numbers_parser.generated.TSKArchives_pb2 as TSKArchives__pb2
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x11TSSArchives.proto\x12\x03TSS\x1a\x11TSPMessages.proto\x1a\x11TSKArchives.proto\"\x97\x01\n\x0cStyleArchive\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x18\n\x10style_identifier\x18\x02 \x01(\t\x12\x1e\n\x06parent\x18\x03 \x01(\x0b\x32\x0e.TSP.Reference\x12\x1b\n\x0cis_variation\x18\x04 \x01(\x08:\x05\x66\x61lse\x12\"\n\nstylesheet\x18\x05 \x01(\x0b\x32\x0e.TSP.Reference\"\
|
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x11TSSArchives.proto\x12\x03TSS\x1a\x11TSPMessages.proto\x1a\x11TSKArchives.proto\"\x97\x01\n\x0cStyleArchive\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x18\n\x10style_identifier\x18\x02 \x01(\t\x12\x1e\n\x06parent\x18\x03 \x01(\x0b\x32\x0e.TSP.Reference\x12\x1b\n\x0cis_variation\x18\x04 \x01(\x08:\x05\x66\x61lse\x12\"\n\nstylesheet\x18\x05 \x01(\x0b\x32\x0e.TSP.Reference\"\xf0\x0c\n\x11StylesheetArchive\x12\x1e\n\x06styles\x18\x01 \x03(\x0b\x32\x0e.TSP.Reference\x12L\n\x17identifier_to_style_map\x18\x02 \x03(\x0b\x32+.TSS.StylesheetArchive.IdentifiedStyleEntry\x12\x1e\n\x06parent\x18\x03 \x01(\x0b\x32\x0e.TSP.Reference\x12\x17\n\tis_locked\x18\x04 \x01(\x08:\x04true\x12O\n\x1cparent_to_children_style_map\x18\x05 \x03(\x0b\x32).TSS.StylesheetArchive.StyleChildrenEntry\x12\x1e\n\x0f\x63\x61n_cull_styles\x18\x06 \x01(\x08:\x05\x66\x61lse\x12?\n\x0fstyles_for_10_0\x18\x07 \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_10_1\x18\x08 \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_10_2\x18\t \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_11_0\x18\n \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_11_1\x18\x0b \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_11_2\x18\x0c \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_12_0\x18\r \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_12_1\x18\x0e \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_12_2\x18\x0f \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_13_0\x18\x10 \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_13_1\x18\x11 \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_13_2\x18\x12 \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_14_0\x18\x13 \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_14_1\x18\x14 \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x12?\n\x0fstyles_for_14_2\x18\x15 \x01(\x0b\x32&.TSS.StylesheetArchive.VersionedStyles\x1aI\n\x14IdentifiedStyleEntry\x12\x12\n\nidentifier\x18\x01 \x02(\t\x12\x1d\n\x05style\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x1aV\n\x12StyleChildrenEntry\x12\x1e\n\x06parent\x18\x01 \x02(\x0b\x32\x0e.TSP.Reference\x12 \n\x08\x63hildren\x18\x02 \x03(\x0b\x32\x0e.TSP.Reference\x1a\xd0\x01\n\x0fVersionedStyles\x12\x1e\n\x06styles\x18\x01 \x03(\x0b\x32\x0e.TSP.Reference\x12L\n\x17identifier_to_style_map\x18\x02 \x03(\x0b\x32+.TSS.StylesheetArchive.IdentifiedStyleEntry\x12O\n\x1cparent_to_children_style_map\x18\x03 \x03(\x0b\x32).TSS.StylesheetArchive.StyleChildrenEntry\"\x99\x02\n\x0cThemeArchive\x12)\n\x11legacy_stylesheet\x18\x01 \x01(\x0b\x32\x0e.TSP.Reference\x12\x18\n\x10theme_identifier\x18\x03 \x01(\t\x12+\n\x13\x64ocument_stylesheet\x18\x04 \x01(\x0b\x32\x0e.TSP.Reference\x12\x34\n!old_uuids_for_preset_replacements\x18\x05 \x03(\x0b\x32\t.TSP.UUID\x12\x34\n!new_uuids_for_preset_replacements\x18\x06 \x03(\x0b\x32\t.TSP.UUID\x12!\n\rcolor_presets\x18\n \x03(\x0b\x32\n.TSP.Color*\x08\x08\x64\x10\x80\x80\x80\x80\x02\"\xa6\x01\n\x18\x41pplyThemeCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12 \n\x08\x63ommands\x18\x02 \x03(\x0b\x32\x0e.TSP.Reference\x12!\n\told_theme\x18\x03 \x01(\x0b\x32\x0e.TSP.Reference\x12!\n\tnew_theme\x18\x04 \x01(\x0b\x32\x0e.TSP.Reference\"c\n\x1d\x41pplyThemeChildCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1e\n\x06parent\x18\x02 \x01(\x0b\x32\x0e.TSP.Reference\"\xa7\x02\n$StyleUpdatePropertyMapCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12%\n\rcurrent_style\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x12\x33\n\x1bstyle_with_old_property_map\x18\x03 \x01(\x0b\x32\x0e.TSP.Reference\x12\x33\n\x1bstyle_with_new_property_map\x18\x04 \x01(\x0b\x32\x0e.TSP.Reference\x12\"\n\nstyle_diff\x18\x07 \x01(\x0b\x32\x0e.TSP.Reference\x12&\n\x18notify_for_style_clients\x18\x06 \x01(\x08:\x04true\"\x98\x01\n ThemeReplacePresetCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1e\n\x06preset\x18\x03 \x02(\x0b\x32\x0e.TSP.Reference\x12!\n\toldPreset\x18\x04 \x01(\x0b\x32\x0e.TSP.Reference\x12\r\n\x05index\x18\x05 \x02(\r\"\xb3\x01\n%ThemeReplaceColorPresetCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1d\n\x05theme\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x12\x19\n\x05\x63olor\x18\x03 \x02(\x0b\x32\n.TSP.Color\x12\x1d\n\told_color\x18\x04 \x02(\x0b\x32\n.TSP.Color\x12\r\n\x05index\x18\x05 \x02(\r\"\xd1\x01\n!ThemeAddStylePresetCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1d\n\x05theme\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x12\x1e\n\x06preset\x18\x03 \x02(\x0b\x32\x0e.TSP.Reference\x12\x13\n\x0bpreset_kind\x18\x04 \x02(\t\x12\x12\n\nidentifier\x18\x05 \x01(\t\x12 \n\x18\x61\x64\x64_preset_to_stylesheet\x18\x06 \x01(\x08\"\xf4\x01\n$ThemeRemoveStylePresetCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1d\n\x05theme\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x12\x1e\n\x06preset\x18\x03 \x02(\x0b\x32\x0e.TSP.Reference\x12\x14\n\x0cpreset_index\x18\x04 \x02(\r\x12\x13\n\x0bpreset_kind\x18\x05 \x02(\t\x12\x12\n\nidentifier\x18\x06 \x01(\t\x12*\n\x12replacement_preset\x18\x07 \x01(\x0b\x32\x0e.TSP.Reference\"\xa6\x01\n\x1dThemeMovePresetCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1d\n\x05theme\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x12\x1c\n\tpreset_id\x18\x03 \x02(\x0b\x32\t.TSP.UUID\x12\x11\n\tnew_index\x18\x04 \x02(\r\x12\x11\n\told_index\x18\x05 \x02(\r\"\xaa\x01\n8ThemeReplaceStylePresetAndDisconnectStylesCommandArchive\x12\"\n\x05super\x18\x01 \x02(\x0b\x32\x13.TSK.CommandArchive\x12\x1e\n\x06preset\x18\x02 \x02(\x0b\x32\x0e.TSP.Reference\x12*\n\x12replacement_preset\x18\x03 \x02(\x0b\x32\x0e.TSP.Reference\"\xc3\x01\n\x1b\x43ommandPropertyEntryArchive\x12\x10\n\x08property\x18\x01 \x02(\r\x12\x0c\n\x04type\x18\x02 \x02(\x05\x12\x15\n\rinteger_value\x18\x03 \x01(\x05\x12\x13\n\x0b\x66loat_value\x18\x04 \x01(\x02\x12\x14\n\x0c\x64ouble_value\x18\x05 \x01(\x01\x12\x14\n\x0cstring_value\x18\x06 \x01(\t\x12%\n\rtsp_reference\x18\x07 \x01(\x0b\x32\x0e.TSP.Reference*\x05\x08\x08\x10\xd2\x0f\"W\n\x19\x43ommandPropertyMapArchive\x12:\n\x10property_entries\x18\x01 \x03(\x0b\x32 .TSS.CommandPropertyEntryArchive*G\n\tValueType\x12\x0e\n\nObjectType\x10\x00\x12\x0b\n\x07IntType\x10\x01\x12\r\n\tFloatType\x10\x02\x12\x0e\n\nDoubleType\x10\x03*\xba\x01\n\x0cPropertyType\x12\x17\n\x13InvalidPropertyType\x10\x01\x12\x14\n\x10NullPropertyType\x10\x02\x12\x17\n\x13IntegerPropertyType\x10\x03\x12\x15\n\x11\x46loatPropertyType\x10\x04\x12\x16\n\x12\x44oublePropertyType\x10\x05\x12\x18\n\x14NSStringPropertyType\x10\x06\x12\x19\n\x15TSPObjectPropertyType\x10\x07:;\n\x05\x63olor\x12 .TSS.CommandPropertyEntryArchive\x18\x08 \x01(\x0b\x32\n.TSP.Color')
|
|
19
19
|
|
|
20
20
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
21
21
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'TSSArchives_pb2', globals())
|
|
@@ -23,42 +23,42 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
23
23
|
CommandPropertyEntryArchive.RegisterExtension(color)
|
|
24
24
|
|
|
25
25
|
DESCRIPTOR._options = None
|
|
26
|
-
_VALUETYPE._serialized_start=
|
|
27
|
-
_VALUETYPE._serialized_end=
|
|
28
|
-
_PROPERTYTYPE._serialized_start=
|
|
29
|
-
_PROPERTYTYPE._serialized_end=
|
|
26
|
+
_VALUETYPE._serialized_start=4146
|
|
27
|
+
_VALUETYPE._serialized_end=4217
|
|
28
|
+
_PROPERTYTYPE._serialized_start=4220
|
|
29
|
+
_PROPERTYTYPE._serialized_end=4406
|
|
30
30
|
_STYLEARCHIVE._serialized_start=65
|
|
31
31
|
_STYLEARCHIVE._serialized_end=216
|
|
32
32
|
_STYLESHEETARCHIVE._serialized_start=219
|
|
33
|
-
_STYLESHEETARCHIVE._serialized_end=
|
|
34
|
-
_STYLESHEETARCHIVE_IDENTIFIEDSTYLEENTRY._serialized_start=
|
|
35
|
-
_STYLESHEETARCHIVE_IDENTIFIEDSTYLEENTRY._serialized_end=
|
|
36
|
-
_STYLESHEETARCHIVE_STYLECHILDRENENTRY._serialized_start=
|
|
37
|
-
_STYLESHEETARCHIVE_STYLECHILDRENENTRY._serialized_end=
|
|
38
|
-
_STYLESHEETARCHIVE_VERSIONEDSTYLES._serialized_start=
|
|
39
|
-
_STYLESHEETARCHIVE_VERSIONEDSTYLES._serialized_end=
|
|
40
|
-
_THEMEARCHIVE._serialized_start=
|
|
41
|
-
_THEMEARCHIVE._serialized_end=
|
|
42
|
-
_APPLYTHEMECOMMANDARCHIVE._serialized_start=
|
|
43
|
-
_APPLYTHEMECOMMANDARCHIVE._serialized_end=
|
|
44
|
-
_APPLYTHEMECHILDCOMMANDARCHIVE._serialized_start=
|
|
45
|
-
_APPLYTHEMECHILDCOMMANDARCHIVE._serialized_end=
|
|
46
|
-
_STYLEUPDATEPROPERTYMAPCOMMANDARCHIVE._serialized_start=
|
|
47
|
-
_STYLEUPDATEPROPERTYMAPCOMMANDARCHIVE._serialized_end=
|
|
48
|
-
_THEMEREPLACEPRESETCOMMANDARCHIVE._serialized_start=
|
|
49
|
-
_THEMEREPLACEPRESETCOMMANDARCHIVE._serialized_end=
|
|
50
|
-
_THEMEREPLACECOLORPRESETCOMMANDARCHIVE._serialized_start=
|
|
51
|
-
_THEMEREPLACECOLORPRESETCOMMANDARCHIVE._serialized_end=
|
|
52
|
-
_THEMEADDSTYLEPRESETCOMMANDARCHIVE._serialized_start=
|
|
53
|
-
_THEMEADDSTYLEPRESETCOMMANDARCHIVE._serialized_end=
|
|
54
|
-
_THEMEREMOVESTYLEPRESETCOMMANDARCHIVE._serialized_start=
|
|
55
|
-
_THEMEREMOVESTYLEPRESETCOMMANDARCHIVE._serialized_end=
|
|
56
|
-
_THEMEMOVEPRESETCOMMANDARCHIVE._serialized_start=
|
|
57
|
-
_THEMEMOVEPRESETCOMMANDARCHIVE._serialized_end=
|
|
58
|
-
_THEMEREPLACESTYLEPRESETANDDISCONNECTSTYLESCOMMANDARCHIVE._serialized_start=
|
|
59
|
-
_THEMEREPLACESTYLEPRESETANDDISCONNECTSTYLESCOMMANDARCHIVE._serialized_end=
|
|
60
|
-
_COMMANDPROPERTYENTRYARCHIVE._serialized_start=
|
|
61
|
-
_COMMANDPROPERTYENTRYARCHIVE._serialized_end=
|
|
62
|
-
_COMMANDPROPERTYMAPARCHIVE._serialized_start=
|
|
63
|
-
_COMMANDPROPERTYMAPARCHIVE._serialized_end=
|
|
33
|
+
_STYLESHEETARCHIVE._serialized_end=1867
|
|
34
|
+
_STYLESHEETARCHIVE_IDENTIFIEDSTYLEENTRY._serialized_start=1495
|
|
35
|
+
_STYLESHEETARCHIVE_IDENTIFIEDSTYLEENTRY._serialized_end=1568
|
|
36
|
+
_STYLESHEETARCHIVE_STYLECHILDRENENTRY._serialized_start=1570
|
|
37
|
+
_STYLESHEETARCHIVE_STYLECHILDRENENTRY._serialized_end=1656
|
|
38
|
+
_STYLESHEETARCHIVE_VERSIONEDSTYLES._serialized_start=1659
|
|
39
|
+
_STYLESHEETARCHIVE_VERSIONEDSTYLES._serialized_end=1867
|
|
40
|
+
_THEMEARCHIVE._serialized_start=1870
|
|
41
|
+
_THEMEARCHIVE._serialized_end=2151
|
|
42
|
+
_APPLYTHEMECOMMANDARCHIVE._serialized_start=2154
|
|
43
|
+
_APPLYTHEMECOMMANDARCHIVE._serialized_end=2320
|
|
44
|
+
_APPLYTHEMECHILDCOMMANDARCHIVE._serialized_start=2322
|
|
45
|
+
_APPLYTHEMECHILDCOMMANDARCHIVE._serialized_end=2421
|
|
46
|
+
_STYLEUPDATEPROPERTYMAPCOMMANDARCHIVE._serialized_start=2424
|
|
47
|
+
_STYLEUPDATEPROPERTYMAPCOMMANDARCHIVE._serialized_end=2719
|
|
48
|
+
_THEMEREPLACEPRESETCOMMANDARCHIVE._serialized_start=2722
|
|
49
|
+
_THEMEREPLACEPRESETCOMMANDARCHIVE._serialized_end=2874
|
|
50
|
+
_THEMEREPLACECOLORPRESETCOMMANDARCHIVE._serialized_start=2877
|
|
51
|
+
_THEMEREPLACECOLORPRESETCOMMANDARCHIVE._serialized_end=3056
|
|
52
|
+
_THEMEADDSTYLEPRESETCOMMANDARCHIVE._serialized_start=3059
|
|
53
|
+
_THEMEADDSTYLEPRESETCOMMANDARCHIVE._serialized_end=3268
|
|
54
|
+
_THEMEREMOVESTYLEPRESETCOMMANDARCHIVE._serialized_start=3271
|
|
55
|
+
_THEMEREMOVESTYLEPRESETCOMMANDARCHIVE._serialized_end=3515
|
|
56
|
+
_THEMEMOVEPRESETCOMMANDARCHIVE._serialized_start=3518
|
|
57
|
+
_THEMEMOVEPRESETCOMMANDARCHIVE._serialized_end=3684
|
|
58
|
+
_THEMEREPLACESTYLEPRESETANDDISCONNECTSTYLESCOMMANDARCHIVE._serialized_start=3687
|
|
59
|
+
_THEMEREPLACESTYLEPRESETANDDISCONNECTSTYLESCOMMANDARCHIVE._serialized_end=3857
|
|
60
|
+
_COMMANDPROPERTYENTRYARCHIVE._serialized_start=3860
|
|
61
|
+
_COMMANDPROPERTYENTRYARCHIVE._serialized_end=4055
|
|
62
|
+
_COMMANDPROPERTYMAPARCHIVE._serialized_start=4057
|
|
63
|
+
_COMMANDPROPERTYMAPARCHIVE._serialized_end=4144
|
|
64
64
|
# @@protoc_insertion_point(module_scope)
|