From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Shirkey Subject: Re: new alsa docs. Date: Fri, 09 Aug 2002 00:56:12 +0900 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D52949C.6030706@boosthardware.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: ALSA Development List-Id: alsa-devel@alsa-project.org 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. or 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. ---- \n"; $Message .= " \n"; $Message .= " \n"; $Message .= " \n"; $Message .= " \n"; $Message .= " \n"; $Message .= " \n"; $Message .= " \n"; $Message .= "
\n"; $Message .= " $Name     $YourAddress
\n"; $Message .= " $time
\n"; $Message .= "
\n"; $Message .= "
\n";
        $Message .= 			$note;
        $Message .= "\n		
\n"; $Message .= "
\n"; $Message .= " \n"; $Message .= " \n"; $Message .= " \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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Antti Boman Subject: Re: new alsa docs. Date: Fri, 09 Aug 2002 09:25:49 +0300 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D53606D.3020201@mindcom.fi> References: <3D52949C.6030706@boosthardware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Patrick Shirkey Cc: ALSA Development List-Id: alsa-devel@alsa-project.org 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. > > > > or > > 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: > $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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Shirkey Subject: Re: new alsa docs. Date: Fri, 09 Aug 2002 15:52:52 +0900 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D5366C4.9050101@boosthardware.com> References: <3D52949C.6030706@boosthardware.com> <3D53606D.3020201@mindcom.fi> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Antti Boman Cc: ALSA Development List-Id: alsa-devel@alsa-project.org 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. > > >> $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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Shirkey Subject: Re: new alsa docs. Date: Fri, 09 Aug 2002 16:31:30 +0900 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D536FD2.1030307@boosthardware.com> References: <3D52949C.6030706@boosthardware.com> <3D53606D.3020201@mindcom.fi> <3D5366C4.9050101@boosthardware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: Cc: ALSA Development List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Shirkey Subject: Re: new alsa docs. Date: Sat, 10 Aug 2002 00:27:35 +0900 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D53DF67.40709@boosthardware.com> References: <3D52949C.6030706@boosthardware.com> <3D53606D.3020201@mindcom.fi> <3D5366C4.9050101@boosthardware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: Cc: ALSA Development List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Frans Ketelaars Subject: Re: new alsa docs. Date: Sat, 10 Aug 2002 20:51:07 +0200 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <20020810205107.431ad249.ketelaars@wanadoo.nl> References: <3D52949C.6030706@boosthardware.com> <3D53606D.3020201@mindcom.fi> <3D5366C4.9050101@boosthardware.com> <3D536FD2.1030307@boosthardware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <3D536FD2.1030307@boosthardware.com> Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org On Fri, 09 Aug 2002 16:31:30 +0900 Patrick Shirkey 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Clemens Ladisch Subject: Re: new alsa docs. Date: Tue, 13 Aug 2002 16:40:24 +0200 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D591A58.11ABEA9@ladisch.de> References: <3D52949C.6030706@boosthardware.com> <3D53606D.3020201@mindcom.fi> <3D5366C4.9050101@boosthardware.com> <3D53DF67.40709@boosthardware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7BIT Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Patrick Shirkey Cc: alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Shirkey Subject: Re: new alsa docs. Date: Wed, 14 Aug 2002 00:01:43 +0900 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D591F57.1060601@boosthardware.com> References: <3D52949C.6030706@boosthardware.com> <3D53606D.3020201@mindcom.fi> <3D5366C4.9050101@boosthardware.com> <3D53DF67.40709@boosthardware.com> <3D591A58.11ABEA9@ladisch.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Clemens Ladisch Cc: alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pedro Lopez-Cabanillas Subject: Re: new alsa docs. Date: Wed, 14 Aug 2002 18:01:11 +0200 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <200208141801.11087.plcl@telefonica.net> References: <3D591A58.11ABEA9@ladisch.de> <3D591F57.1060601@boosthardware.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: <3D591F57.1060601@boosthardware.com> Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Patrick Shirkey , Clemens Ladisch Cc: alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Clemens Ladisch Subject: Re: new alsa docs. Date: Wed, 14 Aug 2002 18:40:18 +0200 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D5A87F2.B7795CC9@ladisch.de> References: <3D52949C.6030706@boosthardware.com> <3D53606D.3020201@mindcom.fi> <3D5366C4.9050101@boosthardware.com> <3D53DF67.40709@boosthardware.com> <3D591A58.11ABEA9@ladisch.de> <3D591F57.1060601@boosthardware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7BIT Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Patrick Shirkey Cc: alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Shirkey Subject: Re: new alsa docs. Date: Thu, 15 Aug 2002 17:56:34 +0900 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D5B6CC2.5040304@boosthardware.com> References: <3D591A58.11ABEA9@ladisch.de> <3D591F57.1060601@boosthardware.com> <200208141801.11087.plcl@telefonica.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Pedro Lopez-Cabanillas Cc: Clemens Ladisch , alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Shirkey Subject: Re: new alsa docs. Date: Thu, 15 Aug 2002 18:03:46 +0900 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D5B6E72.7030809@boosthardware.com> References: <3D52949C.6030706@boosthardware.com> <3D53606D.3020201@mindcom.fi> <3D5366C4.9050101@boosthardware.com> <3D53DF67.40709@boosthardware.com> <3D591A58.11ABEA9@ladisch.de> <3D591F57.1060601@boosthardware.com> <3D5A87F2.B7795CC9@ladisch.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Clemens Ladisch Cc: alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Shirkey Subject: Re: new alsa docs. Date: Thu, 15 Aug 2002 19:19:15 +0900 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D5B8023.7000205@boosthardware.com> References: <3D591A58.11ABEA9@ladisch.de> <3D591F57.1060601@boosthardware.com> <200208141801.11087.plcl@telefonica.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Pedro Lopez-Cabanillas Cc: alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Clemens Ladisch Subject: Re: new alsa docs. Date: Thu, 15 Aug 2002 14:25:09 +0200 (METDST) Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: References: <3D5B6E72.7030809@boosthardware.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Boundary_(ID_Ht+IBiSvZEIejTeyfuawPg)" Return-path: In-Reply-To: <3D5B6E72.7030809@boosthardware.com> Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Patrick Shirkey Cc: alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --Boundary_(ID_Ht+IBiSvZEIejTeyfuawPg) Content-type: TEXT/PLAIN; charset=US-ASCII Content-transfer-encoding: 7BIT 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 --Boundary_(ID_Ht+IBiSvZEIejTeyfuawPg) Content-id: Content-type: APPLICATION/octet-stream; name=matrix-patch.gz Content-transfer-encoding: BASE64 Content-disposition: attachment; filename=matrix-patch.gz Content-description: H4sICNGaWz0AA21hdHJpeC1wYXRjaADl2u1v2jgcB/DXnbT/Icfpqk00xE4ICb1C S6Gdqg6tuoweE+KFSQJky5PyMNr//pxHktKu7VgM51VtSSLIN/7ww1h2WJZlkOkj VnPUxjKwzIbjLQ4+L0OmFy4YKDKQP4bwWAQMDwD/9k29Xi8/f/O5UE6fe3bGsFBo wqMWU48fxSZzdvb2DZP8nARa99Ce+e7fJxzeTI/jbS/ePokf6+vnniBm6enzTm0Z BO4xx61Wq4b+3THDwHDshuo0wm9crXuRHTnhUDc98StP4nqOFqqBj882vGZ5Xuw/ fq7SxdcP8CFMYyzsTk3V7UD3aus0rMW6S5cLdMs1UaA38I5wqjqWi+z7Tn7Nhyry tE4aeqguDbdzaOGLMfVO6M9Yy9CMWvfK9gNkmtE1xbHPXFcBtb4/qM02edNmm3LS HdQpDqUZVWhB4qY4k3JS8nUahVKLOuqzsEWWNI6sDpT5scXc8fBV6pqBMIaFBS7z AwWGHw4zXnzy3HluyQBGQx4cN8SbhaRooMPzLSka6PACFI9gq/VwpDPpTSfn00l/ OhlMJxfTyeV0i1GPZniOmbb9H8dEtsZdxMdeUU/rc+RNNOy5w7mqAEA8tKt1b/os 3qm6tOIrSeoqCdzdJ7VKWOThZn3XOV+VZT4TVvpstEeQOE2k31gsGYvEjUXqjTWp QDyQCAvjQDqBfW3dPQxYsp1DlEerqlxQlQmrytSqtguqbcKqbUpV8y72m5iPxZRr ViQ6FksC6QYO5VR3xMoEaXEana4hgigT7bGwR9I0yttURaFmOP931rxcEcz7g6i9 RPuDJJDOui0BL0rCH4gTf6DTOERSsXgl0sUr0Vq8oQUz1iFb+Xx1ERXHUUvqF0wV wqgKrar8GpV/d/GeLCtPp2r+3WU117pNTgld3RvejFpNsspNOpVDS8wnFHErRaLz iUkgrbCyXICVic7MJIE7g/Viy9DfjrZ0lhxX0wNkmH4D+e5pdNDQOuPbv/iBCERQ 645v2WijYuqkQQl1mrizRUNfSJUV4XWLhIpjG+qtMdN95qZ/VVzyk1rNeMmvLfFH EILikl/SAObgYGMRMF4BZEbK+R+PLADGbWFmC9UxHa9T+xOA+Rzgt+vZGrhHFlpm y6Ff4p2XF1D+4sZXNysgTjXxrxv9sTDv+fofb6K9issmuf6kbNLEny6bECf7ga49 VTj7hy2VsCtfVdnA3mJZZU+x/Xs7WGa9I2c5gTHH3z2afpdCDz99vrqs+g6KonMS +FsyS6SZpd+SuerZ7A3mn5/Q3lPmBz00VtcCTM5F/61QBCC6nW1U/ZJMSXq0zYrM c9B7wMoDK4SgXM4jCAgjR4EVjVP3spgfVedJq/PbqO9pJ1Luq30gl5AVQLKbxml0 84arqFcuAo/+Jds/x3m0IccvVhcGuzJsbqXP8GZDv9O5ge+a90NH003udHFxreCP L4CjMWxh93HlNySX2Mdb3IxMh3o7Vm+TVW9Xp76L7uOOF1vl7mOMjxAVxXm/fuDB vGyCLDG594NI5BFS5omoZCpMkqOpMAG0wREUHt78/unmo8AqPaF0pl+ElnhlCZmb 45qCj/gHbEyWHE/OZT/7MnzbjE6Ofxle8pJ8zrzDjWy+f+Z1T71LzCMF8R9SH6X3 /TkAAA== --Boundary_(ID_Ht+IBiSvZEIejTeyfuawPg)-- ------------------------------------------------------- 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pedro Lopez-Cabanillas Subject: Re: new alsa docs. Date: Thu, 15 Aug 2002 16:22:10 +0200 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <200208151622.10974.plcl@telefonica.net> References: <200208141801.11087.plcl@telefonica.net> <3D5B6CC2.5040304@boosthardware.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: <3D5B6CC2.5040304@boosthardware.com> Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Patrick Shirkey Cc: Clemens Ladisch , alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Shirkey Subject: Re: new alsa docs. Date: Thu, 15 Aug 2002 21:42:27 +0900 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D5BA1B3.9070200@boosthardware.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: Clemens Ladisch Cc: alsa-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Patrick Shirkey Subject: alsa docs - PHP help Date: Wed, 21 Aug 2002 13:43:47 +0900 Sender: alsa-devel-admin@lists.sourceforge.net Message-ID: <3D631A83.3000000@boosthardware.com> References: <3D52949C.6030706@boosthardware.com> <3D53606D.3020201@mindcom.fi> <3D5366C4.9050101@boosthardware.com> <3D536705.9040705@mindcom.fi> <3D536C72.10302@boosthardware.com> <3D536DE5.20601@mindcom.fi> <3D537354.2030900@boosthardware.com> <3D537337.4080802@mindcom.fi> <3D537C3C.9000105@boosthardware.com> <3D5B6FE2.1040603@mindcom.fi> <3D5B7BA7.7040502@boosthardware.com> <3D5B7FC5.2030404@mindcom.fi> <3D60EDB4.7080600@boosthardware.com> <3D60EE47.7050704@mindcom.fi> <3D60FA94.4010001@boosthardware.com> <3D610A82.6080709@mindcom.fi> <3D629F9B.8070301@mindcom.fi> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Return-path: Errors-To: alsa-devel-admin@lists.sourceforge.net List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: To: ALSA Development List-Id: alsa-devel@alsa-project.org 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: Install 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 =