CGI Programming on the World Wide Web

Total Page:16

File Type:pdf, Size:1020Kb

CGI Programming on the World Wide Web CGI Programming on the World Wide Web CGI Programming on the World Wide Web By Shishir Gundavaram; ISBN: 1-56592-168-2, 433 pages. First Edition, March 1996. Table of Contents Preface Chapter 1: The Common Gateway Interface (CGI) Chapter 2: Input to the Common Gateway Interface Chapter 3: Output from the Common Gateway Interface Chapter 4: Forms and CGI Chapter 5: Server Side Includes Chapter 6: Hypermedia Documents Chapter 7: Advanced Form Applications Chapter 8: Multiple Form Interaction Chapter 9: Gateways, Databases, and Search/Index Utilities Chapter 10: Gateways to Internet Information Servers Chapter 11: Advanced and Creative CGI Applications Chapter 12: Debugging and Testing CGI Applications Appendix A: Perl CGI Programming FAQ Appendix B: Summary of Regular Expressions Appendix C: CGI Modules for Perl 5 Appendix D: CGI Lite Appendix E: Applications, Modules, Utilities, and Documentation Index Examples - Warning: this directory includes long filenames which may confuse some older operating systems (notably Windows 3.1). Search the text of CGI Programming on the World Wide Web. http://www.crypto.nc1uw1aoi420d85w1sos.de/documents/oreilly/web/cgi/ (1 of 2) [2/6/2001 11:48:37 PM] CGI Programming on the World Wide Web Copyright © 1996, 1997 O'Reilly & Associates. All Rights Reserved. http://www.crypto.nc1uw1aoi420d85w1sos.de/documents/oreilly/web/cgi/ (2 of 2) [2/6/2001 11:48:37 PM] Preface Preface Preface Contents: What's in the Book What You Are Expected to Know Before Reading Organization of This Book Conventions in This Book Acknowledgments The Common Gateway Interface (CGI) emerged as the first way to present dynamically generated information on the World Wide Web. CGI allows the computer to generate Web pages instantly at the user's request rather than being written by someone in advance. And at the time of this writing, it remains the only stable and well-understood method for creating such pages. Java presents problems that have not yet been solved. Other products are currently just in the announcement stage. CGI is fun. You can get a kick out of writing scripts that perform tricks for you, and the users enjoy the spice the scripts add to your Web pages. But CGI has a serious side too: It lets the Internet offer the kind of interactive, user-driven applications that modern computer users have come to expect. CGI opens up an entire class of modern applications to the Web. Today's computer users expect custom answers to particular questions. Gone are the days when people were satisfied by the computing center staff passing out a single, general report to all users. Instead, each salesperson, manager, and engineer wants to enter specific queries and get up-to-date responses. And if a single computer can do that, why not the Web? This is the promise of CGI. You can display sales figures for particular products month by month, as requested by your staff, using beautiful pie charts or plots. You can let customers enter keywords in order to find information on your products. You can also offer day-to-day conveniences, like collecting comments from users, offering them searches through your archives, and letting them sign your guestbook. http://www.crypto.nc1uw1aoi420d85w1sos.de/documents/oreilly/web/cgi/ch00_01.html (1 of 2) [2/6/2001 11:48:39 PM] Preface What's in the Book So, on to the book. What will you encounter here? A variety of powerful applications that you can use and that will serve as models for your own CGI scripts. Among the complete applications in the book are an animated clock, a search tool, a survey, a quiz program, a game, a gateway to Usenet News, and an appointment calendar based on a clickable imagemap. If you want to set up your own database and can't afford a commercial product like Oracle, you can use the Sprite extension to Perl that I wrote. Sprite offers a subset of SQL commands with a flat file as the database. I also offer a debugging program called CGI Lint, and a program that lets you write and parse extensions to HTML. I wrote the latter program to support my quiz application, but you can adapt it to other purposes without much trouble. Appendix E, Applications, Modules, Utilities, and Documentation, lists where you can get Sprite and CGI Lint. But the most important tool I hope to give you is not any particular program, but a thorough understanding of CGI's potential and how to invoke it. The ideas in these programs should become yours for any purpose you want, no matter what operating system or language you use. The old adage about "teaching someone how to fish" may no longer be politically correct, in a world of dangerously depleted fish stocks, but the metaphor describes what I want to do. The techniques I show in this book are fundamental CGI practices: passing information between client (browser) and server, interacting with databases through SQL, generating graphics, writing gateways to existing programs, and storing information while handling multiple forms. What You Are Expected to Know Before Reading http://www.crypto.nc1uw1aoi420d85w1sos.de/documents/oreilly/web/cgi/ch00_01.html (2 of 2) [2/6/2001 11:48:39 PM] [Chapter 1] The Common Gateway Interface (CGI) Chapter 1 1. The Common Gateway Interface (CGI) Contents: What Is CGI? CGI Applications Some Working CGI Applications Internal Workings of CGI Configuring the Server Programming in CGI CGI Considerations Overview of the Book 1.1 What Is CGI? As you traverse the vast frontier of the World Wide Web, you will come across documents that make you wonder, "How did they do this?" These documents could consist of, among other things, forms that ask for feedback or registration information, imagemaps that allow you to click on various parts of the image, counters that display the number of users that accessed the document, and utilities that allow you to search databases for particular information. In most cases, you'll find that these effects were achieved using the Common Gateway Interface, commonly known as CGI. One of the Internet's worst-kept secrets is that CGI is astoundingly simple. That is, it's trivial in design, and anyone with an iota of programming experience can write rudimentary scripts that work. It's only when your needs are more demanding that you have to master the more complex workings of the Web. In a way, CGI is easy the same way cooking is easy: anyone can toast a muffin or poach an egg. It's only when you want a Hollandaise sauce that things start to get complicated. CGI is the part of the Web server that can communicate with other programs running on the server. With CGI, the Web server can call up a program, while passing user-specific data to the program (such as what host the user is connecting from, or input the user has supplied using HTML form syntax). The program then processes that data and the server passes the program's response back to the Web browser. CGI isn't magic; it's just programming with some special types of input and a few strict rules on program output. Everything in between is just programming. Of course, there are special techniques that are http://www.crypto.nc1uw1aoi420d85w1sos.de/documents/oreilly/web/cgi/ch01_01.html (1 of 2) [2/6/2001 11:48:41 PM] [Chapter 1] The Common Gateway Interface (CGI) particular to CGI, and that's what this book is mostly about. But underlying it all is the simple model shown in Figure 1.1. Figure 1.1: Simple diagram of CGI Acknowledgments CGI Applications http://www.crypto.nc1uw1aoi420d85w1sos.de/documents/oreilly/web/cgi/ch01_01.html (2 of 2) [2/6/2001 11:48:41 PM] [Preface] Acknowledgments Preface Acknowledgments I remember early last year when there was so much demand for a CGI book, and yet there was not even one book to help all the eager users put up counters or guestbooks. My boss at that time, Dyung Le, suggested that we write a book on CGI. Of course, we laughed it off several minutes later. But, the idea never left either one of us. Several days later, we started writing up a contract, and the rest is history-thanks to Adrian Nye, an editor at O'Reilly, who helped us put the contract together. It was a dream come true: writing a technical book for O'Reilly & Associates. First and foremost, I'd like to thank Mr. Le for not only suggesting the idea for the book, but giving me an opportunity to develop software straight out of high school. In addition, I'd like to thank Rita Horsey, my other boss, who also taught me quite a bit, and provided me with an Internet connection in the early days of the book. Of course, I'd also like to thank my family for not only putting up with my bizarre work hours during the entire writing period, but also coming to my assistance whenever I needed it. There's no way I could have finished this book without their support. Thanks to all the reviewers and everyone who provided suggestions: Jeffrey Friedl (the king of regular expressions), Andreas Koenig (the father of MakeMaker), Marc Hedlund (the originator of the CGI FAQ), Tom Christiansen (the UNIX wizard), Jon Backstrom, Joseph Radin, Paul DuBois, and from ORA, Norman Walsh, Paula Ferguson, Ellie Cutler, Tanya Herlick, Frank Willison, Andy Oram, Linda Mui (more on these guys in a minute), and Tim O'Reilly (the godfather of the Nutshell). I had the privilege of working with two really excellent teachers, Andy and Linda, whom I also consider my friends.
Recommended publications
  • PHP Game Programming
    PHP Game Programming Matt Rutledge © 2004 by Premier Press, a division of Course Technology. All rights SVP, Course Professional, Trade, reserved. No part of this book may be reproduced or transmitted in any Reference Group: form or by any means, electronic or mechanical, including photocopy- Andy Shafran ing, recording, or by any information storage or retrieval system with- Publisher: out written permission from Course PTR, except for the inclusion of Stacy L. Hiquet brief quotations in a review. Senior Marketing Manager: The Premier Press logo and related trade dress are trademarks of Premier Sarah O’Donnell Press and may not be used without written permission. Marketing Manager: Paint Shop Pro 8 is a registered trademark of Jasc Software. Heather Hurley PHP Coder is a trademark of phpIDE. Series Editor: All other trademarks are the property of their respective owners. André LaMothe Important: Course PTR cannot provide software support. Please contact Manager of Editorial Services: the appropriate software manufacturer’s technical support line or Web Heather Talbot site for assistance. Senior Acquisitions Editor: Course PTR and the author have attempted throughout this book to Emi Smith distinguish proprietary trademarks from descriptive terms by following Associate Marketing Manager: the capitalization style used by the manufacturer. Kristin Eisenzopf Information contained in this book has been obtained by Course PTR Project Editor and Copy Editor: from sources believed to be reliable. However, because of the possibility Dan Foster, Scribe Tribe of human or mechanical error by our sources, Course PTR, or others, the Publisher does not guarantee the accuracy, adequacy, or complete- Technical Reviewer: ness of any information and is not responsible for any errors or omis- John Freitas sions or the results obtained from use of such information.
    [Show full text]
  • Vysoke´Ucˇenítechnicke´V Brneˇ Srovna´Níknihoven
    VYSOKE´ UCˇ ENI´ TECHNICKE´ V BRNEˇ BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMACˇ NI´CH TECHNOLOGII´ U´ STAV POCˇ ´ITACˇ OVE´ GRAFIKY A MULTIME´ DII´ FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF COMPUTER GRAPHICS AND MULTIMEDIA SROVNA´ NI´ KNIHOVEN PRO PRA´ CI S OBRAZEM COMPARISON OF IMAGE PROCESSING LIBRARIES BAKALA´ Rˇ SKA´ PRA´ CE BACHELOR’S THESIS AUTOR PRA´ CE LENKA KRU´ POVA´ AUTHOR VEDOUCI´ PRA´ CE Ing. DAVID BARˇ INA SUPERVISOR BRNO 2012 Abstrakt Tato bakala´rˇska´pra´ce se zaby´va´porovna´nı´m knihoven pracujı´cı´ch s obrazem. V pra´ci je mozˇne´ sezna´mit se s teoreticky´m u´vodem z oblasti zpracova´nı´obrazu. Pra´ce do hloubky rozebı´ra´knihovny OpenCV, GD, GIL, ImageMagick, GraphicsMagick, CImg, Imlib2. Zameˇrˇenı´popisu teˇchto kni- hoven se orientuje na rozhranı´v jazycı´ch C a C++. Za´veˇr pra´ce je veˇnova´n porovna´nı´z ru˚zny´ch hledisek. Abstract This bachelor thesis deals with comparison of image processing libraries. This document describes brief introduction into the field of image procesing. There are wide analysis of OpenCV, GD, GIL, ImageMagick, GraphicsMagick, CImg, Imlib2 libraries. The text aims at C and C++ language interfaces of these libraries. The end of the thesis is dedicated to comparison of libaries from various points. Klı´cˇova´slova Zpracova´nı´obrazu, OpenCV, GD, GIL, ImageMagick, GraphicsMagick, CImg, Imlib2 Keywords Image processing, OpenCV, GD, GIL, ImageMagick, GraphicsMagick, CImg, Imlib2 Citace Lenka Kru´pova´: Srovna´nı´knihoven pro pra´ci s obrazem, bakala´rˇska´pra´ce, Brno, FIT VUT v Brneˇ, 2012 Srovna´nı´knihoven pro pra´ci s obrazem Prohla´sˇenı´ Prehlasujem, zˇe som tu´to bakala´rsku pra´cu vypracovala samostatne pod vedenı´m pa´na Ing.
    [Show full text]
  • C Programming in Linux
    David Haskins C Programming in Linux 2 Download free eBooks at bookboon.com C Programming in Linux 2nd edition © 2013 David Haskins & bookboon.com ISBN 978-87-403-0543-2 3 Download free eBooks at bookboon.com C Programming in Linux Contents Contents About the author, David Haskins 7 Introduction 9 Setting up your System 12 1 Hello World 14 1.1 Hello Program 1 14 1.2 Hello Program 2 15 1.3 Hello Program 3 18 1.4 Hello Program 4 20 1.5 Hello World conclusion 23 2 Data and Memory 24 2.1 Simple data types? 24 2.2 What is a string? 28 �e Graduate Programme I joined MITAS because for Engineers and Geoscientists I wanted real responsibili� www.discovermitas.comMaersk.com/Mitas �e Graduate Programme I joined MITAS because for Engineers and Geoscientists I wanted real responsibili� Maersk.com/Mitas Month 16 I wwasas a construction Month 16 supervisorI wwasas in a construction the North Sea supervisor in advising and the North Sea Real work helpinghe foremen advising and IInternationalnternationaal opportunities ��reeree wworkoro placements solves Real work problems helpinghe foremen IInternationalnternationaal opportunities ��reeree wworkoro placements solves problems 4 Click on the ad to read more Download free eBooks at bookboon.com C Programming in Linux Contents 2.3 What can a string “mean” 29 2.4 Parsing a string 32 2.5 Data and Memory – conclusion 34 3 Functions, pointers and structures 36 3.1 Functions 36 3.2 Library Functions 38 3.3 A short library function reference 39 3.4 Data Structures 41 3.5 Functions, pointers and structures – conclusion
    [Show full text]
  • Constructs & Concepts
    Constructs & Concepts Language Design for Flexibility and Reliability Anya Helene Bagge moduleCppSkinhiddenscontext-freestart-symbolsProgramimportsDeclarationsexportssortsTmplClauseClassClausecontext-freesyntaxTmplClauseDecl->Decl cons("TmplDecl") "template""<" TypeParam"," *">"RequiresClause*->TmplClause cons("Template") "requires"Identifier"<" ConceptArgument"," *">"->RequiresClause cons("Requires") "template""<" TypeParam"," *">""type"Identifier->TypeParam cons("TemplateType") ExprDeclarativeSubClause*" ""return"Expr";"" "->Decl cons("DefDecl") "typename"Type->TypePar am prefer,cons("TypeParam") "class"Type->TypeParam prefer,cons("TypeParam") "class"TypeNameTypeParamList?->ClassClause cons("ClassClause") ClassClause->DeclDeclarativemoduleDeclarationsimportsLiteralsConceptsStatementsDataRepresenta{ } { } { tionexp} ortssortsStatDeclarativeExprDeclarativeDec{ } lDeclarativeSubClausecon{ text-freesyntaxSta} tDeclarati{ veSubClau} se*BlockStat->Decl cons("DefDecl"{ ) ExprDeclarativeSubClaus} e*"="Expr";"->Decl cons("DefDecl"){ TypeDeclarativeSub} { Clause*"="}DataRep->Decl cons("DefDec l"){ DeclDeclarativeSubClause*"} "Decl*" "->Decl cons("DefDecl"){ StatDeclarativeSubClause*";"->Decl} cons("NoDefDecl") ExprDeclarativeSubClause*";"->Decl{ } cons("NoDefDecl") TypeDeclarativeSubClause*";"->Decl cons("NoDefDecl") DeclDeclarativeSubClause*";"->Decl cons("NoDefDecl") sortsProcClauseProcNamecontext-freesyntax"procedure"ProcNameProcedureParamList->ProcClause{ cons("ProcClaus} e") ProcClause->StatDeclarativeIdentifier->ProcName"{ = "->ProcName}
    [Show full text]
  • Opensolaris Presentation
    Open source for the enterprise Marco Colombo Sun Microsystems Italia S.p.A. What is Open Source? Distribute binaries + source code Open Source and/or Free software license Freely: modifiable, redistributable, forkable Non-discriminatory Consensus driven projects Meritocracy Peer review and public discussion OK to make money - but not for access to code 2 OpenSolaris: Open Source for the Enterprise | Marco Colombo – Sun Microsystems Italia Why Open Source? Good For Customers Good For Sun & Partners Community drives choice, Innovation happens competition, value everywhere Accelerates unexpected, Creates new opportunities by disruptive innovation growing the market 3 OpenSolaris: Open Source for the Enterprise | Marco Colombo – Sun Microsystems Italia Community Participation 4 CopyrightOpenSolaris: © 2004 SomersetOpen Source Historical for Centerthe Enterprise | Marco Colombo – Sun Microsystems Italia Sun: A History of Community J2EE, J2ME NFS Jini UNIX SVR4 XML Sun 1 with TCP/IP 1980 1990 2000 2005 5 OpenSolaris: Open Source for the Enterprise | Marco Colombo – Sun Microsystems Italia Benefit Of Open Communities Shared vision, goals Access to Technology Open Agreed sharing and Ideas Development (license) Agreed relationships Open Communities (governance) Committed members Broad Inclusive Participation Process It’s About Both People and Technologies 6 OpenSolaris: Open Source for the Enterprise | Marco Colombo – Sun Microsystems Italia Expect the Unexpected Bright, well-known people contribute code regularly Community finds new uses Jini™
    [Show full text]
  • Introgression Library Visualization and Query Tool Christopher a Bottoms1*, Sherry Flint-Garcia1,2, Michael D Mcmullen1,2 from Seventh Annual MCBIOS Conference
    Bottoms et al. BMC Bioinformatics 2010, 11(Suppl 6):S28 http://www.biomedcentral.com/1471-2105/11/S6/S28 PROCEEDINGS Open Access IView: introgression library visualization and query tool Christopher A Bottoms1*, Sherry Flint-Garcia1,2, Michael D McMullen1,2 From Seventh Annual MCBIOS Conference. Bioinformatics: Systems, Biology, Informatics and Computation Jonesboro, AR, USA. 19-20 February 2010 Abstract Background: An introgression library is a family of near-isogenic lines in a common genetic background, each of which carries one or more genomic regions contributed by a donor genome. Near-isogenic lines are powerful genetic resources for the analysis of phenotypic variation and are important for map-base cloning genes underlying mutations and traits. With many thousands of distinct genotypes, querying introgression libraries for lines of interest is an issue. Results: We have created IView, a tool to graphically display and query near-isogenic line libraries for specific introgressions. This tool incorporates a web interface for displaying the location and extent of introgressions. Each genetic marker is associated with a position on a reference map. Users can search for introgressions using marker names, or chromosome number and map positions. This search results in a display of lines carrying an introgression at the specified position. Upon selecting one of the lines, color-coded introgressions on all chromosomes of the line are displayed graphically. The source code for IView can be downloaded from http://xrl.us/iview. Conclusions: IView will be useful for those wanting to make introgression data from their stock of germplasm searchable. Background Introgression libraries are useful for testing the pheno- Near isogenic lines (NILs) are lines derived from a parti- typic effects of donor introgressions and as the starting cular parental line (i.e.
    [Show full text]
  • Enabling Webpages with Active Content Using Tcl
    The following paper was originally published in the Proceedings of the Sixth Annual Tcl/Tk Workshop San Diego, California, September 14–18, 1998 NeoWebScript: Enabling Webpages with Active Content Using Tcl Karl Lehenbauer NeoSoft, Inc. For more information about USENIX Association contact: 1. Phone: 510 528-8649 2. FAX: 510 548-5738 3. Email: [email protected] 4. WWW URL:http://www.usenix.org/ NeoWebScript: Enabling Webpages with Active Content Using Tcl Karl Lehenbauer NeoSoft, Inc. [email protected] Abstract applications. Customers use every platform and devel- opment tool, and every web publishing technique has NeoWebScript marries the world’s most popular web- limitations that affect how the developer interfaces server, Apache, with the Tcl programming language to with specific server-side capabilities. While much create a secure, efficient, server-side scripting lan- attention has been given to Java and JavaScript for guage that gives webpage developers simple-yet- client-side scripting, many forms of active content powerful tools for creating and serving webpages with require that data be maintained, accessed and updated active content. on the server. Such applications include electronic commerce, shared databases… even simple things like The ability to embed NeoWebScript code into existing hit counters. webpages, without requiring a URL name change, leverages work done with webpage creation tools such As our customers became more sophisticated and as Netscape Communicator and Net Objects Fusion, creative, they began asking for active content features while not disturbing links from remote sites and search such as access counters and rotating banner ads. Many engines. had CGI scripts that they had written, or obtained, and wanted to run them on our webserver.
    [Show full text]
  • All Installed Packages .PDF
    Emperor-OS All Installed Package Editor: Hussein Seilany [email protected] www.Emperor-OS.com Emperor-has 5 package management system for installing, upgrading, configuring, and removing software. Also providing access over 60,000 software packages of Ubuntu. We per-installed several tools are available for interacting with Emperor's package management system. You can use simple command-line utilities to a graphical tools. Emperor-OS's package management system is derived from the same system used by the Ubuntu GNU/Linux distribution. We will show you the list of installed packages on Emperor-OS. The packages lists is long. Having a list of installed packages helps system administrators maintain, replicate, and reinstall Emperor-OS systems. Emperor-OS Linux systems install dependencies all the time, hence it is essential to know what is on the system. In this page you can find a specific package and python modules is installed, count installed packages and find out the version of an installed package. Download lists as PDF file or see them as html page in the following: Are you looking for all in one operating system? 70 Packages: Installed Special Packages 120 Tools: Installed Utility 260 Modules: Installed Python2 and 3 Modules 600Fonts: Installed Fonts 5 Desktops: Desktop Manager Packages 22Tools: Extra Development Tools 270 Themes: Installed Themes 40 Icons: Installed Icons 40Games: Installed Games 2533scanners: supports Scanners 2500 Cameras: supports Camera 4338Packages: All Installed Packages 2 [email protected] www.Emperor-OS.com The list installed packages: Emperor-OS Linux is an open source operating system with many utilities.
    [Show full text]
  • O'reilly CGI Programming.Pdf
    CGI Programming on the World Wide Web By Shishir Gundavaram; ISBN: 1-56592-168-2, 433 pages. First Edition, March 1996. Table of Contents Preface Chapter 1: The Common Gateway Interface (CGI) Chapter 2: Input to the Common Gateway Interface Chapter 3: Output from the Common Gateway Interface Chapter 4: Forms and CGI Chapter 5: Server Side Includes Chapter 6: Hypermedia Documents Chapter 7: Advanced Form Applications Chapter 8: Multiple Form Interaction Chapter 9: Gateways, Databases, and Search/Index Utilities Chapter 10: Gateways to Internet Information Servers Chapter 11: Advanced and Creative CGI Applications Chapter 12: Debugging and Testing CGI Applications Appendix A: Perl CGI Programming FAQ Appendix B: Summary of Regular Expressions Appendix C: CGI Modules for Perl 5 Appendix D: CGI Lite Appendix E: Applications, Modules, Utilities, and Documentation Index Examples - Warning: this directory includes long filenames which may confuse some older operating systems (notably Windows 3.1). Search the text of CGI Programming on the World Wide Web. Copyright © 1996, 1997 O'Reilly & Associates. All Rights Reserved. Chapter 1 1. The Common Gateway Interface (CGI) Contents: What Is CGI? CGI Applications Some Working CGI Applications Internal Workings of CGI Configuring the Server Programming in CGI CGI Considerations Overview of the Book 1.1 What Is CGI? As you traverse the vast frontier of the World Wide Web, you will come across documents that make you wonder, "How did they do this?" These documents could consist of, among other things, forms that ask for feedback or registration information, imagemaps that allow you to click on various parts of the image, counters that display the number of users that accessed the document, and utilities that allow you to search databases for particular information.
    [Show full text]
  • Kurt Hornik I
    R FAQ Frequently Asked Questions on R Version 2.6.2007-10-22 ISBN 3-900051-08-9 Kurt Hornik i Table of Contents 1 Introduction............................... 1 1.1 Legalese .................................................... 1 1.2 Obtaining this document..................................... 1 1.3 Citing this document ........................................ 1 1.4 Notation.................................................... 1 1.5 Feedback ................................................... 2 2 R Basics .................................. 3 2.1 What is R? ................................................. 3 2.2 What machines does R run on?............................... 3 2.3 What is the current version of R?............................. 4 2.4 How can R be obtained? ..................................... 4 2.5 How can R be installed? ..................................... 4 2.5.1 How can R be installed (Unix) ........................... 4 2.5.2 How can R be installed (Windows) ....................... 5 2.5.3 How can R be installed (Macintosh) ...................... 5 2.6 Are there Unix binaries for R? ............................... 6 2.7 What documentation exists for R? ............................ 6 2.8 Citing R .................................................... 8 2.9 What mailing lists exist for R? ............................... 9 2.10 What is CRAN? ........................................... 10 2.11 Can I use R for commercial purposes? ...................... 10 2.12 Why is R named R? ....................................... 11 2.13 What
    [Show full text]
  • Version : 2009K Vendor: Centos Release : 1.El5 Build Date
    Name : tzdata Relocations: (not relocatable) Version : 2009k Vendor: CentOS Release : 1.el5 Build Date: Mon 17 Aug 2009 06:43:09 PM EDT Install Date: Mon 19 Dec 2011 12:32:58 PM EST Build Host: builder16.centos.org Group : System Environment/Base Source RPM: tzdata-2009k- 1.el5.src.rpm Size : 1855860 License: GPL Signature : DSA/SHA1, Mon 17 Aug 2009 06:48:07 PM EDT, Key ID a8a447dce8562897 Summary : Timezone data Description : This package contains data files with rules for various timezones around the world. Name : nash Relocations: (not relocatable) Version : 5.1.19.6 Vendor: CentOS Release : 54 Build Date: Thu 03 Sep 2009 07:58:31 PM EDT Install Date: Mon 19 Dec 2011 12:33:05 PM EST Build Host: builder16.centos.org Group : System Environment/Base Source RPM: mkinitrd-5.1.19.6- 54.src.rpm Size : 2400549 License: GPL Signature : DSA/SHA1, Sat 19 Sep 2009 11:53:57 PM EDT, Key ID a8a447dce8562897 Summary : nash shell Description : nash shell used by initrd Name : kudzu-devel Relocations: (not relocatable) Version : 1.2.57.1.21 Vendor: CentOS Release : 1.el5.centos Build Date: Thu 22 Jan 2009 05:36:39 AM EST Install Date: Mon 19 Dec 2011 12:33:06 PM EST Build Host: builder10.centos.org Group : Development/Libraries Source RPM: kudzu-1.2.57.1.21- 1.el5.centos.src.rpm Size : 268256 License: GPL Signature : DSA/SHA1, Sun 08 Mar 2009 09:46:41 PM EDT, Key ID a8a447dce8562897 URL : http://fedora.redhat.com/projects/additional-projects/kudzu/ Summary : Development files needed for hardware probing using kudzu.
    [Show full text]
  • Kurt Hornik I
    R faq Frequently Asked Questions on R Version 2.7.2008-04-18 ISBN 3-900051-08-9 Kurt Hornik i Table of Contents 1 Introduction ............................... 1 1.1 Legalese ................................................ 1 1.2 Obtaining this document................................. 1 1.3 Citing this document .................................... 1 1.4 Notation................................................ 1 1.5 Feedback ............................................... 2 2 R Basics .................................. 3 2.1 What is R? ............................................. 3 2.2 What machines does R run on?........................... 3 2.3 What is the current version of R?......................... 4 2.4 How can R be obtained? ................................. 4 2.5 How can R be installed? ................................. 4 2.5.1 How can R be installed (Unix) ................... 4 2.5.2 How can R be installed (Windows) ............... 5 2.5.3 How can R be installed (Macintosh).............. 5 2.6 Are there Unix binaries for R? ........................... 6 2.7 What documentation exists for R? ........................ 7 2.8 Citing R................................................ 8 2.9 What mailing lists exist for R? ........................... 9 2.10 What is cran? ....................................... 10 2.11 Can I use R for commercial purposes? .................. 11 2.12 Why is R named R? ................................... 11 2.13 What is the R Foundation? ............................ 11 3 R and S .................................
    [Show full text]