File: TODO

package info (click to toggle)
webdar 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 5,428 kB
  • sloc: cpp: 36,257; sh: 5,184; makefile: 91; sed: 16
file content (85 lines) | stat: -rw-r--r-- 5,067 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Here is the task to do to get ready for release 1.0.0
========================================================
+ review all classes, virtual/override, move constructor & Co

+ have compliance with HTTP/1.1, this work is mainly at the server class layer
  where a answer has to be added field and updated version depending on the
  corresponding request. See RFC in the RFC subdirectory
+ add stop condition for a listener and thus webdar process (GUI choice, CTRL-C)
+ check how to avoid muliple field validation (update buttons), and have the
  global action button to imply all fields update (more natural GUI interaction)
+ add viewport and associated fiels in the return HTML pages to be readable on
  mobiles
+ manage CSS out of HTML, object use css classes and give use only available
  classes. A static catalog of CSS class defines and exposes the list of classes
  only the requested classes get included in the HTML header. => not sure to be
  a good idea
+ review all static std::string -> static constexpr char name[] = "initialisateur";

+ provide html interface for class libdar::entrepot in order to let the user
  select a directory on the local filesystem or a existing file on the local
  filesystem, this could be launched beside html_form_input fields of the class
  saisie as an alternative to fill them clicking on a button-like element beside
  these fields. Maybe abstracting the html_tree class could avoid code
  duplication for that task.
+ add a way to navigate in directory repo tree when defining/reading an backup
+ add a way to navigate in the local dir for looking for the root filesystem
- add a semaphore to control the number of running libdar task (listing task
  not being concerned by this).
+ add html interface for building filters
+ have a base of filters with prepolated default an no-compress
+ add filter features to the many place it is used in libdar (file filtering,
  compression filtering, etc.) take the name from the base of filters
+ add html interface for the overwriting policy (similar to the filter html
  interface in the way of doing)
+ add a base of overwriting policies with prepopulated defaults ones
- add help area on the right to provide information on the action and role of
  the libdar options available on the displayed page (-> rather use a tooltips)
+ provide a base of options sets (for the different operations, prepopulated
  with the defaults sets)
+ implement the entrepot_ftp class descendant from libdar::entrepot. As well as
  the fichier_ftp descendant from libdar::fichier
+ add html interface to configure the entrepot_ftp object
+ define a library of entrepot, libdar::entrepot_local always being available
  beside user defined entrepot_ftp objects
x provide option selectable field beside each slice path to one of the
  available entrepot of the library entrepot
- add licencing exhibition from command-line (in addition as the already done
  static object displayed using web interface)
+ add libdar information display on the about pages
+ define a webdar logo and favicon small image, using povray
+ define building tools to add these two pictures as static object
+ make use of automake autoconf for portability and for
  configuration/compilation/installation processes
x add the ability to store and load filters, overwriting policies, options sets,
  in a DCF file ($HOME/.webdar by default) as many user target with name
  of the form webdar-<type>-<user provided label> --> better: relying on json
x add the ability to export a command as CLI for dar using with DCF as name and
  cron label to provide user management of dar command lines.
x option to test that cron works (sending an email or what makes sense)
+ make use of doxygen to build webdar code documentation
+ implement save/backup of webdar configuration through web interface

to be tested/reviewed before release 1.0.0
===========================================
- build an archive with more than 2M entry in a given directory, check the
  archive listing and time performance (should be long,...)
+ review class menu implementation to make use of html_button instead of its
  self made construction => why???
+ check that all libdar parameters are now configurable through webdar
+ review html_form_input to use libdar::secu_string when password are used
+ check the way webdar behaves upon signal reception when a libdar session is
  running or not
- review -v option to provide the exact type of priority to log or not to log
- review the use of sterror (not thread safe), either use errno (thread safe!)
  or strerror_r

for future releases (after 1.0.0)
==================================
+ implement HTTPS (requiring a ceriticat from file given on webdar command-line)
- implement authentication method using the system users (define a command-line
  switch to select this mode or the original using random temporary password)
- implement daemon mode, in which report goes to syslog and process detach
  itslelf from controlling tty
- implement scheduling to run/enqueue task at given time and period