Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python313-django-debug-toolbar-7.0.0-1.1 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python313-django-debug-toolbar Distribution: openSUSE Tumbleweed
Version: 7.0.0 Vendor: openSUSE
Release: 1.1 Build date: Wed Jul 1 14:42:18 2026
Group: Unspecified Build host: reproducible
Size: 1312839 Source RPM: python-django-debug-toolbar-7.0.0-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/jazzband/django-debug-toolbar
Summary: A configurable set of panels that display various debug information
The Django Debug Toolbar is a configurable set of panels that display various
debug information about the current request/response and when clicked, display
more details about the panel's content.

Currently, the following panels have been written and are working:
 - Django version
 - Request timer
 - A list of settings in settings.py
 - Common HTTP headers
 - GET/POST/cookie/session variable display
 - Templates and context used, and their template paths
 - SQL queries including time to execute and links to EXPLAIN each query
 - List of signals, their args and receivers
 - Logging output via Python's built-in logging, or via the logbook module

There is also one Django management command currently:
 - debugsqlshell: Outputs the SQL that gets executed as you work in the Python
   interactive shell.

Provides

Requires

License

BSD-3-Clause

Changelog

* Wed Jul 01 2026 ecsos <ecsos@opensuse.org>
  - Update to 7.0.0
    * Prevent check from erroring when ROOT_URLCONF is not defined in #2342
    * Add browser based JavaScript via vitest in #2348
    * Exclude package-lock.json from pre-commit autoformatting in #2355
    * Resolve debounce race condition in #2356
    * Refs #2356: Add a note to the prerequisites section about requiring a modern browser in #2357
    * Add contribution documentation on running JS tests in #2359
    * Drop support for Django 4.2 and Django 5.1 . in #2360
    * Drop Promise.try and change documented Baseline target to Widely-Available in #2361
    * Use shadow dom to render the toolbar in #2266
    * Add graceful degradation for large SQL queries in #2291
    * Update the version for biome schema. in #2364
    * Update JS syntax to Baseline 2025 using esupgrade in #2346
    * Treat some warnings as errors in CI in #2258
    * Export getDebugElement utility javascript function. in #2373
    * Clarified configuration documentation about SHOW_TOOLBAR_CALLBACK in #2372
    * Handle non-JSON mapping keys in toolbar storage in #2376
    * Fixed cookie expires calculation in #2377
    * Handle cache culling and boolean lookup changes in Django 6.2 in #2385
    * Change the SQL panel to show the select and explain buttons for all queries in #2393
    * Mention @gzip_page explicitly as a reason why the toolbar doesn't show up in #2392
    * Fix binary parameter handling in SQL panel in #2391
    * Version 7.0.0 in #2386
* Sat Apr 04 2026 ecsos <ecsos@opensuse.org>
  - Update to 6.3.0
    * remove requirement_dev.txt from project #2277
    * Upgraded ReadTheDocs Python version to 3.13. in #2307
    * Modernize some panel styles and colors in #2285
    * Update the translatable strings for the application. in #2311
    * Update translations 2026-02-09 in #2312
    * Add a py.typed file, to make types available downstream in #2314
    * Emit RedirectsPanel warning on usage rather than set up. in #2326
    * Highlighted docs on disabling browser caching. in #2302
    * Only patch the cache methods once. in #2332
    * Add CacheStore, a store that uses Django's cache framework in #2304
* Wed Apr 16 2025 Markéta Machová <mmachova@suse.com>
  - update to 5.1.0
    * Raise the minimum Django version to 4.2
    * Fix DeprecationWarnings about form default templates
    * Fixed 'djdt' is not a registered namespace
    * Dark mode support
    * Added Python 3.13 to the CI matrix.
    * Removed support for Python 3.8 as it has reached end of life.
    * Added support for the LoginRequiredMiddleware introduced in Django 5.1.
    * Add Django 5.2 to tox matrix
    * Make show toolbar callback function async/sync compatible.
    * Refactor on csp_nonce usage with django-csp
    * more changes, see upstream changelog
