为了构建一个Linux-PDA的开发环境,您需要以下前提:
(1) Linux内核支持Frame Buffer
此项需要是为使用DirectFB而准备的
(2) 有一个可运行的Linux发行版本,支持chroot
此项是为运行Linux-PDA编译环境而准备的
(3) Linux内核支持devfs(可选)
在最新版的2.4.x内核里有这一项,2.6内核也支持,不过改为obsolescent了,未来考虑改为udev
此项方便在编译环境中使用外部设备
具体的构建步骤为:
1、从http://www.uclibc.org/downloads/下载最新版的root_fs_i386
网址(http://www.uclibc.org/downloads/)
我使用的是25-Jul-2004版的,写作本文时最新版是03-Jan-2005,具体操作时可能会有一些差异,但安装过程应该大体一致
2、chroot到解压后的root_fs中,以后的工作将在此环境中进行
如果需要下载,可以打开另一个控制台,在其下完成下载任务,然后复制到root_fs目录中
3、下载perl-5.8.5源码,编译并安装
网址(http://www.cpan.org/src/stable.tar.gz)
上述网址在本文写作时所对应的是perl-5.8.6版本,未测试,但应该不会有太大问题
请使用
$/bin/bash Configure -d -e -O -Uuseperlio
以避免使用uclibc编译perl时的perlio错误
4、下载pkgconfig-0.15.0源码,编译并安装
网址(http://www.freedesktop.org/software/pkgconfig/releases/pkgconfig-0.15.0.tar.gz)
5、下载libiconv-1.9.2源码,编译并安装
网址(http://ftp.gnu.org/gnu/libiconv/libiconv-1.9.2.tar.gz)
6、下载gettext-0.13源码,编译并安装
网址(http://ftp.gnu.org/gnu/gettext/gettext-0.13.tar.gz)
glib-2.4.8需要这个软件包,uclibc中有该软件包所提供的函数接口,不过还没有真正实现。
7、下载glib-2.4.8源码,编译并安装
网址(ftp://ftp.gtk.org/pub/gtk/v2.4/glib-2.4.8.tar.bz2)
8、下载expat-1.95.8源码,编译并安装
网址(http://sourceforge.net/projects/expat/)
9、下载freetype-2.1.4源码,编译并安装
网址(http://sourceforge.net/project/showfiles.php?group_id=3157)
请不要使用更新版本的freetype-2,例如freetype-2.1.9,否则可能引起与fontconfig软件包的兼容性问题
10、下载fontconfig-2.2.90源码,编译并安装
网址(http://freedesktop.org/software/fontconfig/releases/fontconfig-2.2.90.tar.gz)
您可能需要将本地目录/usrs/share/fonts/下的内容复制到您的开发目录的$your_develop_dir/usr/share/fonts/下,以便让fontconfig正常运行
11、下载pango-1.4.1源码,编译并安装
网址(ftp://ftp.gtk.org/pub/gtk/v2.4/pango-1.4.1.tar.bz2)
12、下载atk-1.6.1源码,编译并安装
网址(ftp://ftp.gtk.org/pub/gtk/v2.4/atk-1.6.1.tar.bz2)
13、下载libpng-1.2.7源码,编译并安装
网址(http://sourceforge.net/project/showfiles.php?group_id=5624)
libpng1.2.7有两个版本,一个是支持configure的,一个是不支持的,按你自己的喜好选择吧
写本文时看到有关libpng安全性的一个警告(http://www.libpng.org/pub/png/libpng.html)请尝试使用libpng-1.2.8编译并安装
14、下载jpeg-6b源码,编译并安装
网址(ftp://ftp.gtk.org/pub/gtk/v2.4/dependencies/jpegsrc.v6b.tar.gz)
15、下载tiff-v3.6.1源码,编译并安装
网址(ftp://ftp.gtk.org/pub/gtk/v2.4/dependencies/tiff-v3.6.1.tar.gz)
16、下载libtool-1.5.10源码,编译并安装
网址(http://ftp.gnu.org/gnu/libtool/libtool-1.5.10.tar.gz)
在安装DirectFB软件包是需要用到libtool
17、下载DirectFB-0.9.21源码,编译并安装
网址(http://www.directfb.org/downloads/Core/DirectFB-0.9.21.tar.gz)
运行autogen.sh自动产生配置文件并做第一次默认编译,
以后再编译的时候不需要运行autogen.sh,可以直接使用configure来配置
18、从www.directfb.org的cvs服务器上co最新版的gdk-directfb
仔细阅读
README
19、下载gtk+-2.4.14源码,解压
网址(ftp://ftp.gtk.org/pub/gtk/v2.4/gtk+-2.4.14.tar.bz2)
假设您解压到/root/gtk+-2.4.14/目录下
20、安装gdk-directfb的README所述将,gdk-directfb移到/root/gtk+-2.4.14/gdk/目录下,并改名为directfb
您会发现在/root/gtk-2.4.14/gdk/目录下,有x11、win32、linux-fb和directfb四个目录,这些都是gtk的图形接口bankend。我们将只用到directfb,但是可以参考其他目录,特别是linux-fb目录的内容
21、回到/root/gtk-2.4.14/目录下,并执行patch动作
$cd /root/gtk-2.4.14/
$patch -Np0 -i gdk/directfb/gtk-directfb.patch
系统会提示某些地方patch的位置偏移了,这个没关系,因为gtk-directfb.patch只是patch gtk+的配置文件,这个patch应该是为gtk-2.4.9做的,但不影响使用
22、重新生成配置文件
$aclocal
$automake --add-missing
$autoconf
这需要安装autoconf-2.59网址(http://ftp.gnu.org/gnu/autoconf/autoconf-2.59.tar.bz2)和automake-1.7网址(http://ftp.gnu.org/gnu/autoconf/automake-1.7.9.tar.bz2)
同时还需要编辑configure.in文件,加入
AM_CONDITIONAL(ENABLE_GTK_DOC, false)
AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, false)
有关automake、autoconf和libtool的资料可以参阅autobook网址(http://sources.redhat.com/autobook/)以及Learning the GNU development tools
网址(http://autotoolset.sourceforge.net/tutorial.html)
23、编译并安装GTK/DirectFB
$./configure --with-gdktarget=directfb
$make
$make install
致此,您的基于uclibc+directfb+gtk+的Linux-PDA开发环境已经搭建好了
下边您就可以尝试在GTK基础上开发Linux-PDA的应用程序了。
24、首先来试试GTK自带的demo程序
如果您刚才是在X window system(或者桌面环境下)工作,请先退出X window,回到控制台状态。
在运行gtk-demo前,请将gpm关闭,因为gpm与DirectFB产生冲突,致使鼠标不能正常工作。
警告!!!作者至今还没有找到在640x480模式下如何退出gtk-demo的办法,每次运行后,都使用另外一个控制台重启机器:p
运行gtk-demo后您可以尝试着打开各种widget,试验完后重启机器。
好了,现在可以试试GPE了,有关GPE的详细资料请浏览(http://gpe.handhelds.org/)
25、下载SQLite-2.8.15源码,编译并运行
网址(http://www.sqlite.org/sqlite-2.8.15.tar.gz)
GPE使用SQLite作为数据管理工具,已做的试验中还没有用到该软件包,但是还是先装上吧
26、下载gpe-icon-0.24并安装
网址(ftp://gpe.handhelds.org/projects/gpe/source/gpe-icons-0.24.tar.gz)
27、下载libschedule-0.13源码,编译并安装
网址(ftp://gpe.handhelds.org/projects/gpe/source/libschedule-0.13.tar.gz)
28、下载libgpewidget-0.95,作为参考
网址(ftp://gpe.handhelds.org/projects/gpe/source/libgpewidget-0.95.tar.gz)
本文写作时libgpewidget已经发布0.97版本了,本文作者是基于libgpewidget-0.95进行修改,使其可以在GTK/DirectFB下运行。
修改的主要工作是将原libgpewidget中的Xlib函数用GDK中的函数替换,因为只是想验证可行性,修改比较简单,存在很多bug,使用者请小心:p
请下载本文附录文件,解压并安装libgpewidget-0.95-dfb
29、下载gpe-clock-0.9,作为参考
网址(ftp://gpe.handhelds.org/projects/gpe/source/gpe-clock-0.9.tar.gz)
我们将尝试修改gpe-clock使其运行在GTK/DirectFB下,作为GPE的试验。
请下载本文附录文件,解压并安装gpe-clock-0.9-dfb
30、运行gpe-clock,然后退出(如果不能退出请使用前述的重启大法)
您会看到在屏幕左上角有一个小时钟在运行,当然在Familiar发布版本里,它是在右下角的工具条上的。
/*
* 以下文字权当作者自我安慰的理由吧:-)
*/
通过上述步骤可以看到一个结构划分比较清晰的PDA软件系统已经构造出来了,其基本框架如下图所示:
+----------------------------------------------+
| Application/GPE |
+--------------------------+-------------------+
| GTK | other libs |
+--------------+-----------+ libpng |
| GDK/DirectFB | | libjpeg |
+--------------+ pango/ATK | libtiff |
| Glib | | ...... |
+--------------+-----------+-------------------|
| uclibc |
+----------------------------------------------+
| DirectFB/Linux-kernel-fb |
+----------------------------------------------+
该系统构架用DirectFB取代了X window system,将原有的GPE系统中与X window system交织在一块的部分分离出来,提高了各模块的聚合度,并将模块间的相互耦合的可能减小了。在获得硬件抽象的同时也得到了硬件加速的支持(这个有赖于DirectFB的实现)
其实这个趋势从GTK的发展计划也可以看到,现在GTK将不仅仅是构建在X window system上的ToolKit了,更有可能成为GUI抽象接口,通过GDK层来抹平底层不同windowing system的区别,为应用程序开发人员提供统一的接口。当然,如果要用到底层windowing system的特性,或许还要直接访问底层windowing system的api,但是,只要GDK做得足够好,这些都是可以解决的。
/*
* 以上文字属于纯净水类型,可以不予考虑
*/
未来的工作:
1、将现有的GPE应用程序移植到上述软件构架下
2、参与GPE项目未实现的功能开发
3、精简最终代码长度,实现将最终的基本系统放入8M/16M flash中
《Linux-PDA软件开发环境的构建》一文或许让大家看得迷迷糊糊的,有句古话说,"一个例子胜过一千遍的说教"(古代的老外说的,翻译过来大概意思是这样子的;-))
好了,今天就让我们来正式体验一下这个软件开发环境吧。
首先,说说我的系统环境吧
我的系统是Red Hat 9,运行在vmWare4.5.2上,cpu是Intel P4-2.4的
如果您使用的AMD的cpu,附件中提供的内核可能不适合您。
您需要一个支持Frame Buffer和devfs的Linux内核,如果您还没有或者不想自己动手编译一个,请下载附件中的boot.tar.bz2
解压到/boot目录下,如果您的引导程序使用的是GRUB,请在其中加入类似下文的一段title:
title Red Hat Linux (2.4.27-fb)
root (hd0,6)
kernel /vmlinuz-2.4.27-fb root=/dev/hda8 devfs=mount vga=785
initrd /initrd-2.4.27-fb.img
请注意在kernel后加入参数 devfs=mount vga=785
devfs=mount表示内核使用devfs
vga=785表示使用VESA Frame Buffer的VGA 640x480x64k色的模式
请参看下表
# VESA framebuffer console @ 1024x768x64k
vga = 791
# Normal VGA console
# vga = normal
# VESA framebuffer console @ 1024x768x64k
# vga=791
# VESA framebuffer console @ 1024x768x32k
# vga=790
# VESA framebuffer console @ 1024x768x256
# vga=773
# VESA framebuffer console @ 800x600x64k
# vga=788
# VESA framebuffer console @ 800x600x32k
# vga=787
# VESA framebuffer console @ 800x600x256
# vga=771
# VESA framebuffer console @ 640x480x64k
# vga=785
# VESA framebuffer console @ 640x480x32k
# vga=784
# VESA framebuffer console @ 640x480x256
# vga=769
如果您使用lilo,请查阅相关资料
如果您使用的是Red Hat发行版本,Red Hat已经为您做好有关devfs的一些配置了,如果是其它发行版本,请查阅相关资料
好了,假设您已经用新的内核成功启动并进入系统了,下边让我们来试试这个Linux-PDA的软件环境吧
请下载附件中的developroot.tar.bz2,并解压,假设您使用root用户工作
# tar jvxf developroot.tar.bz2
# chroot developroot
进入Linux-PDA软件环境
#./initroot.sh
挂接上devfs和proc准备好运行环境
接下来可以试试gtk-demo了,
#killall gpm
关掉gpm进程
#gtk-demo
这时您可以看到gtk-demo中的各种widget列表,一个个试试吧
好了,使用重启大法吧
如前的操作进入到Linux-PDA软件环境
#chroot developroot
#./initroot.sh
#killall gpm
#gpe-clock
您可以看到在屏幕的左上方有一个小时钟,点击它,会弹出一个菜单,看看各个选项吧,最后选择"remove from panel"退出程序。
如果您对这样的环境感兴趣,想了解是如何构造的,请下载附件中的root.tar.bz2,并在开发环境的根目录下(即/目录)解压,root.tar.bz2文件的内容将解压到/root目录中,您将看到您的开发环境中的/root目录下多了一些目录,这些目录的作用和功能,以及相应的软件包如何编译、安装请参阅《Linux-PDA软件开发环境的构建》一文。
是不是觉得没什么难的?呵呵,其实Linux就是这样简单,一起来玩吧。


201.250.73.* 于 2007-06-10 19:34:23发表:
62d11b60484f914e2e074058fc3a9d7e http://1999-incendio-treno-tifoso-salernitana-cassazione.mksqkw.net.in/ http://fumetto-topolino-pagina-109-n-2366.ooqqld.net.in/ http://giochi-punta-e-clicca-gratis.kfxrfs.net.in/ http://invito-disney-festa-compleanno-scarica.innltr.net.in/ http://codice-strada-trasporto-eccezionale-mezzo-militare.innltr.net.in/ http://partire-1990-immigrazione-italia-condizioni-soggiorno.mksqkw.net.in/ http://fac-simile-modulo-nota-spese.ooqqld.net.in/ http://silent-hunter-3-fine-missione.dtifhu.net.in/ http://i-sintomo-di-un-aborto-interno.ooqqld.net.in/ http://foto-gratis-donna-matura-fanno-sesso.ooqqld.net.in/ 319dbbb4ab069a1bfb4a4d4d12c61dcd
213.231.104.* 于 2007-06-09 18:23:00发表:
47b6d5a05fb55148be643af53a564ecd http://britney-official-site.blogspot.com/ http://spears-news.blogspot.com/ http://blog.myspace.com/196098739 http://blog.myspace.com/196097101 http://cantante-napoletano-nino-d-angelo.mksqkw.co.in/ http://hip-hop-italiano-fish-grossa.hhknox.co.in/ http://britney-official-site.blogspot.com/ http://legge-10-gennaio-2004-n-12.innltr.co.in/ http://storia-d-amore-giulio-scarpati.pifljm.co.in/ http://blog.myspace.com/195751575 48c0bb0f30b00789fa1734f152bbea8f
80.38.232.* 于 2007-06-08 18:52:47发表:
3d6b4dafc61aa21a0369241da86ef592 http://partito-luis-inacio-lula-silva.lbpwqo.org/ http://video-ed-ero-contentissimo-tiziano-ferro.iumzde.org/ http://quibus-rebus-cognitis-ex-perfugis-cesare.qjgasd.org/ http://anno-70-vari-cd-musicale.lbpwqo.org/ http://suora-maria-teresa-calcutta-adozione.hwqegr.org/ http://romania-programma-tv-media-set.akermn.org/ http://attivazione-windows-2003-login-bloccato.mbxbva.org/ http://guida-da-te-la-tua-canoa.lbpwqo.org/ http://cosa-rester-raf-accordo-spartito.mbxbva.org/ http://art-159-d-lgs-267-2000.lbpwqo.org/ e44c2d91c99facb894d3b26e91151560
201.242.48.* 于 2007-06-07 21:06:05发表:
16e5ff78aadd19163a01fa6f0dccd32f http://la-fabbrica-di-cioccolato-copertina-dvd.kkwhbs.org/ http://modulo-utilizzo-immagine-persona-privacy.sjfnnx.org/ http://stampante-laser-colore-clp-300.ulhxdx.org/ http://forever-you-and-testo-tradotto-lighthouse.ivrfxb.org/ http://stock-armadi-moderni-in-pino.fjhozm.org/ http://pechino-beijing-devils-rugby-club.yixkrt.org/ http://corsi-di-musica-a-napoli.sjfnnx.org/ http://sciopero-pubblico-impiego-7-dicembre-2006.rpddkk.org/ http://concerto-capodanno-2007-zubin-programma.rpddkk.org/ http://maria-grazia-cucinotta-film-dvd.fjhozm.org/ 2e2f8656ca7971267ae7180fc612fe21
84.123.138.* 于 2007-06-06 23:35:25发表:
e17a0d1f3dd30268ae90d1f2add29b73 http://conoscete-locale-fanno-musica-vivo.alflim.info/ http://allegato-4-d-m-186-2006.rwikgt.info/ http://mappa-italia-barcellona-pozzo-gotto.rwikgt.info/ http://scarpa-donna-camoscio-vernice-hogan.rwikgt.info/ http://letti-e-divani-in-ferro.vkzwxs.info/ http://affitto-capannone-masi-comune-badia-polesine.alflim.info/ http://calcio-balilla-garlando-g-2000.dpydtd.info/ http://laboratorio-tecnologico-provette-prova-trazione.vdamgw.info/ http://microsoft-office-2003-aggiornamento-italiano.gjtkci.info/ http://midi-files-cantanti-italiano-scaricare-gratis.alflim.info/ 6dea66dd0952ca77d762129bda0df247
201.248.159.* 于 2007-06-06 02:43:10发表:
8cea3de79c3865149e94f6e44e0d6681 http://cerca-codice-sblocco-rete-lg-u8110.lbvsgo.info/ http://suoneria-polifoniche-gratis-motorola-v220.yyunae.info/ http://scarica-norton-antivirus-2005-gratis.duajwe.info/ http://hotel-4-stella-montagna-veneta.qirjux.info/ http://dato-consegne-mercedes-classe-g.xaotvu.info/ http://viaggio-aereo-torino-lamezia-terme.qwoucn.info/ http://castello-my-little-pony-hasbro.duajwe.info/ http://cerco-casa-monza-centro-storico.duajwe.info/ http://la-storia-di-robin-hood.yyunae.info/ http://fare-orientamento-gioco-dell-oca.lbvsgo.info/ 11bac96dbb32ab2fd1a6f4018c996a56
190.36.32.* 于 2007-06-05 08:07:55发表:
f94e9817d733841b756f893cd8d30e6d http://fornitura-parrucchiera-ostia.dhvvfi.info/ http://kebab-tuscolana.dhvvfi.info/ http://golf-recaro-sedile.fwpjkf.info/ http://ferrilli-nuda.wkermn.info/ http://tecnocasa-emilia-romagna-moho6.boixkk.info/ http://nol-governatore-cambogia.dvtuzm.info/ http://reparto-oculistica-ospedale-sandro-pertini.dvtuzm.info/ http://camillo-cenfuego.uyohtb.info/ http://videoregistratore-hi8.kbucdn.info/ http://istruzione-funzionamento-cellulare-samsung-p910.dhvvfi.info/ 4080af707aca2bbb96231fb1b4743d28
80.33.32.* 于 2007-06-04 13:41:24发表:
7a0473ee298e510b143c29e675672808 http://url-http-www-porto-it-tullerosa.vprmbs.org/ http://casa-d-asta-numismatica-svizzera.divuvu.org/ http://occhiali-da-sole-di-bulgari.nfvzoo.org/ http://last-minute-volo-roma-n-j.dlmpxx.org/ http://immobili-in-vendita-ad-avola.vprmbs.org/ http://foto-molto-privata-federica-t-nuda.pgbdyc.org/ http://sondaggi-elettorali-elezioni-politiche-2006.dqiqbg.org/ http://testo-canzone-red-hot-chili-peppers.vprmbs.org/ http://imposta-bollo-conto-correnti-bancario.vprmbs.org/ http://unicredit-banca-it-mille-genius.divuvu.org/ e2344a7b53a49ae4d6fdb2a64dbf9945
82.240.42.* 于 2007-06-03 17:26:52发表:
f1a3c5674c16be657d8e82a6e17cd55c http://soniaformentiflauto.nlamku.org/insegne-girevoli/index.htm http://diagrammapsicrometricoexcel.akqcvy.org/driver-installazione-motorola-c390/index.htm http://prezzosaecocaffc3a8.inkrxe.org/assistenza-tecnica-chaffoteaux-et-maury-messina/index.htm http://contestarecontravvenzioneztl.seyzuo.org/masterizzare-file-cso/index.htm http://prezzosaecocaffc3a8.inkrxe.org/hotel-dar-auis-apollonia/index.htm http://uitlivellospurie.beajbg.org/evola-suicida/index.htm http://contestarecontravvenzioneztl.seyzuo.org/istruzione-termostato-bpt/index.htm http://klariceferraro.seyzuo.org/bocchetta-foro-stella/index.htm http://serafinoveryetnico.beajbg.org/misurazione-grado-curva-angolosa/index.htm http://bollettinouffficialedellaregionecalabria.seyzuo.org/albrghi-agriturismo-umbria/index.htm 83869c431dabc6ba13fe3e3c64cc8ac5
80.59.40.* 于 2007-06-03 00:12:02发表:
620b5fe43ce0b1c95124399b284c1223 http://videocitofonovivavoce.sdibjo.org/mantella-impermeabili-roma/index.htm http://civettaapparatodigerente.ksibgs.org/pulpweb-yulia-nova/index.htm http://motomodellinoscaladucatimonster600.sdibjo.org/braun-apparecchio-dentali/index.htm http://teuco2bidromassaggio.ksibgs.org/fasten-furios-tokyo-drift/index.htm http://simonetomassinibarbalunga.sdibjo.org/omnia-congress-agrigento/index.htm http://samueldiscopub.shxghd.org/rosella-giba/index.htm http://civettaapparatodigerente.ksibgs.org/delibera-giunta-regionale-puglia-cane-randagio/index.htm http://sintomoerniacervicalemolla.ksibgs.org/disegno-disney-aristogatto/index.htm http://immaginetavernettepiemonte.ksibgs.org/cum-on-jugs-brunetta/index.htm http://samueldiscopub.shxghd.org/venditore-antenna-cb-fisse/index.htm 691e5261e7f26fe9bfca38d324fb1940
69.79.166.* 于 2007-06-02 02:50:29发表:
a5734ad8756a6fea7eb0958c64e7232c http://ditloide404nt.akqcvy.org/baudrillard-cyberfilosofie/index.htm http://giuliocozzolibiografia.nlamku.org/attacco-burton-custom-taglia/index.htm http://edilserviceattrezzaturaedile.nlamku.org/carnevale-scherzo-scenette/index.htm http://contestarecontravvenzioneztl.seyzuo.org/scipero-treni-5-aprile/index.htm http://leonardomazziniarezzocalciotesserati.inkrxe.org/forum-telecom-aladino2/index.htm http://telaiobicilook386.akqcvy.org/five-club-student-party-gavardo/index.htm http://cassalemh200.akqcvy.org/pacing-gastrico/index.htm http://cistiterapportosessualeastenersi.inkrxe.org/elettrode-snap/index.htm http://commercializzazionecandelaprofumate.inkrxe.org/hms-concessionario-bolzano/index.htm http://fotovespav33t.seyzuo.org/kb319740-v5-x86-ita/index.htm 63aa5c5d6850cbd0ab7a0b3644130d9e
24.139.157.* 于 2007-06-01 09:22:29发表:
ab6e1b014d6fef46b433501f2baa5d7b http://iniziogravidanzafalsemestruazione.leikrf.org/formazione-fondazionelavoro-it/index.htm http://pigiamadonnasalopette.mljuyb.org/everlast-costume-bagno-elasticizzato/index.htm http://sookyinleenuda.uzghnh.org/lavoretto-rotoli-carta-igienica/index.htm http://poltronapapasan.leikrf.org/emmezeta-fasano-com/index.htm http://nepotethemistocles.leikrf.org/cosa-metttere-valigia/index.htm http://motoguzziv7clubit.leikrf.org/moscato-pantelleria-liquoroso-doc-tanit/index.htm http://1984decretopresascart.pdjkai.org/novo-hotel-montchanin-francia/index.htm http://ombrellonefustolegno.gkgobd.org/fotoinserimento-blender/index.htm http://viapaolinisitaostialidoroma.uzghnh.org/raimondi-utensile/index.htm http://frobollirepubblicaitaliana.pdjkai.org/fondazione-don-gnocco-via-casal-marmo/index.htm 5447788e0ee79eeca3d64876f41eb1cf
200.84.3.* 于 2007-05-30 01:28:37发表:
5d3a7518bcbc990d6408246ad09ecae0 http://pegekq.org/loga/loga-jet-novo-estado-de-sao-paulo.html http://pegekq.org/cristiane/cristiane-danila.html http://pegekq.org/apostila/apostila-csharp.html http://mnopyi.org/reportagem/reportagem-escravos.html http://pegekq.org/bolo/bolo-de-coco.html http://wfcqxw.org/prazo/prazo-para-recurso.html http://wfcqxw.org/mapa/mapa-belo-horizonte-bairro-santo-agostinho.html http://mnopyi.org/pranto/pranto-candido-portinari.html http://pegekq.org/turnover/turnover-rede-hoteleira.html http://ovvkft.org/regina/regina-vogue.html a91f06099d8916d08fc86aebeef191c8
201.224.110.* 于 2007-05-29 00:19:17发表:
eefc6cda5b42d92c4cefab15b3254325 http://xwqumn.org/chuveiro/chuveiro-bbb7.html http://sxrzpn.org/poema/poema-de-basilio-da-gama.html http://lcitij.org/informador/informador-das-construcao.html http://sxrzpn.org/casa/casa-para-alugar-na-zona-oeste.html http://xvqeoy.org/chave/chave-vila-trafico.html http://xvqeoy.org/aconteceu/aconteceu-1991.html http://xwqumn.org/conceito/conceito-fracasso-escolar.html http://grpytd.org/calcular/calcular-tabela-price.html http://grpytd.org/desenho/desenho-do-musculo-da-face.html http://grpytd.org/aviao/aviao-teco-teco.html ea84313ff4cf4b8bb8ec851c693c83a5
201.246.23.* 于 2007-05-28 08:21:54发表:
15647726f2d6bdd36dfeb7bceeb0cf5a http://pegekq.info/venda/venda-de-teclado-musicais.html http://ifrtox.info/foto/foto-de-mulher-gravida-tranzando.html http://xvqeoy.info/particiona/particiona-disco-rigido-cd-rom.html http://ifrtox.info/colecao/colecao-ronaldo-esper.html http://pegekq.info/cultura/cultura-dos-povo-antigos.html http://xvqeoy.info/arco/arco-e-flecha-competicao.html http://ifrtox.info/previsao/previsao-tenpo-santa-catarina.html http://ifrtox.info/curso/curso-tecnico-seguranca-trabalho-poa.html http://mnopyi.info/senha/senha-site-driverguide.html http://ifrtox.info/receita/receita-faz-paeja.html 921da3b25f91ff5411abb8e73f72697f
62.87.105.* 于 2007-05-27 16:03:16发表:
c5df258aa55c90664c4abaff9e590d09 http://wfcqxw.info/maria/maria-luiza-costa-benevolo.html http://xwqumn.info/muleres/muleres-sexo-nuas.html http://ovvkft.info/ntt/ntt-curso-no-hotel-south-american-copacabana-hotel-rio-de-janeiro.html http://lcitij.info/prataria/prataria-alves.html http://sxrzpn.info/easytech/easytech-mp3-mp4-mp5.html http://wfcqxw.info/alisson/alisson-totti.html http://ovvkft.info/as/as-institutas-de-calvino.html http://wfcqxw.info/agencia/agencia-viagem-curitiba.html http://xwqumn.info/tinha/tinha-caido.html http://sxrzpn.info/hino/hino-corinthians-oficial-download.html 6d9dd05b81c19c63ae8e87cbbcfe2050
82.245.245.* 于 2007-05-27 00:49:36发表:
e963438282953090f544f87e46de0ff3 http://mnopyi.info/emater/emater-rondonia-acai-htm.html http://ifrtox.info/truque/truque-jogo-tony-hawks-3.html http://pegekq.info/portal/portal-aluno-ufg.html http://mnopyi.info/grafico/grafico-de-ponto-cruz-bebe.html http://mnopyi.info/dica/dica-elifoot.html http://grpytd.info/historia/historia-mulher-atuaram-politica.html http://grpytd.info/foto/foto-da-revolucao-francesa.html http://ifrtox.info/condicionador/condicionador-ar-20000.html http://pegekq.info/curso/curso-cabeleleiro-brasilia.html http://ifrtox.info/roms/roms-gba-portugues.html 899833c87d41a40d77c99858b4681e10
200.109.141.* 于 2007-05-26 10:37:23发表:
2e255cafbf382ddd38bd732fa7341c84 http://ovvkft.info/brinquedo/brinquedo-atacado.html http://ovvkft.info/ventura/ventura-corporate-towers.html http://sxrzpn.info/meggashop/meggashop-com-br.html http://sxrzpn.info/jogo/jogo-brincadeira-cultura-corporal-movimento.html http://sxrzpn.info/radio/radio-sertanejas-do-brasil.html http://ovvkft.info/impermeabilizacao/impermeabilizacao-de-piscina.html http://ovvkft.info/criterio/criterio-divisibilidade-7.html http://sxrzpn.info/cookies/cookies-navegador-desativada-ative.html http://wfcqxw.info/pequisa/pequisa-desenho.html http://lcitij.info/associacao/associacao-de-empresa-de-cobranca-do-estado-de-sao-paulo.html 3c6c60ce2277246c0f4063c97808fccb
221.32.172.* 于 2007-05-25 19:07:34发表:
987bc95ec7d1083fa910ca1cb500b4c6 http://analisi-metrica-piaga-d-amore.itwasb.org/ http://scuola-media-san-benedetto-roma.qumpvr.org/ http://capodanno-terme-dell-emilia-romagna.nuusjq.org/ http://testo-canzone-elisa-ostacoli-cuore.qumpvr.org/ http://la-nascita-di-venere-botticelli.qumpvr.org/ http://donna-matura-masturbano-ragazzo-giovane.pmdxoz.org/ http://chiesa-di-sant-andrea-a-mantova.pmdxoz.org/ http://case-in-vendita-castelli-romani.mbduev.org/ http://indice-dei-luogo-word-office.qumpvr.org/ http://gioco-scaricare-gratis-csi-miami.sfmyzx.org/ f4e92eaca3a0992e5377af9d5fb45ea4
201.218.67.* 于 2007-05-24 22:26:06发表:
755e2f2a555b73a425f88754f4573b9b http://www-digilander-libero-it-provveditorato.beoqvk.org/ http://rai-la-prova-del-cuoco-it.beoqvk.org/ http://consiglio-dei-ministro-n-32.beoqvk.org/ http://scarica-gratis-metal-slug-4-pc.hgfrvc.org/ http://credito-d-imposta-finanziaria-2006.ljznde.org/ http://personaggio-cartone-animato-sailor-moon.beoqvk.org/ http://maffei-pier-luigi-analisi-valore.beoqvk.org/ http://site-www-alice-it-alice-oggi.rsxmtx.org/ http://filastrocche-per-bambini-sulla-primavera.ikqtqu.org/ http://manzioni-responsabile-operativo-istituto-vigilanza.ljznde.org/ 46517f671cf87061af6ace763c7eda9d
190.75.80.* 于 2007-05-24 06:01:08发表:
3dc0c2aab77272aff77f1e3713a4d9ba http://fiorista-giorno-ristorante-sera-milano.mbduev.org/ http://park-hotel-cala-di-lepre.sfmyzx.org/ http://si-dice-buon-anno-ghanese.lxcjch.org/ http://vendita-cerchio-lega-cesano-boscone.lxcjch.org/ http://dpr-16-dicembre-1992-n-495.sfmyzx.org/ http://servizio-finanziario-commercio-news-january-2005.qumpvr.org/ http://trama-non-resta-piangere-inglese.itwasb.org/ http://attivare-mappa-tomtom-go-300.mbduev.org/ http://sistema-per-porte-a-vetro.pmdxoz.org/ http://villaggio-saturno-marina-di-camerota.pmdxoz.org/ 7798902e03c54f1db3af807b5937ee1b
190.16.147.* 于 2007-05-23 14:00:18发表:
6bac51f7972da25a5cddfe646e573381 http://nisys.zikpwk.net/2005-09-08.html http://bootsycollinsclub.qhrtwn.net/2005-09-17.html http://heimanconcrete.pbcqvd.net/2005-10-06.html http://ewsimons.pbcqvd.net/2005-08-03.html http://gretschdealers.iuwexi.net/2005-09-13.html http://tengani.smhiru.net/2005-10-09.html http://thechancegroup.smhiru.net/2005-07-15.html http://spicyfish.ynfqkm.net/2005-07-12.html http://guntactics.ipnwxi.net/2005-09-14.html http://azpinatas.utwikd.net/2005-09-01.html e7000c4d06986984b665ec9d15ae719a
82.213.138.* 于 2007-05-21 19:01:27发表:
d4bcbaaf21677c8f158cd0886bd5c770 http://minh-city-paese-si-trova.nofnhx.org/ http://oroscopo-giorno-vergine-gratis-com.vzlvrv.org/ http://tutto-ultima-puntata-c-posta-te.nofnhx.org/ http://istituto-tecnico-commerciale-g-ferraris.osjckd.org/ http://diagnosi-terapia-patologie-chirurgia-toracica.vzlvrv.org/ http://immagine-satellitario-coltivazioni-riso-provincia-biella.osjckd.org/ http://bobina-mobile-generatore-frequenza-programma.ynoxmw.org/ http://orario-aereo-reggio-calabria-pisa.nofnhx.org/ http://scarica-gratis-versione-emule-italiana.osjckd.org/ http://eutrosis-500-crema-idratante-intensiva.osjckd.org/ 417a8203d1b04948a6eb96aa4fb99866
82.159.77.* 于 2007-05-21 01:43:35发表:
5a2585c8314039ca220e3339a78fa5bd http://thnklightning.pbcqvd.net/2005-07-25.html http://horoscopefrancais.smhiru.net/2005-09-21.html http://0buckdomains.smhiru.net/2005-09-05.html http://aosynergy.qhrtwn.net/2005-10-05.html http://torqueauto.qsogkn.net/2005-08-17.html http://colgadero.pbcqvd.net/2005-10-01.html http://aosynergy.qhrtwn.net/2005-08-31.html http://tomlangtons.qhrtwn.net/2005-07-05.html http://numazu-akanekai.ynfqkm.net/2005-07-21.html http://atvencyclopedia.ynfqkm.net/2005-09-04.html b242eb585f2503f10c8eb79a53604d31
62.57.239.* 于 2007-05-18 05:28:01发表:
eb1815d32db0cc6d0de7ba96a80af240 http://crema-francese-idratante-corpo-fatta-acqua.csapok.org/ http://lettore-video-divx-amstrad-all-one.vzlvrv.org/ http://x-file-stagione-2-film-dvd.osjckd.org/ http://codice-installazione-pro-evolution-soccer-6.nofnhx.org/ http://tabella-ricarica-40-s-w.vzlvrv.org/ http://direttore-tecnico-di-agenzia-di-viaggi.nofnhx.org/ http://server-di-posta-in-arrivo-pop3.csapok.org/ http://libro-inglese-scuola-media-superiora.shqsxs.org/ http://belong-to-you-suoneria-polifonica.osjckd.org/ http://vangelo-luca-racconto-dell-infanzia.csapok.org/ af5e5529e610c2f14667e2377e4b1e8c
201.248.102.* 于 2007-05-16 19:59:36发表:
7f6c65d64750b7fbed8c2890ebd610c5 http://sec-ottocento-darwin-positivismo-naturalismo-verismo.znuawz.com/ http://cosa-serve-creare-musica-col-pc.znuawz.net/ http://materiale-infiammabile-canna-fumaria-distanza.znuawz.biz/ http://soluzione-gioco-pc-walt-disney.znuawz.net/ http://programma-pc-da-scaricare-gratis.hfnghd.co.in/ http://link-http-musicamid-mastertop100-org.hfnghd.name/ http://caduta-tensione-linea-mt-potenza-apparente.znuawz.biz/ http://hotel-fior-a-castelfranco-veneto.hfnghd.biz/ http://raiclick-che-tempo-che-fa.hfnghd.biz/ http://riviera-romagnola-alberghi-giugno-06.znuawz.net/ c5b410f967c066628d7832ce0ac5b28e
201.210.155.* 于 2007-05-16 05:09:09发表:
5f28f9b4282e4f4c918e87bd14afad14 http://disattivazione-tellefono-telecom.fflnuc.com/ http://passeggino-tako.fflnuc.biz/ http://scarica-mp3-chantal-kreviazuk.hzqpsj.net/ http://quanti-episodio-zoey-101.hzqpsj.net/ http://forno-franke-dc97p.fflnuc.com/ http://tagliatella-al-cacao-ricetta.fflnuc.name/ http://banca-credito-cooperativo-mediocrati-it.fflnuc.co.in/ http://lavatrice-ariston-avd-109.hzqpsj.com/ http://mercante-venezia-pagni.fflnuc.com/ http://foto-ufo-firenze-1954-corriere.hzqpsj.net/ e1c77cc030a7259f186177a086fb8a83
84.126.204.* 于 2007-05-14 21:30:37发表:
209d7890828594fabf1490a47b089bc6 http://palazzetto-it-treviglio-bg-concerto.nvdset.biz/ http://il-secolo-d-italia-quotidiano.nvdset.net/ http://giocare-world-of-warcraft-gratis.nvdset.name/ http://aria-della-regina-della-notte.xjpled.co.in/ http://tombola-cartella-serie-numero-stampa.nvdset.biz/ http://classifica-film-migliore-tutti-tempo.nvdset.biz/ http://tutti-appartamento-vendita-ad-aversa-ce.nvdset.com/ http://testo-poesia-silvia-giacomo-leopardi.nvdset.biz/ http://bau-site-lochness-altervista-org.nvdset.biz/ http://legge-19-09-94-n-626.xjpled.name/ 8115d97afce6272748d3203e407b2c31
217.216.164.* 于 2007-05-14 09:43:17发表:
934896d30f09bfc5b90bd86b727d1e0f http://search-www-isolaelba-info-nbci.klkhba.name/ http://creare-un-sito-in-flash.ujttwc.biz/ http://modello-lettera-inquilino-disdetta-locazione.ujttwc.name/ http://stutture-in-legno-per-giardini.ujttwc.name/ http://natale-new-york-colonna-sonora.klkhba.name/ http://soluzione-completa-tomb-raider-legend.ujttwc.name/ http://brand-extensions-contributo-letteratura-industrial-organization.ujttwc.name/ http://annuncio-ragazza-telefono-foto-roma.ujttwc.name/ http://encarta-kid-site-sanihelp-msn-it.ujttwc.net/ http://sviluppo-motorio-bambino-0-1-anno.klkhba.biz/ b0aa8b27a8ec12b02be4055d7baf88c7
201.248.230.* 于 2007-05-13 08:40:38发表:
bcfe700f4d936faff02a217945c56521 http://hotel-albergo-les-deux-alpes.ujttwc.biz/ http://visual-basic-ftp-attributi-file.ujttwc.com/ http://finanziaria-2005-assegno-familiare-tabella.klkhba.name/ http://manuale-giurisprudenza-on-line-gratis.ujttwc.net/ http://supporti-a-parete-per-tv-lcd.ujttwc.com/ http://antifurti-per-auto-con-combinatore-gsm.klkhba.co.in/ http://scuola-d-arte-figurative-accademia-firenze.klkhba.co.in/ http://controllo-formale-art-36-ter.ujttwc.com/ http://progettazione-tubo-plastico-illuminazione-interno-esterno.ujttwc.biz/ http://lanterna-luminosa-volanti-fine-anno.klkhba.name/ 784faf42bbc6bc8e3eef9ef627ced6bc
84.100.96.* 于 2007-05-12 16:42:56发表:
67e70969049c056f00e8cc625c50c868 http://dispositivo-protezione-individuale-cantiere-edile-doc.sjuvcf.info/ http://danno-dell-acido-acetil-salicilico.unhbej.info/ http://ict-on-line-spa-rubeo-renzo.jnonib.net/ http://vendita-ondulati-2006-reggio-calabria.uaaxsj.info/ http://banca-popolare-di-lanciano-e-sulmona.tpuskc.info/ http://e-questa-sera-nel-letto.unhbej.info/ http://cambio-da-euro-a-lira.ycfrzc.net/ http://giardinaggio-cosa-piantare-novembre-it.uqqaqa.info/ http://gita-scolastica-al-parco-preistoria.fzjkno.net/ http://piatto-tipico-italiano-descritti-lingua-inglese.ycfrzc.net/ d9a31e90dfa815b241581cfa56f7d9b0
189.136.24.* 于 2007-05-12 02:36:16发表:
e48ab21fdba77a97d4962a481a3ae4c7 http://topolino-auto-club-italia-it.wvnhzs.info/ http://modellismo-navale-president-fregata-inglese.jiqgyr.net/ http://interazioni-acido-acetilsalicilico-ace-inibitori.uwvdff.net/ http://lista-libro-testo-scienza-comunicazione-bari.xhzpsl.info/ http://comitato-italiano-collegamento-governo-italiano-fao.wvnhzs.info/ http://direttiva-europea-2006-63-ec.jiqgyr.net/ http://patch-return-to-castle-wolfstain.wvnhzs.info/ http://la-forza-di-un-sogno.wsgcxb.info/ http://dty28a8s-tvc-28-st-tvd-daewoo.uwvdff.net/ http://basilica-san-pietro-colonna-tortili.unhbej.net/ e851160535cf163ca98e2cabd77393d9
83.59.71.* 于 2007-05-10 12:49:57发表:
ef9009d41bb934a0f5e1960608ed6c54 http://incidente-aereo-8-marzo-1962.uwvdff.info/ http://guida-touring-ospitalita-convento-italia.uaaxsj.info/ http://antenna-gps-nokia-6600-accessorio.sjuvcf.info/ http://u-d-musica-scuola-media.sjuvcf.net/ http://individuare-bisogno-formativo-partire-esperienza.tpuskc.info/ http://terratec-scheda-audio-aureon-5-1.cbcmld.net/ http://elenco-zona-coperte-adsl-telecom.cbcmld.net/ http://foto-lesbica-doccia-si-leccano.uwvdff.info/ http://epson-lettore-diapo-perfection-1250.cbcmld.net/ http://sole-24-ore-musica-spot.unhbej.info/ 6ea61d011241fc97c6cd95e85f270196
201.235.212.* 于 2007-05-09 03:01:17发表:
a660bdbc4d2fc90ccdbe9de46f827827 http://chiesa-italia-1870-al-1940.aphvga.info/ http://sharm-el-sheik-istruzione-uso.cbcmld.info/ http://societa-di-revisione-a-roma.fneces.net/ http://super-pompino-cazzo-enorme-gola-profonda.esitxq.info/ http://scale-di-legno-a-chiocciola.qncqss.net/ http://raccolte-poesia-charles-baudelaire-it.aphvga.info/ http://belong-to-you-ramazzotti-anastasia.drlrmm.info/ http://decreto-legislativo-n-152-1999.cbcmld.info/ http://programma-per-masterizzare-cd-musicali.drlrmm.info/ http://scooby-doo-pirata-dei-caraibi.esitxq.info/ c30356c496a34fc36d31054e2275bbe2
125.134.55.* 于 2007-05-08 16:13:06发表:
0919dec8a637e0503c343bcac43a967e http://padiglione-mies-van-de-rohe-barcellona.johlma.info/ http://educare-problematica-legate-ai-6-annoi.uyabmw.net/ http://quotazione-aprilia-rsv-1000-factory.kpcmsw.info/ http://cd-installazione-epson-stylus-c46.drlrmm.net/ http://anatocismo-mancata-produzione-estratti-conto.uyabmw.net/ http://fra-galdino-dei-promessi-sposi.uyabmw.net/ http://hotel-albergo-last-minute-citta-italiana.johlma.info/ http://guida-strategica-resident-evil-4.drlrmm.net/ http://ettore-de-tono-ospedale-gaslini-genova.oovbhv.info/ http://foto-di-sofia-loren-nuda.owlybp.info/ ad9883469ac620e72a2c30c2417cb4d3
190.48.19.* 于 2007-05-08 02:28:05发表:
1f6a29342169ffbb117db4ae3d3080a6 http://vita-vita-musica-cochi-renato.tpuskc.net/ http://wellington-beacon-woodfire-grill-and-bar.tpuskc.net/ http://progetto-educazione-salute-scuola-elementare.tpuskc.net/ http://assicurazione-generali-s-p-agenzia-isernia.aqnfrs.info/ http://giuseppe-cirigliano-it-nascita-html.drlrmm.info/ http://federazione-italiana-danza-com-it.cbcmld.info/ http://bambino-paura-essere-lasciati-soli.avborz.info/ http://stagione-2006-07-terza-categoria-salento.xhzpsl.net/ http://gif-cartolina-animata-virtuale-tutto-mondo.drlrmm.info/ http://gigi-d-alessio-piccolo-amico.fneces.net/ 26ebd8669f82ff2d680fe0e97ba7427c
66.130.150.* 于 2007-05-07 16:05:55发表:
4bbe975554db52d29096fbe7242ba6c8 http://enrica-ajo.wnakxc.net/ http://patrizia-bonfigliolo.xcrkhh.net/ http://tufano-gomme.xeywob.net/ http://lambo-acchittate.tufcdw.net/ http://tre-metri-soprail-cielo.xeywob.net/ http://fernanada-lessa.xeywob.net/ http://roma-colorazione-galvanica.pedsfw.net/ http://programma-scuola-secondaria-superiora-educazione-fisica.pedsfw.net/ http://tomtom-cartografia-sentiero.tumfnw.net/ http://hartmann-macellaio.pedsfw.net/ 2bf31bd35f21de5166810de301481b94
62.197.71.* 于 2007-05-07 02:40:14发表:
0859fc51ff1ba2491c9314b69848b822 http://muletto-clark.pedsfw.info/ http://asta-terreno-comune-stroppiana.xeywob.info/ http://terme-acquaria-sirmione.ofoubn.info/ http://simeoni-petrolini-tanto-pe-canta.ofoubn.info/ http://gsmk-pda-qtek-2020-criptato.tufcdw.info/ http://esecuzione-impiccagione-saddam-ussein.xcrkhh.info/ http://teatro-impavidi-sarzana.ofoubn.info/ http://accumulatore-litio-ioni-polimeri.tumfnw.info/ http://midi-cocciante-notre-dama-de-paris.xcrkhh.info/ http://it-lacitta-it-notizia-it-salerno.xeywob.info/ 2a7ddf721b7884e4e17b0a1905497234
200.126.246.* 于 2007-05-06 15:39:30发表:
3b00a03d1eca6001b24426cefa91ae99 http://miguel-bose-bravo-ragazzo-midi.eujpfg.net/ http://cercasi-cantante-pergia.cgnplk.net/ http://circolo-artista-the-kooks.ivwkib.net/ http://caldaia-neca.bhgjtr.net/ http://frase-augurio-natalizia-spirituale.bhgjtr.net/ http://sibilla-cooman.bkcvvo.net/ http://musichetta-radio-105.ivwkib.net/ http://evviva-biliardo-3d.cgnplk.net/ http://penna-parker-sonnet-stilografica.bhgjtr.net/ http://cartono-animati.ivwkib.net/ 2e301a16b158f2beaa82d5a0d0d01f7f
83.38.63.* 于 2007-05-06 03:23:58发表:
5689beef448a6296c0dd2de1845a7a0a http://invicta-colonnella.avtsfl.info/ http://termo-stufa-legna-pellet.eipagi.info/ http://prezzo-raccoglitore-kaos.bhgjtr.info/ http://ernest-knam.cgnplk.info/ http://verniciatura-dll-alluminio.ivwkib.info/ http://registrazione-vocali-strana-cell.avtsfl.info/ http://tweeter-coral-ct36.ivwkib.info/ http://disegno-natalizio-augurio-foglio-a4-gratis.ivwkib.info/ http://paolo-coelho-undici-minuto.ivwkib.info/ http://scarpa-asics-gel-1080.eujpfg.info/ 880dbe2a360d03727eb0a5e133fd8d71