Extension Development :: Note to extension builders



Wow, thanks for the tip:
Code Sample
find foo -not -type d
I won't have to manually delete directories from the list again..

Typically I do something like (written out nicely)
Code Sample
for each in `find .`
do
 if [ ! -d "${each}" ]
 then
   echo "${each}" >> list_of_files
 fi
done
Although probably easier to save/use it in a script (changing the echo line)

wow, and i've been merging two files all this time,
one with find -type f and the other with find -type l .

nice tip.

i was confused with apps.dsl and apps.uci, its seems that the user.tar.gz in app.uci only needs the path to menu and to desktop files but i have a question : how its made a user.tar.gz polyvalent to ver dsl 3.x and 4.x ?the only point in common its the mydsl.menu  the location of icons and desk files are different...

how i can add lines to user.tar.gz to copy icons to desk folders...

how i can see user.tar.gz of other apps.uci for benchmarking intention...

thanks.

pd. the thunderbird2009.es.uci its running in dsl ver 4.1 but with snubs icons and boxes

Quote (kuky @ Dec. 07 2007,02:44)
how i can see user.tar.gz of other apps.uci for benchmarking intention...

You can:
1. Load uci: 'mydsl-load foo.uci'
2. 'user.tar.gz' is found at '/opt/foo/user.tar.gz'.

Or:
1. 'extract_compressed_fs foo.uci > xxx.iso'
2. 'mount -o loop xxx.iso <dir>'
3. 'user.tar.gz' is found at '<dir>/user.tar.gz'.

Next Page...
original here.