* Fri Feb 09 2024 Markéta Machová <mmachova@suse.com>
  - Update to 4.3
    4.3.0 (2024-02-01)
    * Dropped support for Django 4.0.
    * Added Python 3.12 to test matrix.
    * Removed outdated third-party panels from the list.
    * Avoided the unnecessary work of recursively quoting SQL parameters.
    * Postponed context process in templates panel to include lazy evaluated
      content.
    * Fixed template panel to avoid evaluating ``LazyObject`` when not already
      evaluated.
    * Added support for Django 5.0.
    * Refactor the ``utils.get_name_from_obj`` to simulate the behavior of
      ``django.contrib.admindocs.utils.get_view_name``.
    * Switched from black to the `ruff formatter
      <https://astral.sh/blog/the-ruff-formatter>`__.
    * Changed the default position of the toolbar from top to the upper top
      position.
    * Added the setting, ``UPDATE_ON_FETCH`` to control whether the
      toolbar automatically updates to the latest AJAX request or not.
      It defaults to ``False``.
    4.2.0 (2023-08-10)
    * Adjusted app directories system check to allow for nested template loaders.
    * Switched from flake8, isort and pyupgrade to `ruff
      <https://beta.ruff.rs/>`__.
    * Converted cookie keys to lowercase. Fixed the ``samesite`` argument to
      ``djdt.cookie.set``.
    * Converted ``StaticFilesPanel`` to no longer use a thread collector. Instead,
      it collects the used static files in a ``ContextVar``.
    * Added check ``debug_toolbar.W007`` to warn when JavaScript files are
      resolving to the wrong content type.
    * Fixed SQL statement recording under PostgreSQL for queries encoded as byte
      strings.
    * Patch the ``CursorWrapper`` class with a mixin class to support multiple
      base wrapper classes.
    4.1.0 (2023-05-15)
    * Improved SQL statement formatting performance.  Additionally, fixed the
      indentation of ``CASE`` statements and stopped simplifying ``.count()``
      queries.
    * Added support for the new STORAGES setting in Django 4.2 for static files.
    * Added support for theme overrides.
    * Reworked the cache panel instrumentation code to no longer attempt to undo
      monkey patching of cache methods, as that turned out to be fragile in the
      presence of other code which also monkey patches those methods.
    * Update all timing code that used :py:func:`time.time()` to use
      :py:func:`time.perf_counter()` instead.
    * Made the check on ``request.META["wsgi.multiprocess"]`` optional, but
      defaults to forcing the toolbar to render the panels on each request. This
      is because it's likely an ASGI application that's serving the responses
      and that's more likely to be an incompatible setup. If you find that this
      is incorrect for you in particular, you can use the ``RENDER_PANELS``
      setting to forcibly control this logic.
    4.0.0 (2023-04-03)
    * Added Django 4.2 to the CI.
    * Dropped support for Python 3.7.
    * Fixed PostgreSQL raw query with a tuple parameter during on explain.
    * Use ``TOOLBAR_LANGUAGE`` setting when rendering individual panels
      that are loaded via AJAX.
    * Add decorator for rendering toolbar views with ``TOOLBAR_LANGUAGE``.
    * Removed the logging panel. The panel's implementation was too complex, caused
      memory leaks and sometimes very verbose and hard to silence output in some
      environments (but not others). The maintainers judged that time and effort is
      better invested elsewhere.
    * Added support for psycopg3.
    * When ``ENABLE_STACKTRACE_LOCALS`` is ``True``, the stack frames' locals dicts
      will be converted to strings when the stack trace is captured rather when it
      is rendered, so that the correct values will be displayed in the rendered
      stack trace, as they may have changed between the time the stack trace was
      captured and when it is rendered.
    3.8.1 (2022-12-03)
    * Fixed release process by re-adding twine to release dependencies. No
      functional change.
    3.8.0 (2022-12-03)
    * Added protection against division by 0 in timer.js
    * Auto-update History panel for JavaScript ``fetch`` requests.
    * Support `HTMX boosting <https://htmx.org/docs/#boosting>`__ and
      `Turbo <https://turbo.hotwired.dev/>`__ pages.
    * Simplify logic for ``Panel.enabled`` property by checking cookies earlier.
    * Include panel scripts in content when ``RENDER_PANELS`` is set to True.
    * Create one-time mouseup listener for each mousedown when dragging the
      handle.
    * Update package metadata to use Hatchling.
    * Fix highlighting on history panel so odd rows are highlighted when
      selected.
    * Formalize support for Python 3.11.
    * Added ``TOOLBAR_LANGUAGE`` setting.
    3.7.0 (2022-09-25)
    * Added Profiling panel setting ``PROFILER_THRESHOLD_RATIO`` to give users
      better control over how many function calls are included. A higher value
      will include more data, but increase render time.
    * Update Profiling panel to include try to always include user code. This
      code is more important to developers than dependency code.
    * Highlight the project function calls in the profiling panel.
    * Added Profiling panel setting ``PROFILER_CAPTURE_PROJECT_CODE`` to allow
      users to disable the inclusion of all project code. This will be useful
      to project setups that have dependencies installed under
      ``settings.BASE_DIR``.
    * The toolbar's font stack now prefers system UI fonts. Tweaked paddings,
      margins and alignments a bit in the CSS code.
    * Only sort the session dictionary when the keys are all strings. Fixes a
      bug that causes the toolbar to crash when non-strings are used as keys.
