lino 25.8.2__py3-none-any.whl → 25.8.3__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 (108) hide show
  1. lino/__init__.py +1 -1
  2. lino/config/unused/403.html +1 -1
  3. lino/config/unused/404.html +1 -1
  4. lino/config/unused/500.html +1 -1
  5. lino/core/actions.py +1 -1
  6. lino/core/actors.py +2 -2
  7. lino/core/elems.py +1 -1
  8. lino/core/kernel.py +5 -1
  9. lino/core/renderer.py +2 -2
  10. lino/core/requests.py +4 -5
  11. lino/core/site.py +5 -3
  12. lino/core/store.py +3 -1
  13. lino/core/urls.py +1 -1
  14. lino/help_texts.py +9 -5
  15. lino/modlib/__init__.py +1 -1
  16. lino/modlib/bootstrap5/README.txt +2 -0
  17. lino/modlib/{bootstrap3 → bootstrap5}/__init__.py +6 -6
  18. lino/modlib/{bootstrap3/config/bootstrap3 → bootstrap5/config/bootstrap5}/base.html +5 -4
  19. lino/modlib/{bootstrap3/config/bootstrap3 → bootstrap5/config/bootstrap5}/detail.html +1 -1
  20. lino/modlib/{bootstrap3/config/bootstrap3 → bootstrap5/config/bootstrap5}/index.html +1 -1
  21. lino/modlib/{bootstrap3/config/bootstrap3 → bootstrap5/config/bootstrap5}/table.html +1 -1
  22. lino/modlib/{bootstrap3 → bootstrap5}/models.py +2 -2
  23. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.css +4085 -0
  24. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.css.map +1 -0
  25. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.min.css +6 -0
  26. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.min.css.map +1 -0
  27. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.rtl.css +4084 -0
  28. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.rtl.css.map +1 -0
  29. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.rtl.min.css +6 -0
  30. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.rtl.min.css.map +1 -0
  31. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.css +597 -0
  32. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.css.map +1 -0
  33. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.min.css +6 -0
  34. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.min.css.map +1 -0
  35. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.rtl.css +594 -0
  36. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.rtl.css.map +1 -0
  37. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.rtl.min.css +6 -0
  38. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.rtl.min.css.map +1 -0
  39. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.css +5406 -0
  40. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.css.map +1 -0
  41. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.min.css +6 -0
  42. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.min.css.map +1 -0
  43. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.rtl.css +5397 -0
  44. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.rtl.css.map +1 -0
  45. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.rtl.min.css +6 -0
  46. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.rtl.min.css.map +1 -0
  47. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.css +12043 -0
  48. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.css.map +1 -0
  49. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.min.css +6 -0
  50. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.min.css.map +1 -0
  51. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.rtl.css +12016 -0
  52. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.rtl.css.map +1 -0
  53. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.rtl.min.css +6 -0
  54. lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.rtl.min.css.map +1 -0
  55. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.bundle.js +6315 -0
  56. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.bundle.js.map +1 -0
  57. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.bundle.min.js +7 -0
  58. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.bundle.min.js.map +1 -0
  59. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.esm.js +4450 -0
  60. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.esm.js.map +1 -0
  61. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.esm.min.js +7 -0
  62. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.esm.min.js.map +1 -0
  63. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.js +4497 -0
  64. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.js.map +1 -0
  65. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.min.js +7 -0
  66. lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.min.js.map +1 -0
  67. lino/modlib/{bootstrap3 → bootstrap5}/views.py +10 -10
  68. lino/modlib/comments/mixins.py +1 -8
  69. lino/modlib/comments/models.py +2 -0
  70. lino/modlib/extjs/__init__.py +1 -1
  71. lino/modlib/jinja/renderer.py +1 -1
  72. lino/modlib/memo/__init__.py +1 -2
  73. lino/modlib/odata/views.py +7 -7
  74. lino/modlib/publisher/__init__.py +9 -2
  75. lino/modlib/publisher/choicelists.py +12 -43
  76. lino/modlib/publisher/config/publisher/page.pub.html +10 -13
  77. lino/modlib/publisher/fixtures/synodalworld.py +3 -1
  78. lino/modlib/publisher/mixins.py +28 -75
  79. lino/modlib/publisher/models.py +49 -143
  80. lino/modlib/publisher/renderer.py +6 -2
  81. lino/modlib/publisher/ui.py +23 -75
  82. lino/modlib/publisher/views.py +30 -15
  83. lino/modlib/users/fixtures/abc.py +20 -0
  84. lino/modlib/users/mixins.py +6 -6
  85. lino/modlib/weasyprint/__init__.py +25 -14
  86. lino/modlib/weasyprint/config/weasyprint/base.weasy.html +43 -27
  87. {lino-25.8.2.dist-info → lino-25.8.3.dist-info}/METADATA +1 -1
  88. {lino-25.8.2.dist-info → lino-25.8.3.dist-info}/RECORD +102 -62
  89. lino/modlib/bootstrap3/README.txt +0 -2
  90. lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap.css +0 -6584
  91. lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap.css.map +0 -1
  92. lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap.min.css +0 -5
  93. lino/modlib/bootstrap3/static/bootstrap-3.3.4/js/bootstrap.js +0 -2317
  94. lino/modlib/bootstrap3/static/bootstrap-3.3.4/js/bootstrap.min.js +0 -7
  95. /lino/modlib/{bootstrap3 → bootstrap5}/renderer.py +0 -0
  96. /lino/modlib/{bootstrap3/static/bootstrap-3.3.4 → bootstrap5/static/bootstrap-5.3.7}/css/bootstrap-theme.css +0 -0
  97. /lino/modlib/{bootstrap3/static/bootstrap-3.3.4 → bootstrap5/static/bootstrap-5.3.7}/css/bootstrap-theme.css.map +0 -0
  98. /lino/modlib/{bootstrap3/static/bootstrap-3.3.4 → bootstrap5/static/bootstrap-5.3.7}/css/bootstrap-theme.min.css +0 -0
  99. /lino/modlib/{bootstrap3/static/bootstrap-3.3.4 → bootstrap5/static/bootstrap-5.3.7}/fonts/glyphicons-halflings-regular.eot +0 -0
  100. /lino/modlib/{bootstrap3/static/bootstrap-3.3.4 → bootstrap5/static/bootstrap-5.3.7}/fonts/glyphicons-halflings-regular.svg +0 -0
  101. /lino/modlib/{bootstrap3/static/bootstrap-3.3.4 → bootstrap5/static/bootstrap-5.3.7}/fonts/glyphicons-halflings-regular.ttf +0 -0
  102. /lino/modlib/{bootstrap3/static/bootstrap-3.3.4 → bootstrap5/static/bootstrap-5.3.7}/fonts/glyphicons-halflings-regular.woff +0 -0
  103. /lino/modlib/{bootstrap3/static/bootstrap-3.3.4 → bootstrap5/static/bootstrap-5.3.7}/fonts/glyphicons-halflings-regular.woff2 +0 -0
  104. /lino/modlib/{bootstrap3/static/bootstrap-3.3.4 → bootstrap5/static/bootstrap-5.3.7}/js/bootstrap_lino.js +0 -0
  105. /lino/modlib/{bootstrap3/static/bootstrap-3.3.4 → bootstrap5/static/bootstrap-5.3.7}/js/npm.js +0 -0
  106. {lino-25.8.2.dist-info → lino-25.8.3.dist-info}/WHEEL +0 -0
  107. {lino-25.8.2.dist-info → lino-25.8.3.dist-info}/licenses/AUTHORS.rst +0 -0
  108. {lino-25.8.2.dist-info → lino-25.8.3.dist-info}/licenses/COPYING +0 -0
