odoo-addon-dms 16.0.1.8.2.4__py3-none-any.whl → 16.0.1.8.3.2__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.
@@ -6,3 +6,4 @@
6
6
  - If Inherit permissions from related record (the inherit_access_from_parent_record field from storage) is changed when directories already exist, inconsistencies may occur because groups defined in the directories and subdirectories will still exist, all groups in these directories should be removed before changing.
7
7
  - Since portal users can read ``dms.storage`` records, if your module extends this model to another storage backend that needs using secrets, remember to forbid access to the secrets fields by other means. It would be nice to be able to remove that rule at some point.
8
8
  - Searchpanel in files: Highlight items (shading) without records when filtering something (by name for example).
9
+ - Accessing the clipboard (for example copy share link of file/directory) is limited to secure connections. It also happens in any part of Odoo.
@@ -367,7 +367,7 @@ ul.auto-toc {
367
367
  !! This file is generated by oca-gen-addon-readme !!
368
368
  !! changes will be overwritten. !!
369
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:47e1474a4f285eefc01f31e5393d7ec85323c8f27d7cd2044cd55fa12da5fe96
370
+ !! source digest: sha256:a1e09fa33b9ef1f4f1ff039a3ff5685f7de8ade40a250dca4e24d40b0b695fe5
371
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
372
  <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/dms/tree/16.0/dms"><img alt="OCA/dms" src="https://img.shields.io/badge/github-OCA%2Fdms-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/dms-16-0/dms-16-0-dms"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/dms&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
373
  <p>DMS is a module for creating, managing and viewing document files directly
@@ -498,6 +498,7 @@ Another possibility is to click on “Share” button inside a directory or a fi
498
498
  <li>If Inherit permissions from related record (the inherit_access_from_parent_record field from storage) is changed when directories already exist, inconsistencies may occur because groups defined in the directories and subdirectories will still exist, all groups in these directories should be removed before changing.</li>
499
499
  <li>Since portal users can read <tt class="docutils literal">dms.storage</tt> records, if your module extends this model to another storage backend that needs using secrets, remember to forbid access to the secrets fields by other means. It would be nice to be able to remove that rule at some point.</li>
500
500
  <li>Searchpanel in files: Highlight items (shading) without records when filtering something (by name for example).</li>
501
+ <li>Accessing the clipboard (for example copy share link of file/directory) is limited to secure connections. It also happens in any part of Odoo.</li>
501
502
  </ul>
502
503
  </div>
503
504
  <div class="section" id="bug-tracker">
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-dms
3
- Version: 16.0.1.8.2.4
3
+ Version: 16.0.1.8.3.2
4
4
  Summary: Document Management System for Odoo
5
5
  Home-page: https://github.com/OCA/dms
6
6
  Author: MuK IT, Tecnativa, Odoo Community Association (OCA)
@@ -11,7 +11,7 @@ Classifier: Framework :: Odoo
11
11
  Classifier: Framework :: Odoo :: 16.0
12
12
  Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
13
13
  Requires-Python: >=3.10
14
- Requires-Dist: odoo <16.1dev,>=16.0a
14
+ Requires-Dist: odoo<16.1dev,>=16.0a
15
15
 
16
16
  ==========================
17
17
  Document Management System
@@ -22,7 +22,7 @@ Document Management System
22
22
  !! This file is generated by oca-gen-addon-readme !!
23
23
  !! changes will be overwritten. !!
24
24
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
25
- !! source digest: sha256:47e1474a4f285eefc01f31e5393d7ec85323c8f27d7cd2044cd55fa12da5fe96
25
+ !! source digest: sha256:a1e09fa33b9ef1f4f1ff039a3ff5685f7de8ade40a250dca4e24d40b0b695fe5
26
26
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27
27
 
28
28
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -135,6 +135,7 @@ Known issues / Roadmap
135
135
  - If Inherit permissions from related record (the inherit_access_from_parent_record field from storage) is changed when directories already exist, inconsistencies may occur because groups defined in the directories and subdirectories will still exist, all groups in these directories should be removed before changing.
136
136
  - Since portal users can read ``dms.storage`` records, if your module extends this model to another storage backend that needs using secrets, remember to forbid access to the secrets fields by other means. It would be nice to be able to remove that rule at some point.
137
137
  - Searchpanel in files: Highlight items (shading) without records when filtering something (by name for example).
138
+ - Accessing the clipboard (for example copy share link of file/directory) is limited to secure connections. It also happens in any part of Odoo.
138
139
 
139
140
  Bug Tracker
140
141
  ===========
@@ -1,6 +1,6 @@
1
- odoo/addons/dms/README.rst,sha256=PPlr5S6hXWi7iOO4QMl4QlAAV-YwbTMdxBeUb0wY6hU,7748
1
+ odoo/addons/dms/README.rst,sha256=PSg56jpmuFGiiYotdb5bEGUDKr2bnhcHpeyUj-2H-fU,7893
2
2
  odoo/addons/dms/__init__.py,sha256=dnUeA_K1torbiMNF3tt2dtECdk-FkWm01DByr9MBMIA,69
3
- odoo/addons/dms/__manifest__.py,sha256=lNRX-nL7Ukev5qtz_q2O9pQBy56StjTlumZObhvo-WE,1863
3
+ odoo/addons/dms/__manifest__.py,sha256=W8Sfrk27fwkVS90XL7w4l8cv8zswmV9UmeWNg7iedZ0,1863
4
4
  odoo/addons/dms/actions/file.xml,sha256=NlRIQoCbbDSaRmsumJP9dcrNtYpQji74hwhfi5TillE,524
5
5
  odoo/addons/dms/controllers/__init__.py,sha256=akfNDwFGryweTYowOA3DbbP0zvLmQtCdihtGhYvsIPQ,40
6
6
  odoo/addons/dms/controllers/main.py,sha256=9TjOKDeNerPNN4CKL0TWQiqOpNug8pqG6F5uBJO3bkM,1960
@@ -12,6 +12,7 @@ odoo/addons/dms/demo/file.xml,sha256=JaIGjObJXvz1Wvj3AwwTWMSYOxaHLxRS7KLcvBBCcg0
12
12
  odoo/addons/dms/demo/res_users.xml,sha256=edRmAsHsaQYhHiJWdFni5BGM3-0Vskw3A1grXCHJhWc,323
13
13
  odoo/addons/dms/demo/storage.xml,sha256=-FaGk-HRVGjqsrotq7rfsObWFF4E6FiIGjVWPYFrWiI,751
14
14
  odoo/addons/dms/demo/tag.xml,sha256=QfLyWfBB2Cpa6mMWmuUfQJ-l3Ofj8QpFglVmTFgIsGs,2408
15
+ odoo/addons/dms/i18n/ca.po,sha256=XsjOYNwUKKauLZHrjfeGp-8zJdhyHcTw9P9pyMgZ_m0,73765
15
16
  odoo/addons/dms/i18n/de.po,sha256=qQ63c65MrQ2u3qLZ_sqHGYCYA5nBesGL63Y4P7T-1qA,84520
16
17
  odoo/addons/dms/i18n/dms.pot,sha256=e7mKqhKOMsO7GE2Ii5TJUQVcKMCMKxIdRQrRSCr-JPc,72681
17
18
  odoo/addons/dms/i18n/es.po,sha256=bRywqvW-6vvM_DOSTcuts_sJHLqFxYyq-iM-KR4gLGE,85377
@@ -44,13 +45,13 @@ odoo/addons/dms/readme/CONTRIBUTORS.rst,sha256=VvXo3gvhZI_HfryjhzEwY7cwYxrhPGfiP
44
45
  odoo/addons/dms/readme/CREDITS.rst,sha256=9UOaT-5LyUoak2wa_xt6KLj-iDPVDsn8PTJqRUs6Dt8,284
45
46
  odoo/addons/dms/readme/DESCRIPTION.rst,sha256=rIH_rBFm_Rh-MuKsmoZh8w6o2HvlcGoxngrL-EIYk6E,443
46
47
  odoo/addons/dms/readme/INSTALL.rst,sha256=9u-nKvIKsa1wrSODP7Rfi41GCb2lAFwclwTIF6buQ7c,325
47
- odoo/addons/dms/readme/ROADMAP.rst,sha256=ZgRZRUqrPaF5AhVxbuhgYjdHjPzGszPeA4t20yj0Eug,1085
48
+ odoo/addons/dms/readme/ROADMAP.rst,sha256=P5SjwcywSh_vMa4gRNwTkJNSTzIhl8vqdeLVPq6tjf4,1230
48
49
  odoo/addons/dms/readme/USAGE.rst,sha256=d8wVCTrFp7He_wfJlul-cp46ltGbTNRfo2z3fR652Po,522
49
50
  odoo/addons/dms/security/ir.model.access.csv,sha256=_SuEwHD3SOXbpLalbr5FqGjPvwtDJHp1thy1BacraQg,1953
50
51
  odoo/addons/dms/security/security.xml,sha256=plasjSwS2w5GK07BvW9obXNOpPgeBLKeEkUJ6Wpc6nA,9085
51
52
  odoo/addons/dms/static/description/icon.png,sha256=8xwcyAfhzMOu_xBinu4KwZsvmqUj6X5aF2LUQvvwdc4,7197
52
53
  odoo/addons/dms/static/description/icon.svg,sha256=cICSzGzl0Z00q7m0yhriujt2ip5_v4ymxAMTGzolxsc,8025
53
- odoo/addons/dms/static/description/index.html,sha256=dMac2YquX3tJdCvUwJOGErJQ-fwRle53IXhvDTq8iDI,20441
54
+ odoo/addons/dms/static/description/index.html,sha256=d5zgkLP5xc2_ZQWWhWdN_t1ZAwnDh-lH3XWJdH5YQn8,20593
54
55
  odoo/addons/dms/static/icons/file_ai.svg,sha256=HeCXVJivVnn6jjj__5WJiLfZv4mrmAamPFek0CwozCc,3343
55
56
  odoo/addons/dms/static/icons/file_aj.svg,sha256=mUbfvaV5_m3zJ3zZKldBbaFz4AZNQNecSZ1W_JCZeE4,3063
56
57
  odoo/addons/dms/static/icons/file_avi.svg,sha256=Pf78IrO6gGsg3aUVguOu6osDwLYz5ceIOLMbTRpya5s,1862
@@ -210,7 +211,7 @@ odoo/addons/dms/wizards/wizard_dms_file_move.py,sha256=zQouQDJuLWOrjzkksiUaTf0DF
210
211
  odoo/addons/dms/wizards/wizard_dms_file_move_views.xml,sha256=bYWdX_QlMpIOS5gRk7iEyddHKLCvAkvzDxfT3oM1lCo,1931
211
212
  odoo/addons/dms/wizards/wizard_dms_share.py,sha256=s7n6nQy0I6qVsvQ7Z57lfY28wi8tbd9062Bdw-BSoWg,558
212
213
  odoo/addons/dms/wizards/wizard_dms_share_views.xml,sha256=63BhWyowqJ2Yf3RdOdjT6WvC13jXxTKzsJEZXmaHv-A,1230
213
- odoo_addon_dms-16.0.1.8.2.4.dist-info/METADATA,sha256=rHQuWEBb8rk6uRf8CrNpFQjyNdp-HfRoKbJeZnnzX9A,8271
214
- odoo_addon_dms-16.0.1.8.2.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
215
- odoo_addon_dms-16.0.1.8.2.4.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
216
- odoo_addon_dms-16.0.1.8.2.4.dist-info/RECORD,,
214
+ odoo_addon_dms-16.0.1.8.3.2.dist-info/METADATA,sha256=gPZmukbQnnFkR1oqTABJRWIM3Fi0MEkTI02g_z38jPY,8415
215
+ odoo_addon_dms-16.0.1.8.3.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
216
+ odoo_addon_dms-16.0.1.8.3.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
217
+ odoo_addon_dms-16.0.1.8.3.2.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: bdist_wheel (0.45.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5