rer.linkchecker 1.0.0a1__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.
Files changed (56) hide show
  1. rer/linkchecker/__init__.py +14 -0
  2. rer/linkchecker/configure.zcml +27 -0
  3. rer/linkchecker/content/__init__.py +0 -0
  4. rer/linkchecker/controlpanels/__init__.py +0 -0
  5. rer/linkchecker/controlpanels/configure.zcml +10 -0
  6. rer/linkchecker/dependencies.zcml +6 -0
  7. rer/linkchecker/indexers/__init__.py +0 -0
  8. rer/linkchecker/indexers/configure.zcml +7 -0
  9. rer/linkchecker/interfaces.py +7 -0
  10. rer/linkchecker/linkchecker.py +680 -0
  11. rer/linkchecker/locales/__init__.py +0 -0
  12. rer/linkchecker/locales/__main__.py +69 -0
  13. rer/linkchecker/locales/de/LC_MESSAGES/rer.linkchecker.po +15 -0
  14. rer/linkchecker/locales/en/LC_MESSAGES/rer.linkchecker.po +15 -0
  15. rer/linkchecker/locales/es/LC_MESSAGES/rer.linkchecker.po +15 -0
  16. rer/linkchecker/locales/it/LC_MESSAGES/rer.linkchecker.po +15 -0
  17. rer/linkchecker/locales/pt_BR/LC_MESSAGES/rer.linkchecker.po +15 -0
  18. rer/linkchecker/locales/rer.linkchecker.pot +18 -0
  19. rer/linkchecker/permissions.zcml +12 -0
  20. rer/linkchecker/profiles/default/browserlayer.xml +6 -0
  21. rer/linkchecker/profiles/default/catalog.xml +13 -0
  22. rer/linkchecker/profiles/default/controlpanel.xml +8 -0
  23. rer/linkchecker/profiles/default/diff_tool.xml +6 -0
  24. rer/linkchecker/profiles/default/metadata.xml +6 -0
  25. rer/linkchecker/profiles/default/registry/.gitkeep +0 -0
  26. rer/linkchecker/profiles/default/registry/main.xml +8 -0
  27. rer/linkchecker/profiles/default/repositorytool.xml +6 -0
  28. rer/linkchecker/profiles/default/rolemap.xml +14 -0
  29. rer/linkchecker/profiles/default/toolset.xml +6 -0
  30. rer/linkchecker/profiles/default/types/.gitkeep +0 -0
  31. rer/linkchecker/profiles/default/types.xml +10 -0
  32. rer/linkchecker/profiles/uninstall/browserlayer.xml +6 -0
  33. rer/linkchecker/profiles/uninstall/toolset.xml +4 -0
  34. rer/linkchecker/profiles.zcml +32 -0
  35. rer/linkchecker/scripts/__init__.py +0 -0
  36. rer/linkchecker/scripts/check_broken_links.py +282 -0
  37. rer/linkchecker/serializers/__init__.py +0 -0
  38. rer/linkchecker/serializers/configure.zcml +10 -0
  39. rer/linkchecker/serializers/summary.py +10 -0
  40. rer/linkchecker/services/__init__.py +0 -0
  41. rer/linkchecker/services/base.py +67 -0
  42. rer/linkchecker/services/configure.zcml +27 -0
  43. rer/linkchecker/services/csv_export.py +44 -0
  44. rer/linkchecker/services/report.py +68 -0
  45. rer/linkchecker/setuphandlers/__init__.py +17 -0
  46. rer/linkchecker/testing.py +55 -0
  47. rer/linkchecker/upgrades/__init__.py +0 -0
  48. rer/linkchecker/upgrades/configure.zcml +21 -0
  49. rer/linkchecker/vocabularies/__init__.py +0 -0
  50. rer/linkchecker/vocabularies/configure.zcml +5 -0
  51. rer_linkchecker-1.0.0a1.dist-info/METADATA +228 -0
  52. rer_linkchecker-1.0.0a1.dist-info/RECORD +56 -0
  53. rer_linkchecker-1.0.0a1.dist-info/WHEEL +4 -0
  54. rer_linkchecker-1.0.0a1.dist-info/entry_points.txt +5 -0
  55. rer_linkchecker-1.0.0a1.dist-info/licenses/LICENSE.GPL +339 -0
  56. rer_linkchecker-1.0.0a1.dist-info/licenses/LICENSE.md +15 -0
@@ -0,0 +1,14 @@
1
+ """Init and utils."""
2
+
3
+ from zope.i18nmessageid import MessageFactory
4
+
5
+ import logging
6
+
7
+
8
+ __version__ = "1.0.0a1"
9
+
10
+ PACKAGE_NAME = "rer.linkchecker"
11
+
12
+ _ = MessageFactory(PACKAGE_NAME)
13
+
14
+ logger = logging.getLogger(PACKAGE_NAME)
@@ -0,0 +1,27 @@
1
+ <configure
2
+ xmlns="http://namespaces.zope.org/zope"
3
+ xmlns:i18n="http://namespaces.zope.org/i18n"
4
+ i18n_domain="rer.linkchecker"
5
+ >
6
+
7
+ <i18n:registerTranslations directory="locales" />
8
+
9
+ <include
10
+ package="Products.CMFCore"
11
+ file="permissions.zcml"
12
+ />
13
+
14
+
15
+ <include file="dependencies.zcml" />
16
+ <include file="profiles.zcml" />
17
+ <include file="permissions.zcml" />
18
+
19
+ <include package=".controlpanels" />
20
+ <include package=".indexers" />
21
+ <include package=".serializers" />
22
+ <include package=".services" />
23
+ <include package=".vocabularies" />
24
+
25
+ <!-- -*- extra stuff goes here -*- -->
26
+
27
+ </configure>
File without changes
File without changes
@@ -0,0 +1,10 @@
1
+ <configure
2
+ xmlns="http://namespaces.zope.org/zope"
3
+ xmlns:browser="http://namespaces.zope.org/browser"
4
+ xmlns:plone="http://namespaces.plone.org/plone"
5
+ i18n_domain="rer.linkchecker"
6
+ >
7
+
8
+ <!-- -*- extra stuff goes here -*- -->
9
+
10
+ </configure>
@@ -0,0 +1,6 @@
1
+ <configure xmlns="http://namespaces.zope.org/zope">
2
+
3
+ <!-- List all packages you depend here -->
4
+ <include package="plone.restapi" />
5
+
6
+ </configure>
File without changes
@@ -0,0 +1,7 @@
1
+ <configure xmlns="http://namespaces.zope.org/zope">
2
+
3
+ <!-- Indexers/Metadata -->
4
+
5
+ <!-- -*- extra stuff goes here -*- -->
6
+
7
+ </configure>
@@ -0,0 +1,7 @@
1
+ """Module where all interfaces, events and exceptions live."""
2
+
3
+ from zope.publisher.interfaces.browser import IDefaultBrowserLayer
4
+
5
+
6
+ class IBrowserLayer(IDefaultBrowserLayer):
7
+ """Marker interface that defines a browser layer."""