##// END OF EJS Templates
search: add support for elastic search 6...
search: add support for elastic search 6 - elasticsearch new query lang and searcher - much more advanced query lang - added context aware search in repository groups, repository, commits, files view - optimized quick search bar speed when using full text search - added option to increase hits per file number from query URL using max_lines - search results can be now marked inside a text file using ?mark=HIGHLIGHT_TEXT added to the url

File last commit:

r271:401985cc default
r3319:b8fd1d7a default
Show More
dev-settings.rst
46 lines | 959 B | text/x-rst | RstLexer
project: added all source files and assets
r1
==========================
Settings for Development
==========================
We have a few settings which are intended to be used only for development
purposes. This section contains an overview of them.
`debug_style`
=============
Enables the section "Style" in the application. This section provides an
docs: updates to contributor documentation #4039
r271 overview of all components which are found in the frontend of the
project: added all source files and assets
r1 application.
`vcs.start_server`
==================
Starts the server as a subprocess while the system comes up. Intended usage is
to ease development.
`[logging]`
===========
docs: updates to contributor documentation #4039
r271 Use this to configure logging to your current needs. The documentation of
Python's `logging` module explains all of the details. The following snippets
are useful for day to day development work.
project: added all source files and assets
r1
Mute SQL output
---------------
They come out of the package `sqlalchemy.engine`::
[logger_sqlalchemy]
level = WARNING
handlers = console_sql
qualname = sqlalchemy.engine
propagate = 0