@@ -1,6 +1,7 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
3
  <head>
4
+ {%- set WP = dd.plugins.weasyprint %}
4
5
  {%- block head %}
5
6
  <meta charset="UTF-8">
6
7
  <style type="text/css">
@@ -58,7 +59,7 @@ p {
58
59
  }
59
60
 
60
61
  div.recipient {
61
- position:relative; left:{{100-dd.plugins.weasyprint.margin_left}}mm;
62
+ position:relative; left:{{100-WP.margin_left}}mm;
62
63
  height:30mm;
63
64
  width:80mm;
64
65
  border: 1px solid lightgray;
@@ -80,25 +81,50 @@ div.recipient {
80
81
 
81
82
  @page {
82
83
  size: {%- block pagesize %}landscape{%- endblock %};
83
- margin: {{dd.plugins.weasyprint.margin}}mm;
84
- margin-bottom: {{dd.plugins.weasyprint.margin+dd.plugins.weasyprint.footer_height}}mm;
85
- {%- if True or dd.plugins.weasyprint.top_right_image -%}
86
- margin-top: {{dd.plugins.weasyprint.margin+dd.plugins.weasyprint.header_height}}mm;
84
+ margin: {{WP.margin}}mm;
85
+ margin-bottom: {{WP.margin+WP.footer_height}}mm;
86
+ {%- if True or WP.top_right_image -%}
87
+ margin-top: {{WP.margin+WP.header_height}}mm;
87
88
  {%- endif -%}
88
- margin-left: {{dd.plugins.weasyprint.margin_left}}mm;
89
- margin-right: {{dd.plugins.weasyprint.margin_right}}mm;
90
- {%- if dd.plugins.weasyprint.page_background_image -%}
91
- background-image: url(file://{{dd.plugins.weasyprint.page_background_image}});
89
+ margin-left: {{WP.margin_left}}mm;
90
+ margin-right: {{WP.margin_right}}mm;
91
+ {%- if WP.page_background_image -%}
92
+ background-image: url(file://{{WP.page_background_image}});
92
93
  background-repeat: no-repeat;
93
94
  background-attachment: fixed;
94
95
  background-size: contain;
95
96
  {%- endif -%}
96
97
  font-family: "Liberation sans", "arial";
97
98
  font-size: 10pt;
99
+
100
+ {%- block topright %}
101
+ {% if WP.top_right_image %}
102
+ @top-right {
103
+ height: {{WP.header_height}}mm;
104
+ width: {{WP.top_right_width}}mm;
105
+ padding: 0mm;
106
+ text-align: right;
107
+ background-image: url(file://{{WP.top_right_image}});
108
+ background-size: cover;
109
+ content: ""; // may be empty but must exist, otherwise bg is not rendered
110
+ // content: url(file://{{WP.top_right_image}});
111
+ }
112
+ {% endif %}
113
+ {%- endblock topright %}
98
114
  {%- block bottomleft %}
99
115
  @bottom-left {
116
+ {% if WP.bottom_left_image %}
117
+ height: {{WP.footer_height}}mm;
118
+ width: {{WP.bottom_left_width}}mm;
119
+ padding: 0mm;
120
+ text-align: right;
121
+ background-image: url(file://{{WP.bottom_left_image}});
122
+ background-size: cover;
123
+ content: ""; // may be empty but must exist, otherwise bg is not rendered
124
+ {% else %}
100
125
  vertical-align: top;
101
126
  content: '{{_("Printed")}} {{fdm(dd.today())}} {{_("at")}} {{now.time().strftime("%H:%M")}}';
127
+ {% endif %}
102
128
  }
103
129
  {%- endblock bottomleft %}
104
130
  {%- block bottomright %}
@@ -107,21 +133,6 @@ div.recipient {
107
133
  content: '{{_("Page")}} ' counter(page) ' {{_("of {0}").format("")}} ' counter(pages);
108
134
  }
109
135
  {%- endblock bottomright %}
110
-
111
- {%- block topright %}
112
- {% if dd.plugins.weasyprint.top_right_image %}
113
- @top-right {
114
- height: {{dd.plugins.weasyprint.header_height}}mm;
115
- width: {{dd.plugins.weasyprint.top_right_width}}mm;
116
- padding: 0mm;
117
- text-align: right;
118
- background-image: url(file://{{dd.plugins.weasyprint.top_right_image}});
119
- background-size: cover;
120
- content: ""; // may be empty but must exist, otherwise bg is not rendered
121
- // content: url(file://{{dd.plugins.weasyprint.top_right_image}});
122
- }
123
- {% endif %}
124
- {%- endblock topright %}
125
136
  }
126
137
 
127
138
  @media print {
@@ -142,7 +153,7 @@ div.recipient {
142
153
  div.footer_div {
143
154
  position: fixed;
144
155
  // bottom: -5mm;
145
- bottom: -{{dd.plugins.weasyprint.footer_height}}mm;
156
+ bottom: -{{WP.footer_height}}mm;
146
157
  width: 100%;
147
158
  // border-top: solid 1pt;
148
159
  padding: 0;
@@ -164,9 +175,14 @@ div.recipient {
164
175
  </head>
165
176
  <body>
166
177
  {%- block header %}
167
- {% if dd.plugins.weasyprint.header_image %}
178
+ {% if WP.header_image %}
168
179
  <div class="header_div">
169
- <img src="file://{{dd.plugins.weasyprint.header_image}}" style="height:{{dd.plugins.weasyprint.header_height}}mm">
180
+ <img src="file://{{WP.header_image}}" style="height:{{WP.header_height}}mm">
181
+ </div>
182
+ {% endif %}
183
+ {% if WP.footer_image %}
184
+ <div class="footer_div">
185
+ <img src="file://{{WP.footer_image}}" style="height:{{WP.footer_height}}mm">
170
186
  </div>
171
187
  {% endif %}
172
188
  {%- endblock header %}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lino
3
- Version: 25.8.2
3
+ Version: 25.8.3
4
4
  Summary: A framework for writing desktop-like web applications using Django and ExtJS or React
5
5
  Project-URL: Homepage, https://www.lino-framework.org
6
6
  Project-URL: Repository, https://gitlab.com/lino-framework/lino
@@ -1,10 +1,10 @@
1
1
  lino/.cvsignore,sha256=1vrrWoP-WD8hPfCszHHIiJEi8KUMRCt5WvoKB9TSB1k,28
2
2
  lino/SciTEDirectory.properties,sha256=rCYi_e-6h8Yx5DwXhAa6MBPlVINcl6Vv9BQDYZV2_go,28
3
- lino/__init__.py,sha256=XAN2-cu8FkLMvxRW8zzWpdFV9yvghyfDPxR_7VJFrQM,6176
3
+ lino/__init__.py,sha256=OKOvpQaMgs0rdo4htPBkHTfrXAG8zqzG9GJEoAyao1E,6176
4
4
  lino/ad.py,sha256=AQ-vJ4scac1mx3xegXezxnxyOQpV-a0q3VFMJSDbj2s,142
5
5
  lino/apps.py,sha256=ECq-dPARDkuhngwNrcipse3b4Irj70HxJs44uWEZFc4,27
6
6
  lino/hello.py,sha256=7-PJg7PnEiznyETqGjOwXcKh8rda0qLetpbS2gvRYy0,532
7
- lino/help_texts.py,sha256=RPw9EDHoQD7foqFTXNC8gWlnaWPqTZJQYgBTzNtDqIg,92385
7
+ lino/help_texts.py,sha256=KjOv4jOhKlAzgNQdZgFqWtpihcWOxd1oE1nU36sdikg,92872
8
8
  lino/api/__init__.py,sha256=WmzHU-rHdZ68se_nI0SmepQTGE8-cd9tPpovHRH9aag,512
9
9
  lino/api/ad.py,sha256=F6SrcKPRRalHKOZ7QLwsRWGq9hhykQIeo0b85cEk9NQ,314
10
10
  lino/api/dd.py,sha256=w-5qIpWdXu5yXyCC4Qh4ApB3yZTn0AwdxAjEhH8PyVE,7510
@@ -24,12 +24,12 @@ lino/config/about/app.tmpl,sha256=PUwtl89137aO5CEU3mCXXinn_qk0DSEh6BGgeWUYaRk,29
24
24
  lino/config/about/index.tmpl,sha256=LZoKgv3D0xG9bTwdW1GhElapImFnMGOA1QvyaNgzbWg,832
25
25
  lino/config/about/model.tmpl,sha256=u2PAcdIgqBxGLiul8CzgniuzIBmHSpWCVRrYY7VJDZ0,684
26
26
  lino/config/plugins/eid_jslib.js,sha256=PsJdUICoGK2nR9EbRg-7drI1AoasLWT_d3RInUWHlvE,2272
27
- lino/config/unused/403.html,sha256=ePwDIUXhz1iD8xXWWyt5xEvpcGIHU4LMnXma8x0ik1c,232
28
- lino/config/unused/404.html,sha256=GOJrAyF6NcM69ETdSHgjff_-lvYs_-bOYhyZBem7x3I,220
29
- lino/config/unused/500.html,sha256=aWmP37uPoMS-PJgPuBloxdx0nEreU7AvkXxsex3yVYs,544
27
+ lino/config/unused/403.html,sha256=uJquW5WUYng6eOSn6CVEU4xyQ1OCAqqWEJxIuvvpTCk,232
28
+ lino/config/unused/404.html,sha256=EQznANLHgrCx85KRSkBFfJbA7xMJ8aOLnNzf4yzvFG4,220
29
+ lino/config/unused/500.html,sha256=AsV_SGD3TKG-z1nfB1ue3tiebktdcDEKvDz0WyFLOjo,544
30
30
  lino/core/__init__.py,sha256=I4X69XK6Y1MZ8X6tC13Wmg13C3r5iTfYcFDiPJKpUdw,726
31
- lino/core/actions.py,sha256=0ebutR3pIMXa7cNpoVJlyt6TueWrfJNNygvQL7XkOgQ,32659
32
- lino/core/actors.py,sha256=hbbzTpP7iBjQ2Eup4JhV5zx8w64arqPpkv4RnCptyKY,72585
31
+ lino/core/actions.py,sha256=41UtV6QrJ_KxB2IxcjjxY0kKgBXfi9uq-iDshDMvTDo,32664
32
+ lino/core/actors.py,sha256=-gCzQSyAtlzXfyw0MK8IIlU3341xKlfNeZ-pkUVcBdA,72585
33
33
  lino/core/atomizer.py,sha256=yK_l9-g8RZIjy2_iBB_efpyO1CrvegCBbjobD5mTTVc,13476
34
34
  lino/core/boundaction.py,sha256=06NNPjCesEr-R1YQKkiuy8JKzDrMJJ948x9jczOkZqY,7850
35
35
  lino/core/callbacks.py,sha256=45lg153pzY7w94XLvh7QqHH7qOH5yTxLyRH7Vn_l1Ec,7549
@@ -41,14 +41,14 @@ lino/core/dbtables.py,sha256=b3D7gNaLpNvRgiFmOcfIwnW14Z4eCT0nWaPE8OjziOU,29258
41
41
  lino/core/dbutils.py,sha256=_QHcWd-ajLUwt5G8uOp8d47lZQKD3VseHnqKJke18rA,263
42
42
  lino/core/ddh.py,sha256=dYScxWKTOCDEgow7wJNJe812ESasmmITPK2ovraBQno,3172
43
43
  lino/core/diff.py,sha256=XQ-oQQDS_v3kXd4eRP9Hwr5UCgp-TPZIPVav9ZblUno,5882
44
- lino/core/elems.py,sha256=vGAqGwWkNUG9mtQkeu-EOlqPpOHyvnI6uhHn9ivsNdw,110631
44
+ lino/core/elems.py,sha256=0X7Vcv0gllc1MtG01sttEVJQv8-yiVkjs8KgvNi7n0Q,110631
45
45
  lino/core/exceptions.py,sha256=QDxDo5cllSyXQ8VWet9hGXzNadxCOmwMVrFXc6V-vpE,665
46
46
  lino/core/fields.py,sha256=r8ZySAvyn2ZCkppPdgTVmqa0IPygM6xWU9GEgoCSQ-A,54775
47
47
  lino/core/frames.py,sha256=ISxgq9zyZfqW3tDZMWdKi9Ij455lT_81qBH0xex0bfE,1161
48
48
  lino/core/gfks.py,sha256=6VXn2FSIXOrwVq0stfbPevT37EWg1tg4Fn-HMNVnbmk,1970
49
49
  lino/core/help.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
50
  lino/core/inject.py,sha256=Qd_PGEn0yMXNYVPI0wCv1vvo2CNdlPkyoBmKZELOtGM,13422
51
- lino/core/kernel.py,sha256=WbVyCANXcth5b-QGknJjidWc2mlmNjEUXiHStXzm8c0,48522
51
+ lino/core/kernel.py,sha256=70ZzQTYXwOVj3JT7DBc2tKI6242gkqvLSTnnJQzs81c,48689
52
52
  lino/core/keyboard.py,sha256=W3jA6qtB5HMppoNnd_6PgIM7ZlyHilJEhBvdeZTY7Xk,1283
53
53
  lino/core/layouts.py,sha256=CWhKgCEBnjn39RMFRYUklPEvvCnZrDXhtigZpGuiR8o,28176
54
54
  lino/core/menus.py,sha256=oZN93iwQU4vfUCuxQzaVz2xcccN5AG6NG2wGruL74sU,10713
@@ -56,14 +56,14 @@ lino/core/merge.py,sha256=sKtTeZtHdoDKerdHj4NXuXXNzpKDsfdPaiq-CY0NqQc,9094
56
56
  lino/core/model.py,sha256=jcjCuB_Rg3JBvXUHT8f5kz-DlwZDBQla7kB19e1BQBs,37427
57
57
  lino/core/permissions.py,sha256=sNReMhnjIpOZcJ79Z4k-Emp55evblExJZwH-PM-efcA,7579
58
58
  lino/core/plugin.py,sha256=ZuA2d1oa3Mqx_jyPIwIV68cyzawLw_grthliIo83nuM,6835
59
- lino/core/renderer.py,sha256=HhRC_gtrapNLw2Xl-cs67YdI_NdEdJ2ULsbvs5gb2wA,48252
60
- lino/core/requests.py,sha256=_kwmx8VAwdaPssIdsZt_GzCst67BTR7WwVv4z_KCsNo,96389
59
+ lino/core/renderer.py,sha256=kohgaJK7UXKDDGSXhUPOCbPawEOA4qBBHiFRYopVzyI,48244
60
+ lino/core/requests.py,sha256=JaDKl47HPC5QFlHPdB9nGqMkSLHThjpzgtepDVcJvSI,96349
61
61
  lino/core/roles.py,sha256=PXwk436xUupxdbJcygRSYFu7ixfKjAJPQRUQ8sy0lB0,4425
62
62
  lino/core/signals.py,sha256=ORY2s3Krlh9n24XyHetfwbeUhCqzib6YSqWeFTTY7ps,979
63
- lino/core/site.py,sha256=DiKF-yRzubEE7xpBntBh4LGlbIaOs6jNd2dT1uTh9dg,83401
64
- lino/core/store.py,sha256=bbWrbsV-hPS1FF3e2ABiQHQ_Q61tD2XSRBDSwoTW6jQ,46093
63
+ lino/core/site.py,sha256=de3SBf6GxSILSHPJOKt7N1CJ-wLkheIPsZMfY2PfS-A,83477
64
+ lino/core/store.py,sha256=CBo4upytdZUlhMtOg1r7viVMXYPUAJb9-S-nTumnMB0,46207
65
65
  lino/core/tables.py,sha256=sjmVu3A8gnamxwy16n76UJy2BXgiqeNeCEbI4oGd93Q,25431
66
- lino/core/urls.py,sha256=06QlmN1vpxjmb5snO3SPpP6lX1pMdE60bTiBiC77_vQ,2677
66
+ lino/core/urls.py,sha256=PUsrsP4FCEZNVR3YWX8cx9w97wHt0WWiUjS9RwRdp0A,2698
67
67
  lino/core/user_types.py,sha256=0iSYmzr2M9v2Mn2y6hzAZeqareUT-gD7l3MfIPyG9ZI,867
68
68
  lino/core/userprefs.py,sha256=cmufIS9xJErKDrw05uoWtQTUR6WRWIGkU1KdAqzNr5M,2850
69
69
  lino/core/utils.py,sha256=DD3v75WK3sCmAaRQH3WTX3phbEsunPvepA0O5g1PBaw,40495
@@ -127,7 +127,7 @@ lino/mixins/printable.py,sha256=4U8M1lrTjUeuaPwrcWoanCBo53iAxiNpSTsVctI-gI0,199
127
127
  lino/mixins/ref.py,sha256=qV8CprGCvwzzWTl6LQc9I1RwD8pziD0F7Ykoaznm8wM,5550
128
128
  lino/mixins/registrable.py,sha256=DYiwiIoYMO488ZGX7C5PRbKz9HBpzk1rG6q9-_WvymQ,7208
129
129
  lino/mixins/sequenced.py,sha256=3DvjBEHLHacbBBq6iiVGftcvOPhBVpA9FN_tvNc6Bpo,16567
130
- lino/modlib/__init__.py,sha256=cO31gNu2oRkp7o2v3D9gK2H7j4jF9rbVyPxPZhZQwrQ,940
130
+ lino/modlib/__init__.py,sha256=IGBDIfxsmcXQL6TTIODjGPan-k96V8SBcN1MifF2ZCw,940
131
131
  lino/modlib/about/__init__.py,sha256=jhqGQIXU1o7KkmmQjfwPKJc3buibB09Fy55carAmi7U,342
132
132
  lino/modlib/about/choicelists.py,sha256=2bxDb2u7cFacBOgLoEWrMmzQ4BJ3x1pmhdgqxzUp-Rw,1424
133
133
  lino/modlib/about/models.py,sha256=MpTncIngidWA7cJ4s_Pzrca0qNhKXhrieuu3Nl7hnVU,5193
@@ -136,30 +136,69 @@ lino/modlib/awesomeuploader/models.py,sha256=LaK6IzLoCX4qMkVhsgdPfgawyFPe5rcHUgB
136
136
  lino/modlib/awesomeuploader/config/awesomeuploader/snippet.js,sha256=cZCGi0e9lDW96vCg3KVJ5DUtg2KHLNdnPo5KPRrQxv8,1792
137
137
  lino/modlib/blacklist/__init__.py,sha256=7IZihcqNCDymcWHfkAOZrueg2cbWiXRiXSZB-84RWLk,775
138
138
  lino/modlib/blacklist/models.py,sha256=YKoxf_9OBWzr2MWimZcWVgi-OGV4RUXI_UkUeqfNACo,1781
139
- lino/modlib/bootstrap3/README.txt,sha256=18Z9gPRHMDVh5Ej8kYz7T2emsdO7xx65eBFH8vVLlys,85
140
- lino/modlib/bootstrap3/__init__.py,sha256=AhyWB7eaItGf0eaEQTHsB79erCR55LSV0VrIVp3H-p4,2047
141
- lino/modlib/bootstrap3/models.py,sha256=IwxKrQPYJFQf2_O5q53tr15koxlhADFCOz3J3xuKj-U,901
142
- lino/modlib/bootstrap3/renderer.py,sha256=KfU2K0TyFMg3IKm5F-wUu315P2U4O6DCC5QVdsDyb2s,3018
143
- lino/modlib/bootstrap3/views.py,sha256=otojM05TZL_paHMTVg-M9BpXVYZs4oG94yu-50km8Wc,11674
144
- lino/modlib/bootstrap3/config/bootstrap3/base.html,sha256=9xnRcrUbsgTWu_QYYwpir6NBpLR9pFD0uZwcSkZeNgA,4014
145
- lino/modlib/bootstrap3/config/bootstrap3/detail.html,sha256=bwzh4kh9wuqAiE3fuby5t4YN5VBclg2R6KbsSYYnaBM,523
146
- lino/modlib/bootstrap3/config/bootstrap3/index.html,sha256=FPhdNhHAJmooJw32mAisWN4_7YHaPRGsBlIrbxjjwcc,113
147
- lino/modlib/bootstrap3/config/bootstrap3/table.html,sha256=ETrPXctZT5y-Tlx4cLhTUrg0_pkwtqPiNx3NpsMjOS4,249
148
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap-theme.css,sha256=CK7elGQGwEHAuMXG4xblln88_Ysk81eSm13UMY2ZQJI,22608
149
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap-theme.css.map,sha256=YPcKjA6xAcNEFIbIKfnF_p_PPj797EQ3HMVhIAl0hXY,43339
150
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap-theme.min.css,sha256=JFPjH5xeDb7lKNEfl6he34l-2TQGlUzo5HXwJEq_JJo,19963
151
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap.css,sha256=yUJoYBDihWM9d6JDQcQ4UMzWFi_MfoKBropwwpIamvU,141622
152
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap.css.map,sha256=2qSuvAAoZPyv1sor76Z9m0_2Fs8ukwAn3fp9eGo_Q0Y,380986
153
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap.min.css,sha256=8EtRe6XWoFEEhWiaPkLawAD1FkD9cbmGgEy6F46uQqU,117305
154
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.eot,sha256=E2NNqH2eI_jD7ZEIzhck0YOjmtBy5z4bPYy_ZG0tBAc,20127
155
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.svg,sha256=QvYGWdJlwaPDD5-kKry7Vr1KU69Ng9MW1t16NpA8Q-U,108738
156
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.ttf,sha256=45UEQJN1fYKvyxOJV9BqHqk2G9zwtELQahioBRr1dFY,45404
157
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.woff,sha256=omOU9-3hAMoRjv8u2ghZYnWpg5uVnCJuFUOVV6WoB0I,23424
158
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.woff2,sha256=_hhdEaSWdokNR7t4MxKgzaWkTEA5IUCU55V7TAQO8Rw,18028
159
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/js/bootstrap.js,sha256=Qa-WnuAOgTKgBACU2ysaeaFbTZt-K7SFASlw_fe1xFU,67546
160
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/js/bootstrap.min.js,sha256=1f0XPQDZczkAg04OEIPehrUy4EixXAQgulwtsGI2RLg,35951
161
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/js/bootstrap_lino.js,sha256=PxA9wsbAmzTJYPw7fMMg9Sh3CsS-bquziVKe1kjUYY8,114
162
- lino/modlib/bootstrap3/static/bootstrap-3.3.4/js/npm.js,sha256=x6qCoap9RSJKONkm0q2v9_5K71vNr6Kke9rAV_RCLC0,484
139
+ lino/modlib/bootstrap5/README.txt,sha256=SvVAvRXTyCZiHxlOm2V9Q92sX6ecXfww4pzfs8foYwc,85
140
+ lino/modlib/bootstrap5/__init__.py,sha256=5ixJPfIHJF9uOnieDpn30QsKXoDqpngrgW_3heM5tY0,2047
141
+ lino/modlib/bootstrap5/models.py,sha256=PhKyeeTO_qMW406gTT5-Y_nbDPKvPIZzJPyS8sRl3g8,901
142
+ lino/modlib/bootstrap5/renderer.py,sha256=KfU2K0TyFMg3IKm5F-wUu315P2U4O6DCC5QVdsDyb2s,3018
143
+ lino/modlib/bootstrap5/views.py,sha256=DxqZQ9sMK0Pe9wn2H6xjNEsWDcp-fBevNUBiiasY4cw,11674
144
+ lino/modlib/bootstrap5/config/bootstrap5/base.html,sha256=QYohW90nrzP20vmpt7-t9LGmD5TJtAjS5rT3AaKD76g,4120
145
+ lino/modlib/bootstrap5/config/bootstrap5/detail.html,sha256=gFfBZpEgxHm8d1EeAorh8dHnByVoD6KCQClDk-EVtAc,523
146
+ lino/modlib/bootstrap5/config/bootstrap5/index.html,sha256=cyJzgSzeRuKobXuuqofELa27gOlT_5KwhaOnWTI3nhQ,113
147
+ lino/modlib/bootstrap5/config/bootstrap5/table.html,sha256=jrDaL7DBlOOW7sgZZbi9Wmq4omMJaEVFnhL_F7psyT8,249
148
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.css,sha256=6aHQppfEko_srtbO3ubCBn9bCz25XtsZoZB8XwnYz34,70323
149
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.css.map,sha256=HA9YLrNkqlffVSkFCLsPOLpzvER9oRo1Zkrvt9F9q98,203340
150
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.min.css,sha256=og1MNJxsupki6LpVXZo-rC95f4QLF16m1YUpHn8vtyM,51789
151
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.min.css.map,sha256=I0izs3TQUfbPyb_bNRPJ7iVJ0ULOZFtG_nyETTAU_Yc,115912
152
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.rtl.css,sha256=F6wTAruMGkJF9VRzPNq55rxR7N4yhnUKcQhxjmrsGRg,70397
153
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.rtl.css.map,sha256=joHEUNOjjpxtq_QNYHOT4JpnFo4439IskmY-bjcTihk,203344
154
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.rtl.min.css,sha256=02smAS4nas_okRY9J2IiVqi15Zdws9MuuybRJtf_xQo,51864
155
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-grid.rtl.min.css.map,sha256=8UZkqzSRw4UnhM40O7g3c1TI83av6RGCum1bdZ9q7l8,115989
156
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.css,sha256=Kg4miiK9t9v3vyB_LZUmz9a92vBlZxc1rZZfKyDO0wQ,12065
157
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.css.map,sha256=vQnPy_uX1PUe524N9eLyJT6Z--kPr1FwjMLB9qcThYQ,129565
158
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.min.css,sha256=LR3cTZvDtka-FVVZFNhKksjFFc9s5eeQJtL7d-kM8Cg,10126
159
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.min.css.map,sha256=G5m7S_1IY191YwC-jWUJ5M9qJy-K9_aeBvkL7BZfHEw,51368
160
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.rtl.css,sha256=6VG3XVVVKowjrEBJbrhT393Yicq2mWYUQnROOXzjOJc,12058
161
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.rtl.css.map,sha256=2G_FEq_GAS_FZZWBIoL6LXPKps6BtxGXCsTUVrxhozs,129580
162
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.rtl.min.css,sha256=S2SiHKfwy3m9UatggjsRctCHEnrAMyi5TJfIz4rOtM4,10198
163
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-reboot.rtl.min.css.map,sha256=5FsqQmq4FvVRt_DD5i2bg95Y78Bvw57H1qvmo6RwOYw,63942
164
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-theme.css,sha256=CK7elGQGwEHAuMXG4xblln88_Ysk81eSm13UMY2ZQJI,22608
165
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-theme.css.map,sha256=YPcKjA6xAcNEFIbIKfnF_p_PPj797EQ3HMVhIAl0hXY,43339
166
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-theme.min.css,sha256=JFPjH5xeDb7lKNEfl6he34l-2TQGlUzo5HXwJEq_JJo,19963
167
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.css,sha256=J8DRiUSeWCoJ5KZv3oLznNnguNXxlT91gRfqx4OhLVM,107938
168
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.css.map,sha256=SMU2lB3w0v-EjU5hfM1Hzq4IexxecRDfxm7d-1FMy60,267983
169
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.min.css,sha256=zGK05vwcKWLkLZy_2uHeZiDb8n4lNbBhnxIBWgCGlho,85457
170
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.min.css.map,sha256=vLNGubJ0CJn-dNm5szlXMnn_fvNPyVO6okJ6po7bypU,180636
171
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.rtl.css,sha256=PaOXwBVjo0LFfThqwemMb2vZPdpJyTJr2wUpY2rlPgA,107806
172
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.rtl.css.map,sha256=R5iWDcOIUk3NTNBsL3kFRpmjmwI420-ragzY3hjSxLw,267924
173
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.rtl.min.css,sha256=uDMgsoOuJTmS-BX8zHV6BRYFknx6qQ0Iwalq0l_Wnwc,85386
174
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap-utilities.rtl.min.css.map,sha256=vTp-wSodqx0KTTRGFPS-5vJ4BeD15YsTyg2jOMvRV8Y,180472
175
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.css,sha256=0-OrIbuBPR3HGBpows26fnWeZDEmkNIQOA3m-LUDsuc,280202
176
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.css.map,sha256=KfxofL5yt27NqqYinBxvVVVHMUXkaIwbbjHfRKrtgw8,680591
177
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.min.css,sha256=zRgmWB5PK4CvTx4FiXsxbHaYRBBjz_rvu97sOC7kzXI,232018
178
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.min.css.map,sha256=6a7kXCMLkOvwgsPvI9SphA3lCCVYilUHoqABNauxLDQ,589698
179
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.rtl.css,sha256=Gk1oGfOLBLvjrSivQbGbLbVFDYLqIBwry7-HKKrwq08,279417
180
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.rtl.css.map,sha256=g1c2E_WGT3eJdfDltNW-2b3JVAyG74bcngJUPz4D068,680451
181
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.rtl.min.css,sha256=gP5J22JsVu-X8rzMEh1Kx-lD89HF3DW4YUWPiU9udUc,232126
182
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/css/bootstrap.rtl.min.css.map,sha256=MQL775aSq9kNSZA9h1GfrfILFLudaUgLi1xZ87cRkNY,588895
183
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/fonts/glyphicons-halflings-regular.eot,sha256=E2NNqH2eI_jD7ZEIzhck0YOjmtBy5z4bPYy_ZG0tBAc,20127
184
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/fonts/glyphicons-halflings-regular.svg,sha256=QvYGWdJlwaPDD5-kKry7Vr1KU69Ng9MW1t16NpA8Q-U,108738
185
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/fonts/glyphicons-halflings-regular.ttf,sha256=45UEQJN1fYKvyxOJV9BqHqk2G9zwtELQahioBRr1dFY,45404
186
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/fonts/glyphicons-halflings-regular.woff,sha256=omOU9-3hAMoRjv8u2ghZYnWpg5uVnCJuFUOVV6WoB0I,23424
187
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/fonts/glyphicons-halflings-regular.woff2,sha256=_hhdEaSWdokNR7t4MxKgzaWkTEA5IUCU55V7TAQO8Rw,18028
188
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.bundle.js,sha256=tQ9c3dc1t0j9EV2Itwqx1ZK0qjrLayj0-l_lSEgU5ZM,207922
189
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.bundle.js.map,sha256=RtS-xc_GamZ1j5irErX3kgDrY2wyvUcCisNyIffxHl8,427772
190
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.bundle.min.js,sha256=NfRUfZNkERrKSFA0c1a8VmCplPDYtpTYj5lQmKe1R_o,80821
191
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.bundle.min.js.map,sha256=KMPy0mgJ1P9QNFXDksX2HvkX3SIeO_iM2dOASfZr3oU,332190
192
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.esm.js,sha256=K8fPuP_Isv-p0f05Jbutp7bUudxGtciVRgDRN4aMa4c,135984
193
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.esm.js.map,sha256=-nx5p5T-n0g8L_OnO6CG2QIgyGtDPtxKfbBhcNN_yF0,293657
194
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.esm.min.js,sha256=_-2UOLrBkJMGzFHiKQxcgGnK1mIA94yryJf56OFeNbk,74055
195
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.esm.min.js.map,sha256=O9RzA_mzSQDqsLlfgT3EimsUNdYvrynK-iB19rGyO38,222398
196
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.js,sha256=4iVQR37Qe2Tuh7cjJQdKCANjnoR6UO6_cIu9hmy7hZA,145560
197
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.js.map,sha256=AKF2JhIGWaZl3cn18u8a6-ILdrSdz8IM2CXSCZouDbw,294819
198
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.min.js,sha256=lel57Jim1_CW4I1iEkaHexK_J9h_ZRneeORKiQuNOIg,60775
199
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap.min.js.map,sha256=SzzRmuPLldNWnyFXAZP64VpT-clUa5bND5fQscONDu8,220691
200
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/bootstrap_lino.js,sha256=PxA9wsbAmzTJYPw7fMMg9Sh3CsS-bquziVKe1kjUYY8,114
201
+ lino/modlib/bootstrap5/static/bootstrap-5.3.7/js/npm.js,sha256=x6qCoap9RSJKONkm0q2v9_5K71vNr6Kke9rAV_RCLC0,484
163
202
  lino/modlib/changes/__init__.py,sha256=3-CO7xI-U-rKDu_-WJg7N4FaIgqmFcj81uzyQlNYrFE,1414
164
203
  lino/modlib/changes/models.py,sha256=wflXkqKSC-0ZynPGEd6PR4agP6zMuYO6v6v2NcRJgoo,9537
165
204
  lino/modlib/changes/utils.py,sha256=MrMV_vUid7F8jA4U5zujia74URDK07x5lj8Bjay4o2E,2591
@@ -174,8 +213,8 @@ lino/modlib/checkdata/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-
174
213
  lino/modlib/checkdata/management/commands/checkdata.py,sha256=z-mvg8R0G7-BiWcyeyeMUoaLEhi9n58lockOtPdmhCg,1962
175
214
  lino/modlib/comments/__init__.py,sha256=8BitdJVlryi39ihTYY5gbm4k8DlmFongvKKbceozUkU,1506
176
215
  lino/modlib/comments/choicelists.py,sha256=SIA7P_KwtaayqOJxCkwyZouK0Z23-2v4ZFV9a0Zexnk,3314
177
- lino/modlib/comments/mixins.py,sha256=XHYUEcL1M5xM_c5HUa7b2_Ot-4vAAqIA_wVawerDxy0,4368
178
- lino/modlib/comments/models.py,sha256=GdDsnok0y1xAafC_wQ48wndTbxsW6k8oVM5ImVdTpCw,15489
216
+ lino/modlib/comments/mixins.py,sha256=zj_agGOiE4PG_Wg6ysxro37pq2H6dB-D9suQN1K_di4,4274
217
+ lino/modlib/comments/models.py,sha256=xW1MJQUbWA-AJ_YFM9gDbm_5jYEiI3kIm6HVbYl-lWU,15569
179
218
  lino/modlib/comments/roles.py,sha256=z3gctvlTa_5PAs-D4pounyzNyuEc31jTFq9g33r6Z1w,751
180
219
  lino/modlib/comments/ui.py,sha256=u46TU1Qn2jz3CN-pCmhV8D2HXezEhGGSTZjuTJ4GWME,9915
181
220
  lino/modlib/comments/config/comments/comments.js,sha256=7oAnNyx_MKM1iWPu-QSp6iKfnOVdgq7EciQPpxTvYU8,242
@@ -188,7 +227,7 @@ lino/modlib/dupable/mixins.py,sha256=SZ2Exe5q3ANYsP7gnEXQuQczwCDKdRfFvOavreu4mYI
188
227
  lino/modlib/dupable/models.py,sha256=fcPbWRLwAVOQ4y_E3kaeHUanxmZTS69dlg9TLNCeyZs,4575
189
228
  lino/modlib/export_excel/__init__.py,sha256=HrsrhXjIMvMHRGu8whH3A_WijZWrH35p2cQsFXK60DY,356
190
229
  lino/modlib/export_excel/models.py,sha256=u9COKVdVsPwGk5WjgVarjLSkxmS-KOdohXfH4CruF_c,5353
191
- lino/modlib/extjs/__init__.py,sha256=6UBWAWSROwy3DfTXQmVUVJTF6eZ_e2k3BEfE4wtqVhU,10172
230
+ lino/modlib/extjs/__init__.py,sha256=Av3HzEfICIH-ZcAXUjkd5k5QVQNMfOkH2KHAb7r4yxs,10172
192
231
  lino/modlib/extjs/ext_renderer.py,sha256=zjyZ8POSCoQMCzeaisIYJwk_OM6v0GimuRKddvyQAEM,60659
193
232
  lino/modlib/extjs/views.py,sha256=krcr8oCmQUXX7wK7eP-LxTCDUL8AtqMFqbNPXY0LA5c,26964
194
233
  lino/modlib/extjs/config/extjs/index.html,sha256=jO5hdNpFSkm9t0xhHD5hc8Hw1fSr6xb3zYq9aMyOI7Q,8603
@@ -3517,7 +3556,7 @@ lino/modlib/jinja/choicelists.py,sha256=QHjWQWLnJCKSGnLIKeGqnCw41JYvcbTkCeXjBpWh
3517
3556
  lino/modlib/jinja/loader.py,sha256=MX027X_UuQPqq0wOUr06QnOkdTzGpksNv0Om1CGp61I,1765
3518
3557
  lino/modlib/jinja/mixins.py,sha256=YqvNt1JB7as6IohBoyP8DqHldxmg9yOfrN27V5cn7Ho,2913
3519
3558
  lino/modlib/jinja/models.py,sha256=vXNFS78qP-qIzeSmnXJNOpvW_IfH1h6hhPgYjfkvvD0,207
3520
- lino/modlib/jinja/renderer.py,sha256=M7qrPwf_n730YoGXNQAnaJSBvD2lw-hez2_1YPIqSHo,6198
3559
+ lino/modlib/jinja/renderer.py,sha256=E860Xoq_QAtroT7ce6aerFDLB2ey57we1Gd1QWiGVco,6198
3521
3560
  lino/modlib/jinja/config/jinja/status.jinja.rst,sha256=XEsfXd82B0fLsBfds5-pXdeDWVr4ccTv7WyGa9ayigk,312
3522
3561
  lino/modlib/jinja/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3523
3562
  lino/modlib/jinja/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -3541,7 +3580,7 @@ lino/modlib/linod/fixtures/checkdata.py,sha256=JBh_r-OCd0VXSgyxegBq8fmf5T2CyeKjX
3541
3580
  lino/modlib/linod/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3542
3581
  lino/modlib/linod/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3543
3582
  lino/modlib/linod/management/commands/linod.py,sha256=SzJ6-yRpI1QFrXqiS8AO7_c2NmkMdV4JpFhfyGzs5eI,2587
3544
- lino/modlib/memo/__init__.py,sha256=mM4xIODNczmmn43ympj_Un7sPyc9RuIr6zmGKYB5vkk,5381
3583
+ lino/modlib/memo/__init__.py,sha256=-AhwN4yfPkE5xcT9uvdthXeImE3-assEu_8qRhlnAF4,5338
3545
3584
  lino/modlib/memo/mixins.py,sha256=cu5BkaYgNtFtJufqphlJrNJWO_wksZDqMdaQVBSrGAQ,10954
3546
3585
  lino/modlib/memo/models.py,sha256=zUEvWu0dK5QhkU3DeMqNqsrzSUzOl6DLZaJBNytfgrs,4388
3547
3586
  lino/modlib/memo/parser.py,sha256=h21I0EjXfV2oHvekp5LxqtfEGlHREa1eOFHU3yC3sOw,13029
@@ -3571,7 +3610,7 @@ lino/modlib/notify/static/js/push.js/push.min.js,sha256=4DApieALVblKkYJ4endqXGui
3571
3610
  lino/modlib/notify/static/js/push.js/push_tests.js,sha256=YHS6BGdg0tflNuzJgLn5jTgfw3oqqrl6n8ASTQWAIR4,7928
3572
3611
  lino/modlib/notify/static/js/push.js/sw.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3573
3612
  lino/modlib/odata/__init__.py,sha256=k26EMnYYOaS4FoIlsOqlbhRZvBPuTjYyGPyTRfP9YaY,1015
3574
- lino/modlib/odata/views.py,sha256=ssyYYIyGoxXtR3hKnIa-ZBPLb6vxEU5C6XUUQ1L6Z70,7205
3613
+ lino/modlib/odata/views.py,sha256=JMWTVDiS-0q9XKTDoAZ3ZO5U7GOYV028LV_Mrrxj0Gc,7205
3575
3614
  lino/modlib/odata/config/odata/csdl.xml,sha256=KFDImzUA4YI6PL-i5AHnm22eBMLTw-K2iljslDJFQH8,296
3576
3615
  lino/modlib/office/__init__.py,sha256=rOKD9zKt-VBvFFqoHBioNp299Igb1Sk2n466iCt6ASQ,287
3577
3616
  lino/modlib/office/roles.py,sha256=ZDerYusqGLP_YPFJAGNjEIHjNIvAFZ_2zfLaCuHg_7o,319
@@ -3588,22 +3627,22 @@ lino/modlib/printing/models.py,sha256=fd-BEKSLpgxPnkh9U7fg2tjNy39exBi3xJC9VzJuXd
3588
3627
  lino/modlib/printing/utils.py,sha256=LUO9769wJvHCPZIqeVQ9XAS6UKJ6BfJbiwO8Dt1kHc4,737
3589
3628
  lino/modlib/printing/config/report/Default.odt,sha256=4X8UD9H_5Th2CELP0C6DTe4g0ZNUPXAg1C00xP3Qluc,10930
3590
3629
  lino/modlib/printing/config/report/Default.wk.html,sha256=4Ssx2LWm1gVpXf0Q4XoSY15WkhqRvx51Upab-IS1nm0,96
3591
- lino/modlib/publisher/__init__.py,sha256=9w4cclyodBB3PO5rFzheIkzJs-tfA62PSGx2WI0NL5Q,2303
3592
- lino/modlib/publisher/choicelists.py,sha256=gVzjyp1sJ-XewAW-I_bCrKdTLgygLzh1ZwFI1rKyPdo,9070
3593
- lino/modlib/publisher/mixins.py,sha256=yRxAtFSNe9aVvdY-th_a5wmQ76jBfKYWzeNUn-efJMA,6651
3594
- lino/modlib/publisher/models.py,sha256=mstncIjj2vjON8YRum2AnA6oGNewBScscSD-eZNBteU,17593
3595
- lino/modlib/publisher/renderer.py,sha256=Rl6fX8PzfX6crmnUh8mdU5Mpe44mSN5lTu_Pv8aVSCk,1845
3596
- lino/modlib/publisher/ui.py,sha256=qWp3JWhO6zN_HSZvSlolmNTgiZgoJeY2_TIDh9nYf3Q,4491
3597
- lino/modlib/publisher/views.py,sha256=l_GomdliB1qCylg7jKKkay3ZgAaOPfWNQQ6ZPDjAUl0,2214
3630
+ lino/modlib/publisher/__init__.py,sha256=vHF70jyz7EJwmrVn5JVxnJujqjQupqoyHwhY2wqc2cM,2609
3631
+ lino/modlib/publisher/choicelists.py,sha256=6ezK8PXR0avLryyOfJpdH-yLDmXuYYJfvtyMtp38VKw,7852
3632
+ lino/modlib/publisher/mixins.py,sha256=GKo4DUsevEPlsvnxmCOE3YG5no1ugVvKCSc1-CMMw-M,4248
3633
+ lino/modlib/publisher/models.py,sha256=y9M4MEo8FBVuc0lXct2aG4LgoLwfVjz3yrbemX8jJ7s,14405
3634
+ lino/modlib/publisher/renderer.py,sha256=H_blUzQK2bnw_ewW7NcY6N5PyNIwgi40TKXLG4QKyeU,2078
3635
+ lino/modlib/publisher/ui.py,sha256=0nJJRnXknk1zIj3NBubYHWFgN9zBtNzvklq6xGlt2xA,3096
3636
+ lino/modlib/publisher/views.py,sha256=dswYg9uNrnG4-0mkn8ibH6vTyR2GproFzNiW-C-mgSA,2779
3598
3637
  lino/modlib/publisher/config/publisher/base.html,sha256=nrWuN4lhP1O4ORdYTaY3fS2pc90yfUnfDYfm2Jtr7hQ,198
3599
3638
  lino/modlib/publisher/config/publisher/default_list.pub.html,sha256=3ePc4U3xZxE-pqtzlnB9CRQWu8OQrtfXKEjyuc8BBUQ,578
3600
3639
  lino/modlib/publisher/config/publisher/item.pub.html,sha256=973RYgCAYG1SYIB4bwfVZFVTUo0WD2I98PsoPgjQ8XA,154
3601
3640
  lino/modlib/publisher/config/publisher/login.html,sha256=_j_MmwVv_UohMnEDADo99XQmUqGvOWTlCDPW1oaSWpo,495
3602
- lino/modlib/publisher/config/publisher/page.pub.html,sha256=kjUTHInDLu25QiOyZDpxumMBt2zjMLbDrMEiJhm6y5g,2568
3641
+ lino/modlib/publisher/config/publisher/page.pub.html,sha256=4pgyjoNTmgaQZhVBcKa0Y-TDFBPjVPKjc3Yt57i87KQ,2547
3603
3642
  lino/modlib/publisher/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3604
3643
  lino/modlib/publisher/fixtures/demo2.py,sha256=KrF672tNLlhMX6EkxKDfcvvE9pGH4k9NgF7Rk5DkiLg,366
3605
3644
  lino/modlib/publisher/fixtures/std.py,sha256=7xpMOr4kd-4SX8uhwxagktUlcXAr6fdZfD-H519CR6g,987
3606
- lino/modlib/publisher/fixtures/synodalworld.py,sha256=FFUPYrl-hgF9rEWU56OCEyhmrwtNzIsdYsfQOXJXcmA,732
3645
+ lino/modlib/publisher/fixtures/synodalworld.py,sha256=aQxVAmyxVcRHjMZsfbgtsYYho2JVCL98G8iopzCuFl0,819
3607
3646
  lino/modlib/restful/__init__.py,sha256=9CqWTQkJ2KpLW5MI1bKqKZU_7nXxodxl7HSgc8Agwmw,1506
3608
3647
  lino/modlib/restful/fields.py,sha256=8dik0q2LaCtJhQX1lu-fe-y_38xdhAWy1ZX3EKmJWfs,567
3609
3648
  lino/modlib/restful/serializers.py,sha256=AVyA19UkRUJ9AjlUN0fJyrj1LgfOyp-a2ANcVkecWtA,1143
@@ -4410,7 +4449,7 @@ lino/modlib/uploads/fixtures/std.py,sha256=nb5oRcX_WrkTLaGoch6PT7GA0FPKmqbN-BdlP
4410
4449
  lino/modlib/users/__init__.py,sha256=Q0yT2eOyGBXLStCEDI4U1Fcif-6EDssjX9VndcZ0m54,4794
4411
4450
  lino/modlib/users/actions.py,sha256=NcJVCfIhP3moN2MvhIonyCKzld7ruUtnCX4tFVMK7_c,18445
4412
4451
  lino/modlib/users/choicelists.py,sha256=-X76C1NxIs5e7rFHp5Z0kjJkA1NlOP2vdLKGkI2wZRU,3876
4413
- lino/modlib/users/mixins.py,sha256=Gyi0aTDN1YcQn86UmIAJhN3Pzql39sqiemF5oUne-RM,16081
4452
+ lino/modlib/users/mixins.py,sha256=nmWpNx1aBSPfDSnKLGtNcgUGcWkjIjLIyfK1V86a6-4,16114
4414
4453
  lino/modlib/users/models.py,sha256=V5r_aY7M7gXfY1wAcIknacwsF8k9vtiMY898-y7GSjE,17842
4415
4454
  lino/modlib/users/roles.py,sha256=yi29ELbWU1VtteGARaxetxmsCkZQHA2oJiD0dXujMiE,320
4416
4455
  lino/modlib/users/ui.py,sha256=GkaOHY3yFAErZydyO-noseXWXF1H7xfGVAjlT2NSwlE,13844
@@ -4419,14 +4458,15 @@ lino/modlib/users/config/users/verification_response.html,sha256=8X1sEn53ploQgB6
4419
4458
  lino/modlib/users/config/users/welcome_email.eml,sha256=bPSPbJKIPFRVWPDCuhNquQYwQtXzYGZgs7wICoiutS8,1078
4420
4459
  lino/modlib/users/config/users/User/welcome.body.html,sha256=5k1cVYdYUd0vDLUzyRBtGy52A027wpRiGYLbdgaOKs0,141
4421
4460
  lino/modlib/users/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4461
+ lino/modlib/users/fixtures/abc.py,sha256=YhJPXIPCkLc_pmE90bp6CGhpozVHiOrNuZRP6bj9ITs,797
4422
4462
  lino/modlib/users/fixtures/demo.py,sha256=YHPhvjqAh-V9WHgFct2GQlQATZmS-W3Nry-X6mI05z8,199
4423
4463
  lino/modlib/users/fixtures/demo2.py,sha256=j2ke91wvpHs3kHpeztzV3nOG4rJvavkHv2YJo0dISdI,495
4424
4464
  lino/modlib/users/fixtures/demo_users.py,sha256=zTkqxi6hUBL55B9FGpilrhT0aiBXN9uEhxzu0onCF5g,744
4425
4465
  lino/modlib/users/fixtures/std.py,sha256=Eo_TdqFC7NPryLeGRfp-nbOXw3hDqxTUpddFTxUuZ74,712
4426
- lino/modlib/weasyprint/__init__.py,sha256=0bKrkAQUcICXAxocT3zlJdyRBtOw7WP-wbEThMFNNHw,2525
4466
+ lino/modlib/weasyprint/__init__.py,sha256=_7di_eU09D3lwypV6IgOq_uZ_iiS3r9Emd1H1lhsWvc,3086
4427
4467
  lino/modlib/weasyprint/choicelists.py,sha256=HiQuU2UpC0_U989MAZSCIt4Jkb3E2O3JTlT5H2UeJKE,1386
4428
4468
  lino/modlib/weasyprint/models.py,sha256=op6CRRBC8NatqGgGdQHU4zcVG4fu4mRS9Mz8STG3B3g,168
4429
- lino/modlib/weasyprint/config/weasyprint/base.weasy.html,sha256=QgQBIt6guuKTLftlnNXD40LfmyBEMqHhrijp63slHA0,4620
4469
+ lino/modlib/weasyprint/config/weasyprint/base.weasy.html,sha256=lz_-RTUIzxmq2r_zEltzkuyILSxdFE8EkI5M_-42v_w,4806
4430
4470
  lino/modlib/wkhtmltopdf/__init__.py,sha256=1nqwVpOQH4YMhegnzrcfvXW_Xy9CIdHBHzrNvDGyVxg,773
4431
4471
  lino/modlib/wkhtmltopdf/choicelists.py,sha256=Mq7LySs-HJIXnyUHN5PR55nQyg2cgPjEQuN9JUhBmUY,1818
4432
4472
  lino/modlib/wkhtmltopdf/models.py,sha256=T7lHSSQKNcUWceNnNzq_bKEguXQ1THK5qyCDgeV6xfM,294
@@ -4636,8 +4676,8 @@ lino/utils/xml.py,sha256=EGDnO1UaREst9fS7KTESdbHnrrVCwKbRQdvut6B6GmQ,1612
4636
4676
  lino/utils/mldbc/__init__.py,sha256=QqWRlzeXaOmFfbCk-vTY3SZMn1-FCf67XnpZdd_Nim0,1134
4637
4677
  lino/utils/mldbc/fields.py,sha256=tAX8G5UKigr9c6g0F3ARIjZZtg406mdaZ--PWSbiH9E,2873
4638
4678
  lino/utils/mldbc/mixins.py,sha256=CkYe5jDa7xp9fJq_V8zcZf8ocxgIjUgHc9KZccvA_Yw,1945
4639
- lino-25.8.2.dist-info/METADATA,sha256=D8Td-XV_04Y60n7k53f_u30cUu11MFPOyf9xoH8r0II,42534
4640
- lino-25.8.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4641
- lino-25.8.2.dist-info/licenses/AUTHORS.rst,sha256=8VEm_G4HOmYEa4oi1nVoKKsdo4JanekEJCefWd2E8vk,981
4642
- lino-25.8.2.dist-info/licenses/COPYING,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
4643
- lino-25.8.2.dist-info/RECORD,,
4679
+ lino-25.8.3.dist-info/METADATA,sha256=IA3AZap5D34Op2qoofKIQI8_9EYLyttJlrhmrxdIXCo,42534
4680
+ lino-25.8.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4681
+ lino-25.8.3.dist-info/licenses/AUTHORS.rst,sha256=8VEm_G4HOmYEa4oi1nVoKKsdo4JanekEJCefWd2E8vk,981
4682
+ lino-25.8.3.dist-info/licenses/COPYING,sha256=DZak_2itbUtvHzD3E7GNUYSRK6jdOJ-GqncQ2weavLA,34523
4683
+ lino-25.8.3.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- The content of directory `static/bootstrap-3.3.4` comes from
2
- http://getbootstrap.com