<div dir="ltr">With your good work you made my work so ugly and useless :)<div><br></div><div>Best,</div><div><br></div><div>Marco</div></div><div class="gmail_extra"><br><div class="gmail_quote">2016-07-01 21:24 GMT+02:00 Fred Jan Kraan <span dir="ltr"><<a href="mailto:fjkraan@xs4all.nl" target="_blank">fjkraan@xs4all.nl</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Marco,<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
Dear list,<br>
<br>
@Miller: thank you for your suggestion. However I used all my (very<br>
limited) bash knowledge and I wrote a simple script that searches the<br>
name in the gensym function after the class_new declaration. Using then<br>
find I look on all src folder.<br>
<br>
@Fred: thank you for your words. If my bash knowledge is limited, my web<br>
knowledge is almost zero. However, if it will be possible to open a page<br></span>
on <a href="http://puredata.info" rel="noreferrer" target="_blank">puredata.info</a> <<a href="http://puredata.info" rel="noreferrer" target="_blank">http://puredata.info</a>> and upload the list sorted (by<span class=""><br>
library?) I will do it. But I don't know how to create a page on<br>
</span><a href="http://puredata.info" rel="noreferrer" target="_blank">puredata.info</a> <<a href="http://puredata.info" rel="noreferrer" target="_blank">http://puredata.info</a>> or similar.<br>
</blockquote>
<br>
My approach is to get a list of object names from the *-help.pd patches. Combined with a search function in the <a href="http://puredata.info" rel="noreferrer" target="_blank">puredata.info</a> server this could result in a object search as part of the deken "Find externals"-plugin. See <a href="https://github.com/pure-data/deken/issues/133" rel="noreferrer" target="_blank">https://github.com/pure-data/deken/issues/133</a> for more details.<span class=""><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
In attachment, the script (just chmod +x objlist.sh ) and the zexy<br>
object list obtained in this way:<br>
find ./zexy/src -name '*.c' -exec ./objlist.sh {} \; > zexy.txt<br>
</blockquote>
<br></span>
The objects list I created(1) also have a description harvested from the META subpatch found in most pd-extended help patches and added by Jonathan Wilkes. The first envisioned version will probably not use it, but it could get useful to find the right object if the search result offers two different ones with the same name.<span class=""><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
A final note: I am on OS X, so no GNU sed. I downloaded the GNU sed from<br>
MacPorts (gsed). In the script we have to change gsed with sed.<br>
<br>
Best regards,<br>
<br>
Marco<br>
</blockquote>
<br></span>
Greetings,<br>
<br>
Fred Jan<br>
<br>
1) using a ugly Perl script, but I'll try to make a Python version to match the deken build/package/upload tool.<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
<br>
2016-06-23 17:53 GMT+02:00 Miller Puckette <<a href="mailto:msp@ucsd.edu" target="_blank">msp@ucsd.edu</a><br></span>
<mailto:<a href="mailto:msp@ucsd.edu" target="_blank">msp@ucsd.edu</a>>>:<div><div class="h5"><br>
<br>
    Suggestion:  in m_class.c, uncomment this line:<br>
<br>
    #if 0<br>
         post("class: %s", c->c_name->s_name);<br>
    #endif<br>
<br>
    Then load the libraries one by one - you'll be rewarded with a<br>
    printout of<br>
    all created classes.  If you only want to see ones you can tye in a box<br>
    (supressing invisible helper objects), instead make it:<br>
<br>
         if (typeflag == CLASS_PATCHABLE)<br>
             post("class: %s", c->c_name->s_name);<br>
<br>
    cheers<br>
    Miller<br>
<br>
<br>
    On Thu, Jun 23, 2016 at 05:41:13PM +0200, Fred Jan Kraan wrote:<br>
     > Hi Marco,<br>
     ><br>
     > >Dear all,<br>
     > ><br>
     > >in these days several guys complaint with me about the difficulty of<br>
     > >finding one particular external in the sea called Deken. The main<br>
     > >problem is that people have patches on Extended and the<br>
    difficult task<br>
     > >is to switch on Vanilla + Deken.<br>
     > ><br>
     > >So, the most trivial solution that comes to my mind is to create<br>
    a Latex<br>
     > >template where put for each library several infos like the name<br>
    of the<br>
     > >library, the maintainer, the version, and the list of objs maybe<br>
    with<br>
     > >same extra informations. My idea is to provide a general latex<br>
    template<br>
     > >and people can help this project downloading the template and<br>
    then start<br>
     > >to put all informations.<br>
     > ><br>
     > >However, the main point is: it si useful? I mean Floss[1] provides<br>
     > >something similar, and before to start this project I was just<br>
    wondering<br>
     > >about its concrete helpfulness. Maybe something similar is<br>
    present and<br>
     > >simply I don't know about it. In these case, it could be an idea to<br>
     > >upload it on Deken and when people just press "enter" or some typos<br>
     > >Deken can suggest to download this pdf.<br>
     > ><br>
     > >Finally, an object list can be useful to understand who is<br>
    maintaining<br>
     > >what and what is actually not maintained.<br>
     > ><br>
     > >Probably it's only a boring idea. Let me know.<br>
     ><br>
     > Yes, I think it would be useful. If it was web-based, it could<br>
    even help<br>
     > deken suggest libraries with same or similar named objects.<br>
    Libraries do not<br>
     > change very much these days, so even an one time effort will be<br>
    useful for<br>
     > some years.<br>
     ><br>
     > ><br>
     > >Best regards.<br>
     > ><br>
     > >[1]: <a href="http://en.flossmanuals.net/pure-data/ch072_introduction/" rel="noreferrer" target="_blank">http://en.flossmanuals.net/pure-data/ch072_introduction/</a><br>
     ><br>
     > Greetings,<br>
     ><br>
     > Fred Jan<br>
     > ><br>
     > ><br>
     > >_______________________________________________<br>
     > >Pd-dev mailing list<br></div></div>
     > ><a href="mailto:Pd-dev@lists.iem.at" target="_blank">Pd-dev@lists.iem.at</a> <mailto:<a href="mailto:Pd-dev@lists.iem.at" target="_blank">Pd-dev@lists.iem.at</a>><span class=""><br>
     > ><a href="https://lists.puredata.info/listinfo/pd-dev" rel="noreferrer" target="_blank">https://lists.puredata.info/listinfo/pd-dev</a><br>
     > ><br>
     ><br>
     > _______________________________________________<br>
     > Pd-dev mailing list<br></span>
     > <a href="mailto:Pd-dev@lists.iem.at" target="_blank">Pd-dev@lists.iem.at</a> <mailto:<a href="mailto:Pd-dev@lists.iem.at" target="_blank">Pd-dev@lists.iem.at</a>><span class=""><br>
     > <a href="https://lists.puredata.info/listinfo/pd-dev" rel="noreferrer" target="_blank">https://lists.puredata.info/listinfo/pd-dev</a><br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
Pd-dev mailing list<br>
<a href="mailto:Pd-dev@lists.iem.at" target="_blank">Pd-dev@lists.iem.at</a><br>
<a href="https://lists.puredata.info/listinfo/pd-dev" rel="noreferrer" target="_blank">https://lists.puredata.info/listinfo/pd-dev</a><br>
<br>
</span></blockquote>
</blockquote></div><br></div>