* Fri Jun 16 2023 Andreas Schneider <asn@cryptomilk.org>
  - Use sle15_python_module_pythons
* Sat Sep 03 2022 John Vandenberg <jayvdb@gmail.com>
  - Update to v3.6
    * Check if djdt-store-id is in all headers before usage
    * docs: Fix a few typos
    * Make Selenium tests pass, hopefully
    * Add Django 4.1 to classifiers
    * Remove signed_data_view decorator to support url type checking
    * Avoid assigning arbitrary attributes to SafeString instances
  - from v3.5
    * Add the upcoming Django 4.1 to the CI matrix
    * Remove a couple of archived third-party repos
    * Replace OrderedDict
    * Do not crash when encountering unexpected data in the request
    * Cache panel work
    * Get PostgreSQL transaction tracking working
    * Add pyflame to the list of third-party panels
    * Fix cache panel miss counting
    * Stacktrace cleanups
    * Stack trace rework
    * Minor documentation updates
    * Reimplement HIDE_IN_STACKTRACES machinery
    * Rework similary/duplicate query grouping
    * Simplify SQLPanel._queries data structure
    * Tweak get_stack_trace() API
  - from v3.4
    * The path may not always be a true path for stacktraces
    * Rename SQLPanel context var to control SQL access
  - from 3.3
    * Drop support for Django 2.2 & 3.1
    * Added MrBenn Panel to Third Party Panels
    * Documentation fix in installation.rst
    * Don't raise W006 warning when app loader is specified
    * Move settings reset logic to settings module
    * Avoid installing middleware if Content-Encoding is set at all
    * Test middleware not injecting when Content-Encoding is set
    * Remove Python 3.6 due to EOL
    * Implement CacheStatTracker.get_or_set
    * Optimize render_stacktrace()
    * Remove unnecessary mock dependency
    * Optimize SQL reformatting
    * Fix USE_TZ RemovedInDjango50Warning
    * Duplicate the 'djdt' app_name to avoid importing toolbar early
    * unsigning history forms
    * adding a green flash to new rows in the history table on refresh
    * Adding Update on ajax feature
    * Order History panels requests descending chronologically
    * Single source 'djdt' app name
    * Various minor documentation fixes
    * Fix Docker instruction when host IP has more than 1 digit
    * Fix sql recording for async views
    * Preserve logs that LoggingPanel would previously overwrite
    * Fix and improve .assertValidHTML() test method
  - from 3.2.4
    * Revert PR 1426 - PostGIS param stripping. This was removing
      leading and trailing characters from string typed parameters
      for postgres applications.
  - from 3.2.3
    * Update translations and revert xgettext aliasing
    * Changed cache monkey-patching for Django 3.2+
    * Add check and docs for TEMPLATES APP_DIRS=False
    * Possibly fix an infinite recursion crash by avoid str() inside repr()
    * Fix transifex link (net -> com)
    * Add support for Python 3.10
    * Additional readme warning when using docker
    * Fix SQL selected / SQL explain for gis queries
    * Allow using ProfilingPanel as non last panel
    * Solve spelling mistake in documentation installation page
    * Fix test_param_conversion for Django 4.1 and mysql
    * Remove settings import from install instructions
    * Add a big warning regarding the security implications of changing
      SHOW_TOOLBAR_CALLBACK
    * Improve installation instructions
    * Fix settings docs
    * Update translations for a bunch of languages
    * Update DE locale
    * Discourage insecure SHOW_TOOLBAR_CALLBACK values
    * Create urls module and remove import package from docs
