##// END OF EJS Templates
middleware: drop sentry support...
middleware: drop sentry support Our sentry support didn't seem to work with py3. It doesn't seem to ever have been tested on py3 - it failed already when installing. It seems like we used the 'legacy client': https://docs.sentry.io/clients/python/ and nowadays one is expected to use: https://docs.sentry.io/platforms/python/ which has integrations for Pyramid and other frameworks (but not TG2). There are Celery and SQLAlchemy integrations too. See also the migration guide: https://docs.sentry.io/platforms/python/migration/ . Also, there is not much essential code in the old sentry support, and it seems like it would be easier to reimplement from scratch. There is thus not much lost by dropping it.

File last commit:

r7751:3b54bcf6 default
r8382:e85f5bf7 default
Show More
customization.rst
71 lines | 2.5 KiB | text/x-rst | RstLexer
/ docs / usage / customization.rst
Thomas De Schampheleire
docs: document Kallithea customization options...
r5746 .. _customization:
=============
Customization
=============
There are several ways to customize Kallithea to your needs depending on what
you want to achieve.
HTML/JavaScript/CSS customization
---------------------------------
To customize the look-and-feel of the web interface (for example to add a
company banner or some JavaScript widget or to tweak the CSS style definitions)
you can enter HTML code (possibly with JavaScript and/or CSS) directly via the
*Admin > Settings > Global > HTML/JavaScript customization
block*.
domruf
less: load optional theme.less file to allow custom styles...
r7174 Style sheet customization with Less
-----------------------------------
Kallithea uses `Bootstrap 3`_ and Less_ for its style definitions. If you want
to make some customizations, we recommend to do so by creating a ``theme.less``
Thomas De Schampheleire
front-end: fix documentation regarding theme.less file...
r7751 file. When you create a file named ``theme.less`` in directory
``kallithea/front-end/`` inside the Kallithea installation, you can use this
file to override the default style. For example, you can use this to override
``@kallithea-theme-main-color``, ``@kallithea-logo-url`` or other `Bootstrap
variables`_.
domruf
less: load optional theme.less file to allow custom styles...
r7174
Thomas De Schampheleire
cli: add command 'kallithea-cli front-end-build'...
r7358 After creating the ``theme.less`` file, you need to regenerate the CSS files, by
running::
domruf
less: load optional theme.less file to allow custom styles...
r7174
Thomas De Schampheleire
cli: add command 'kallithea-cli front-end-build'...
r7358 kallithea-cli front-end-build --no-install-deps
domruf
less: load optional theme.less file to allow custom styles...
r7174
.. _bootstrap 3: https://getbootstrap.com/docs/3.3/
.. _bootstrap variables: https://getbootstrap.com/docs/3.3/customize/#less-variables
.. _less: http://lesscss.org/
Thomas De Schampheleire
docs: document Kallithea customization options...
r5746 Behavioral customization: rcextensions
--------------------------------------
Some behavioral customization can be done in Python using ``rcextensions``, a
custom Python package that can extend Kallithea functionality.
With ``rcextensions`` it's possible to add additional mappings for Whoosh
indexing and statistics, to add additional code into the push/pull/create/delete
repository hooks (for example to send signals to build bots such as Jenkins) and
even to monkey-patch certain parts of the Kallithea source code (for example
overwrite an entire function, change a global variable, ...).
To generate a skeleton extensions package, run::
Thomas De Schampheleire
cli: convert 'gearbox make-rcext' in 'kallithea-cli extensions-create'...
r7336 kallithea-cli extensions-create -c my.ini
Thomas De Schampheleire
docs: document Kallithea customization options...
r5746
This will create an ``rcextensions`` package next to the specified ``ini`` file.
See the ``__init__.py`` file inside the generated ``rcextensions`` package
for more details.
Behavioral customization: code changes
--------------------------------------
As Kallithea is open-source software, you can make any changes you like directly
in the source code.
We encourage you to send generic improvements back to the
community so that Kallithea can become better. See :ref:`contributing` for more
details.