diff --git a/docs/advanced_export.png b/docs/advanced_export.png deleted file mode 100644 index d4349fac..00000000 Binary files a/docs/advanced_export.png and /dev/null differ diff --git a/docs/binary_data.png b/docs/binary_data.png deleted file mode 100644 index 2c5d0bdd..00000000 Binary files a/docs/binary_data.png and /dev/null differ diff --git a/docs/binary_data.rst b/docs/binary_data.rst index 5d20badf..0c890fe5 100644 --- a/docs/binary_data.rst +++ b/docs/binary_data.rst @@ -8,7 +8,7 @@ SQLite tables can contain binary data in ``BLOB`` columns. Datasette includes special handling for these binary values. The Datasette interface detects binary values and provides a link to download their content, for example on https://latest.datasette.io/fixtures/binary_data -.. image:: binary_data.png +.. image:: https://raw.githubusercontent.com/simonw/datasette-screenshots/0.62/binary-data.png :width: 311px :alt: Screenshot showing download links next to binary data in the table view diff --git a/docs/changelog.rst b/docs/changelog.rst index bd93f4cb..f5cf03e8 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1452,7 +1452,8 @@ CSV export Any Datasette table, view or custom SQL query can now be exported as CSV. -.. image:: advanced_export.png +.. image:: https://github.com/simonw/datasette-screenshots/blob/0.62/advanced-export.png?raw=true + :alt: Advanced export form. You can get the data in different JSON shapes, and CSV options are download file, expand labels and stream all rows. Check out the :ref:`CSV export documentation ` for more details, or try the feature out on diff --git a/docs/csv_export.rst b/docs/csv_export.rst index 023fa05e..34d81594 100644 --- a/docs/csv_export.rst +++ b/docs/csv_export.rst @@ -11,7 +11,8 @@ data as CSV" link. You can also use the advanced export form for more control over the resulting file, which looks like this and has the following options: -.. image:: advanced_export.png +.. image:: https://github.com/simonw/datasette-screenshots/blob/0.62/advanced-export.png?raw=true + :alt: Advanced export form. You can get the data in different JSON shapes, and CSV options are download file, expand labels and stream all rows. * **download file** - instead of displaying CSV in your browser, this forces your browser to download the CSV to your downloads directory. diff --git a/docs/facets.png b/docs/facets.png deleted file mode 100644 index 72d38043..00000000 Binary files a/docs/facets.png and /dev/null differ diff --git a/docs/facets.rst b/docs/facets.rst index 6c9d99bd..5df4dbb4 100644 --- a/docs/facets.rst +++ b/docs/facets.rst @@ -7,7 +7,10 @@ Datasette facets can be used to add a faceted browse interface to any database t With facets, tables are displayed along with a summary showing the most common values in specified columns. These values can be selected to further filter the table. -.. image:: facets.png +Here's `an example `__: + +.. image:: https://raw.githubusercontent.com/simonw/datasette-screenshots/0.62/non-retina/faceting-details.png + :alt: Screenshot showing facets against a table of congressional legislators. Suggested facets include state_rank and start and end dates, and the displayed facets are state, party and type. Each facet lists values along with a count of rows for each value. Facets can be specified in two ways: using query string parameters, or in ``metadata.json`` configuration for the table. diff --git a/docs/full_text_search.png b/docs/full_text_search.png deleted file mode 100644 index 31f1e6a5..00000000 Binary files a/docs/full_text_search.png and /dev/null differ diff --git a/docs/full_text_search.rst b/docs/full_text_search.rst index a285417f..1162a7f9 100644 --- a/docs/full_text_search.rst +++ b/docs/full_text_search.rst @@ -3,9 +3,12 @@ Full-text search ================ -SQLite includes `a powerful mechanism for enabling full-text search `_ against SQLite records. Datasette can detect if a table has had full-text search configured for it in the underlying database and display a search interface for filtering that table. +SQLite includes `a powerful mechanism for enabling full-text search `_ against SQLite records. Datasette can detect if a table has had full-text search configured for it in the underlying database and display a search interface for filtering that table. -.. image:: full_text_search.png +Here's `an example search `__: + +.. image:: https://raw.githubusercontent.com/simonw/datasette-screenshots/0.62/non-retina/regmem-search.png + :alt: Screenshot showing a search for hampers against a table full of items - 453 results are returned. Datasette automatically detects which tables have been configured for full-text search.