1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-01-03 14:57:44 -05:00
This commit is contained in:
Kalle Olavi Niemitalo 2007-05-30 03:06:42 +03:00 committed by Kalle Olavi Niemitalo
commit 5ad9e40c1b
4 changed files with 300 additions and 290 deletions

28
TODO
View File

@ -1,24 +1,16 @@
The ELinks TODO items are kept in Bugzilla (http://bugzilla.elinks.cz/),
look for the bugs with 'enhancement' severity. Some generic goals are still
kept here, though, to be more on the developers' eyes ;-).
What yet needs to take its way to Bugzilla:
Some rules for sane handling of texinfo documentation
Rewrite HTML parser (see the SGML+DOM stuff, src/document/sgml)
Reorganization of user interface (nothing particular at all, just an
uncertain feel that it could be better and bear a look of some UI designer ;)
TODO list
=========
The ELinks TODO items are kept in Bugzilla <http://bugzilla.elinks.cz/>;
look for the bugs with 'enhancement' severity. More general goals are
still kept here, though, to be more visible to developers. ;-) Finally,
the code contains several (greppable) "FIXME" and "TODO" notes regarding
smaller fixes and enhancements.
General goals:
Write some more documentation.. docs, a lot of docs!
General code cleanup
Speed/memory optimizations
- Write more documentation; docs, a lot of docs!
- General code cleanup
- Speed/memory optimizations

537
po/fr.po

File diff suppressed because it is too large Load Diff

View File

@ -158,10 +158,6 @@ redir_set(struct option *opt, unsigned char *str)
}
static int
redir_add(struct option *opt, unsigned char *str)
wrap_or_(add, add(real, str), 0);
/* Support functions for config file parsing. */
@ -400,21 +396,21 @@ tree_dup(struct option *opt, struct option *template)
}
const struct option_type_info option_types[] = {
{ N_("Boolean"), bool_cmd, num_rd, num_wr, NULL, num_set, NULL, N_("[0|1]") },
{ N_("Integer"), gen_cmd, num_rd, num_wr, NULL, num_set, NULL, N_("<num>") },
{ N_("Longint"), gen_cmd, num_rd, long_wr, NULL, long_set, NULL, N_("<num>") },
{ N_("String"), gen_cmd, str_rd, str_wr, str_dup, str_set, NULL, N_("<str>") },
{ N_("Boolean"), bool_cmd, num_rd, num_wr, NULL, num_set, N_("[0|1]") },
{ N_("Integer"), gen_cmd, num_rd, num_wr, NULL, num_set, N_("<num>") },
{ N_("Longint"), gen_cmd, num_rd, long_wr, NULL, long_set, N_("<num>") },
{ N_("String"), gen_cmd, str_rd, str_wr, str_dup, str_set, N_("<str>") },
{ N_("Codepage"), gen_cmd, str_rd, cp_wr, NULL, cp_set, NULL, N_("<codepage>") },
{ N_("Language"), gen_cmd, str_rd, lang_wr, NULL, lang_set, NULL, N_("<language>") },
{ N_("Color"), gen_cmd, str_rd, color_wr, NULL, color_set, NULL, N_("<color|#rrggbb>") },
{ N_("Codepage"), gen_cmd, str_rd, cp_wr, NULL, cp_set, N_("<codepage>") },
{ N_("Language"), gen_cmd, str_rd, lang_wr, NULL, lang_set, N_("<language>") },
{ N_("Color"), gen_cmd, str_rd, color_wr, NULL, color_set, N_("<color|#rrggbb>") },
{ N_("Special"), exec_cmd, NULL, NULL, NULL, NULL, NULL, "" },
{ N_("Special"), exec_cmd, NULL, NULL, NULL, NULL, "" },
{ N_("Alias"), redir_cmd, redir_rd, redir_wr, NULL, redir_set, redir_add, "" },
{ N_("Alias"), redir_cmd, redir_rd, redir_wr, NULL, redir_set, "" },
/* tree */
{ N_("Folder"), NULL, NULL, NULL, tree_dup, NULL, NULL, "" },
{ N_("Folder"), NULL, NULL, NULL, tree_dup, NULL, "" },
};
unsigned char *

View File

@ -11,7 +11,6 @@ struct option_type_info {
void (*write)(struct option *, struct string *);
void (*dup)(struct option *, struct option *);
int (*set)(struct option *, unsigned char *);
int (*add)(struct option *, unsigned char *);
unsigned char *help_str;
};