imio.smartweb.common 1.2.12__py3-none-any.whl → 1.2.14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- imio/smartweb/common/browser/collective_taxonomy_controlpanel.py +67 -0
- imio/smartweb/common/browser/configure.zcml +16 -0
- imio/smartweb/common/browser/static/smartweb-common-view-compiled.css +1 -1
- imio/smartweb/common/browser/static/src/view.less +9 -2
- imio/smartweb/common/browser/vocabulary.py +27 -0
- imio/smartweb/common/interfaces.py +2 -1
- imio/smartweb/common/profiles/default/metadata.xml +1 -1
- imio/smartweb/common/profiles/default/registry.xml +10 -4
- imio/smartweb/common/profiles/testing/catalog.xml +9 -0
- imio/smartweb/common/profiles/testing/metadata.xml +1 -0
- imio/smartweb/common/profiles/testing/types/Document.xml +1 -0
- imio/smartweb/common/rest/search_filters.py +19 -7
- imio/smartweb/common/testing.py +1 -1
- imio/smartweb/common/testing.zcml +8 -0
- imio/smartweb/common/tests/test_rest.py +25 -0
- imio/smartweb/common/tests/test_taxonomy.py +140 -0
- imio/smartweb/common/tests/test_vocabulary.py +45 -0
- imio/smartweb/common/upgrades/configure.zcml +54 -0
- imio/smartweb/common/upgrades/profiles/1027_to_1028/restored-faceted-jquery.xml +7 -0
- imio/smartweb/common/upgrades/profiles/1028_to_1029/registry.xml +15 -0
- imio/smartweb/common/upgrades/profiles/1029_to_1030/registry.xml +13 -0
- imio/smartweb/common/utils.py +9 -1
- imio/smartweb/common/vocabularies.py +1 -10
- imio.smartweb.common-1.2.14-py3.11-nspkg.pth +2 -0
- {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/METADATA +38 -4
- {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/RECORD +31 -23
- {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/WHEEL +1 -1
- imio/smartweb/common/browser/static/patched.web3862.eea.faceted-jquery.min.js +0 -2
- imio.smartweb.common-1.2.12-py3.10-nspkg.pth +0 -3
- {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/LICENSE.GPL +0 -0
- {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/LICENSE.rst +0 -0
- {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/namespace_packages.txt +0 -0
- {imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/top_level.txt +0 -0
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('imio',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('imio', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('imio', [os.path.dirname(p)])));m = m or sys.modules.setdefault('imio', types.ModuleType('imio'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
|
|
2
|
-
import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('imio',));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('imio', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('imio', [os.path.dirname(p)])));m = m or sys.modules.setdefault('imio', types.ModuleType('imio'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p)
|
|
3
|
-
import sys, types, os;has_mfs = sys.version_info > (3, 5);p = os.path.join(sys._getframe(1).f_locals['sitedir'], *('imio', 'smartweb'));importlib = has_mfs and __import__('importlib.util');has_mfs and __import__('importlib.machinery');m = has_mfs and sys.modules.setdefault('imio.smartweb', importlib.util.module_from_spec(importlib.machinery.PathFinder.find_spec('imio.smartweb', [os.path.dirname(p)])));m = m or sys.modules.setdefault('imio.smartweb', types.ModuleType('imio.smartweb'));mp = (m or []) and m.__dict__.setdefault('__path__',[]);(p not in mp) and mp.append(p);m and setattr(sys.modules['imio'], 'smartweb', m)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{imio.smartweb.common-1.2.12.dist-info → imio.smartweb.common-1.2.14.dist-info}/top_level.txt
RENAMED
|
File without changes
|