Update matching logic: AI scores all candidates, lower threshold, absolute amount, prompt improvements
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
from typing import Any, Union
|
||||
|
||||
from .._utils import StreamType, deprecation_with_replacement
|
||||
from ._base import NameObject
|
||||
from ._data_structures import Destination
|
||||
|
||||
|
||||
class OutlineItem(Destination):
|
||||
def write_to_stream(
|
||||
self, stream: StreamType, encryption_key: Union[None, str, bytes]
|
||||
) -> None:
|
||||
stream.write(b"<<\n")
|
||||
for key in [
|
||||
NameObject(x)
|
||||
for x in ["/Title", "/Parent", "/First", "/Last", "/Next", "/Prev"]
|
||||
if x in self
|
||||
]:
|
||||
key.write_to_stream(stream, encryption_key)
|
||||
stream.write(b" ")
|
||||
value = self.raw_get(key)
|
||||
value.write_to_stream(stream, encryption_key)
|
||||
stream.write(b"\n")
|
||||
key = NameObject("/Dest")
|
||||
key.write_to_stream(stream, encryption_key)
|
||||
stream.write(b" ")
|
||||
value = self.dest_array
|
||||
value.write_to_stream(stream, encryption_key)
|
||||
stream.write(b"\n")
|
||||
stream.write(b">>")
|
||||
|
||||
|
||||
class Bookmark(OutlineItem): # pragma: no cover
|
||||
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
||||
deprecation_with_replacement("Bookmark", "OutlineItem", "3.0.0")
|
||||
super().__init__(*args, **kwargs)
|
||||
Reference in New Issue
Block a user