Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30183
Modified Files:
Tag: devel_0_39
TODO desire.c
Log Message:
.
Index: TODO
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/TODO,v
retrieving revision 1.1.2.17
retrieving revision 1.1.2.18
diff -C2 -d -r1.1.2.17 -r1.1.2.18
*** TODO 15 Sep 2006 07:37:22 -0000 1.1.2.17
--- TODO 18 Sep 2006 00:12:59 -0000 1.1.2.18
***************
*** 49,52 ****
--- 49,53 ----
[ ] implement def Canvas tidy
[ ] localize error messages
+ [ ] doc missing because of branch boundary problem (e.g. need: cvs update -A pd/doc)
server:
***************
*** 299,308 ****
en: english [x] [x] [x] [x|_] [x|x|x]
de: deutsch [x] [x] [x] [_|_] [_|_|_]
! nb: bokmål [x] [x] [x] [_|_] [_|_|_]
it: italiano [x] [x] [x] [_|_] [_|_|_]
! pt: português [x] [_] [_] [x|_] [_|_|_]
! fr: français [x] [_] [_] [_|_] [_|_|_]
! ca: català [x] [_] [_] [_|_] [_|_|_]
! es: español [x] [_] [_] [_|_] [_|_|_]
------------------8<--------cut-here--------8<------------------
--- 300,309 ----
en: english [x] [x] [x] [x|_] [x|x|x]
de: deutsch [x] [x] [x] [_|_] [_|_|_]
! nb: bokmᅵ [x] [x] [x] [_|_] [_|_|_]
it: italiano [x] [x] [x] [_|_] [_|_|_]
! pt: portuguᅵ [x] [_] [_] [x|_] [_|_|_]
! fr: franï¿œis [x] [_] [_] [_|_] [_|_|_]
! ca: catalᅵ [x] [_] [_] [_|_] [_|_|_]
! es: espaï¿œl [x] [_] [_] [_|_] [_|_|_]
------------------8<--------cut-here--------8<------------------
Index: desire.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v
retrieving revision 1.1.2.181
retrieving revision 1.1.2.182
diff -C2 -d -r1.1.2.181 -r1.1.2.182
*** desire.c 16 Sep 2006 04:20:28 -0000 1.1.2.181
--- desire.c 18 Sep 2006 00:12:59 -0000 1.1.2.182
***************
*** 7849,7852 ****
--- 7849,7862 ----
char *class_gethelpdir(t_class *c);
+ void post_helppath(void) {
+ t_namelist *t = sys_helppath;
+ post("<helppath>");
+ while (t) {
+ post("%s",t->nl_string);
+ t=t->nl_next;
+ }
+ post("</helppath>");
+ }
+
void glob_help(t_pd *bogus, t_symbol *s) {
char namebuf[MAXPDSTRING], *dir;
***************
*** 7856,7859 ****
--- 7866,7870 ----
dir = class_gethelpdir(c);
if (strcmp(namebuf + strlen(namebuf) - 3, ".pd")) strcat(namebuf, ".pd");
+ //post_helppath();
open_via_helppath(namebuf, dir);
}
***************
*** 7893,7906 ****
void desire_glob_init(void) {
! class_addmethod(glob_pdobject, (t_method)glob_update_class_list,
! gensym("update-class-list"), A_SYMBOL, A_SYMBOL, 0);
! class_addmethod(glob_pdobject, (t_method)glob_update_class_info,
! gensym("update-class-info"), A_SYMBOL, A_SYMBOL, A_SYMBOL, 0);
! class_addmethod(glob_pdobject, (t_method)glob_update_path,
! gensym("update-path"), 0);
! class_addmethod(glob_pdobject, (t_method)glob_help,
! gensym("help"), A_SYMBOL, 0);
! class_addmethod(glob_pdobject, (t_method)glob_redraw,
! gensym("redraw"), 0);
}
--- 7904,7912 ----
void desire_glob_init(void) {
! class_addmethod3(glob_pdobject, glob_update_class_list, "update-class-list", "ss");
! class_addmethod3(glob_pdobject, glob_update_class_info, "update-class-info", "sss");
! class_addmethod3(glob_pdobject, glob_update_path, "update-path", "");
! class_addmethod3(glob_pdobject, glob_help, "help", "s");
! class_addmethod3(glob_pdobject, glob_redraw, "redraw", "");
}