libreqda 1.2.0__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 (255) hide show
  1. CHANGELOG.md +481 -0
  2. libreqda-1.2.0.dist-info/LICENSE.txt +28 -0
  3. libreqda-1.2.0.dist-info/METADATA +131 -0
  4. libreqda-1.2.0.dist-info/RECORD +255 -0
  5. libreqda-1.2.0.dist-info/WHEEL +4 -0
  6. libreqda-1.2.0.dist-info/entry_points.txt +4 -0
  7. scripts/babelrc +8 -0
  8. scripts/dist/LICENSE.txt +33 -0
  9. scripts/dist/RELEASE.txt +23 -0
  10. scripts/dist/macos/libreqda.icns +0 -0
  11. scripts/dist/macos/macos.spec +43 -0
  12. scripts/dist/macos/plist.patch +10 -0
  13. scripts/dist/macos/taguette.icns +0 -0
  14. scripts/dist/macos/taguette_console_wrapper +4 -0
  15. scripts/dist/macos.sh +32 -0
  16. scripts/dist/pyinstaller_entrypoint.py +19 -0
  17. scripts/dist/windows/windows-installer.iss +51 -0
  18. scripts/dist/windows/windows.spec +39 -0
  19. scripts/edugain/worker_update_edugain_idps.py +89 -0
  20. scripts/edugain/worker_update_edugain_idps.sh +9 -0
  21. scripts/make_password_reset_link.py +56 -0
  22. scripts/make_theme.py +99 -0
  23. scripts/new_db_revision.sh +8 -0
  24. scripts/register_user.py +76 -0
  25. scripts/update_pot.sh +33 -0
  26. scripts/update_translations.sh +17 -0
  27. scripts/validate.py +140 -0
  28. scripts/wipe_and_disable_user.py +90 -0
  29. taguette/__init__.py +13 -0
  30. taguette/access_control.py +145 -0
  31. taguette/convert.py +623 -0
  32. taguette/database/__init__.py +177 -0
  33. taguette/database/base.py +9 -0
  34. taguette/database/copy.py +433 -0
  35. taguette/database/models.py +920 -0
  36. taguette/demodata.py +688 -0
  37. taguette/export.py +500 -0
  38. taguette/extract.py +287 -0
  39. taguette/import_codebook.py +110 -0
  40. taguette/l10n/de_DE/LC_MESSAGES/taguette_javascript.mo +0 -0
  41. taguette/l10n/de_DE/LC_MESSAGES/taguette_main.mo +0 -0
  42. taguette/l10n/el_EL/LC_MESSAGES/taguette_javascript.mo +0 -0
  43. taguette/l10n/el_GR/LC_MESSAGES/taguette_javascript.mo +0 -0
  44. taguette/l10n/el_GR/LC_MESSAGES/taguette_main.mo +0 -0
  45. taguette/l10n/en_US/LC_MESSAGES/taguette_javascript.mo +0 -0
  46. taguette/l10n/en_US/LC_MESSAGES/taguette_main.mo +0 -0
  47. taguette/l10n/es_ES/LC_MESSAGES/taguette_javascript.mo +0 -0
  48. taguette/l10n/es_ES/LC_MESSAGES/taguette_main.mo +0 -0
  49. taguette/l10n/fr_FR/LC_MESSAGES/taguette_javascript.mo +0 -0
  50. taguette/l10n/fr_FR/LC_MESSAGES/taguette_main.mo +0 -0
  51. taguette/l10n/id_ID/LC_MESSAGES/taguette_javascript.mo +0 -0
  52. taguette/l10n/id_ID/LC_MESSAGES/taguette_main.mo +0 -0
  53. taguette/l10n/it_IT/LC_MESSAGES/taguette_javascript.mo +0 -0
  54. taguette/l10n/it_IT/LC_MESSAGES/taguette_main.mo +0 -0
  55. taguette/l10n/nl_NL/LC_MESSAGES/taguette_javascript.mo +0 -0
  56. taguette/l10n/nl_NL/LC_MESSAGES/taguette_main.mo +0 -0
  57. taguette/l10n/pt_PT/LC_MESSAGES/taguette_javascript.mo +0 -0
  58. taguette/l10n/pt_PT/LC_MESSAGES/taguette_main.mo +0 -0
  59. taguette/l10n/sv_SE/LC_MESSAGES/taguette_javascript.mo +0 -0
  60. taguette/l10n/sv_SE/LC_MESSAGES/taguette_main.mo +0 -0
  61. taguette/loki_handler.py +107 -0
  62. taguette/main.py +649 -0
  63. taguette/migrations/env.py +72 -0
  64. taguette/migrations/script.py.mako +24 -0
  65. taguette/migrations/versions/09c662cd9483_make_documents_filename_not_null.py +39 -0
  66. taguette/migrations/versions/1b29e68900c1_add_user_roles.py +55 -0
  67. taguette/migrations/versions/1b96a606551d_update_user_to_have_a_display_name.py +34 -0
  68. taguette/migrations/versions/2467bab602b7_add_color_column_to_tags_table.py +33 -0
  69. taguette/migrations/versions/382db36f20f4_add_user_disabled.py +66 -0
  70. taguette/migrations/versions/43d6c240309d_remove_document_groups.py +81 -0
  71. taguette/migrations/versions/447d636f72c5_cascades.py +40 -0
  72. taguette/migrations/versions/491de2dc7cd7_add_indexes.py +51 -0
  73. taguette/migrations/versions/4c55b3b3ff30_user_login_length.py +58 -0
  74. taguette/migrations/versions/61a4abcc8769_user_with_parent_for_permissions.py +40 -0
  75. taguette/migrations/versions/6489b5f9cfb5_increase_password_hash_size.py +34 -0
  76. taguette/migrations/versions/679f625e6e6a_fix_unique_tags.py +59 -0
  77. taguette/migrations/versions/77c4543a5b9b_add_parent_id_column_to_collection_table.py +41 -0
  78. taguette/migrations/versions/7c94b7a31e69_add_is_archived_column_to_projets.py +39 -0
  79. taguette/migrations/versions/7f56de97e3c8_change_edugain_displayname_length.py +42 -0
  80. taguette/migrations/versions/807c0cc0ecf6_remove_invalid_hltags.py +43 -0
  81. taguette/migrations/versions/80b1cc9d4c22_add_user_email.py +35 -0
  82. taguette/migrations/versions/91ade71ccf4d_add_user_language.py +28 -0
  83. taguette/migrations/versions/955db2e523d1_add_collections_tables_and_associations_.py +60 -0
  84. taguette/migrations/versions/a1b2c3d4e5f6_add_user_hide_code_counts.py +28 -0
  85. taguette/migrations/versions/b23f3b7a638e_add_user_password_change_date.py +36 -0
  86. taguette/migrations/versions/b7c1e2d3f4a5_add_project_compact_layout.py +28 -0
  87. taguette/migrations/versions/bc8e0e0677e9_rename_command_fields.py +126 -0
  88. taguette/migrations/versions/bce44849c2f2_lowercase_logins.py +96 -0
  89. taguette/migrations/versions/ca076140922f_update_user_for_external_logins.py +32 -0
  90. taguette/migrations/versions/d86c45d7aa8a_add_document_direction.py +127 -0
  91. taguette/migrations/versions/db5e31a0233d_remove_blank_highlights.py +88 -0
  92. taguette/migrations/versions/dd37d9027a24_unique_tags.py +68 -0
  93. taguette/migrations/versions/de678cef2a94_add_project_id_to_collections_and_.py +41 -0
  94. taguette/migrations/versions/e459991d960e_add_table_edugainidps.py +39 -0
  95. taguette/migrations/versions/e4cf92942271_add_index.py +29 -0
  96. taguette/migrations/versions/e4e090a5b511_remove_commands_document_id_fk.py +38 -0
  97. taguette/migrations/versions/e9a9f1c77971_add_favorite_column_to_document.py +32 -0
  98. taguette/migrations/versions/ecb4065de575_don_t_use_server_default_now_timezone_.py +44 -0
  99. taguette/migrations/versions/fbdc29566f62_edugain_fix_field_type.py +42 -0
  100. taguette/migrations/versions/fdc6eb54b034_add_parent_id_column_to_tags_table.py +31 -0
  101. taguette/static/README.md +34 -0
  102. taguette/static/alt_templates/.gitkeep +0 -0
  103. taguette/static/assets/test/logos/monsters-university-logo.png +0 -0
  104. taguette/static/css/custom.css +1696 -0
  105. taguette/static/css/fa-all.min.css +5 -0
  106. taguette/static/css/themed.css +3 -0
  107. taguette/static/css/themed.css.map +25 -0
  108. taguette/static/css/vendor/bootstrap-treeview.min.css +1 -0
  109. taguette/static/css/vendor/bootstrap.min.css +6 -0
  110. taguette/static/css/vendor/font/context-menu-icons.eot +0 -0
  111. taguette/static/css/vendor/font/context-menu-icons.ttf +0 -0
  112. taguette/static/css/vendor/font/context-menu-icons.woff +0 -0
  113. taguette/static/css/vendor/font/context-menu-icons.woff2 +0 -0
  114. taguette/static/css/vendor/hierarchy-select.min.css +1 -0
  115. taguette/static/css/vendor/introjs.min.css +2 -0
  116. taguette/static/css/vendor/jquery.contextMenu.min.css +16 -0
  117. taguette/static/favicon.ico +0 -0
  118. taguette/static/js/codebook-viz.js +428 -0
  119. taguette/static/js/collection/context-menu.js +180 -0
  120. taguette/static/js/collection/hierarchy-select.js +71 -0
  121. taguette/static/js/collection/manager.js +217 -0
  122. taguette/static/js/document/context-menu.js +92 -0
  123. taguette/static/js/document/custom-select.js +82 -0
  124. taguette/static/js/document/manager.js +943 -0
  125. taguette/static/js/document/treeview.js +593 -0
  126. taguette/static/js/highlight/README.md +18 -0
  127. taguette/static/js/highlight/crud.js +119 -0
  128. taguette/static/js/highlight/extracts.js +497 -0
  129. taguette/static/js/highlight/loader.js +109 -0
  130. taguette/static/js/highlight/renderer.js +405 -0
  131. taguette/static/js/login.js +15 -0
  132. taguette/static/js/permissions.js +153 -0
  133. taguette/static/js/polling-event.js +145 -0
  134. taguette/static/js/project/intro.js +524 -0
  135. taguette/static/js/project/manager.js +0 -0
  136. taguette/static/js/project/search.js +124 -0
  137. taguette/static/js/tag/context-menu.js +133 -0
  138. taguette/static/js/tag/explore-codes.js +400 -0
  139. taguette/static/js/tag/hierarchy-select.js +69 -0
  140. taguette/static/js/tag/manager.js +545 -0
  141. taguette/static/js/tag/treeview.js +613 -0
  142. taguette/static/js/taguette.js +1790 -0
  143. taguette/static/js/utilities.js +714 -0
  144. taguette/static/js/vendor/bootstrap-treeview-custum.js +421 -0
  145. taguette/static/js/vendor/bootstrap-treeview-custum.min.js +1 -0
  146. taguette/static/js/vendor/bootstrap-treeview-default.min.js +1 -0
  147. taguette/static/js/vendor/bootstrap.bundle.min.js +7 -0
  148. taguette/static/js/vendor/bootstrap.bundle.min.js.map +1 -0
  149. taguette/static/js/vendor/hierarchy-select.min.js +1 -0
  150. taguette/static/js/vendor/introjs.min.js +17 -0
  151. taguette/static/js/vendor/jquery-3.7.1.js +2 -0
  152. taguette/static/js/vendor/jquery.contextMenu.min.js +2 -0
  153. taguette/static/libreqda.ico +0 -0
  154. taguette/static/logo-h.png +0 -0
  155. taguette/static/logo.png +0 -0
  156. taguette/static/logo_blanc.png +0 -0
  157. taguette/static/missing.png +0 -0
  158. taguette/static/robots.txt +2 -0
  159. taguette/static/scss/components/_badge.scss +42 -0
  160. taguette/static/scss/components/_button.scss +169 -0
  161. taguette/static/scss/components/_checkbox.scss +40 -0
  162. taguette/static/scss/components/_context_menu.scss +28 -0
  163. taguette/static/scss/components/_custom_select.scss +150 -0
  164. taguette/static/scss/components/_dropdown.scss +43 -0
  165. taguette/static/scss/components/_form.scss +54 -0
  166. taguette/static/scss/components/_modal.scss +57 -0
  167. taguette/static/scss/components/_project_card.scss +163 -0
  168. taguette/static/scss/components/_tag.scss +308 -0
  169. taguette/static/scss/components/_treeview.scss +76 -0
  170. taguette/static/scss/custom.scss +809 -0
  171. taguette/static/scss/layout/_credits.scss +62 -0
  172. taguette/static/scss/layout/_footer.scss +6 -0
  173. taguette/static/scss/layout/_navigation.scss +165 -0
  174. taguette/static/scss/layout/_sidebar.scss +37 -0
  175. taguette/static/scss/themes/default/_variables.scss +103 -0
  176. taguette/static/scss/themes/default/theme.css +3 -0
  177. taguette/static/scss/themes/default/theme.css.map +26 -0
  178. taguette/static/scss/themes/default/theme.scss +4 -0
  179. taguette/static/webfonts/BadScript-OFL.txt +94 -0
  180. taguette/static/webfonts/BadScript.ttf +0 -0
  181. taguette/static/webfonts/Montserrat-Light.ttf +0 -0
  182. taguette/static/webfonts/Montserrat-OFL.txt +93 -0
  183. taguette/static/webfonts/fa-brands-400.eot +0 -0
  184. taguette/static/webfonts/fa-brands-400.svg +1184 -0
  185. taguette/static/webfonts/fa-brands-400.ttf +0 -0
  186. taguette/static/webfonts/fa-brands-400.woff +0 -0
  187. taguette/static/webfonts/fa-brands-400.woff2 +0 -0
  188. taguette/static/webfonts/fa-regular-400.eot +0 -0
  189. taguette/static/webfonts/fa-regular-400.svg +467 -0
  190. taguette/static/webfonts/fa-regular-400.ttf +0 -0
  191. taguette/static/webfonts/fa-regular-400.woff +0 -0
  192. taguette/static/webfonts/fa-regular-400.woff2 +0 -0
  193. taguette/static/webfonts/fa-solid-900.eot +0 -0
  194. taguette/static/webfonts/fa-solid-900.svg +2618 -0
  195. taguette/static/webfonts/fa-solid-900.ttf +0 -0
  196. taguette/static/webfonts/fa-solid-900.woff +0 -0
  197. taguette/static/webfonts/fa-solid-900.woff2 +0 -0
  198. taguette/templates/alt_templates/.gitkeep +0 -0
  199. taguette/templates/archived_projects.html +50 -0
  200. taguette/templates/auth/account.html +74 -0
  201. taguette/templates/auth/cilogon.login.html +89 -0
  202. taguette/templates/auth/email_reset_password.html +5 -0
  203. taguette/templates/auth/external_account.html +60 -0
  204. taguette/templates/auth/login.html +144 -0
  205. taguette/templates/auth/reset_password.html +27 -0
  206. taguette/templates/auth/token_needed.html +7 -0
  207. taguette/templates/base.html +209 -0
  208. taguette/templates/bug_report.html +158 -0
  209. taguette/templates/cookies_prompt.html +15 -0
  210. taguette/templates/downloads.html +127 -0
  211. taguette/templates/email_bug_report.txt +9 -0
  212. taguette/templates/email_reset_password.txt +5 -0
  213. taguette/templates/error.html +8 -0
  214. taguette/templates/export_codebook.html +20 -0
  215. taguette/templates/export_document.html +20 -0
  216. taguette/templates/export_highlights.html +47 -0
  217. taguette/templates/index.html +347 -0
  218. taguette/templates/maintenance.html +8 -0
  219. taguette/templates/messages.js +74 -0
  220. taguette/templates/modal/change_document.html +68 -0
  221. taguette/templates/modal/create_collection.html +100 -0
  222. taguette/templates/modal/create_document.html +84 -0
  223. taguette/templates/modal/create_highlight.html +38 -0
  224. taguette/templates/modal/create_tag.html +73 -0
  225. taguette/templates/modal/explore_codes.html +58 -0
  226. taguette/templates/modal/manage_collaborators.html +44 -0
  227. taguette/templates/modal/merge_tag.html +49 -0
  228. taguette/templates/new_password.html +32 -0
  229. taguette/templates/partials/alert.html +16 -0
  230. taguette/templates/partials/codebook_viz_modal.html +34 -0
  231. taguette/templates/partials/confirm.html +17 -0
  232. taguette/templates/partials/document_toolbar.html +37 -0
  233. taguette/templates/partials/hlinfo.html +13 -0
  234. taguette/templates/partials/project_card.html +44 -0
  235. taguette/templates/partials/project_card_archived.html +41 -0
  236. taguette/templates/partials/project_sidebar.html +99 -0
  237. taguette/templates/partials/spinner.html +11 -0
  238. taguette/templates/permissions.html +54 -0
  239. taguette/templates/project.html +288 -0
  240. taguette/templates/project_delete.html +17 -0
  241. taguette/templates/project_import.html +122 -0
  242. taguette/templates/project_import_codebook.html +34 -0
  243. taguette/templates/project_import_codebook_confirm.html +49 -0
  244. taguette/templates/project_new.html +31 -0
  245. taguette/templates/tos.html +8 -0
  246. taguette/templates/trans.js +7 -0
  247. taguette/templates/welcome.html +15 -0
  248. taguette/utils.py +177 -0
  249. taguette/validate.py +141 -0
  250. taguette/version_check.py +102 -0
  251. taguette/web/__init__.py +252 -0
  252. taguette/web/api.py +1835 -0
  253. taguette/web/base.py +864 -0
  254. taguette/web/export.py +338 -0
  255. taguette/web/views.py +1618 -0
