* Re: new alsa docs. [not found] <Pine.LNX.4.44.0208061855490.23759-100000@yme.mo.himolde.no> @ 2002-08-08 15:56 ` Patrick Shirkey 2002-08-09 6:25 ` Antti Boman 0 siblings, 1 reply; 17+ messages in thread From: Patrick Shirkey @ 2002-08-08 15:56 UTC (permalink / raw) To: ALSA Development Does anybody know how to get all the text from a text area to post when it includes " and ' marks? I am using stripslashes($var) to pass the variable between pages with success but when I do the final post if I use "" around the VALUE in the input line the text gets cut off at the first " or if I use '' the text gets cut off at the first '. eg. <INPUT NAME='note' TYPE='hidden' VALUE="<?echo stripslashes($note); ?>"> or <INPUT NAME='note' TYPE='hidden' VALUE='<?echo stripslashes($note); ?>'> This is the script I am using to mail the form. I suspect that the mail command at the very bottom is fscking it but I'm not sure how I can fix it. ---- <? if ($extradoc) { $notename = $extradoc; } else { $notename = $module; } $MailToAddress = "pshirkey@boosthardware.com"; $MailSubject = "ALSA: doc notes additions"; if (!$YourAddress) { $YourAddress = "Null"; } $Header = "The following has been submitted as a note for the documentation of $notename. Save this as /alsa-doc/additions/$notename.php3. If there is not a file already you may need to use the template. Don't forget to add any new pages to cvs.\n cvs add www/alsa-doc/additions/$notename.php3"; $Footer = ""; $Name = (stripslashes($Name)); $YourAddress = (stripslashes($YourAddress)); $time = (stripslashes($time)); $note = (stripslashes($note)); $Message .= " <table border=\"0\" cellpadding=\"4\" cellspacing=\"0\" width=\"620\">\n"; $Message .= " <tr valign=\"top\">\n"; $Message .= " <td bgcolor=\"#bed1be\" colspan=\"2\">\n"; $Message .= " <table border=\"0\" cellpadding=\"2\" cellspacing=\"0\" width=\"620\">\n"; $Message .= " <tr valign=\"top\"><td>\n"; $Message .= " $Name     <a href=\"mailto: $YourAddress\">$YourAddress</a><br>\n"; $Message .= " $time</td>\n"; $Message .= " <td align=\"right\">\n"; $Message .= " <br></td>\n"; $Message .= " </tr>\n"; $Message .= " <tr bgcolor=\"#f0f0f0\"><td colspan=\"2\">\n"; $Message .= " <pre>\n"; $Message .= $note; $Message .= "\n </pre>\n"; $Message .= " </td></tr>\n"; $Message .= " </table>\n"; $Message .= " </td>\n"; $Message .= " </tr>\n"; $Message .= " </table>\n"; if ($Header) { $Message = $Header."\n\n".$Message; } if ($Footer) { $Message .= "\n\n".$Footer; } mail("$MailToAddress", "$MailSubject", "$Message", "From: $YourAddress"); ?> ---- -- Patrick Shirkey - Boost Hardware Ltd. For the discerning hardware connoisseur Http://www.boosthardware.com Http://www.boosthardware.com/LAU/guide/ ======================================== ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-08 15:56 ` new alsa docs Patrick Shirkey @ 2002-08-09 6:25 ` Antti Boman 2002-08-09 6:52 ` Patrick Shirkey 0 siblings, 1 reply; 17+ messages in thread From: Antti Boman @ 2002-08-09 6:25 UTC (permalink / raw) To: Patrick Shirkey; +Cc: ALSA Development Sorry if I didn't understand your problem, but here goes. Patrick Shirkey wrote: > Does anybody know how to get all the text from a text area to post when > it includes " and ' marks? > > I am using stripslashes($var) to pass the variable between pages with > success but when I do the final post if I use "" around the VALUE in the > input line the text gets cut off at the first " or if I use '' the text > gets cut off at the first '. > > eg. > > <INPUT NAME='note' TYPE='hidden' VALUE="<?echo > stripslashes($note); ?>"> > > or > > <INPUT NAME='note' TYPE='hidden' VALUE='<?echo > stripslashes($note); ?>'> Those look the same to me, so I assume you meant the other one with citation marks. Anyway, you should use htmlspecialchars() to turn the special characters interfering html markup (' # & < >) to html entities. So: <INPUT NAME="note" TYPE="hidden" VALUE="<?echo htmlspecialchars(stripslashes($note)); ?>"> > $MailToAddress = "pshirkey@boosthardware.com"; > $MailSubject = "ALSA: doc notes additions"; > if (!$YourAddress) { > $YourAddress = "Null"; > } Hmmm... you're testing $Youraddress for integer, was that the intention? If $Youraddress doesn't contain a number in the beginning of the string, it fails and $Youradddress turns to "Null". I also assumed you're using PHP. Tell me more if I got it completely wrong ;) -a ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-09 6:25 ` Antti Boman @ 2002-08-09 6:52 ` Patrick Shirkey 2002-08-09 7:31 ` Patrick Shirkey ` (2 more replies) 0 siblings, 3 replies; 17+ messages in thread From: Patrick Shirkey @ 2002-08-09 6:52 UTC (permalink / raw) To: Antti Boman; +Cc: ALSA Development Antti Boman wrote: > Sorry if I didn't understand your problem, but here goes. You are right on the money. Now people can send full code examples without it getting chopped. Thanks. > <INPUT NAME="note" TYPE="hidden" VALUE="<?echo > htmlspecialchars(stripslashes($note)); ?>"> > >> $MailToAddress = "pshirkey@boosthardware.com"; >> $MailSubject = "ALSA: doc notes additions"; >> if (!$YourAddress) { >> $YourAddress = "Null"; >> } > > > Hmmm... you're testing $Youraddress for integer, was that the intention? > If $Youraddress doesn't contain a number in the beginning of the string, > it fails and $Youradddress turns to "Null". > oops. I haven't had any problems with it yet. It just adds NULL to the address of the sender which is the alsa server. It's no big deal. -- Patrick Shirkey - Boost Hardware Ltd. For the discerning hardware connoisseur Http://www.boosthardware.com Http://www.boosthardware.com/LAU/guide/ ======================================== ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-09 6:52 ` Patrick Shirkey @ 2002-08-09 7:31 ` Patrick Shirkey 2002-08-10 18:51 ` Frans Ketelaars 2002-08-09 15:27 ` Patrick Shirkey [not found] ` <3D536705.9040705@mindcom.fi> 2 siblings, 1 reply; 17+ messages in thread From: Patrick Shirkey @ 2002-08-09 7:31 UTC (permalink / raw) Cc: ALSA Development To make the module options complete I need someone to send me the output of modinfo $(modprobe -l snd-*) | cat > modules when run on PPC and an ARM and a computer with old PnP cards/slots. Run it as root user. It will write a file called modules to the directory you run it from. -- Patrick Shirkey - Boost Hardware Ltd. For the discerning hardware connoisseur Http://www.boosthardware.com Http://www.boosthardware.com/LAU/guide/ ======================================== ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-09 7:31 ` Patrick Shirkey @ 2002-08-10 18:51 ` Frans Ketelaars 0 siblings, 0 replies; 17+ messages in thread From: Frans Ketelaars @ 2002-08-10 18:51 UTC (permalink / raw) To: alsa-devel On Fri, 09 Aug 2002 16:31:30 +0900 Patrick Shirkey <pshirkey@boosthardware.com> wrote: > To make the module options complete I need someone to send me the output of > > modinfo $(modprobe -l snd-*) | cat > modules > > when run on PPC and an ARM and a computer with old PnP cards/slots. > > Run it as root user. It will write a file called modules to the > directory you run it from. > > -- > Patrick Shirkey - Boost Hardware Ltd. > For the discerning hardware connoisseur > Http://www.boosthardware.com > Http://www.boosthardware.com/LAU/guide/ > ======================================== This is with rc2 on ia32 with all (ISA card) modules. The 64K file is only attached to the message sent to Patrick. HTH, -Frans ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-09 6:52 ` Patrick Shirkey 2002-08-09 7:31 ` Patrick Shirkey @ 2002-08-09 15:27 ` Patrick Shirkey 2002-08-13 14:40 ` Clemens Ladisch [not found] ` <3D536705.9040705@mindcom.fi> 2 siblings, 1 reply; 17+ messages in thread From: Patrick Shirkey @ 2002-08-09 15:27 UTC (permalink / raw) Cc: ALSA Development For those who are interested. Thanks to a tip from Eric Inge Bolso we now have links instead of buttons in the matrix. -- Patrick Shirkey - Boost Hardware Ltd. For the discerning hardware connoisseur Http://www.boosthardware.com Http://www.boosthardware.com/LAU/guide/ ======================================== ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-09 15:27 ` Patrick Shirkey @ 2002-08-13 14:40 ` Clemens Ladisch 2002-08-13 15:01 ` Patrick Shirkey 0 siblings, 1 reply; 17+ messages in thread From: Clemens Ladisch @ 2002-08-13 14:40 UTC (permalink / raw) To: Patrick Shirkey; +Cc: alsa-devel I didn't bother to report USB MIDI devices - until now: Evolution http://www.evolution.co.uk/ MK-225C http://www.evolution.co.uk/products/ MK-249 http://www.evolution.co.uk/products/ MK-249C http://www.evolution.co.uk/products/ MK-361 http://www.evolution.co.uk/products/ MK-361C http://www.evolution.co.uk/products/ UC-16 http://www.evolution.co.uk/products/ Roland/Edirol http://www.edirol.com/ PC-300 http://www.edirol.com/products/info/pc300.html SC-8820 http://www.edirol.com/products/info/archive/sc8820.html SC-8850 http://www.edirol.com/products/info/archive/sc8850.html SC-D70 http://www.edirol.com/products/info/archive/scd70.html SD-90 http://www.edirol.com/products/info/sd90.html SK-500 http://www.edirol.com/products/info/archive/sk500.html U-8 http://www.edirol.com/products/info/archive/u8.html UA-100 http://www.edirol.com/products/info/archive/ua100.html UA-100G http://www.edirol.com/products/info/archive/ua100g.html UM-1 http://www.edirol.com/products/info/um1.html UM-1S http://www.edirol.com/products/info/um1s.html UM-2(E) http://www.edirol.com/products/info/um2.html UM-4/SuperMPU64 http://www.edirol.com/products/info/archive/um4.html UM-550 http://www.edirol.com/products/info/um550.html UM-880 http://www.edirol.com/products/info/um880.html XV-5050 http://www.rolandus.com/products/details.asp?prodid=XV%2D5050 Steinberg http://www.steinberg.net/ USB-2-MIDI http://www.steinberg.net/products/ae/hardware/usb2midi/ Yamaha http://www.yamaha.com/ MU1000 http://www.yamaha.co.jp/product/syndtm/p/dtm/mu20mu10/index.html UX256 http://www.yamahasynth.com/pro/ux256/index.html ... and another USB Audio device: Roland/Edirol http://www.edirol.com/ UA-1A http://www.edirol.com/products/info/ua1a.html Clemens ------------------------------------------------------- This sf.net email is sponsored by: Dice - The leading online job board for high-tech professionals. Search and apply for tech jobs today! http://seeker.dice.com/seeker.epl?rel_code=31 ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-13 14:40 ` Clemens Ladisch @ 2002-08-13 15:01 ` Patrick Shirkey 2002-08-14 16:01 ` Pedro Lopez-Cabanillas 2002-08-14 16:40 ` Clemens Ladisch 0 siblings, 2 replies; 17+ messages in thread From: Patrick Shirkey @ 2002-08-13 15:01 UTC (permalink / raw) To: Clemens Ladisch; +Cc: alsa-devel Clemens Ladisch wrote: > I didn't bother to report USB MIDI devices - until now: > Thanks. I'm collecting them for now until I or Dan get the energy to add them to the matrix. -- Patrick Shirkey - Boost Hardware Ltd. For the discerning hardware connoisseur Http://www.boosthardware.com Http://www.boosthardware.com/LAU/guide/ ======================================== ------------------------------------------------------- This sf.net email is sponsored by: Dice - The leading online job board for high-tech professionals. Search and apply for tech jobs today! http://seeker.dice.com/seeker.epl?rel_code=31 ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-13 15:01 ` Patrick Shirkey @ 2002-08-14 16:01 ` Pedro Lopez-Cabanillas 2002-08-15 8:56 ` Patrick Shirkey 2002-08-15 10:19 ` Patrick Shirkey 2002-08-14 16:40 ` Clemens Ladisch 1 sibling, 2 replies; 17+ messages in thread From: Pedro Lopez-Cabanillas @ 2002-08-14 16:01 UTC (permalink / raw) To: Patrick Shirkey, Clemens Ladisch; +Cc: alsa-devel El Mar 13 Ago 2002 17:01, Patrick Shirkey escribió: > Clemens Ladisch wrote: > > I didn't bother to report USB MIDI devices - until now: > > Thanks. I'm collecting them for now until I or Dan get the energy to add > them to the matrix. The "usb generic" instructions for USB-MIDI devices is a copy of the Midiman MidisportNxN page. This is very inaccurate and confusing, as many devices (e.g. the Roland/Edirol ones) aren't EZ-USB devices and don't need/accept the ezusbmidi firmware at all. Please, remove the ezusbmidi references from the generic usb-midi page. On the other hand, this device is reported by Clemens: Steinberg http://www.steinberg.net/ USB-2-MIDI http://www.steinberg.net/products/ae/hardware/usb2midi/ It is another EZ-USB based device, and needs the ezusbmidi firmware to work. You can safely copy the Midisport page for it. I would like to insist again about including "EZ-USB" in the chipset column for these devices: Midiman Midisport NxN Midiman USB Keystations: http://www.midiman.net/products/midiman/keystations.php Steinberg USB-MIDI-2 adaptor: http://www.steinberg.net/products/ae/hardware/usb2midi/ For the "chipset" column you can put here EZ-USB (or "Cypress AN2131XX") http://www.cypress.com/products/datasheet.cfm?partnum=AN2131SC This chipset is widely used in USB peripherals, not only MIDI ones, and it is related to Intel 8051 chip. The firmware loader (fxload) for this chipset is included in linux-hotplug: http://linux-hotplug.sourceforge.net/ And SDCC (Small Device C Compiler) is a GPL tool that can be used to build firmware drivers: http://sdcc.sourceforge.net/ Regards, Pedro ------------------------------------------------------- This sf.net email is sponsored by: Dice - The leading online job board for high-tech professionals. Search and apply for tech jobs today! http://seeker.dice.com/seeker.epl?rel_code=31 ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-14 16:01 ` Pedro Lopez-Cabanillas @ 2002-08-15 8:56 ` Patrick Shirkey 2002-08-15 14:22 ` Pedro Lopez-Cabanillas 2002-08-15 10:19 ` Patrick Shirkey 1 sibling, 1 reply; 17+ messages in thread From: Patrick Shirkey @ 2002-08-15 8:56 UTC (permalink / raw) To: Pedro Lopez-Cabanillas; +Cc: Clemens Ladisch, alsa-devel Pedro Lopez-Cabanillas wrote: > El Mar 13 Ago 2002 17:01, Patrick Shirkey escribió: > >>Clemens Ladisch wrote: >> >>>I didn't bother to report USB MIDI devices - until now: >> >>Thanks. I'm collecting them for now until I or Dan get the energy to add >>them to the matrix. > > > The "usb generic" instructions for USB-MIDI devices is a copy of the Midiman > MidisportNxN page. This is very inaccurate and confusing, as many devices > (e.g. the Roland/Edirol ones) aren't EZ-USB devices and don't need/accept the > ezusbmidi firmware at all. Please, remove the ezusbmidi references from the > generic usb-midi page. > Currently I am trying to maintain as few pages as possible so the generic instructions access exactly the same data as ezusb devices. However I have made the ezusb instructions more recognisable. If this is still too confusing then I will have to add another variable for all ezusb devices. I would rather not as it means one more little thing to remember. I will add a note on the matrix for these cards below. > On the other hand, this device is reported by Clemens: > Steinberg http://www.steinberg.net/ > USB-2-MIDI http://www.steinberg.net/products/ae/hardware/usb2midi/ > It is another EZ-USB based device, and needs the ezusbmidi firmware to work. > You can safely copy the Midisport page for it. > > I would like to insist again about including "EZ-USB" in the chipset column > for these devices: > Midiman Midisport NxN > Midiman USB Keystations: > http://www.midiman.net/products/midiman/keystations.php > Steinberg USB-MIDI-2 adaptor: > http://www.steinberg.net/products/ae/hardware/usb2midi/ > > For the "chipset" column you can put here EZ-USB (or "Cypress AN2131XX") > http://www.cypress.com/products/datasheet.cfm?partnum=AN2131SC > > This chipset is widely used in USB peripherals, not only MIDI ones, and it is > related to Intel 8051 chip. The firmware loader (fxload) for this chipset is > included in linux-hotplug: http://linux-hotplug.sourceforge.net/ > And SDCC (Small Device C Compiler) is a GPL tool that can be used to build > firmware drivers: http://sdcc.sourceforge.net/ > > Regards, > Pedro > > > > ------------------------------------------------------- > This sf.net email is sponsored by: Dice - The leading online job board > for high-tech professionals. Search and apply for tech jobs today! > http://seeker.dice.com/seeker.epl?rel_code=31 > _______________________________________________ > Alsa-devel mailing list > Alsa-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/alsa-devel > > -- Patrick Shirkey - Boost Hardware Ltd. For the discerning hardware connoisseur Http://www.boosthardware.com Http://www.boosthardware.com/LAU/guide/ ======================================== ------------------------------------------------------- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-15 8:56 ` Patrick Shirkey @ 2002-08-15 14:22 ` Pedro Lopez-Cabanillas 0 siblings, 0 replies; 17+ messages in thread From: Pedro Lopez-Cabanillas @ 2002-08-15 14:22 UTC (permalink / raw) To: Patrick Shirkey; +Cc: Clemens Ladisch, alsa-devel El Jue 15 Ago 2002 10:56, Patrick Shirkey escribió: > Currently I am trying to maintain as few pages as possible so the > generic instructions access exactly the same data as ezusb devices. > However I have made the ezusb instructions more recognisable. > > If this is still too confusing then I will have to add another variable > for all ezusb devices. I would rather not as it means one more little > thing to remember. I will add a note on the matrix for these cards below. > Ok, it's more clear now. Thanks. Regards, Pedro ------------------------------------------------------- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-14 16:01 ` Pedro Lopez-Cabanillas 2002-08-15 8:56 ` Patrick Shirkey @ 2002-08-15 10:19 ` Patrick Shirkey 1 sibling, 0 replies; 17+ messages in thread From: Patrick Shirkey @ 2002-08-15 10:19 UTC (permalink / raw) To: Pedro Lopez-Cabanillas; +Cc: alsa-devel Pedro Lopez-Cabanillas wrote: > I would like to insist again about including "EZ-USB" in the chipset column > for these devices: > Midiman Midisport NxN > Midiman USB Keystations: > http://www.midiman.net/products/midiman/keystations.php > Steinberg USB-MIDI-2 adaptor: > http://www.steinberg.net/products/ae/hardware/usb2midi/ > done. -- Patrick Shirkey - Boost Hardware Ltd. For the discerning hardware connoisseur Http://www.boosthardware.com Http://www.boosthardware.com/LAU/guide/ ======================================== ------------------------------------------------------- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-13 15:01 ` Patrick Shirkey 2002-08-14 16:01 ` Pedro Lopez-Cabanillas @ 2002-08-14 16:40 ` Clemens Ladisch 2002-08-15 9:03 ` Patrick Shirkey 1 sibling, 1 reply; 17+ messages in thread From: Clemens Ladisch @ 2002-08-14 16:40 UTC (permalink / raw) To: Patrick Shirkey; +Cc: alsa-devel Patrick Shirkey wrote: > Thanks. I'm collecting them for now until I or Dan get the energy to add > them to the matrix. Wouldn't it be helpful to make the matrix Open Source(TM) in order to be able to submit a patch/SQL script/whatever? And while we're at it, some more USB MIDI devices for the collection: Roland/Edirol http://www.edirol.com/ SD-20 http://www.edirol.com/products/info/sd20.html SD-80 http://www.edirol.com/products/info/sd80.html UA-700 http://www.edirol.com/products/info/ua700.html The following USB MIDI devices are green: Yamaha http://www.yamaha.com/ CLP-150 http://www.yamaha.co.jp/product/cl/clp/clp-150.html CLP-170 http://www.yamaha.co.jp/product/cl/clp/clp-170.html MOTIF6 http://www.yamahasynth.com/pro/motif/index.html MOTIF7 http://www.yamahasynth.com/pro/motif/index.html MOTIF8 http://www.yamahasynth.com/pro/motif/index.html MU500 http://www.yamaha.co.jp/product/syndtm/p/dtm/mu500/ MU2000 http://www.yamaha.co.jp/product/syndtm/p/dtm/mu20mu10/index.html S08 http://www.yamahasynth.com/pro/s08/index.html UW500 http://www.yamahasynth.com/pro/uw500/index.html UX16 http://www.yamaha.com/cgi-win/webcgi.exe/DsplyModel/?gEKS00001UX16 UX96 http://www.yamaha.com/cgi-win/webcgi.exe/DsplyModel/?gEKS00001UX96 Clemens ------------------------------------------------------- This sf.net email is sponsored by: Dice - The leading online job board for high-tech professionals. Search and apply for tech jobs today! http://seeker.dice.com/seeker.epl?rel_code=31 ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-14 16:40 ` Clemens Ladisch @ 2002-08-15 9:03 ` Patrick Shirkey 2002-08-15 12:25 ` Clemens Ladisch 0 siblings, 1 reply; 17+ messages in thread From: Patrick Shirkey @ 2002-08-15 9:03 UTC (permalink / raw) To: Clemens Ladisch; +Cc: alsa-devel Clemens Ladisch wrote: > Patrick Shirkey wrote: > >>Thanks. I'm collecting them for now until I or Dan get the energy to add >>them to the matrix. > > > Wouldn't it be helpful to make the matrix Open Source(TM) in order to > be able to submit a patch/SQL script/whatever? > The matrix page is html (apart from the edit date) so you can just view the source and make a patch from that which I will add :) I feel that the more people who contribute code to the matrix the better. It would be great to have a few more people who are willing to keep track of certain product lines. But if you talking about the entire docs site, you want cvs access and you need to talk to Jaroslav as he runs the server. > > And while we're at it, some more USB MIDI devices for the collection: > Shall I or you? > Roland/Edirol http://www.edirol.com/ > SD-20 http://www.edirol.com/products/info/sd20.html > SD-80 http://www.edirol.com/products/info/sd80.html > UA-700 http://www.edirol.com/products/info/ua700.html > > The following USB MIDI devices are green: > > Yamaha http://www.yamaha.com/ > CLP-150 http://www.yamaha.co.jp/product/cl/clp/clp-150.html > CLP-170 http://www.yamaha.co.jp/product/cl/clp/clp-170.html > MOTIF6 http://www.yamahasynth.com/pro/motif/index.html > MOTIF7 http://www.yamahasynth.com/pro/motif/index.html > MOTIF8 http://www.yamahasynth.com/pro/motif/index.html > MU500 http://www.yamaha.co.jp/product/syndtm/p/dtm/mu500/ > MU2000 http://www.yamaha.co.jp/product/syndtm/p/dtm/mu20mu10/index.html > S08 http://www.yamahasynth.com/pro/s08/index.html > UW500 http://www.yamahasynth.com/pro/uw500/index.html > UX16 http://www.yamaha.com/cgi-win/webcgi.exe/DsplyModel/?gEKS00001UX16 > UX96 http://www.yamaha.com/cgi-win/webcgi.exe/DsplyModel/?gEKS00001UX96 > > > Clemens > > -- Patrick Shirkey - Boost Hardware Ltd. For the discerning hardware connoisseur Http://www.boosthardware.com Http://www.boosthardware.com/LAU/guide/ ======================================== ------------------------------------------------------- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-15 9:03 ` Patrick Shirkey @ 2002-08-15 12:25 ` Clemens Ladisch 2002-08-15 12:42 ` Patrick Shirkey 0 siblings, 1 reply; 17+ messages in thread From: Clemens Ladisch @ 2002-08-15 12:25 UTC (permalink / raw) To: Patrick Shirkey; +Cc: alsa-devel [-- Attachment #1: Type: TEXT/PLAIN, Size: 499 bytes --] Patrick Shirkey wrote: > Clemens Ladisch wrote: > > Wouldn't it be helpful to make the matrix Open Source(TM) in order to > > be able to submit a patch/SQL script/whatever? > > The matrix page is html (apart from the edit date) so you can just view > the source and make a patch from that which I will add :) It looked as if generated from a database (not after looking at the source :-) > > And while we're at it, some more USB MIDI devices for the collection: > > Shall I or you? :-) Clemens [-- Attachment #2: Type: APPLICATION/octet-stream, Size: 1252 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: new alsa docs. 2002-08-15 12:25 ` Clemens Ladisch @ 2002-08-15 12:42 ` Patrick Shirkey 0 siblings, 0 replies; 17+ messages in thread From: Patrick Shirkey @ 2002-08-15 12:42 UTC (permalink / raw) To: Clemens Ladisch; +Cc: alsa-devel Clemens Ladisch wrote: > Patrick Shirkey wrote: > >>Clemens Ladisch wrote: >> >>>Wouldn't it be helpful to make the matrix Open Source(TM) in order to >>>be able to submit a patch/SQL script/whatever? >> >>The matrix page is html (apart from the edit date) so you can just view >>the source and make a patch from that which I will add :) > > > It looked as if generated from a database (not after looking at the > source :-) > applied. > >>>And while we're at it, some more USB MIDI devices for the collection: >> >>Shall I or you? > > -- Patrick Shirkey - Boost Hardware Ltd. For the discerning hardware connoisseur Http://www.boosthardware.com Http://www.boosthardware.com/LAU/guide/ ======================================== ------------------------------------------------------- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 ^ permalink raw reply [flat|nested] 17+ messages in thread
[parent not found: <3D536705.9040705@mindcom.fi>]
[parent not found: <3D536C72.10302@boosthardware.com>]
[parent not found: <3D536DE5.20601@mindcom.fi>]
[parent not found: <3D537354.2030900@boosthardware.com>]
[parent not found: <3D537337.4080802@mindcom.fi>]
[parent not found: <3D537C3C.9000105@boosthardware.com>]
[parent not found: <3D5B6FE2.1040603@mindcom.fi>]
[parent not found: <3D5B7BA7.7040502@boosthardware.com>]
[parent not found: <3D5B7FC5.2030404@mindcom.fi>]
[parent not found: <3D60EDB4.7080600@boosthardware.com>]
[parent not found: <3D60EE47.7050704@mindcom.fi>]
[parent not found: <3D60FA94.4010001@boosthardware.com>]
[parent not found: <3D610A82.6080709@mindcom.fi>]
[parent not found: <3D629F9B.8070301@mindcom.fi>]
* alsa docs - PHP help [not found] ` <3D629F9B.8070301@mindcom.fi> @ 2002-08-21 4:43 ` Patrick Shirkey 0 siblings, 0 replies; 17+ messages in thread From: Patrick Shirkey @ 2002-08-21 4:43 UTC (permalink / raw) To: ALSA Development Using urlencode on the template doesn't solve the problem for older browsers. Can anyone think of a regex to auto encode the every line in the index page that looks like this: <a href="doc-php/template.php3?company=Abit&card=AU10&chip=FM801&module=fm801">Install</a> So that the variables are ulrencoded before the page is rendered? Otherwise I/future maintainers have to go through every device and hand type it in and any patches that are made too. Ergh! I'm thinking of something like if (line = <a href="doc-php/template.php3?...){ for (every variable){ rewrite as urlencode($variable); } } would I then have to use urldecode in the template? thx. -- Patrick Shirkey - Boost Hardware Ltd. For the discerning hardware connoisseur Http://www.boosthardware.com Http://www.boosthardware.com/LAU/guide/ ======================================== ------------------------------------------------------- This sf.net email is sponsored by: OSDN - Tired of that same old cell phone? Get a new here for FREE! https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390 ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2002-08-21 4:43 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <Pine.LNX.4.44.0208061855490.23759-100000@yme.mo.himolde.no>
2002-08-08 15:56 ` new alsa docs Patrick Shirkey
2002-08-09 6:25 ` Antti Boman
2002-08-09 6:52 ` Patrick Shirkey
2002-08-09 7:31 ` Patrick Shirkey
2002-08-10 18:51 ` Frans Ketelaars
2002-08-09 15:27 ` Patrick Shirkey
2002-08-13 14:40 ` Clemens Ladisch
2002-08-13 15:01 ` Patrick Shirkey
2002-08-14 16:01 ` Pedro Lopez-Cabanillas
2002-08-15 8:56 ` Patrick Shirkey
2002-08-15 14:22 ` Pedro Lopez-Cabanillas
2002-08-15 10:19 ` Patrick Shirkey
2002-08-14 16:40 ` Clemens Ladisch
2002-08-15 9:03 ` Patrick Shirkey
2002-08-15 12:25 ` Clemens Ladisch
2002-08-15 12:42 ` Patrick Shirkey
[not found] ` <3D536705.9040705@mindcom.fi>
[not found] ` <3D536C72.10302@boosthardware.com>
[not found] ` <3D536DE5.20601@mindcom.fi>
[not found] ` <3D537354.2030900@boosthardware.com>
[not found] ` <3D537337.4080802@mindcom.fi>
[not found] ` <3D537C3C.9000105@boosthardware.com>
[not found] ` <3D5B6FE2.1040603@mindcom.fi>
[not found] ` <3D5B7BA7.7040502@boosthardware.com>
[not found] ` <3D5B7FC5.2030404@mindcom.fi>
[not found] ` <3D60EDB4.7080600@boosthardware.com>
[not found] ` <3D60EE47.7050704@mindcom.fi>
[not found] ` <3D60FA94.4010001@boosthardware.com>
[not found] ` <3D610A82.6080709@mindcom.fi>
[not found] ` <3D629F9B.8070301@mindcom.fi>
2002-08-21 4:43 ` alsa docs - PHP help Patrick Shirkey
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.