* Fri Jan 07 2022 John Vandenberg <jayvdb@gmail.com>
  - Skip Tumbleweed Python 3.6 incompatible with Django 4
* Wed Nov 17 2021 Andreas Schneider <asn@cryptomilk.org>
  - Update to version 3.2.2
    * Use current_thread instead of currentThread method that was deprecated in
      Python 3.10 by @tirkarthi in #1465
    * Drop support for Django 3.0. by @hramezani in #1461
    * Support JS events when loading a panel. by @tim-schilling in #1441
    * Use twine to check generated package and readme by @francoisfreitag in
      [#1468]
    * Use default app config discovery by @francoisfreitag in #1467
    * Show template context on included templates by @gilmrjc in #1436
    * Keep the toolbar handle in bounds by @matthiask in #1472
    * Fixes #1239 by @saemideluxe in #1475
    * Extract common base cursor wrapper class by @jayaddison in #1479
    * updated Slovak translation by @eriktelepovsky in #1480
    * Fixes and improvements to history views by @ashwch in #1484
    * Add test coverage to ensure that SQL tracker wrappers are applied only once
      to database cursors by @jayaddison in #1478
    * Correct RENDER_PANELS functionality and when enabled disable HistoryPanel
      by @tim-schilling in #1440
    * Add: response status to HistoryPanel by @psacawa in #1490
    * Support for request-level urlconf overrides by @NielkS in #1488
* Sun May 09 2021 Daniel Molkentin <daniel.molkentin@suse.com>
  - Update to v3.2.1
    * Fix CVE-2021-30459 by creating signature from all data fields
* Mon Jan 25 2021 John Vandenberg <jayvdb@gmail.com>
  - Added docs/*.rst to docs
  - Update to v3.2
    * Removed support for Django 1.11
    * See docs/changes.rst for other breaking changes

Files

/usr/lib/python3.13/site-packages/debug_toolbar
/usr/lib/python3.13/site-packages/debug_toolbar/__init__.py
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/_compat.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/_compat.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/_stubs.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/_stubs.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/apps.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/apps.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/decorators.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/decorators.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/forms.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/forms.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/middleware.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/middleware.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/models.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/models.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/sanitize.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/sanitize.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/settings.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/settings.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/store.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/store.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/toolbar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/toolbar.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/urls.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/urls.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/utils.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/utils.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/views.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/__pycache__/views.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/_compat.py
/usr/lib/python3.13/site-packages/debug_toolbar/_stubs.py
/usr/lib/python3.13/site-packages/debug_toolbar/apps.py
/usr/lib/python3.13/site-packages/debug_toolbar/decorators.py
/usr/lib/python3.13/site-packages/debug_toolbar/forms.py
/usr/lib/python3.13/site-packages/debug_toolbar/locale
/usr/lib/python3.13/site-packages/debug_toolbar/locale/bg
/usr/lib/python3.13/site-packages/debug_toolbar/locale/bg/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/bg/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/bg/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ca
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ca/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ca/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ca/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/cs
/usr/lib/python3.13/site-packages/debug_toolbar/locale/cs/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/cs/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/cs/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/de
/usr/lib/python3.13/site-packages/debug_toolbar/locale/de/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/de/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/de/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/en
/usr/lib/python3.13/site-packages/debug_toolbar/locale/en/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/en/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/en/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/es
/usr/lib/python3.13/site-packages/debug_toolbar/locale/es/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/es/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/es/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fa
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fa/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fa/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fa/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fi
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fi/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fi/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fi/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fr
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fr/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fr/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/fr/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/he
/usr/lib/python3.13/site-packages/debug_toolbar/locale/he/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/he/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/he/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/id
/usr/lib/python3.13/site-packages/debug_toolbar/locale/id/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/id/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/id/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/it
/usr/lib/python3.13/site-packages/debug_toolbar/locale/it/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/it/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/it/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ja
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ja/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ja/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ja/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ko
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ko/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ko/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ko/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/lt
/usr/lib/python3.13/site-packages/debug_toolbar/locale/lt/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/lt/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/lt/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/nl
/usr/lib/python3.13/site-packages/debug_toolbar/locale/nl/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/nl/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/nl/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pl
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pl/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pl/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pl/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pt
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pt/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pt/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pt/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pt_BR
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pt_BR/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pt_BR/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/pt_BR/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ru
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ru/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ru/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/ru/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/sk
/usr/lib/python3.13/site-packages/debug_toolbar/locale/sk/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/sk/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/sk/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/sv_SE
/usr/lib/python3.13/site-packages/debug_toolbar/locale/sv_SE/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/sv_SE/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/sv_SE/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/tr
/usr/lib/python3.13/site-packages/debug_toolbar/locale/tr/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/tr/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/tr/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/uk
/usr/lib/python3.13/site-packages/debug_toolbar/locale/uk/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/uk/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/uk/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/uz
/usr/lib/python3.13/site-packages/debug_toolbar/locale/uz/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/uz/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/uz/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/locale/zh_CN
/usr/lib/python3.13/site-packages/debug_toolbar/locale/zh_CN/LC_MESSAGES
/usr/lib/python3.13/site-packages/debug_toolbar/locale/zh_CN/LC_MESSAGES/django.mo
/usr/lib/python3.13/site-packages/debug_toolbar/locale/zh_CN/LC_MESSAGES/django.po
/usr/lib/python3.13/site-packages/debug_toolbar/management
/usr/lib/python3.13/site-packages/debug_toolbar/management/__init__.py
/usr/lib/python3.13/site-packages/debug_toolbar/management/__pycache__
/usr/lib/python3.13/site-packages/debug_toolbar/management/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/management/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/management/commands
/usr/lib/python3.13/site-packages/debug_toolbar/management/commands/__init__.py
/usr/lib/python3.13/site-packages/debug_toolbar/management/commands/__pycache__
/usr/lib/python3.13/site-packages/debug_toolbar/management/commands/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/management/commands/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/management/commands/__pycache__/debugsqlshell.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/management/commands/__pycache__/debugsqlshell.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/management/commands/debugsqlshell.py
/usr/lib/python3.13/site-packages/debug_toolbar/middleware.py
/usr/lib/python3.13/site-packages/debug_toolbar/migrations
/usr/lib/python3.13/site-packages/debug_toolbar/migrations/0001_initial.py
/usr/lib/python3.13/site-packages/debug_toolbar/migrations/__init__.py
/usr/lib/python3.13/site-packages/debug_toolbar/migrations/__pycache__
/usr/lib/python3.13/site-packages/debug_toolbar/migrations/__pycache__/0001_initial.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/migrations/__pycache__/0001_initial.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/migrations/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/migrations/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/models.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__init__.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/alerts.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/alerts.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/cache.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/cache.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/community.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/community.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/headers.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/headers.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/profiling.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/profiling.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/redirects.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/redirects.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/request.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/request.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/settings.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/settings.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/signals.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/signals.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/staticfiles.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/staticfiles.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/timer.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/timer.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/versions.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/__pycache__/versions.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/alerts.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/cache.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/community.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/headers.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/__init__.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/__pycache__
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/__pycache__/forms.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/__pycache__/forms.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/__pycache__/panel.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/__pycache__/panel.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/__pycache__/views.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/__pycache__/views.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/forms.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/panel.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/history/views.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/profiling.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/redirects.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/request.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/settings.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/signals.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__init__.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/forms.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/forms.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/panel.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/panel.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/tracking.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/tracking.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/utils.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/utils.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/views.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/__pycache__/views.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/forms.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/panel.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/tracking.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/utils.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/sql/views.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/staticfiles.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/__init__.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/__pycache__
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/__pycache__/jinja2.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/__pycache__/jinja2.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/__pycache__/panel.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/__pycache__/panel.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/__pycache__/views.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/__pycache__/views.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/jinja2.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/panel.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/templates/views.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/timer.py
/usr/lib/python3.13/site-packages/debug_toolbar/panels/versions.py
/usr/lib/python3.13/site-packages/debug_toolbar/py.typed
/usr/lib/python3.13/site-packages/debug_toolbar/sanitize.py
/usr/lib/python3.13/site-packages/debug_toolbar/settings.py
/usr/lib/python3.13/site-packages/debug_toolbar/static
/usr/lib/python3.13/site-packages/debug_toolbar/static/debug_toolbar
/usr/lib/python3.13/site-packages/debug_toolbar/static/debug_toolbar/css
/usr/lib/python3.13/site-packages/debug_toolbar/static/debug_toolbar/css/print.css
/usr/lib/python3.13/site-packages/debug_toolbar/static/debug_toolbar/css/toolbar.css
/usr/lib/python3.13/site-packages/debug_toolbar/static/debug_toolbar/js
/usr/lib/python3.13/site-packages/debug_toolbar/static/debug_toolbar/js/history.js
/usr/lib/python3.13/site-packages/debug_toolbar/static/debug_toolbar/js/redirect.js
/usr/lib/python3.13/site-packages/debug_toolbar/static/debug_toolbar/js/timer.js
/usr/lib/python3.13/site-packages/debug_toolbar/static/debug_toolbar/js/toolbar.js
/usr/lib/python3.13/site-packages/debug_toolbar/static/debug_toolbar/js/utils.js
/usr/lib/python3.13/site-packages/debug_toolbar/store.py
/usr/lib/python3.13/site-packages/debug_toolbar/templates
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/base.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/includes
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/includes/panel_button.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/includes/panel_content.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/includes/theme_selector.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/alerts.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/cache.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/community.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/headers.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/history.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/history_tr.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/profiling.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/request.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/request_variables.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/settings.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/signals.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/sql.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/sql_select.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/staticfiles.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/template_source.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/templates.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/timer.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/panels/versions.html
/usr/lib/python3.13/site-packages/debug_toolbar/templates/debug_toolbar/redirect.html
/usr/lib/python3.13/site-packages/debug_toolbar/templatetags
/usr/lib/python3.13/site-packages/debug_toolbar/templatetags/__init__.py
/usr/lib/python3.13/site-packages/debug_toolbar/templatetags/__pycache__
/usr/lib/python3.13/site-packages/debug_toolbar/templatetags/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/templatetags/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/debug_toolbar/toolbar.py
/usr/lib/python3.13/site-packages/debug_toolbar/urls.py
/usr/lib/python3.13/site-packages/debug_toolbar/utils.py
/usr/lib/python3.13/site-packages/debug_toolbar/views.py
/usr/lib/python3.13/site-packages/django_debug_toolbar-7.0.0.dist-info
/usr/lib/python3.13/site-packages/django_debug_toolbar-7.0.0.dist-info/INSTALLER
/usr/lib/python3.13/site-packages/django_debug_toolbar-7.0.0.dist-info/METADATA
/usr/lib/python3.13/site-packages/django_debug_toolbar-7.0.0.dist-info/RECORD
/usr/lib/python3.13/site-packages/django_debug_toolbar-7.0.0.dist-info/REQUESTED
/usr/lib/python3.13/site-packages/django_debug_toolbar-7.0.0.dist-info/WHEEL
/usr/lib/python3.13/site-packages/django_debug_toolbar-7.0.0.dist-info/licenses
/usr/lib/python3.13/site-packages/django_debug_toolbar-7.0.0.dist-info/licenses/LICENSE
/usr/share/doc/packages/python313-django-debug-toolbar
/usr/share/doc/packages/python313-django-debug-toolbar/README.rst
/usr/share/doc/packages/python313-django-debug-toolbar/architecture.rst
/usr/share/doc/packages/python313-django-debug-toolbar/changes.rst
/usr/share/doc/packages/python313-django-debug-toolbar/checks.rst
/usr/share/doc/packages/python313-django-debug-toolbar/commands.rst
/usr/share/doc/packages/python313-django-debug-toolbar/configuration.rst
/usr/share/doc/packages/python313-django-debug-toolbar/contributing.rst
/usr/share/doc/packages/python313-django-debug-toolbar/index.rst
/usr/share/doc/packages/python313-django-debug-toolbar/installation.rst
/usr/share/doc/packages/python313-django-debug-toolbar/panels.rst
/usr/share/doc/packages/python313-django-debug-toolbar/resources.rst
/usr/share/doc/packages/python313-django-debug-toolbar/tips.rst
/usr/share/licenses/python313-django-debug-toolbar
/usr/share/licenses/python313-django-debug-toolbar/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Mon Aug 3 00:04:55 2026