2022年Perl语言高级编程专题 .pdf
《2022年Perl语言高级编程专题 .pdf》由会员分享,可在线阅读,更多相关《2022年Perl语言高级编程专题 .pdf(12页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、Pomeftp.orgSpring, 20071Perl语言高级编程专题Lesson 14周晓方coursesxfzhou.homeftp.orgerlcoursesxfzhou.hSpring, 20072Web browser & Http Server1.User opens browser and enters a target address2.Browser connects to the server (on port 80), and sends request3.Server finds the web page and returns it with HTTP header
2、.4.If not found, server returns an error message.5.Browser transforms the reply and display to user.ClientServerGET /index.htm HTTP /1.0HTTP /1.0 200 OK HTTP /1.0 404 Not Found?Try these:telnet 80type GET / HTTP /1.0, with 2 ENTERstelnet 25telnet 110名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - -
3、 - - - 名师精心整理 - - - - - - - 第 1 页,共 12 页 - - - - - - - - - Pomeftp.orgSpring, 20073Web Server & CGI Perl1.User opens browser and enters a target address2.Browser connects to the server (on port 80), and sends request3.Server setups CGI environment and starts the Perl CGI script. After script termina
4、ls, server collects and returns the result.4.If Perl CGI script not found, server returns an error message.5.Browser transforms the reply and display to user.+The web page is dynamic, not static+Perl/CGI is almost platform independent (v.s. ASP etc) +Client browser is simple (v.s. client side script
5、s)-Speed may be slower if server is slow (v.s. ASP).ClientServerGETHTTPCGIPerl CGI scripterlcoursesxfzhou.hSpring, 20074Install a local Web Server? Check if tcp/ip protocol is installed on your PC? xitami free web server ()xitami/Pro 是带 SSL的xitami http:/ Install the GUI version of web server? Setuph
6、ttp:/localhost/admin? home of webpage: /xitami/webpages? home of cgi scripts: /xitami/cgi-bin? home of ftp root: /xitami/ftproot/?/? test server: http:/localhost/? test cgi: http:/localhost/cgi-bin/testcgi名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 12 页 - -
7、- - - - - - - Pomeftp.orgSpring, 20075Write a 1st Web Page? Add following lines to /webpages/home.htm? Open IE & links to http:/localhost/home.htmMy 1st Web PageHay! Welcome to my homepage!Still underconstruction.TimeHay! Welcome to my homepage!Still under construction. Timeerlcoursesxfzhou.hSpring,
8、 20076Write a 1st CGI-Perl script? Add these lines to/cgi-bin/time.pl? Click the Timelink, and runs thescript on server.#!/usr/bin/perl -wuse strict;my $time = localtime();print HERE;Content-type: text/htmlWhats the time?Current time is$timeBackHERE1;Current time isSun Nov 9 08:17:07 2003Back名师资料总结
9、- - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 12 页 - - - - - - - - - Pomeftp.orgSpring, 20077Xitami Server Hints? 公网网站一定要拿 ICP号http:/ 尽量避免开设论坛、博客、新闻等内容? 解包xiopen_2_5.zip后可直接运行GUI / Console / Server / Control panel 版本? 设置文件需要简单认证的网页口令和密码:xitami.aut网站和虚拟网站的设置:default.c
10、fg, *.cfg? 配置方法:打开 admin口,进入 http:/127.0.0.1/admin? 什么是 SSL(网页过滤功能 ):看一下 perlssi脚本? 怎么调试 CGI:查看 cgierr.log? 在一台主机上建立多个虚拟网站分目录, 绑定不同 的ip地址,绑定不同 的域名? 提示:安装路径 和perl路径不 要包含空格erlcoursesxfzhou.hSpring, 20078HTML formats & tags? Tags: v.s. Container tags: , .Empty tag, open tag, or one-time tag: , , Tag wi
11、th arguments: ? White spaces o Single space (with exceptions)? Special symbols (& is the escape-char in html):  or  , an non-breaking-space< (), & (& itself), &pi ( p), © or © ( ), ® (), ¥ (¥ )? 非frame的网页? Frame的网页 框架(用 notepad看一下 c:/perl/html/index.html )名师资料总结 - - -精品资料
12、欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 12 页 - - - - - - - - - Pomeftp.orgSpring, 20079Inside a section? , add a title on browser不宜过长? 显示中 文? sample: 周晓方 复旦大学 开课相关 网页 ? Good style Add comments in head section:erlcoursesxfzhou.hSpring, 200710Headings and paragraphs? ? Pa
13、ragraphs: A paragraph.The is optional with align=?: with nowrap: ? Adding line brakes: ? Preformatedparagraphs:White spaces are significant inside ? horizontal bar: width= pixelswidth= percent%size=pixelsalign=centeralign=leftalign=rightcolor=#rrggbbcolor=red/green/lightblue/darkgray 名师资料总结 - - -精品资
14、料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 12 页 - - - - - - - - - Pomeftp.orgSpring, 200711Text formatting? Bold粗体字 Italic 斜体下划线 划线? 大号字体 小号.? 字体.? 下标上标? 逻辑字体加重 等宽, .变量erlcoursesxfzhou.hSpring, 200712Listing? ordered list:Apply projectSign contract & budgetHardworkingChec
15、k point? unordered list:Leaser Jet 6LLeaser Jet 1010cheeperfaster1. Apply project 2. Sign contract & budget 3. Hardworking 4. Check point?Leaser Jet 6L ?Leaser Jet 1010 cheeper faster 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 6 页,共 12 页 - - - - - - - - - Pomeftp
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年Perl语言高级编程专题 2022 Perl 语言 高级 编程 专题
限制150内