| 1 |
vapier |
1.5 |
Developers to contact:
|
| 2 |
|
|
solar@gentoo.org
|
| 3 |
|
|
vapier@gentoo.org
|
| 4 |
|
|
|
| 5 |
solar |
1.1 |
/* Add notes here */
|
| 6 |
solar |
1.3 |
|
| 7 |
vapier |
1.6 |
- relative qfile doesnt quite work:
|
| 8 |
|
|
$ cd /bin
|
| 9 |
|
|
$ qfile bash
|
| 10 |
|
|
app-shells/bash (/bin/bash)
|
| 11 |
|
|
app-shells/bash (/etc/bash)
|
| 12 |
|
|
|
| 13 |
solar |
1.8 |
-- We cant/wont do relative paths unless we force dot slash ./behavior
|
| 14 |
|
|
|
| 15 |
solar |
1.3 |
- multiline reads don't yet work for quse/qsearch
|
| 16 |
|
|
|
| 17 |
|
|
- quse needs a rewrite.
|
| 18 |
|
|
|
| 19 |
|
|
- Fetching via anoncvs.
|
| 20 |
|
|
The cvs module for gentoo-projects is mirrored. You may download a
|
| 21 |
|
|
pretty recent copy using the following command. Note: that this is not
|
| 22 |
|
|
the official cvs server but rather a mirror so it lags about an hour or
|
| 23 |
|
|
so behind the real tree which is hosted on cvs.gentoo.org
|
| 24 |
|
|
|
| 25 |
|
|
cvs -d:pserver:anonymous@zarquon.twobit.net:/var/cvsroot -q -z9 co -R gentoo-projects/portage-utils
|
| 26 |
|
|
|
| 27 |
|
|
- Adding applets is easy using the q framework.
|
| 28 |
|
|
cp template.c qmyapplet.c (all applets use the prefix of the letter 'q')
|
| 29 |
|
|
edit applets.h add your prototype, applet definition to the enum then
|
| 30 |
|
|
incr LAST_APPLET. Scroll down the typedef for applets[] and add your
|
| 31 |
|
|
applet name following the existing syntax. Please try to keep applet
|
| 32 |
vapier |
1.7 |
names under 8 chars. Finally, edit main.c, scroll to the bottom, and
|
| 33 |
|
|
add your applet to the #include list.
|
| 34 |
solar |
1.3 |
|
| 35 |
solar |
1.4 |
When and where you can please try to use an existing applet and extend
|
| 36 |
|
|
on it's functionality by adding more options vs adding a bunch of new
|
| 37 |
|
|
little applets.
|