Commit Graph

13 Commits

Author SHA1 Message Date
Robin Krahl
c97ac33dc9
Add test case for Index::find
As we only support the new search index format introduced in April 2020,
the test is only run for Rust >= 1.44.0.
2020-09-11 21:11:07 +02:00
Robin Krahl
5b2003b979
Respect item type in documentation lookup
Sometimes, there might be multiple items with the same name, for example
std::u8 is both a module and a primitive.  Previously, we could not
determine which one Source::load_doc would return.  With this patch, we
add the ty parameter that can be used to filter by the item type.
2020-08-18 22:30:55 +02:00
Robin Krahl
c672a65d59
Add item type to the IndexItem struct
Previously, we only used the name and the description to represent index
items.  Therefore we consider e. g. the std::u8 module and the std::u8
primitive to be the same.  With this patch, we also take the item type
into account when comparing index items.
2020-08-18 21:55:00 +02:00
Robin Krahl
e74ef86ebe
Move ItemType u8 representations into index module
Previosuly, we used the u8 values for the ItemType variants used in the
search index as the discriminant.  But as the ID used in the search
index is an implementation detail of the index parser, this patch moves
the mapping to the index module.
2020-08-17 13:42:10 +02:00
Robin Krahl
e69e4af31c
Add basic logging with env_logger
This patch adds some basic info log messages to make it easier to debug
incompatible rustdoc output.  To show the messages, run rusty-man with
the environment variable RUST_LOG=info.
2020-07-24 18:10:53 +02:00
Robin Krahl
f799d860ca
Import item types from librustdoc
Previously, our ItemType enum only had three values: Module, Item and
Member.  With this patch we import the ItemType variants from librustdoc
(see html/item_type.rs) for better compatibility and easier parsing.
2020-07-22 17:15:00 +02:00
Robin Krahl
94dff39c8a Introduce Name and Fqn types for names
Previosuly, we used strings to store item names.  Sometimes, these
strings would refer to full paths (e. g. kuchiki::NodeDataRef::as_node),
sometimes to local paths (e. g. NodeDataRef::as_node) and sometimes only
to the last item (e. g. as_node).

With this patch, we add two new types:  doc::Name is a name without a
semantic meaning, so it could be any of the cases mentioned above.
doc::Fqn is a wrapper around doc::Name that stores fully-qualifier
names, i. e. names where the first element is the crate.
2020-07-21 12:49:23 +02:00
Robin Krahl
d0c73d2523
List members in module documentation
This patch adds support for listing the module members on its
documentation page.  This is quite easy as the items are displayed in a
single table per item type.
2020-07-20 11:48:29 +02:00
Robin Krahl
3d4fac0d5c Skip associated types in search index
When searching for a keyword, we typically don’t want to match an
associated type.  With this patch, we skip associated types when
searching items in the search index.
2020-07-20 10:44:37 +02:00
Robin Krahl
e1ef283159 Check parent for search index items
For members, the path listed in the search index does not point to the
parent item but to the path of the parent item.  To get the parent item,
we have to access the parent field and lookup the index in the crate’s
path list.
2020-07-20 01:42:26 +02:00
Robin Krahl
f6eaab94a0
Fix path for search index items
rustdoc clears the path of an item in the search index if it is equal to
the path of the previous item (see build_index in html/render.rs).
Previously, we used the crate name if the path was empty.  With this
patch, we use the past of the last item instead.
2020-07-19 23:48:11 +02:00
Robin Krahl
bd71f41458
Also match patch in Index::find
Previously, we only compared the type names when searching for matches
in the search index.  With this patch, we also check the path:  If the
full name of the item ends with the keyword (prepended with :: to avoid
partial matches), we return a match.
2020-07-19 22:44:21 +02:00
Robin Krahl
61fdf31c0a
Read search index from search-index.js
With this patch, we read the search index generated by rustdoc.  It
allows us to suggest matching items if we don’t find an exact match.
2020-07-19 22:23:47 +02:00