Guest User

Untitled

a guest
Aug 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.71 KB | None | 0 0
  1. /nix/store/d8f5rcp6j1zsasjxbggmacbnm215ynw9-mnemosyne-2.6.1
  2. ├── bin
  3. │   └── mnemosyne
  4. ├── lib
  5. │   └── python3.6
  6. │   └── site-packages
  7. │   ├── mnemosyne
  8. │   │   ├── config.py
  9. │   │   ├── __init__.py
  10. │   │   ├── libmnemosyne
  11. │   │   │   ├── card.py
  12. │   │   │   ├── card_type_converter.py
  13. │   │   │   ├── card_type.py
  14. │   │   │   ├── card_types
  15. │   │   │   │   ├── both_ways.py
  16. │   │   │   │   ├── cloze.py
  17. │   │   │   │   ├── front_to_back.py
  18. │   │   │   │   ├── __init__.py
  19. │   │   │   │   ├── map.py
  20. │   │   │   │   ├── M_sided.py
  21. │   │   │   │   ├── __pycache__
  22. │   │   │   │   │   ├── both_ways.cpython-36.pyc
  23. │   │   │   │   │   ├── cloze.cpython-36.pyc
  24. │   │   │   │   │   ├── front_to_back.cpython-36.pyc
  25. │   │   │   │   │   ├── __init__.cpython-36.pyc
  26. │   │   │   │   │   ├── map.cpython-36.pyc
  27. │   │   │   │   │   ├── M_sided.cpython-36.pyc
  28. │   │   │   │   │   ├── sentence.cpython-36.pyc
  29. │   │   │   │   │   └── vocabulary.cpython-36.pyc
  30. │   │   │   │   ├── sentence.py
  31. │   │   │   │   └── vocabulary.py
  32. │   │   │   ├── component_manager.py
  33. │   │   │   ├── component.py
  34. │   │   │   ├── configuration.py
  35. │   │   │   ├── controller.py
  36. │   │   │   ├── controllers
  37. │   │   │   │   ├── default_controller.py
  38. │   │   │   │   ├── __init__.py
  39. │   │   │   │   └── __pycache__
  40. │   │   │   │   ├── default_controller.cpython-36.pyc
  41. │   │   │   │   └── __init__.cpython-36.pyc
  42. │   │   │   ├── criteria
  43. │   │   │   │   ├── default_criterion.py
  44. │   │   │   │   ├── __init__.py
  45. │   │   │   │   └── __pycache__
  46. │   │   │   │   ├── default_criterion.cpython-36.pyc
  47. │   │   │   │   └── __init__.cpython-36.pyc
  48. │   │   │   ├── criterion.py
  49. │   │   │   ├── database.py
  50. │   │   │   ├── databases
  51. │   │   │   │   ├── _apsw.py
  52. │   │   │   │   ├── __init__.py
  53. │   │   │   │   ├── __pycache__
  54. │   │   │   │   │   ├── _apsw.cpython-36.pyc
  55. │   │   │   │   │   ├── __init__.cpython-36.pyc
  56. │   │   │   │   │   ├── _sqlite3.cpython-36.pyc
  57. │   │   │   │   │   ├── SQLite.cpython-36.pyc
  58. │   │   │   │   │   ├── SQLite_criterion_applier.cpython-36.pyc
  59. │   │   │   │   │   ├── SQLite_logging.cpython-36.pyc
  60. │   │   │   │   │   ├── SQLite_media.cpython-36.pyc
  61. │   │   │   │   │   ├── SQLite_no_pregenerated_data.cpython-36.pyc
  62. │   │   │   │   │   ├── SQLite_statistics.cpython-36.pyc
  63. │   │   │   │   │   └── SQLite_sync.cpython-36.pyc
  64. │   │   │   │   ├── _sqlite3.py
  65. │   │   │   │   ├── SQLite_criterion_applier.py
  66. │   │   │   │   ├── SQLite_logging.py
  67. │   │   │   │   ├── SQLite_media.py
  68. │   │   │   │   ├── SQLite_no_pregenerated_data.py
  69. │   │   │   │   ├── SQLite.py
  70. │   │   │   │   ├── SQLite_statistics.py
  71. │   │   │   │   └── SQLite_sync.py
  72. │   │   │   ├── fact.py
  73. │   │   │   ├── fact_view.py
  74. │   │   │   ├── file_format.py
  75. │   │   │   ├── file_formats
  76. │   │   │   │   ├── anki2.py
  77. │   │   │   │   ├── cuecard_wcu.py
  78. │   │   │   │   ├── __init__.py
  79. │   │   │   │   ├── media_preprocessor.py
  80. │   │   │   │   ├── mnemosyne1_mem.py
  81. │   │   │   │   ├── mnemosyne1.py
  82. │   │   │   │   ├── mnemosyne1_xml.py
  83. │   │   │   │   ├── mnemosyne2_cards.py
  84. │   │   │   │   ├── mnemosyne2_db.py
  85. │   │   │   │   ├── __pycache__
  86. │   │   │   │   │   ├── anki2.cpython-36.pyc
  87. │   │   │   │   │   ├── cuecard_wcu.cpython-36.pyc
  88. │   │   │   │   │   ├── __init__.cpython-36.pyc
  89. │   │   │   │   │   ├── media_preprocessor.cpython-36.pyc
  90. │   │   │   │   │   ├── mnemosyne1.cpython-36.pyc
  91. │   │   │   │   │   ├── mnemosyne1_mem.cpython-36.pyc
  92. │   │   │   │   │   ├── mnemosyne1_xml.cpython-36.pyc
  93. │   │   │   │   │   ├── mnemosyne2_cards.cpython-36.pyc
  94. │   │   │   │   │   ├── mnemosyne2_db.cpython-36.pyc
  95. │   │   │   │   │   ├── science_log_parser.cpython-36.pyc
  96. │   │   │   │   │   ├── smconv_XML.cpython-36.pyc
  97. │   │   │   │   │   ├── supermemo_7_txt.cpython-36.pyc
  98. │   │   │   │   │   └── tsv.cpython-36.pyc
  99. │   │   │   │   ├── science_log_parser.py
  100. │   │   │   │   ├── smconv_XML.py
  101. │   │   │   │   ├── supermemo_7_txt.py
  102. │   │   │   │   └── tsv.py
  103. │   │   │   ├── filter.py
  104. │   │   │   ├── filters
  105. │   │   │   │   ├── escape_to_html_for_card_browser.py
  106. │   │   │   │   ├── escape_to_html.py
  107. │   │   │   │   ├── expand_paths.py
  108. │   │   │   │   ├── html5_audio.py
  109. │   │   │   │   ├── html5_video.py
  110. │   │   │   │   ├── __init__.py
  111. │   │   │   │   ├── latex.py
  112. │   │   │   │   ├── non_latin_font_size_increase.py
  113. │   │   │   │   ├── __pycache__
  114. │   │   │   │   │   ├── escape_to_html.cpython-36.pyc
  115. │   │   │   │   │   ├── escape_to_html_for_card_browser.cpython-36.pyc
  116. │   │   │   │   │   ├── expand_paths.cpython-36.pyc
  117. │   │   │   │   │   ├── html5_audio.cpython-36.pyc
  118. │   │   │   │   │   ├── html5_video.cpython-36.pyc
  119. │   │   │   │   │   ├── __init__.cpython-36.pyc
  120. │   │   │   │   │   ├── latex.cpython-36.pyc
  121. │   │   │   │   │   ├── non_latin_font_size_increase.cpython-36.pyc
  122. │   │   │   │   │   └── RTL_handler.cpython-36.pyc
  123. │   │   │   │   └── RTL_handler.py
  124. │   │   │   ├── hook.py
  125. │   │   │   ├── __init__.py
  126. │   │   │   ├── logger.py
  127. │   │   │   ├── loggers
  128. │   │   │   │   ├── database_logger.py
  129. │   │   │   │   ├── __init__.py
  130. │   │   │   │   └── __pycache__
  131. │   │   │   │   ├── database_logger.cpython-36.pyc
  132. │   │   │   │   └── __init__.cpython-36.pyc
  133. │   │   │   ├── log_uploader.py
  134. │   │   │   ├── plugin.py
  135. │   │   │   ├── plugins
  136. │   │   │   │   ├── __init__.py
  137. │   │   │   │   └── __pycache__
  138. │   │   │   │   └── __init__.cpython-36.pyc
  139. │   │   │   ├── __pycache__
  140. │   │   │   │   ├── card.cpython-36.pyc
  141. │   │   │   │   ├── card_type_converter.cpython-36.pyc
  142. │   │   │   │   ├── card_type.cpython-36.pyc
  143. │   │   │   │   ├── component.cpython-36.pyc
  144. │   │   │   │   ├── component_manager.cpython-36.pyc
  145. │   │   │   │   ├── configuration.cpython-36.pyc
  146. │   │   │   │   ├── controller.cpython-36.pyc
  147. │   │   │   │   ├── criterion.cpython-36.pyc
  148. │   │   │   │   ├── database.cpython-36.pyc
  149. │   │   │   │   ├── fact.cpython-36.pyc
  150. │   │   │   │   ├── fact_view.cpython-36.pyc
  151. │   │   │   │   ├── file_format.cpython-36.pyc
  152. │   │   │   │   ├── filter.cpython-36.pyc
  153. │   │   │   │   ├── hook.cpython-36.pyc
  154. │   │   │   │   ├── __init__.cpython-36.pyc
  155. │   │   │   │   ├── logger.cpython-36.pyc
  156. │   │   │   │   ├── log_uploader.cpython-36.pyc
  157. │   │   │   │   ├── plugin.cpython-36.pyc
  158. │   │   │   │   ├── render_chain.cpython-36.pyc
  159. │   │   │   │   ├── renderer.cpython-36.pyc
  160. │   │   │   │   ├── review_controller.cpython-36.pyc
  161. │   │   │   │   ├── scheduler.cpython-36.pyc
  162. │   │   │   │   ├── statistics_page.cpython-36.pyc
  163. │   │   │   │   ├── stopwatch.cpython-36.pyc
  164. │   │   │   │   ├── study_mode.cpython-36.pyc
  165. │   │   │   │   ├── sync_server.cpython-36.pyc
  166. │   │   │   │   ├── tag.cpython-36.pyc
  167. │   │   │   │   ├── tag_tree.cpython-36.pyc
  168. │   │   │   │   ├── translator.cpython-36.pyc
  169. │   │   │   │   ├── ui_component.cpython-36.pyc
  170. │   │   │   │   └── utils.cpython-36.pyc
  171. │   │   │   ├── render_chain.py
  172. │   │   │   ├── render_chains
  173. │   │   │   │   ├── card_browser_render_chain.py
  174. │   │   │   │   ├── default_render_chain.py
  175. │   │   │   │   ├── __init__.py
  176. │   │   │   │   ├── plain_text_chain.py
  177. │   │   │   │   ├── __pycache__
  178. │   │   │   │   │   ├── card_browser_render_chain.cpython-36.pyc
  179. │   │   │   │   │   ├── default_render_chain.cpython-36.pyc
  180. │   │   │   │   │   ├── __init__.cpython-36.pyc
  181. │   │   │   │   │   ├── plain_text_chain.cpython-36.pyc
  182. │   │   │   │   │   └── sync_to_card_only_client.cpython-36.pyc
  183. │   │   │   │   └── sync_to_card_only_client.py
  184. │   │   │   ├── renderer.py
  185. │   │   │   ├── renderers
  186. │   │   │   │   ├── anki
  187. │   │   │   │   │   ├── decorator.py
  188. │   │   │   │   │   ├── hooks.py
  189. │   │   │   │   │   ├── __init__.py
  190. │   │   │   │   │   ├── lang.py
  191. │   │   │   │   │   ├── __pycache__
  192. │   │   │   │   │   │   ├── decorator.cpython-36.pyc
  193. │   │   │   │   │   │   ├── hooks.cpython-36.pyc
  194. │   │   │   │   │   │   ├── __init__.cpython-36.pyc
  195. │   │   │   │   │   │   ├── lang.cpython-36.pyc
  196. │   │   │   │   │   │   └── utils.cpython-36.pyc
  197. │   │   │   │   │   ├── template
  198. │   │   │   │   │   │   ├── furigana.py
  199. │   │   │   │   │   │   ├── hint.py
  200. │   │   │   │   │   │   ├── __init__.py
  201. │   │   │   │   │   │   ├── __pycache__
  202. │   │   │   │   │   │   │   ├── furigana.cpython-36.pyc
  203. │   │   │   │   │   │   │   ├── hint.cpython-36.pyc
  204. │   │   │   │   │   │   │   ├── __init__.cpython-36.pyc
  205. │   │   │   │   │   │   │   ├── template.cpython-36.pyc
  206. │   │   │   │   │   │   │   └── view.cpython-36.pyc
  207. │   │   │   │   │   │   ├── template.py
  208. │   │   │   │   │   │   └── view.py
  209. │   │   │   │   │   └── utils.py
  210. │   │   │   │   ├── anki_renderer.py
  211. │   │   │   │   ├── html_css_card_browser.py
  212. │   │   │   │   ├── html_css.py
  213. │   │   │   │   ├── __init__.py
  214. │   │   │   │   ├── plain_text.py
  215. │   │   │   │   └── __pycache__
  216. │   │   │   │   ├── anki_renderer.cpython-36.pyc
  217. │   │   │   │   ├── html_css_card_browser.cpython-36.pyc
  218. │   │   │   │   ├── html_css.cpython-36.pyc
  219. │   │   │   │   ├── __init__.cpython-36.pyc
  220. │   │   │   │   └── plain_text.cpython-36.pyc
  221. │   │   │   ├── review_controller.py
  222. │   │   │   ├── review_controllers
  223. │   │   │   │   ├── __init__.py
  224. │   │   │   │   ├── __pycache__
  225. │   │   │   │   │   ├── __init__.cpython-36.pyc
  226. │   │   │   │   │   ├── SM2_controller.cpython-36.pyc
  227. │   │   │   │   │   └── SM2_controller_cramming.cpython-36.pyc
  228. │   │   │   │   ├── SM2_controller_cramming.py
  229. │   │   │   │   └── SM2_controller.py
  230. │   │   │   ├── scheduler.py
  231. │   │   │   ├── schedulers
  232. │   │   │   │   ├── cramming.py
  233. │   │   │   │   ├── __init__.py
  234. │   │   │   │   ├── __pycache__
  235. │   │   │   │   │   ├── cramming.cpython-36.pyc
  236. │   │   │   │   │   ├── __init__.cpython-36.pyc
  237. │   │   │   │   │   └── SM2_mnemosyne.cpython-36.pyc
  238. │   │   │   │   └── SM2_mnemosyne.py
  239. │   │   │   ├── statistics_page.py
  240. │   │   │   ├── statistics_pages
  241. │   │   │   │   ├── cards_added.py
  242. │   │   │   │   ├── cards_learned.py
  243. │   │   │   │   ├── current_card.py
  244. │   │   │   │   ├── easiness.py
  245. │   │   │   │   ├── grades.py
  246. │   │   │   │   ├── __init__.py
  247. │   │   │   │   ├── __pycache__
  248. │   │   │   │   │   ├── cards_added.cpython-36.pyc
  249. │   │   │   │   │   ├── cards_learned.cpython-36.pyc
  250. │   │   │   │   │   ├── current_card.cpython-36.pyc
  251. │   │   │   │   │   ├── easiness.cpython-36.pyc
  252. │   │   │   │   │   ├── grades.cpython-36.pyc
  253. │   │   │   │   │   ├── __init__.cpython-36.pyc
  254. │   │   │   │   │   ├── retention_score.cpython-36.pyc
  255. │   │   │   │   │   └── schedule.cpython-36.pyc
  256. │   │   │   │   ├── retention_score.py
  257. │   │   │   │   └── schedule.py
  258. │   │   │   ├── stopwatch.py
  259. │   │   │   ├── study_mode.py
  260. │   │   │   ├── study_modes
  261. │   │   │   │   ├── cram_all.py
  262. │   │   │   │   ├── cram_recent.py
  263. │   │   │   │   ├── __init__.py
  264. │   │   │   │   ├── new_only.py
  265. │   │   │   │   ├── __pycache__
  266. │   │   │   │   │   ├── cram_all.cpython-36.pyc
  267. │   │   │   │   │   ├── cram_recent.cpython-36.pyc
  268. │   │   │   │   │   ├── __init__.cpython-36.pyc
  269. │   │   │   │   │   ├── new_only.cpython-36.pyc
  270. │   │   │   │   │   └── scheduled_forgotten_new.cpython-36.pyc
  271. │   │   │   │   └── scheduled_forgotten_new.py
  272. │   │   │   ├── sync_server.py
  273. │   │   │   ├── tag.py
  274. │   │   │   ├── tag_tree.py
  275. │   │   │   ├── translator.py
  276. │   │   │   ├── translators
  277. │   │   │   │   ├── gettext_translator.py
  278. │   │   │   │   ├── __init__.py
  279. │   │   │   │   ├── no_translator.py
  280. │   │   │   │   └── __pycache__
  281. │   │   │   │   ├── gettext_translator.cpython-36.pyc
  282. │   │   │   │   ├── __init__.cpython-36.pyc
  283. │   │   │   │   └── no_translator.cpython-36.pyc
  284. │   │   │   ├── ui_component.py
  285. │   │   │   ├── ui_components
  286. │   │   │   │   ├── card_type_widget.py
  287. │   │   │   │   ├── configuration_widget.py
  288. │   │   │   │   ├── criterion_widget.py
  289. │   │   │   │   ├── dialogs.py
  290. │   │   │   │   ├── __init__.py
  291. │   │   │   │   ├── main_widget.py
  292. │   │   │   │   ├── __pycache__
  293. │   │   │   │   │   ├── card_type_widget.cpython-36.pyc
  294. │   │   │   │   │   ├── configuration_widget.cpython-36.pyc
  295. │   │   │   │   │   ├── criterion_widget.cpython-36.pyc
  296. │   │   │   │   │   ├── dialogs.cpython-36.pyc
  297. │   │   │   │   │   ├── __init__.cpython-36.pyc
  298. │   │   │   │   │   ├── main_widget.cpython-36.pyc
  299. │   │   │   │   │   ├── review_widget.cpython-36.pyc
  300. │   │   │   │   │   └── statistics_widget.cpython-36.pyc
  301. │   │   │   │   ├── review_widget.py
  302. │   │   │   │   └── statistics_widget.py
  303. │   │   │   ├── upgrades
  304. │   │   │   │   ├── __init__.py
  305. │   │   │   │   ├── __pycache__
  306. │   │   │   │   │   ├── __init__.cpython-36.pyc
  307. │   │   │   │   │   ├── upgrade1.cpython-36.pyc
  308. │   │   │   │   │   └── upgrade2.cpython-36.pyc
  309. │   │   │   │   ├── upgrade1.py
  310. │   │   │   │   └── upgrade2.py
  311. │   │   │   └── utils.py
  312. │   │   ├── __pycache__
  313. │   │   │   ├── config.cpython-36.pyc
  314. │   │   │   ├── __init__.cpython-36.pyc
  315. │   │   │   └── version.cpython-36.pyc
  316. │   │   ├── pyqt_ui
  317. │   │   │   ├── about_dlg.py
  318. │   │   │   ├── activate_cards_dlg.py
  319. │   │   │   ├── add_cards_dlg.py
  320. │   │   │   ├── add_tags_dlg.py
  321. │   │   │   ├── browse_cards_dlg.py
  322. │   │   │   ├── card_set_name_dlg.py
  323. │   │   │   ├── card_type_tree_wdgt.py
  324. │   │   │   ├── card_type_wdgt_generic.py
  325. │   │   │   ├── change_card_type_dlg.py
  326. │   │   │   ├── clone_card_type_dlg.py
  327. │   │   │   ├── compact_database_dlg.py
  328. │   │   │   ├── completion_combo_box.py
  329. │   │   │   ├── configuration_dlg.py
  330. │   │   │   ├── configuration.py
  331. │   │   │   ├── configuration_wdgt_card_appearance.py
  332. │   │   │   ├── configuration_wdgt_main.py
  333. │   │   │   ├── configuration_wdgt_servers.py
  334. │   │   │   ├── configuration_wdgt_study.py
  335. │   │   │   ├── convert_card_type_keys_dlg.py
  336. │   │   │   ├── criterion_wdgt_default.py
  337. │   │   │   ├── delete_unused_media_files_dlg.py
  338. │   │   │   ├── edit_card_dlg.py
  339. │   │   │   ├── edit_M_sided_card_template_wdgt.py
  340. │   │   │   ├── edit_M_sided_card_type_dlg.py
  341. │   │   │   ├── export_dlg.py
  342. │   │   │   ├── export_metadata_dlg.py
  343. │   │   │   ├── getting_started_dlg.py
  344. │   │   │   ├── import_dlg.py
  345. │   │   │   ├── __init__.py
  346. │   │   │   ├── main_wdgt.py
  347. │   │   │   ├── manage_card_types_dlg.py
  348. │   │   │   ├── manage_plugins_dlg.py
  349. │   │   │   ├── mnemosyne_rc.py
  350. │   │   │   ├── mplayer_audio.py
  351. │   │   │   ├── mplayer_video.py
  352. │   │   │   ├── prefill_tag_behaviour_plugin.py
  353. │   │   │   ├── preview_cards_dlg.py
  354. │   │   │   ├── __pycache__
  355. │   │   │   │   ├── about_dlg.cpython-36.pyc
  356. │   │   │   │   ├── activate_cards_dlg.cpython-36.pyc
  357. │   │   │   │   ├── add_cards_dlg.cpython-36.pyc
  358. │   │   │   │   ├── add_tags_dlg.cpython-36.pyc
  359. │   │   │   │   ├── browse_cards_dlg.cpython-36.pyc
  360. │   │   │   │   ├── card_set_name_dlg.cpython-36.pyc
  361. │   │   │   │   ├── card_type_tree_wdgt.cpython-36.pyc
  362. │   │   │   │   ├── card_type_wdgt_generic.cpython-36.pyc
  363. │   │   │   │   ├── change_card_type_dlg.cpython-36.pyc
  364. │   │   │   │   ├── clone_card_type_dlg.cpython-36.pyc
  365. │   │   │   │   ├── compact_database_dlg.cpython-36.pyc
  366. │   │   │   │   ├── completion_combo_box.cpython-36.pyc
  367. │   │   │   │   ├── configuration.cpython-36.pyc
  368. │   │   │   │   ├── configuration_dlg.cpython-36.pyc
  369. │   │   │   │   ├── configuration_wdgt_card_appearance.cpython-36.pyc
  370. │   │   │   │   ├── configuration_wdgt_main.cpython-36.pyc
  371. │   │   │   │   ├── configuration_wdgt_servers.cpython-36.pyc
  372. │   │   │   │   ├── configuration_wdgt_study.cpython-36.pyc
  373. │   │   │   │   ├── convert_card_type_keys_dlg.cpython-36.pyc
  374. │   │   │   │   ├── criterion_wdgt_default.cpython-36.pyc
  375. │   │   │   │   ├── delete_unused_media_files_dlg.cpython-36.pyc
  376. │   │   │   │   ├── edit_card_dlg.cpython-36.pyc
  377. │   │   │   │   ├── edit_M_sided_card_template_wdgt.cpython-36.pyc
  378. │   │   │   │   ├── edit_M_sided_card_type_dlg.cpython-36.pyc
  379. │   │   │   │   ├── export_dlg.cpython-36.pyc
  380. │   │   │   │   ├── export_metadata_dlg.cpython-36.pyc
  381. │   │   │   │   ├── getting_started_dlg.cpython-36.pyc
  382. │   │   │   │   ├── import_dlg.cpython-36.pyc
  383. │   │   │   │   ├── __init__.cpython-36.pyc
  384. │   │   │   │   ├── main_wdgt.cpython-36.pyc
  385. │   │   │   │   ├── manage_card_types_dlg.cpython-36.pyc
  386. │   │   │   │   ├── manage_plugins_dlg.cpython-36.pyc
  387. │   │   │   │   ├── mnemosyne_rc.cpython-36.pyc
  388. │   │   │   │   ├── mplayer_audio.cpython-36.pyc
  389. │   │   │   │   ├── mplayer_video.cpython-36.pyc
  390. │   │   │   │   ├── prefill_tag_behaviour_plugin.cpython-36.pyc
  391. │   │   │   │   ├── preview_cards_dlg.cpython-36.pyc
  392. │   │   │   │   ├── pyqt_render_chain.cpython-36.pyc
  393. │   │   │   │   ├── qpushbutton2.cpython-36.pyc
  394. │   │   │   │   ├── qtextedit2.cpython-36.pyc
  395. │   │   │   │   ├── qt_sync_server.cpython-36.pyc
  396. │   │   │   │   ├── qt_translator.cpython-36.pyc
  397. │   │   │   │   ├── qt_web_server.cpython-36.pyc
  398. │   │   │   │   ├── qt_worker_thread.cpython-36.pyc
  399. │   │   │   │   ├── qwebengineview2.cpython-36.pyc
  400. │   │   │   │   ├── remove_tags_dlg.cpython-36.pyc
  401. │   │   │   │   ├── review_wdgt.cpython-36.pyc
  402. │   │   │   │   ├── review_wdgt_cramming.cpython-36.pyc
  403. │   │   │   │   ├── statistics_dlg.cpython-36.pyc
  404. │   │   │   │   ├── statistics_wdgt_html.cpython-36.pyc
  405. │   │   │   │   ├── statistics_wdgts_plotting.cpython-36.pyc
  406. │   │   │   │   ├── sync_dlg.cpython-36.pyc
  407. │   │   │   │   ├── tag_completer.cpython-36.pyc
  408. │   │   │   │   ├── tag_line_edit.cpython-36.pyc
  409. │   │   │   │   ├── tag_tree_wdgt.cpython-36.pyc
  410. │   │   │   │   ├── tip_after_starting_n_times.cpython-36.pyc
  411. │   │   │   │   ├── tip_dlg.cpython-36.pyc
  412. │   │   │   │   ├── ui_about_dlg.cpython-36.pyc
  413. │   │   │   │   ├── ui_activate_cards_dlg.cpython-36.pyc
  414. │   │   │   │   ├── ui_add_cards_dlg.cpython-36.pyc
  415. │   │   │   │   ├── ui_add_tags_dlg.cpython-36.pyc
  416. │   │   │   │   ├── ui_browse_cards_dlg.cpython-36.pyc
  417. │   │   │   │   ├── ui_card_set_name_dlg.cpython-36.pyc
  418. │   │   │   │   ├── ui_change_card_type_dlg.cpython-36.pyc
  419. │   │   │   │   ├── ui_clone_card_type_dlg.cpython-36.pyc
  420. │   │   │   │   ├── ui_compact_database_dlg.cpython-36.pyc
  421. │   │   │   │   ├── ui_configuration_dlg.cpython-36.pyc
  422. │   │   │   │   ├── ui_configuration_wdgt_card_appearance.cpython-36.pyc
  423. │   │   │   │   ├── ui_configuration_wdgt_main.cpython-36.pyc
  424. │   │   │   │   ├── ui_configuration_wdgt_servers.cpython-36.pyc
  425. │   │   │   │   ├── ui_configuration_wdgt_study.cpython-36.pyc
  426. │   │   │   │   ├── ui_convert_card_type_keys_dlg.cpython-36.pyc
  427. │   │   │   │   ├── ui_criterion_wdgt_default.cpython-36.pyc
  428. │   │   │   │   ├── ui_delete_unused_media_files_dlg.cpython-36.pyc
  429. │   │   │   │   ├── ui_edit_card_dlg.cpython-36.pyc
  430. │   │   │   │   ├── ui_edit_M_sided_card_template_wdgt.cpython-36.pyc
  431. │   │   │   │   ├── ui_edit_M_sided_card_type_dlg.cpython-36.pyc
  432. │   │   │   │   ├── ui_export_dlg.cpython-36.pyc
  433. │   │   │   │   ├── ui_export_metadata_dlg.cpython-36.pyc
  434. │   │   │   │   ├── ui_getting_started_dlg.cpython-36.pyc
  435. │   │   │   │   ├── ui_import_dlg.cpython-36.pyc
  436. │   │   │   │   ├── ui_main_wdgt.cpython-36.pyc
  437. │   │   │   │   ├── ui_manage_card_types_dlg.cpython-36.pyc
  438. │   │   │   │   ├── ui_manage_plugins_dlg.cpython-36.pyc
  439. │   │   │   │   ├── ui_preview_cards_dlg.cpython-36.pyc
  440. │   │   │   │   ├── ui_remove_tags_dlg.cpython-36.pyc
  441. │   │   │   │   ├── ui_rename_card_type_dlg.cpython-36.pyc
  442. │   │   │   │   ├── ui_rename_tag_dlg.cpython-36.pyc
  443. │   │   │   │   ├── ui_review_wdgt.cpython-36.pyc
  444. │   │   │   │   ├── ui_statistics_dlg.cpython-36.pyc
  445. │   │   │   │   ├── ui_sync_dlg.cpython-36.pyc
  446. │   │   │   │   └── ui_tip_dlg.cpython-36.pyc
  447. │   │   │   ├── pyqt_render_chain.py
  448. │   │   │   ├── qpushbutton2.py
  449. │   │   │   ├── qtextedit2.py
  450. │   │   │   ├── qt_sync_server.py
  451. │   │   │   ├── qt_translator.py
  452. │   │   │   ├── qt_web_server.py
  453. │   │   │   ├── qt_worker_thread.py
  454. │   │   │   ├── qwebengineview2.py
  455. │   │   │   ├── remove_tags_dlg.py
  456. │   │   │   ├── review_wdgt_cramming.py
  457. │   │   │   ├── review_wdgt.py
  458. │   │   │   ├── statistics_dlg.py
  459. │   │   │   ├── statistics_wdgt_html.py
  460. │   │   │   ├── statistics_wdgts_plotting.py
  461. │   │   │   ├── sync_dlg.py
  462. │   │   │   ├── tag_completer.py
  463. │   │   │   ├── tag_line_edit.py
  464. │   │   │   ├── tag_tree_wdgt.py
  465. │   │   │   ├── tip_after_starting_n_times.py
  466. │   │   │   ├── tip_dlg.py
  467. │   │   │   ├── ui_about_dlg.py
  468. │   │   │   ├── ui_activate_cards_dlg.py
  469. │   │   │   ├── ui_add_cards_dlg.py
  470. │   │   │   ├── ui_add_tags_dlg.py
  471. │   │   │   ├── ui_browse_cards_dlg.py
  472. │   │   │   ├── ui_card_set_name_dlg.py
  473. │   │   │   ├── ui_change_card_type_dlg.py
  474. │   │   │   ├── ui_clone_card_type_dlg.py
  475. │   │   │   ├── ui_compact_database_dlg.py
  476. │   │   │   ├── ui_configuration_dlg.py
  477. │   │   │   ├── ui_configuration_wdgt_card_appearance.py
  478. │   │   │   ├── ui_configuration_wdgt_main.py
  479. │   │   │   ├── ui_configuration_wdgt_servers.py
  480. │   │   │   ├── ui_configuration_wdgt_study.py
  481. │   │   │   ├── ui_convert_card_type_keys_dlg.py
  482. │   │   │   ├── ui_criterion_wdgt_default.py
  483. │   │   │   ├── ui_delete_unused_media_files_dlg.py
  484. │   │   │   ├── ui_edit_card_dlg.py
  485. │   │   │   ├── ui_edit_M_sided_card_template_wdgt.py
  486. │   │   │   ├── ui_edit_M_sided_card_type_dlg.py
  487. │   │   │   ├── ui_export_dlg.py
  488. │   │   │   ├── ui_export_metadata_dlg.py
  489. │   │   │   ├── ui_getting_started_dlg.py
  490. │   │   │   ├── ui_import_dlg.py
  491. │   │   │   ├── ui_main_wdgt.py
  492. │   │   │   ├── ui_manage_card_types_dlg.py
  493. │   │   │   ├── ui_manage_plugins_dlg.py
  494. │   │   │   ├── ui_preview_cards_dlg.py
  495. │   │   │   ├── ui_remove_tags_dlg.py
  496. │   │   │   ├── ui_rename_card_type_dlg.py
  497. │   │   │   ├── ui_rename_tag_dlg.py
  498. │   │   │   ├── ui_review_wdgt.py
  499. │   │   │   ├── ui_statistics_dlg.py
  500. │   │   │   ├── ui_sync_dlg.py
  501. │   │   │   └── ui_tip_dlg.py
  502. │   │   ├── script
  503. │   │   │   ├── __init__.py
  504. │   │   │   └── __pycache__
  505. │   │   │   └── __init__.cpython-36.pyc
  506. │   │   ├── version.py
  507. │   │   └── web_server
  508. │   │   ├── __init__.py
  509. │   │   ├── jquery_mb_html5_audio.py
  510. │   │   ├── __pycache__
  511. │   │   │   ├── __init__.cpython-36.pyc
  512. │   │   │   ├── jquery_mb_html5_audio.cpython-36.pyc
  513. │   │   │   ├── review_wdgt.cpython-36.pyc
  514. │   │   │   ├── simple_html5_audio.cpython-36.pyc
  515. │   │   │   ├── web_server.cpython-36.pyc
  516. │   │   │   ├── web_server_render_chain.cpython-36.pyc
  517. │   │   │   └── web_server_renderer.cpython-36.pyc
  518. │   │   ├── review_wdgt.py
  519. │   │   ├── simple_html5_audio.py
  520. │   │   ├── web_server.py
  521. │   │   ├── web_server_render_chain.py
  522. │   │   └── web_server_renderer.py
  523. │   ├── Mnemosyne-2.6.1.dist-info
  524. │   │   ├── INSTALLER
  525. │   │   ├── METADATA
  526. │   │   ├── RECORD
  527. │   │   ├── top_level.txt
  528. │   │   └── WHEEL
  529. │   └── openSM2sync
  530. │   ├── binary_format.py
  531. │   ├── binary_formats
  532. │   │   ├── __init__.py
  533. │   │   ├── mnemosyne_format.py
  534. │   │   └── __pycache__
  535. │   │   ├── __init__.cpython-36.pyc
  536. │   │   └── mnemosyne_format.cpython-36.pyc
  537. │   ├── client.py
  538. │   ├── database.py
  539. │   ├── __init__.py
  540. │   ├── log_entry.py
  541. │   ├── partner.py
  542. │   ├── __pycache__
  543. │   │   ├── binary_format.cpython-36.pyc
  544. │   │   ├── client.cpython-36.pyc
  545. │   │   ├── database.cpython-36.pyc
  546. │   │   ├── __init__.cpython-36.pyc
  547. │   │   ├── log_entry.cpython-36.pyc
  548. │   │   ├── partner.cpython-36.pyc
  549. │   │   ├── server.cpython-36.pyc
  550. │   │   ├── text_format.cpython-36.pyc
  551. │   │   ├── ui.cpython-36.pyc
  552. │   │   └── utils.cpython-36.pyc
  553. │   ├── server.py
  554. │   ├── text_format.py
  555. │   ├── text_formats
  556. │   │   ├── __init__.py
  557. │   │   ├── __pycache__
  558. │   │   │   ├── __init__.cpython-36.pyc
  559. │   │   │   └── xml_format.cpython-36.pyc
  560. │   │   └── xml_format.py
  561. │   ├── ui.py
  562. │   └── utils.py
  563. ├── nix-support
  564. │   ├── propagated-build-inputs
  565. │   └── propagated-user-env-packages
  566. └── share
  567. ├── applications
  568. │   └── mnemosyne.desktop
  569. ├── icons
  570. │   └── mnemosyne.png
  571. └── locale
  572. ├── ca
  573. │   └── LC_MESSAGES
  574. │   └── mnemosyne.mo
  575. ├── ca@valencia
  576. │   └── LC_MESSAGES
  577. │   └── mnemosyne.mo
  578. ├── cs
  579. │   └── LC_MESSAGES
  580. │   └── mnemosyne.mo
  581. ├── da
  582. │   └── LC_MESSAGES
  583. │   └── mnemosyne.mo
  584. ├── de
  585. │   └── LC_MESSAGES
  586. │   └── mnemosyne.mo
  587. ├── eo
  588. │   └── LC_MESSAGES
  589. │   └── mnemosyne.mo
  590. ├── es
  591. │   └── LC_MESSAGES
  592. │   └── mnemosyne.mo
  593. ├── fa
  594. │   └── LC_MESSAGES
  595. │   └── mnemosyne.mo
  596. ├── fr
  597. │   └── LC_MESSAGES
  598. │   └── mnemosyne.mo
  599. ├── gl
  600. │   └── LC_MESSAGES
  601. │   └── mnemosyne.mo
  602. ├── he
  603. │   └── LC_MESSAGES
  604. │   └── mnemosyne.mo
  605. ├── hr
  606. │   └── LC_MESSAGES
  607. │   └── mnemosyne.mo
  608. ├── hu
  609. │   └── LC_MESSAGES
  610. │   └── mnemosyne.mo
  611. ├── id
  612. │   └── LC_MESSAGES
  613. │   └── mnemosyne.mo
  614. ├── it
  615. │   └── LC_MESSAGES
  616. │   └── mnemosyne.mo
  617. ├── ja
  618. │   └── LC_MESSAGES
  619. │   └── mnemosyne.mo
  620. ├── nb
  621. │   └── LC_MESSAGES
  622. │   └── mnemosyne.mo
  623. ├── nl
  624. │   └── LC_MESSAGES
  625. │   └── mnemosyne.mo
  626. ├── pl
  627. │   └── LC_MESSAGES
  628. │   └── mnemosyne.mo
  629. ├── pt
  630. │   └── LC_MESSAGES
  631. │   └── mnemosyne.mo
  632. ├── pt_BR
  633. │   └── LC_MESSAGES
  634. │   └── mnemosyne.mo
  635. ├── ru
  636. │   └── LC_MESSAGES
  637. │   └── mnemosyne.mo
  638. ├── sr
  639. │   └── LC_MESSAGES
  640. │   └── mnemosyne.mo
  641. ├── sv
  642. │   └── LC_MESSAGES
  643. │   └── mnemosyne.mo
  644. ├── tr
  645. │   └── LC_MESSAGES
  646. │   └── mnemosyne.mo
  647. ├── uk
  648. │   └── LC_MESSAGES
  649. │   └── mnemosyne.mo
  650. ├── zh_CN
  651. │   └── LC_MESSAGES
  652. │   └── mnemosyne.mo
  653. ├── zh_HK
  654. │   └── LC_MESSAGES
  655. │   └── mnemosyne.mo
  656. └── zh_TW
  657. └── LC_MESSAGES
  658. └── mnemosyne.mo
  659.  
  660. 122 directories, 535 files
Add Comment
Please, Sign In to add comment