@@ -0,0 +1,255 @@
1
+ CHANGELOG.md,sha256=0CanwKmuUgI3N6GL6AeeSoBU6mtqv1QumA2H1PnuWPk,18856
2
+ scripts/babelrc,sha256=gTyKaoIyq8ijYjNQ8T6WKNPilXTLOypz2sjurUSgg7I,154
3
+ scripts/dist/LICENSE.txt,sha256=1fHebykeGJcfCmYEJkGj3fzjSY13p7jpKz5GP4r_CMA,1740
4
+ scripts/dist/RELEASE.txt,sha256=GYoI7HoOh4eyP_tECO0nkbiLlmq_dQDgsH7hawgFKto,1107
5
+ scripts/dist/macos/libreqda.icns,sha256=0__NRu2Cg5kbFjS1XXQPaqAtdDRgL3LpdOTt64y_o6E,100632
6
+ scripts/dist/macos/macos.spec,sha256=h7tqnpy2R3lWghM1CoGuU4JwCeGLY0HZ8pR4SYBMgj8,1431
7
+ scripts/dist/macos/plist.patch,sha256=T-puX9ex5fledXnlrfBAUeu1YqJC2FGZoyUTiPZBqvk,346
8
+ scripts/dist/macos/taguette.icns,sha256=oImfNPmxqhGjWDxDmtuskmhk3HeyK6IcrBkLnC-ctJM,14753
9
+ scripts/dist/macos/taguette_console_wrapper,sha256=wJNIq4kL6EEKB7JCHhx2iJ8j9hmgSJMSJwEJlGN7pZE,88
10
+ scripts/dist/macos.sh,sha256=3VxXyNxnyRkv-Y2TX7zUTUCfTQBEdcQqS5qSWs6D4HA,1151
11
+ scripts/dist/pyinstaller_entrypoint.py,sha256=kH0BB5Z-hDssLqocMx2zanlPR943-Zx2P_na1A6NuV0,386
12
+ scripts/dist/windows/windows-installer.iss,sha256=Hd0mr6DMJfwVs-silszIeqArK5_j13FYvFrqSFM4ccU,2053
13
+ scripts/dist/windows/windows.spec,sha256=_qkCBpK4MhdV-pZo12qX1WoqtJj7wZ06iLA-DNJiOpE,1321
14
+ scripts/edugain/worker_update_edugain_idps.py,sha256=rj81bjP08tGfXeOPakUK8hdk09-4ilhOvnJI-mgl5Sk,2847
15
+ scripts/edugain/worker_update_edugain_idps.sh,sha256=szJCwXZhz35Gn7uvGqN4PkuXXOAvnii4WDBBSbKg0Lg,431
16
+ scripts/make_password_reset_link.py,sha256=N7yZFM2lUmopt5FUsD0y7DY5AB_8eVq5D2ELU4lKcUs,1329
17
+ scripts/make_theme.py,sha256=J6J-U1Mx3Zq290EMKgZgn8qgIzwj4DmNEcLOHerwHPM,2757
18
+ scripts/new_db_revision.sh,sha256=WZ20qmXWJgopklwwKk7YfWVCoGUN08BBvs_M9Z5Y0cg,207
19
+ scripts/register_user.py,sha256=5nfMpbxUwD_R59X00Yp5SpWTyzn8OhDD9buBZbIgsDE,1741
20
+ scripts/update_pot.sh,sha256=kPqbNxXvaMyoej1HuDyfD2q0bz2vmRZxNztaUHCoU_o,959
21
+ scripts/update_translations.sh,sha256=ZDuoUpjtmmA34qSjhipTnTc6XCrqqa6VYhtQKcuJKys,520
22
+ scripts/validate.py,sha256=8Z7wFujVFxGjdLY4Ozjpuv0ODWixj062DtCyCNC7gkI,4756
23
+ scripts/wipe_and_disable_user.py,sha256=UFB9wqVBgist-FL199ObxRCn3_nbUZ3Cxw7BWuvnHSA,2376
24
+ taguette/__init__.py,sha256=1djiBRZIW8Yb5O2ncXt0wSG94x8DIsJq5dLoxu9IIpE,189
25
+ taguette/access_control.py,sha256=92rUHS7TCnojOzqIDdhKAX8xR0X1ncGvvE_Y4ulVVnA,5187
26
+ taguette/convert.py,sha256=P30QyhdaEEq2Kb3ZA53kpAv-AjMun1xAczTnSCFJ__8,21421
27
+ taguette/database/__init__.py,sha256=VrW0PwtlDCL9ZNGKaAYdD_Rw2nkhILHW-uet2FCS9fc,6637
28
+ taguette/database/base.py,sha256=JI4-zsYj4B7t7mLIjEEq8DxbDEknB_ptmovfUKgp350,397
29
+ taguette/database/copy.py,sha256=T7Pu2vO_riIOgH3OZqs9jLGEQ3-29__uOg_Yxn1aYD4,14791
30
+ taguette/database/models.py,sha256=SmwNW1l5B4OtuKtNEx43fShy-LnUcfkAb6o0QfBY6CU,31476
31
+ taguette/demodata.py,sha256=xEv7xvEdd-Gk9oH_1CMkCdwloxqgGYIMgfydahvnC0Y,41858
32
+ taguette/export.py,sha256=HbH6GwOFdlUvSsNKxI_L8XmWCZDlKYm3DA7qq1lF6P4,16208
33
+ taguette/extract.py,sha256=gCDXSetXKNmHYtU3n_3QS1VJ1hKjXZhKsGOTiVe0fWI,9819
34
+ taguette/import_codebook.py,sha256=Kma1yKaHwl4p5T6GDYMYGMWDgjklEdDYz4zheaqhZAc,3125
35
+ taguette/l10n/de_DE/LC_MESSAGES/taguette_javascript.mo,sha256=1nwJHw93Pbcsp60N9xThWxFqWWHTcQCSeCumW0v8CY8,12913
36
+ taguette/l10n/de_DE/LC_MESSAGES/taguette_main.mo,sha256=FPbrazJfCtcvpLsPJSFi96ER6pqtYnKNIYgv8GzkhNs,24257
37
+ taguette/l10n/el_EL/LC_MESSAGES/taguette_javascript.mo,sha256=8EOzJD5dzoxILMvlMV1yZ-Hub5x08VVGIe7UDjoKJAU,3796
38
+ taguette/l10n/el_GR/LC_MESSAGES/taguette_javascript.mo,sha256=TVEPOjS3DhmtOu_g9CEwZno-hUPS_Z3qn22geRWw83s,17198
39
+ taguette/l10n/el_GR/LC_MESSAGES/taguette_main.mo,sha256=YtqfvK8xBExKMVFIkehs-W4RncdCiqSBjjTd6zTR2bc,32577
40
+ taguette/l10n/en_US/LC_MESSAGES/taguette_javascript.mo,sha256=-bwN6fff6VbYejrK3NkKhgKjmddx3tB88jFO7Gmmb8Q,2910
41
+ taguette/l10n/en_US/LC_MESSAGES/taguette_main.mo,sha256=w22cr6GC6ujQUU66qyjksStzTqTYE1p2HPegQMY_0lQ,20890
42
+ taguette/l10n/es_ES/LC_MESSAGES/taguette_javascript.mo,sha256=Epc4gLNHiQVU86kGuu72YcvCA5JLaPQtOBEQnC7y2y0,12585
43
+ taguette/l10n/es_ES/LC_MESSAGES/taguette_main.mo,sha256=9VoSrXZOm9qC8qIr4yjXWhcH3aTV3pJADbB3SNMbI5A,25256
44
+ taguette/l10n/fr_FR/LC_MESSAGES/taguette_javascript.mo,sha256=cTjN-TGTmIDvGV47odh2TqbzjQx-ozjYyTyOP0CHh8E,12753
45
+ taguette/l10n/fr_FR/LC_MESSAGES/taguette_main.mo,sha256=1Wyf5igQ8A1Px2WZxPfeFgiyvNoEJbiDgkCzt2u_YUE,29353
46
+ taguette/l10n/id_ID/LC_MESSAGES/taguette_javascript.mo,sha256=oxR01IunsmWu-JboYwpJVvHfkI7VNi1gQnSlpU0JR7U,11940
47
+ taguette/l10n/id_ID/LC_MESSAGES/taguette_main.mo,sha256=PEJfPiocurSa6DN62Q3FnKuDzkfco6J7SoaaHZzupjQ,23932
48
+ taguette/l10n/it_IT/LC_MESSAGES/taguette_javascript.mo,sha256=tp4tBS7P4YIxDIe3vtW9AM7-yFc_y4_FlhAEp8Gy-ps,11920
49
+ taguette/l10n/it_IT/LC_MESSAGES/taguette_main.mo,sha256=uSwzyRquqEU-YqJlJpCn-g9PWG4ghqW1mLS721N-0mY,23360
50
+ taguette/l10n/nl_NL/LC_MESSAGES/taguette_javascript.mo,sha256=pcK_xlHPNmHYGedoYbVU58N0SDMQaqhHY3FiLd18pjo,12666
51
+ taguette/l10n/nl_NL/LC_MESSAGES/taguette_main.mo,sha256=4PBFnP4jpVIERmHgFBQPEhVkdKs7l_FC0U4oZAvHxtA,25596
52
+ taguette/l10n/pt_PT/LC_MESSAGES/taguette_javascript.mo,sha256=1Nn7gs4uzC-ZRjNGNENoiv4E2ZzKBCoCcTfbgRTaF6A,12572
53
+ taguette/l10n/pt_PT/LC_MESSAGES/taguette_main.mo,sha256=LobsDf8t-kcuSKAh7nx7WBZZechz_WtyEfkq4kuzMKA,25836
54
+ taguette/l10n/sv_SE/LC_MESSAGES/taguette_javascript.mo,sha256=eUsIZKJawl3muYMZKksDrrnb3H4CZh-z1xt7ag5IsRU,12176
55
+ taguette/l10n/sv_SE/LC_MESSAGES/taguette_main.mo,sha256=-4Ad3EozaKwJ7GFJVic_uMqc73-sK2vrxZRyx38xetM,24729
56
+ taguette/loki_handler.py,sha256=MFlX_sKpUuo29lGQXp-Tt8aOLax9l-a6QczQt0WtW4E,3031
57
+ taguette/main.py,sha256=0nErz7xyf6Sb911abzkgaPneylQaDDg9h9eVossmh7Q,19971
58
+ taguette/migrations/env.py,sha256=eM9YJhlOdOzIn2fPL7CDWIsIMjQGoGMhdLHzfWm2SN0,1911
59
+ taguette/migrations/script.py.mako,sha256=8_xgA-gm_OhehnO7CiIijWgnm00ZlszEHtIHrAYFJl0,494
60
+ taguette/migrations/versions/09c662cd9483_make_documents_filename_not_null.py,sha256=jD2OzVQ8krMonbo2gd2Hat83twmzvvHZXwhaPJuxTNY,871
61
+ taguette/migrations/versions/1b29e68900c1_add_user_roles.py,sha256=FLIq-QpCzVdFz8BGsjrkDsK0CQlxjMuAv7Mb8L4zUJ8,1333
62
+ taguette/migrations/versions/1b96a606551d_update_user_to_have_a_display_name.py,sha256=fpWFSaahBuPoWFZO19exEBFUVmuM4pHVm1WKdZh6hNk,859
63
+ taguette/migrations/versions/2467bab602b7_add_color_column_to_tags_table.py,sha256=1kE8sqedsgeJH2oZU4kZAJs75QF2nrK8n_PJC8wDKPI,863
64
+ taguette/migrations/versions/382db36f20f4_add_user_disabled.py,sha256=Z9d4IBVb_HHNy69NUsx3VZondds7wm14_3ee-APtoFc,2013
65
+ taguette/migrations/versions/43d6c240309d_remove_document_groups.py,sha256=XNTjZtli0P6p2PzfZZJxi3BmTTWSaMhAPOpARKBs5QI,2054
66
+ taguette/migrations/versions/447d636f72c5_cascades.py,sha256=hKP028FQNlZRybu6SgD_mWpbZSgDGzDYT9f-QlhwCRY,1000
67
+ taguette/migrations/versions/491de2dc7cd7_add_indexes.py,sha256=ndmJOZi7tyKhH6aK01__3OCnV0NJHvdf0F2hMYUCzkM,1463
68
+ taguette/migrations/versions/4c55b3b3ff30_user_login_length.py,sha256=M5QmnYiaH_pcLCwp6AAOsqGL3bm4zjCvjCIRdj3H1d0,2128
69
+ taguette/migrations/versions/61a4abcc8769_user_with_parent_for_permissions.py,sha256=ImFYNWLq-qzF_6T6lcULaQVUaJ60yE_WB8fuNkGbMPk,1307
70
+ taguette/migrations/versions/6489b5f9cfb5_increase_password_hash_size.py,sha256=NZSccvb0msB0WBluj-Ih6uCZUtn1YY7MaPGxH-th-CE,747
71
+ taguette/migrations/versions/679f625e6e6a_fix_unique_tags.py,sha256=uRANPW5ZrqmAViKGj8pOLM_YysXtQOPaIjLFS8N8myQ,1639
72
+ taguette/migrations/versions/77c4543a5b9b_add_parent_id_column_to_collection_table.py,sha256=UsZWCQ-FYmIG2v7GuikmbX7VBLPXcw0XUMugs8Nt44M,1329
73
+ taguette/migrations/versions/7c94b7a31e69_add_is_archived_column_to_projets.py,sha256=GjAuQyuXXQmoN18MkKH-pWrwxFwur8ksNlwmE6E77kk,989
74
+ taguette/migrations/versions/7f56de97e3c8_change_edugain_displayname_length.py,sha256=2LEEE5wtWkurRraR4X1JCSDN3Dv8iN29ndXJP7bXOpw,1288
75
+ taguette/migrations/versions/807c0cc0ecf6_remove_invalid_hltags.py,sha256=dQzo_BVhsqerk3c5kNQwvJf1VZfVUT1c6gFw54Z-JS4,940
76
+ taguette/migrations/versions/80b1cc9d4c22_add_user_email.py,sha256=sQZvzNvcRe6u2wUCvofLBzjmkCkjx9_Iua93VXjTdpE,805
77
+ taguette/migrations/versions/91ade71ccf4d_add_user_language.py,sha256=3uEWFG8mGnrKICoyAFWmksSHkEmJrPGAu7V_mESKwUM,531
78
+ taguette/migrations/versions/955db2e523d1_add_collections_tables_and_associations_.py,sha256=yX_aXk0alfiWg7Lpt1g2oDXUYfXs6mZeq8X-SfrT07c,2390
79
+ taguette/migrations/versions/a1b2c3d4e5f6_add_user_hide_code_counts.py,sha256=v312koUQ97GifpnSkHI2DJeYRwBOhjjVHgqYOVjFvpM,635
80
+ taguette/migrations/versions/b23f3b7a638e_add_user_password_change_date.py,sha256=9FD17ma6yjrCtOlsHNqH4D7EZUsORqz5S6ICbNg_kMI,777
81
+ taguette/migrations/versions/b7c1e2d3f4a5_add_project_compact_layout.py,sha256=M0CC932LHJe5cX8BGzA8mhwizrLiqXbNa8MhdZ19DM0,638
82
+ taguette/migrations/versions/bc8e0e0677e9_rename_command_fields.py,sha256=eYbJXDMPmk-S2y6U4W9gtOJB_QAdd6pT8dJWDrQ0HUc,4120
83
+ taguette/migrations/versions/bce44849c2f2_lowercase_logins.py,sha256=kQo7Tmmi16cCN8giiBfSXIL0x9uzF1QGt5G7M7maoeU,2986
84
+ taguette/migrations/versions/ca076140922f_update_user_for_external_logins.py,sha256=YO8ePUgNjd8r2aezaihMq2unNdFL-UO-2MOVxPsTw04,806
85
+ taguette/migrations/versions/d86c45d7aa8a_add_document_direction.py,sha256=klJr5msvaUF3-nbaMYpctskt0-hBSACmH8N4gd-IE2k,3478
86
+ taguette/migrations/versions/db5e31a0233d_remove_blank_highlights.py,sha256=5mlK5ooVBlW0Jts_h8VlKVxrk5q9K_J0SAWLoiMBFB8,2103
87
+ taguette/migrations/versions/dd37d9027a24_unique_tags.py,sha256=gz9JjpiUWcRe3XVA0ejio2leO4dwxAEJqfyodSIWxkU,1768
88
+ taguette/migrations/versions/de678cef2a94_add_project_id_to_collections_and_.py,sha256=pWU1xICDoNldDtOfaEWVzU5k2sThfWDVl2OCCKKj-nk,1342
89
+ taguette/migrations/versions/e459991d960e_add_table_edugainidps.py,sha256=8HmYjNW6ZGf4pHusvlI8hTUIn6g1RcX9gugKOSsgCuU,1278
90
+ taguette/migrations/versions/e4cf92942271_add_index.py,sha256=Qh1PHGIx6jumOrY5NsexdUug9G2gefsjxTmnZ1XAiWM,618
91
+ taguette/migrations/versions/e4e090a5b511_remove_commands_document_id_fk.py,sha256=vaumizm1ukGVRmFu6ysWTg-hg7ej-gLDnhn7olEKXJY,842
92
+ taguette/migrations/versions/e9a9f1c77971_add_favorite_column_to_document.py,sha256=ztatVEF4uRlrfUmBVbIDEaaY3WXU89DAzXAVS2qJ55E,814
93
+ taguette/migrations/versions/ecb4065de575_don_t_use_server_default_now_timezone_.py,sha256=0Lm-G1GACsdM-FlPdzL2_RCdUDzm7nDjMFRAi0T6Q-I,1356
94
+ taguette/migrations/versions/fbdc29566f62_edugain_fix_field_type.py,sha256=_k2CMve0sNJTTydf5QL9RQ30FJKs4nJQAyTo5FsU218,1265
95
+ taguette/migrations/versions/fdc6eb54b034_add_parent_id_column_to_tags_table.py,sha256=VU5zwuvCC33rFsBF7o_NJuMEqF0ClKjCBqIOFAMy_og,969
96
+ taguette/static/README.md,sha256=3hb8syIjkTl5OnLMLwMNfkS-nUxtRe2RxXmCYa5vvHE,1248
97
+ taguette/static/alt_templates/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
+ taguette/static/assets/test/logos/monsters-university-logo.png,sha256=XMaLasNF7FDx_JAaHhd_VN61IywYWBpvcARfRSyMRRU,9336
99
+ taguette/static/css/custom.css,sha256=_0-IvhiIHEi5Yo8UwN0aYgPPEaDdCwCwmMQ6Q-6H5g8,32748
100
+ taguette/static/css/fa-all.min.css,sha256=nkysZcel7gvQdDr-_KvdPnOFThKErJrEM4E9YjH1UPI,51215
101
+ taguette/static/css/themed.css,sha256=zA1GelATJ5eMxKqM-8w9cZAfG27wnLhMFbmSaEi_Rv0,20926
102
+ taguette/static/css/themed.css.map,sha256=nJUQZOvZ6r3Aokz6tiIeNPPv5xV8EGUQRiObjm1exo0,27138
103
+ taguette/static/css/vendor/bootstrap-treeview.min.css,sha256=ULjuiZ9iqqf97EETp_mZrnLusfOwISiI6AIL0IXShbc,204
104
+ taguette/static/css/vendor/bootstrap.min.css,sha256=nWjY0OkFCihtHwFGmuManTXVxP4QNT68xXFQX8ofyLw,232947
105
+ taguette/static/css/vendor/font/context-menu-icons.eot,sha256=BuNDkWQdwFj2toobqjs6ZK4HPkLO33Z7FGhqhOvEEoU,3528
106
+ taguette/static/css/vendor/font/context-menu-icons.ttf,sha256=WLgkrO83V7rVKm2-Nz9eMADAtMei_hDSyvCocoK5KBo,3320
107
+ taguette/static/css/vendor/font/context-menu-icons.woff,sha256=w6_K5Jwhofhb_cPVejbuwB-YaS-vMlf7SGblHZBJ6Vk,2180
108
+ taguette/static/css/vendor/font/context-menu-icons.woff2,sha256=qQo9jKDkFBDYbB8s6tyB_ItnWEpRJIwwjzOD0fHV2wY,1684
109
+ taguette/static/css/vendor/hierarchy-select.min.css,sha256=ha3aB3FzrRnw_p7FQ4A_rQ9pEltDYWX6rMaKsJ3FEj0,769
110
+ taguette/static/css/vendor/introjs.min.css,sha256=8blGASrO7QhbrzFwb0rDrMICadeyaaNRQp6VCRNKekA,6578
111
+ taguette/static/css/vendor/jquery.contextMenu.min.css,sha256=wk2m_mu0Rlqd9p5V6zw2CCz8Du3vvqjnczee6qvaHCU,5991
112
+ taguette/static/favicon.ico,sha256=lVcQRk8CdjWxO_XvMHqdVfNz2WR0mi1O8BeCckXwzqI,15406
113
+ taguette/static/js/codebook-viz.js,sha256=yi_wbX53EaHUclwlFopNfQiGr2RaeD1Rp1JkJT-mMKw,15982
114
+ taguette/static/js/collection/context-menu.js,sha256=Jl1Ii1CaoJiXnyIvAhODjY5zbn4tisOZMu2G6R8ExDQ,5445
115
+ taguette/static/js/collection/hierarchy-select.js,sha256=t9HFD-W8127iqvQuHo--jvtnwQ8n75hNklU4L4_K8Nw,2534
116
+ taguette/static/js/collection/manager.js,sha256=cH8yb1ovcJLB2RQkT24DGKNwa0mawjcTm-1mhN0Ewas,8153
117
+ taguette/static/js/document/context-menu.js,sha256=6NWBUCi-iSjZrQhQIWGi62Ig1Hvrrq_aihxaKUKU8pY,2718
118
+ taguette/static/js/document/custom-select.js,sha256=nRps2YJ5QT_N1VA5I6g-jqaRa-p6HKrK9UdQZmYnAqY,2576
119
+ taguette/static/js/document/manager.js,sha256=kN6axxtckkxGgmUzGMadVf8xqjRBOPZnK77YIAsRd3k,34503
120
+ taguette/static/js/document/treeview.js,sha256=6Baz3yL7t2lN0i6ec8Al4aM04xYt9srZFYYO0nR4njQ,20732
121
+ taguette/static/js/highlight/README.md,sha256=mzT31aIFW9TiEAvO-5oxaSxY8SvALqnIzJ0DhEW9rW4,853
122
+ taguette/static/js/highlight/crud.js,sha256=_h7C5ZWubG3XZwSRedfk3xsseBI9dzJDzfRa2S_ixkw,3997
123
+ taguette/static/js/highlight/extracts.js,sha256=DIhquy9Ji03d9I3B95bDsbCEP5shxw1qK9Oq6JMURlI,22788
124
+ taguette/static/js/highlight/loader.js,sha256=XMMKt5R1j7gasGQWrn793ihlEm3JgPwiVm8uSpIlqE4,4397
125
+ taguette/static/js/highlight/renderer.js,sha256=MvBx2eRknzm3gmtmITycBcZN59nAYWViTVTnqrDDSjQ,14436
126
+ taguette/static/js/login.js,sha256=HpS2VQKXepyZ5xL3ax1db2zvuK9lRo7bt-puFVFUN2M,464
127
+ taguette/static/js/permissions.js,sha256=2GZuP6kAq9mj9xz4hS112BjHmEzzTXfBQT8RVYNrctI,5009
128
+ taguette/static/js/polling-event.js,sha256=A1dG9f7FEEpbnhFsPO9uXn1GTihSyZe_NOdMcOnVZqg,5577
129
+ taguette/static/js/project/intro.js,sha256=rsY7ns6T_TkwN-b4BmVzcO-ro8TlNiwE3T0B3BJ9PX8,27437
130
+ taguette/static/js/project/manager.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
+ taguette/static/js/project/search.js,sha256=R7b19yHcp9-EgXBYYU5URoEoyVLzAVs1hISvNwjdfCM,4987
132
+ taguette/static/js/tag/context-menu.js,sha256=PzzI9m13UaUtAw3uYyW9pEk00KyAHmcv_2MIUsJaxxo,4966
133
+ taguette/static/js/tag/explore-codes.js,sha256=I6wdT4h4ohUCw_wfmdsti8fPJ2acITGP7-q8TfmgFAg,14309
134
+ taguette/static/js/tag/hierarchy-select.js,sha256=8iMrgGEdc2yH9yvUQvyWKPXUrCz6hiGpC7r6VHZdp0o,1869
135
+ taguette/static/js/tag/manager.js,sha256=zi6CE7sCZ_MJuga9Mp2S_2Wi8FKEqbr4Eemnooe1YHc,15803
136
+ taguette/static/js/tag/treeview.js,sha256=K5a4dksvhw77frn5Ux2jboFdPqgNeTDJqvC9vtsAGkY,18941
137
+ taguette/static/js/taguette.js,sha256=9zJnLGViqrGJWui4WpRRlK1UYRSU7xI30BAAVB7MrUg,66584
138
+ taguette/static/js/utilities.js,sha256=hARoamMLLoJcqi9O_klddPLkH_jG1n3WIDowk0el0S0,22341
139
+ taguette/static/js/vendor/bootstrap-treeview-custum.js,sha256=EnphYhXUiN7IXjcNgBL2a1UpJc_8oobTYq59jrJkFEo,23896
140
+ taguette/static/js/vendor/bootstrap-treeview-custum.min.js,sha256=uxWYR2EUnX2hX3831fTcY3X-ubcAArC6IFmP5WMmyVs,17435
141
+ taguette/static/js/vendor/bootstrap-treeview-default.min.js,sha256=LKAdeMPRVAU_CVqu06XeE4mgpO268e4s4dQT9BCUG4U,16938
142
+ taguette/static/js/vendor/bootstrap.bundle.min.js,sha256=gvZPYrsDwbwYJLD5yeBfcNujPhRoGOY831wwbIzz3t0,80663
143
+ taguette/static/js/vendor/bootstrap.bundle.min.js.map,sha256=uawA6q2d_nUKCDo1g-YvTz53zutTlIG-hOb542tRt4U,294126
144
+ taguette/static/js/vendor/hierarchy-select.min.js,sha256=NnFAXQi2MYtyIJrlp-obL61ywF_u7Y4eqelBH_S8sMo,6129
145
+ taguette/static/js/vendor/introjs.min.js,sha256=J4oDJHnMMifnbEi701OjrC5qqwIfhJ4OadLNqAAuGuk,51922
146
+ taguette/static/js/vendor/jquery-3.7.1.js,sha256=_JqT3SQfawRcv_BIHPThkBvs0OEvtFFmqPF_lYI_Cxo,87533
147
+ taguette/static/js/vendor/jquery.contextMenu.min.js,sha256=IKeNol5_7Ym2-Qup5blLY26rTQwMlVWxWSLxEQFl_jk,27759
148
+ taguette/static/libreqda.ico,sha256=ukzy4sTFSObt0Q1uHzXGNZjJdrVcQElThQ2rY_rd_z0,25060
149
+ taguette/static/logo-h.png,sha256=hkzlbZxMUJyuVJ9JoSb1lvekfK8LZO4vzS8CxJjeGEM,14719
150
+ taguette/static/logo.png,sha256=mpzSNToMwq5CaPkc_CKkQv5t7i2z0fI4dwJnzPoECH0,13582
151
+ taguette/static/logo_blanc.png,sha256=5sVyLtV37tpOWL-sj7-iDHEQm-VDxPkBVxwl5Q8__TU,14078
152
+ taguette/static/missing.png,sha256=IWItdIg_QcFFc9cul0okArfInqfKRL3BJJzxEZe89sg,1063
153
+ taguette/static/robots.txt,sha256=5Od447Pzjie9LpGixC2i53YKSRnxErafdksF7oIqD6M,34
154
+ taguette/static/scss/components/_badge.scss,sha256=M-ElnMF-SedLWn1b_vfhqfd8Clm_E0CsCSOvqrXJv5A,773
155
+ taguette/static/scss/components/_button.scss,sha256=wYUf9UMMhb8RXukE0V8EkB_eVKl7A0TC0vf_wdKjjJk,4717
156
+ taguette/static/scss/components/_checkbox.scss,sha256=dkTHlGRB6Sbwj9wDk9RrWz1HPeDCdlgL8pWj1NwxxCs,840
157
+ taguette/static/scss/components/_context_menu.scss,sha256=fSzGc0mpjwvqHBfCE9Vpfs8SOHL8SrBHNjcoDT0wWqw,683
158
+ taguette/static/scss/components/_custom_select.scss,sha256=sKedkrlq5nVj4REXuI6E5-Var9dGsR4_Bd7rudkbST8,2879
159
+ taguette/static/scss/components/_dropdown.scss,sha256=iASwEe2CbP7tJaDtzKh4KeE_26k8TDJKzldtzMHKHW0,779
160
+ taguette/static/scss/components/_form.scss,sha256=FWhHSr4SV_EskKXix_GawxbBLhq_vEJEbNNHVdvgl9A,955
161
+ taguette/static/scss/components/_modal.scss,sha256=5RSvLQYCwmXs7ISIz7MZdVFKvNiz1i8yeFTotXxMtWo,1005
162
+ taguette/static/scss/components/_project_card.scss,sha256=rsJ712-00ZdyxFf6T6vN7rerGCBOfVNkHlRR-TYJwUA,2945
163
+ taguette/static/scss/components/_tag.scss,sha256=iKS3ql0yS1pnCncoqDHXzQ3te48REl4DYiN85vhqGZY,7116
164
+ taguette/static/scss/components/_treeview.scss,sha256=TFGz0REKglmqKiPqXyAZdDFMNSt1NKi3V1K315pzChw,1810
165
+ taguette/static/scss/custom.scss,sha256=Ngk3wYo03lSCp9ww8uxirT2T5yIMyk7eT4Hr6MzNq3c,15682
166
+ taguette/static/scss/layout/_credits.scss,sha256=EpIFk_TYWeDxQMvyyXGr2CuU0rdxiFRC7r6cOzfGAb8,1349
167
+ taguette/static/scss/layout/_footer.scss,sha256=_4JrbQ9QTAfZuGma6A3jR7KUg_txnW76Ev6ql6gcLl8,79
168
+ taguette/static/scss/layout/_navigation.scss,sha256=n1dxLpZt3WAhbbvKy3DSnkSID7Pp3yqyxr1uEvRyQnA,3639
169
+ taguette/static/scss/layout/_sidebar.scss,sha256=YMwX4s-P0t11OjGeG8LLO4nfnBOUN0TuDEjxw_islFQ,629
170
+ taguette/static/scss/themes/default/_variables.scss,sha256=7-o2nJ0gjxINGVhNO8ROsxEr_so4cdfXqWOtMBMwrxo,2450
171
+ taguette/static/scss/themes/default/theme.css,sha256=s92PehO-dVsJhs8ZWS_2OXKwkreA1w7kLBoUGys7jTw,31724
172
+ taguette/static/scss/themes/default/theme.css.map,sha256=-Zj6CVQrZ3APlxu6vQ0zgl7cfbsX3xpxf8qHH1HGN48,39028
173
+ taguette/static/scss/themes/default/theme.scss,sha256=ifU42JWZsJlq1I1qqGfiVmuF1oIahFlDws3Cvr7L1yE,113
174
+ taguette/static/webfonts/BadScript-OFL.txt,sha256=ogGEkzmqHSWqIuz1hFJQcm4f4P6c9b3GIZARg1R0sI0,4480
175
+ taguette/static/webfonts/BadScript.ttf,sha256=zcF2tvia_EoB_bFaiAxumIjMviJKlehO2mVwdtmR-TQ,54420
176
+ taguette/static/webfonts/Montserrat-Light.ttf,sha256=m4eSXQYbGv-2ZBdxdzGteB99dnj7CJtJ8UvZIsIzhVk,259416
177
+ taguette/static/webfonts/Montserrat-OFL.txt,sha256=w3bda0mMaIb-WkPbPEjPg-8FysaEbsQBDlNdSOQ6KbA,4485
178
+ taguette/static/webfonts/fa-brands-400.eot,sha256=kVjuLviOpkhES6HJ_OoxC6oeXk5f6G4zjc0p_LCBz8c,126428
179
+ taguette/static/webfonts/fa-brands-400.svg,sha256=eq28Ssf4BBPeAAUmlMGkTgsNvw4tf3OcYouIsou3K_o,713576
180
+ taguette/static/webfonts/fa-brands-400.ttf,sha256=29CNAlYCt5znGRCypoV3lZy_LvAvxmTiQ79QJ3dU_fw,126192
181
+ taguette/static/webfonts/fa-brands-400.woff,sha256=ykQcB5kqcWDk0mIuePiXDJuS8XZpTI3AdZIyZJaoAdY,81612
182
+ taguette/static/webfonts/fa-brands-400.woff2,sha256=BdvFFlS5ZZDRdsJ--87yz0rASXSZqfKLcxtz7qOZBww,69608
183
+ taguette/static/webfonts/fa-regular-400.eot,sha256=FpQWiHydPDEL8CoS6vgiadTPd7Fq8ukXRbHBUrugBh0,40460
184
+ taguette/static/webfonts/fa-regular-400.svg,sha256=WdxAgoPFekfSeyooUnJvQ9syhcq349Ypfo2nyQGFf3s,140249
185
+ taguette/static/webfonts/fa-regular-400.ttf,sha256=7LVxnrZAg1nZH9JTBkYGSj8lGu1pH9SCdyicyNbVPfo,40232
186
+ taguette/static/webfonts/fa-regular-400.woff,sha256=8QG49w42vi6QBCIoden9RbJj9ydpxo4l48dSXThxcos,18112
187
+ taguette/static/webfonts/fa-regular-400.woff2,sha256=krp7-qQ6NclDU-loYNmTdjE-6bX85hJNTmQGcoD5qEE,14844
188
+ taguette/static/webfonts/fa-solid-900.eot,sha256=aQvmH-WAIFEVWM5LBDdReIcmKfbHN-0bMyrsZYVf2Tc,197172
189
+ taguette/static/webfonts/fa-solid-900.svg,sha256=Ivavd__usmfFJw-h5QaBrgGpoZ-Onvl2eY4BlslBreY,746673
190
+ taguette/static/webfonts/fa-solid-900.ttf,sha256=uXra1-zpeSr0EirogQPK2Pq1RVilKcS6ebUiTCsC6-k,196952
191
+ taguette/static/webfonts/fa-solid-900.woff,sha256=j7GWM_ElykZqRdqeTPKR2LlRnddMIU-Z3eg174Pzq5Y,95436
192
+ taguette/static/webfonts/fa-solid-900.woff2,sha256=d5gWXuWjxoCTENgmHcvnyNDBLXlbewmnGvPrhuyPM_I,73852
193
+ taguette/templates/alt_templates/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
194
+ taguette/templates/archived_projects.html,sha256=fDaqyPDNyXYBwmrTVMHq2kNtJ7bhSdw-H46Sf3MSTtc,1707
195
+ taguette/templates/auth/account.html,sha256=oJmyJsm2U0NN8MdxGOUZfdTJpicL_9v91RQuRIKxvXc,3764
196
+ taguette/templates/auth/cilogon.login.html,sha256=DCJmhJa01NCb77MWt6obpzKNZN8_oRB6HjAF2NPTYp4,3964
197
+ taguette/templates/auth/email_reset_password.html,sha256=GkAybopc6LVUnZ8tbo_sBfLpMT3fxzmazLo5YolfSY8,352
198
+ taguette/templates/auth/external_account.html,sha256=jobRvdcOywKHMhZqNL64tcV47XsVi4wnJWTeXVmKpec,3452
199
+ taguette/templates/auth/login.html,sha256=mYujKWOXPppZ9qnbbpIUUjA5CfvEypCfMGfzRNLW0NE,7025
200
+ taguette/templates/auth/reset_password.html,sha256=h5x9oVggFKQuiMGX9ykiyFre-j3DiZ3-ua443qMZNLI,1147
201
+ taguette/templates/auth/token_needed.html,sha256=C9NvbBjAZKAsJ3QZ_uiftKhNyzAJaqioTbuC925JCwo,347
202
+ taguette/templates/base.html,sha256=ePiiMjmwRUqu0fy2BQBm-LwnDsJ6cQ189eUCH-uOBZc,10629
203
+ taguette/templates/bug_report.html,sha256=G4Uguuh26LCr5T9e3YCd6TxFQMJODiCVUn7Bg3JvjGw,6899
204
+ taguette/templates/cookies_prompt.html,sha256=8yVvaQVU7LNYBfYu1ZUml7bFkdlLQ75F7NIDVbrmfRo,956
205
+ taguette/templates/downloads.html,sha256=rcHQ2sNXNM5HP1tVDnfwGgWy3G8m7Sn2LY40qV8S0_I,5216
206
+ taguette/templates/email_bug_report.txt,sha256=1i76qGH1vz-vhda7BUIVKqyRQuuwg-y4LEHFAX5wqHw,267
207
+ taguette/templates/email_reset_password.txt,sha256=cmi9PTaaAw-vpWdwqNw3FuSyiLg-2V8DhN6hOTzs8yY,289
208
+ taguette/templates/error.html,sha256=RqqlBZbL5OV4D5puqW9OgO6M6bU_Rjq8wbvJsk2AUnQ,268
209
+ taguette/templates/export_codebook.html,sha256=AeqGzYlA_TrE02ooZsmgzWXB6xt12cbV91nXmwiIejA,611
210
+ taguette/templates/export_document.html,sha256=lGy3RBbbqObBa2L3YI_iOEjaCfIroS1uV5sMPK4jAcQ,340
211
+ taguette/templates/export_highlights.html,sha256=AIcbyMMYW9kGzpAUXJGCY0x2WpHUJAnGwKhlnJNvPgE,1271
212
+ taguette/templates/index.html,sha256=0kQ1iHBqjXmdOqd4GomyUxfLH-NZ5kzcULEKHDtjM74,14453
213
+ taguette/templates/maintenance.html,sha256=nuq8GObpjSLUrav8IW7mmWRfgoMpShdlz1Z8lNcIQhQ,218
214
+ taguette/templates/messages.js,sha256=dcpIejAXhZr1fcAkyDFpJiD4Hgkp72tHdawaYi916js,2201
215
+ taguette/templates/modal/change_document.html,sha256=m6b-dY7JzT4m636bAk2i6VpHX6-4R_ebi3cvmd0a9zU,4439
216
+ taguette/templates/modal/create_collection.html,sha256=nJrU2oTV3IuEJQcsT06DFH8t8ZlHVAiAJhmSUixc5IY,6339
217
+ taguette/templates/modal/create_document.html,sha256=8Ax_dZq5eY17a03USvHAezguCv0b6uyH2W-m4ahwjkY,5470
218
+ taguette/templates/modal/create_highlight.html,sha256=WwCWbIsjgK3WxCPEO2RzkCuF-_bv_CVGOS81EKgk784,2290
219
+ taguette/templates/modal/create_tag.html,sha256=GS4lrPvSSVYD91aqWmYvNZcNpixJS_M27qfr_AUKAjk,4691
220
+ taguette/templates/modal/explore_codes.html,sha256=2FuwS3252e0oMnlN8SlwfIsgnge1UmS1j21ZIpLhZ5w,3878
221
+ taguette/templates/modal/manage_collaborators.html,sha256=c6mAbOy2RoB5mFSehPQZ_zg94Wk15cg0AmK7kMh2I9M,2956
222
+ taguette/templates/modal/merge_tag.html,sha256=GORIccpkLGpIde3zMYYh-WvzqYF61FqSejNOY0hD3JU,2956
223
+ taguette/templates/new_password.html,sha256=jwwHFOKaX6lYDwv7QVNVMm4WXY6ItlySfsZfhOZmmcY,1267
224
+ taguette/templates/partials/alert.html,sha256=CCRiprIbzuF5hRSAgNtZOhBU5Dzsn7Ya6w2vZj7AFgc,721
225
+ taguette/templates/partials/codebook_viz_modal.html,sha256=X7pjGjFqeH0kLZ_ZGzSmGPPu4oPhfiOQLg2unhNnKho,1610
226
+ taguette/templates/partials/confirm.html,sha256=AoTqd8iK6IGOoC41d1HOB-5RccrKFBkH0TBPivUGkVE,964
227
+ taguette/templates/partials/document_toolbar.html,sha256=Ro8BqE3vzh6RGfwtZXbIXNboL8MFtoBG3QZB9v9yZTk,2301
228
+ taguette/templates/partials/hlinfo.html,sha256=RtrNVfGFFVsKkRfNI3lfjne3rbEsFjLIGylq1QZ-lOM,675
229
+ taguette/templates/partials/project_card.html,sha256=yW7gTNcP9py5TByGcgaHk7OR1nP9g7-jWls3AmqWGvQ,3066
230
+ taguette/templates/partials/project_card_archived.html,sha256=oedSLvpbHgA0GIvmjtmAez_ASqXZfE5bJ99mne3ve5E,2553
231
+ taguette/templates/partials/project_sidebar.html,sha256=-bZPYsoNr6TC_gwCvrVqQ0Eic6z8nYIAwmJ32-zs27Q,7448
232
+ taguette/templates/partials/spinner.html,sha256=PSsocFsMUYpt_5F-y6Qq6dPXyfLx_99-gpxA2vOUCGM,617
233
+ taguette/templates/permissions.html,sha256=QM6M2_22WZZKX7TL8vcNTtHhsJ_Lwi5bE2D1OvfKJjI,2491
234
+ taguette/templates/project.html,sha256=qQ0BBeo_LoDzQGIcIm0BrjzbHteU0NU-L-S6UHIZ0Ys,14382
235
+ taguette/templates/project_delete.html,sha256=-DmfF6qkalZCRSxKvM7LvpZhh9otlY8xV22-1HPn_eY,1037
236
+ taguette/templates/project_import.html,sha256=sFOpiJ1P1JyU4QMcaddF9W6ITbeP9-OhvudAhNZ2JX0,4119
237
+ taguette/templates/project_import_codebook.html,sha256=SsVysfygu2mT7Big8QdhksmAf5uZTAhCXV-vykouOjI,1823
238
+ taguette/templates/project_import_codebook_confirm.html,sha256=6mj_wQziGuMOvVYhai7q-ojUklMRNG4MhDP5ne_3PSc,2749
239
+ taguette/templates/project_new.html,sha256=XIvlwVYjYNUD6ycVE0fa0sOyokzlec3ZgyePucMb-TU,1395
240
+ taguette/templates/tos.html,sha256=AuXLOoz4eu7rq4riZndsEJJBE8ctRmAr4obdrYTwuvk,206
241
+ taguette/templates/trans.js,sha256=6u0cEUFM_1sdMGuCOzJdeSf3wri3N6WP6V1APSnf-9s,233
242
+ taguette/templates/welcome.html,sha256=dW-QWu8rj3K9hrvW7530narjGOsVOc-Nt0zFZ4ihYwk,861
243
+ taguette/utils.py,sha256=ogSUhmEorfxeuUefO5OySv2Ln6Xa3cBlx2W0qF8ckW8,4838
244
+ taguette/validate.py,sha256=FINMgVi0zNMKLVv1qTuE-JvwHoi3TLwlJRxU0pdUZLw,3959
245
+ taguette/version_check.py,sha256=Z_TcQ1cMVBNu5f3h9kZYnF0sERp4lyzmYo-LkJKuC7I,2464
246
+ taguette/web/__init__.py,sha256=cmnIzzSNeKMQE6EmbaK36Sinfe52Rv1kMtMRif4x448,10409
247
+ taguette/web/api.py,sha256=yyQEbfRT9jry3fb9YdKTxPLzxx7AztInWoWSK7J2YsY,69920
248
+ taguette/web/base.py,sha256=utzMxD5EEbX9qGtGXopd3qrJ-IfdKl67n1f8g0Jy6UY,31297
249
+ taguette/web/export.py,sha256=YG5JcGN9i2LefJf1rcwbU18STLtd2acdenUTJFYnXWY,10171
250
+ taguette/web/views.py,sha256=j5fzLToziYXD5dYLvNhQ2bPNe_ISjQH-uVTJzzO1Y9Y,58713
251
+ libreqda-1.2.0.dist-info/LICENSE.txt,sha256=Z8XEe5hZVY_3fGaXwCGbvGFtHrFIr9B9_K58JJnVbP0,1625
252
+ libreqda-1.2.0.dist-info/METADATA,sha256=WKLmEYVZxrZCRtSs1GgaJBeKBO1mGgasW8EWiEoxkd8,7360
253
+ libreqda-1.2.0.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
254
+ libreqda-1.2.0.dist-info/entry_points.txt,sha256=Si_Y_7z2XGIRZbRf9yUUtNf79aeZAJMqr6ZJBcp_VqU,82
255
+ libreqda-1.2.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.8.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ make-theme=scripts.make_theme:main
3
+ taguette=taguette.main:main
4
+
scripts/babelrc ADDED
@@ -0,0 +1,8 @@
1
+ [python: taguette/**.py]
2
+ encoding = utf-8
3
+
4
+ [jinja2: taguette/templates/**.html]
5
+ encoding = utf-8
6
+
7
+ [javascript: taguette/static/js/**.js]
8
+ encoding = utf-8
@@ -0,0 +1,33 @@
1
+ This installer includes Calibre, the free and open source ebook manager,
2
+ available under the terms of the GNU GPL v3 license.
3
+ More info: https://manual.calibre-ebook.com/faq.html#how-is-calibre-licensed
4
+
5
+ -----
6
+
7
+ Copyright (C) 2018, Remi Rampin, PHuN and Taguette contributors
8
+ All rights reserved.
9
+
10
+ Redistribution and use in source and binary forms, with or without
11
+ modification, are permitted provided that the following conditions are met:
12
+
13
+ 1. Redistributions of source code must retain the above copyright notice, this
14
+ list of conditions and the following disclaimer.
15
+
16
+ 2. Redistributions in binary form must reproduce the above copyright notice,
17
+ this list of conditions and the following disclaimer in the documentation
18
+ and/or other materials provided with the distribution.
19
+
20
+ 3. Neither the name of the copyright holder nor the names of its contributors
21
+ may be used to endorse or promote products derived from this software
22
+ without specific prior written permission.
23
+
24
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
25
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
28
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
30
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,23 @@
1
+ * Update translations from https://www.transifex.com/remram44/taguette/
2
+ * Run scripts/update_translations.sh
3
+ * Update CHANGELOG and version numbers
4
+ * Push to Zenodo
5
+ * Update citation in repo, website, GitLab badge
6
+ * Create a signed tag (git tag -s)
7
+ * Build sdist / bdist_wheel, upload to PyPI (with Twine)
8
+ * Build MacOS installer
9
+ * Update Calibre
10
+ * Run macos.sh
11
+ * Put on OSF
12
+ * Build Windows installer (using pyinstaller_entrypoint.py and windows.spec, then windows-installer.iss)
13
+ * Update Calibre
14
+ * Get l10n folder from PyPI
15
+ * Run `pyinstaller windows.spec`
16
+ * Copy Calibre2 to dist/taguette/
17
+ * Build installer using windows-installer.iss
18
+ * Put on OSF
19
+ * Update tag page on GitLab with changelog, links to OSF and PyPI downloads
20
+ * Build multiarch Docker image quay.io/remram44/taguette (version tag + latest tag), push to quay.io
21
+ * docker buildx build --platform linux/386,linux/amd64,linux/arm/v7,linux/arm64/v8 --push --tag quay.io/remram44/taguette:<VERSION> .
22
+ * Update message files on msg.taguette.org, so users get the notification
23
+ * Update download link on website's install.html
Binary file
@@ -0,0 +1,43 @@
1
+ # -*- mode: python -*-
2
+
3
+ block_cipher = None
4
+
5
+
6
+ a = Analysis(['pyinstaller_entrypoint.py'],
7
+ pathex=['/Users/vagrant/taguette'],
8
+ binaries=[],
9
+ datas=[('taguette/static', 'taguette/static'),
10
+ ('taguette/templates', 'taguette/templates'),
11
+ ('taguette/migrations', 'taguette/migrations'),
12
+ ('taguette/l10n', 'taguette/l10n')],
13
+ hiddenimports=['bcrypt', 'cffi', 'sqlalchemy.*', 'sqlalchemy.ext.baked'],
14
+ hookspath=[],
15
+ runtime_hooks=[],
16
+ excludes=[],
17
+ win_no_prefer_redirects=False,
18
+ win_private_assemblies=False,
19
+ cipher=block_cipher,
20
+ noarchive=False)
21
+ pyz = PYZ(a.pure, a.zipped_data,
22
+ cipher=block_cipher)
23
+ exe = EXE(pyz,
24
+ a.scripts,
25
+ [],
26
+ exclude_binaries=True,
27
+ name='taguette_exe',
28
+ debug=False,
29
+ bootloader_ignore_signals=False,
30
+ strip=False,
31
+ upx=True,
32
+ console=True)
33
+ coll = COLLECT(exe,
34
+ a.binaries,
35
+ a.zipfiles,
36
+ a.datas,
37
+ strip=False,
38
+ upx=True,
39
+ name='taguette')
40
+ app = BUNDLE(coll,
41
+ name='LibreQDA.app',
42
+ icon='scripts/dist/macos/libreqda.icns',
43
+ bundle_identifier='fr.taguette')
@@ -0,0 +1,10 @@
1
+ --- Info.plist 2018-10-22 00:04:06.000000000 +0000
2
+ +++ Info.plist 2018-10-22 00:03:55.000000000 +0000
3
+ @@ -7,2 +7,2 @@
4
+ <key>CFBundleExecutable</key>
5
+ - <string>MacOS/taguette_exe</string>
6
+ + <string>MacOS/taguette_console_wrapper</string>
7
+ @@ -19,2 +19,2 @@
8
+ <key>CFBundleShortVersionString</key>
9
+ - <string>0.0.0</string>
10
+ + <string>1.0.1</string>
Binary file
@@ -0,0 +1,4 @@
1
+ #!/bin/sh
2
+
3
+ # Open the main executable in a terminal
4
+ open "$(dirname "$0")/taguette_exe"
scripts/dist/macos.sh ADDED
@@ -0,0 +1,32 @@
1
+ #!/bin/bash
2
+
3
+ set -eux
4
+
5
+ if [ "x${1:-}" = x ]; then
6
+ echo "Missing version number" >&2
7
+ exit 1
8
+ fi
9
+ VERSION="$1"
10
+
11
+ cd "$(dirname "$0")/../.."
12
+ cp scripts/dist/pyinstaller_entrypoint.py scripts/dist/macos/macos.spec .
13
+ poetry install
14
+ scripts/update_translations.sh
15
+ rm -rf build dist
16
+ pyinstaller macos.spec
17
+ rm -rf dist/taguette
18
+ cp scripts/dist/macos/taguette_console_wrapper dist/LibreQDA.app/Contents/MacOS/
19
+ cp -a /Applications/calibre.app dist/LibreQDA.app/Contents/Resources/
20
+ sed -i.bak \
21
+ -e 's|<string>taguette_exe</string>|<string>taguette_console_wrapper</string>|' \
22
+ -e "s|<string>0.0.0</string>|<string>$VERSION</string>|" \
23
+ -e 's|<string>Taguette</string>|<string>LibreQDA</string>|g' \
24
+ -e 's|<string>taguette.icns</string>|<string>libreqda.icns</string>|' \
25
+ dist/LibreQDA.app/Contents/Info.plist
26
+ rm -f dist/LibreQDA.app/Contents/Info.plist.bak
27
+ codesign --deep --force -s LibreQDA dist/LibreQDA.app || echo "codesign skipped (no identity)"
28
+ rm -f libreqda.dmg
29
+ cp scripts/dist/LICENSE.txt dist/LICENSE.txt
30
+ ln -sfn /Applications dist/Applications
31
+ sleep 1
32
+ hdiutil create libreqda.dmg -srcfolder dist -volname "LibreQDA $VERSION"
@@ -0,0 +1,19 @@
1
+ import os
2
+ import sys
3
+
4
+ from taguette.main import main
5
+
6
+
7
+ if sys.platform == 'win32':
8
+ os.environ['CALIBRE'] = os.path.join(
9
+ os.path.dirname(sys.executable),
10
+ 'Calibre2',
11
+ )
12
+ elif sys.platform == 'darwin':
13
+ os.environ['CALIBRE'] = os.path.join(
14
+ os.path.dirname(os.path.dirname(sys.executable)),
15
+ 'Resources/calibre.app/Contents/MacOS',
16
+ )
17
+
18
+
19
+ main()
@@ -0,0 +1,51 @@
1
+ ; Script generated by the Inno Setup Script Wizard.
2
+ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
+
4
+ #define MyAppName "LibreQDA"
5
+ #define MyAppVersion "1.1.5"
6
+ #define MyAppPublisher "Remi Rampin, PHuN and Taguette contributors"
7
+ #define MyAppURL "https://www.libreqda.org/"
8
+ #define MyAppExeName "libreqda.exe"
9
+
10
+ [Setup]
11
+ ; NOTE: The value of AppId uniquely identifies this application.
12
+ ; Do not use the same AppId value in installers for other applications.
13
+ ; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
14
+ AppId={{FB884879-1AE9-43D5-B4A3-8499A0B65E0E}
15
+ AppName={#MyAppName}
16
+ AppVersion={#MyAppVersion}
17
+ AppVerName={#MyAppName} {#MyAppVersion}
18
+ ;AppVerName={#MyAppName} {#MyAppVersion}
19
+ AppPublisher={#MyAppPublisher}
20
+ AppPublisherURL={#MyAppURL}
21
+ AppSupportURL={#MyAppURL}
22
+ AppUpdatesURL={#MyAppURL}
23
+ DefaultDirName={autopf}\LibreQDA
24
+ DisableProgramGroupPage=yes
25
+ ; Uncomment the following line to run in non administrative install mode (install for current user only.)
26
+ ;PrivilegesRequired=lowest
27
+ PrivilegesRequiredOverridesAllowed=dialog
28
+ LicenseFile=C:\Users\user\Desktop\taguette\scripts\dist\LICENSE.txt
29
+ OutputBaseFilename=libreqda-setup
30
+ SetupIconFile=taguette\static\libreqda.ico
31
+ Compression=lzma
32
+ SolidCompression=yes
33
+ WizardStyle=modern
34
+
35
+ [Languages]
36
+ Name: "english"; MessagesFile: "compiler:Default.isl"
37
+
38
+ [Tasks]
39
+ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
40
+
41
+ [Files]
42
+ Source: "C:\Users\user\Desktop\taguette\dist\taguette\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
43
+ ; NOTE: Don't use "Flags: ignoreversion" on any shared system files
44
+
45
+ [Icons]
46
+ Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
47
+ Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
48
+
49
+ [Run]
50
+ Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
51
+
@@ -0,0 +1,39 @@
1
+ # -*- mode: python -*-
2
+
3
+ block_cipher = None
4
+
5
+
6
+ a = Analysis(['pyinstaller_entrypoint.py'],
7
+ pathex=['C:\\Users\\user\\Desktop\\taguette'],
8
+ binaries=[],
9
+ datas=[('taguette/static', 'taguette/static'),
10
+ ('taguette/templates', 'taguette/templates'),
11
+ ('taguette/migrations', 'taguette/migrations'),
12
+ ('taguette/l10n', 'taguette/l10n')],
13
+ hiddenimports=['bcrypt', 'cffi', 'sqlalchemy.*', 'sqlalchemy.ext.baked'],
14
+ hookspath=[],
15
+ runtime_hooks=[],
16
+ excludes=[],
17
+ win_no_prefer_redirects=False,
18
+ win_private_assemblies=False,
19
+ cipher=block_cipher,
20
+ noarchive=False)
21
+ pyz = PYZ(a.pure, a.zipped_data,
22
+ cipher=block_cipher)
23
+ exe = EXE(pyz,
24
+ a.scripts,
25
+ [],
26
+ exclude_binaries=True,
27
+ name='libreqda',
28
+ debug=False,
29
+ bootloader_ignore_signals=False,
30
+ strip=False,
31
+ upx=True,
32
+ console=True , icon='taguette\\static\\libreqda.ico')
33
+ coll = COLLECT(exe,
34
+ a.binaries,
35
+ a.zipfiles,
36
+ a.datas,
37
+ strip=False,
38
+ upx=True,
39
+ name='taguette')