You can subscribe to this list here.
2003 |
Jan
|
Feb
(8) |
Mar
(38) |
Apr
(13) |
May
(17) |
Jun
(9) |
Jul
(31) |
Aug
(5) |
Sep
|
Oct
(9) |
Nov
(8) |
Dec
(8) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(8) |
Feb
(2) |
Mar
(10) |
Apr
(1) |
May
(6) |
Jun
(4) |
Jul
|
Aug
(32) |
Sep
(20) |
Oct
(26) |
Nov
(2) |
Dec
(1) |
2005 |
Jan
(6) |
Feb
(9) |
Mar
(69) |
Apr
(13) |
May
(7) |
Jun
(21) |
Jul
(9) |
Aug
(21) |
Sep
(28) |
Oct
|
Nov
(15) |
Dec
(1) |
2006 |
Jan
(32) |
Feb
(47) |
Mar
(44) |
Apr
(10) |
May
(5) |
Jun
(7) |
Jul
(21) |
Aug
(5) |
Sep
(1) |
Oct
|
Nov
|
Dec
(4) |
2007 |
Jan
|
Feb
(12) |
Mar
(7) |
Apr
(10) |
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Charles B. <cbo...@hi...> - 2003-03-04 03:28:30
|
On Mon, 2003-03-03 at 11:05, Tony Graham wrote: > > It appears that fontconfig and PDFlib aren't agreeing on what > constitutes a font. > > > The command I was trying to run is: > > ./xmlroff xmlroff.fo > > That should work. > > > I also tried changed the font-family to other values but I still get the > > same error. > > Did you try reducing xmlroff.fo so there's only one fo:block and > experimenting with the font-family, font-weight, and font-style > properties. While you're using an FO file with multiple font-family, > etc., it's hard to tell which one is causing a problem. > > > I am just going to have to run gdb to try and find the problem. > > Break on PDF_findfont() to see what font names are being passed to > PDFlib. > > > Let me know if you have any ideas. > > What does the 'fc-list' command show? 'fc-list' lists all the fonts > that the fontconfig library knows about, although I don't find its > output tells you all that much. > > 'xmlroff -d2 xmlroff.fo' or 'xmlroff -d8 xmlroff.fo' will give you a > lot of information, but will still only show the font-family names > used in the xmlroff.fo file. > Thanks for the hints. I found my problem is that some of my font files (type1 pfa files) use '\r' instead of '\n' to end lines which caused PDFlib to read (via fgets) too much data and process the font data wrong. I've finally gotten the test file to work so maybe now I can be somewhat productive. I just wish I had more time to spend on this project, because I believe it is really important for xml processing to progress. -- Charles Bozeman <cbo...@hi...> |
From: Charles B. <cbo...@hi...> - 2003-03-04 02:28:12
|
On Mon, 2003-03-03 at 11:05, Tony Graham wrote: > What version of libxslt are you using? For libxslt-1.0.17, > 'xslt-config --cflags' includes '-I/usr/local/include/libxml2', which > is why builing xmlroff works for me. > I'm using the latest CVS version. 'xslt-config --cflags' works fine. My problem is that the include path (/usr/include/libxml2 for me) is not passed to the compiler. For example, the area/Makefile.am has this include statement: INCLUDES = \ -DG_LOG_DOMAIN=\"libfo\" \ $(GOBJECT_CFLAGS) \ -I$(top_srcdir) \ -I$(top_srcdir)/fo \ -I$(top_srcdir)/property \ -I$(top_srcdir)/datatype After the automake/configure process the resulting area/Makefile has the compile lines: COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) The LIBXML_CFLAGS and LIBXSLT_CFLAGS variables in the Makefile are correct but they don't get to the compile commands. Here is a partial output from compiling xmlroff-0.2.1: make[2]: Entering directory `/home/charlie/projects/xml/roff/xmlroff-0.2.1/area'source='fo-area.c' object='fo-area.lo' libtool=yes \ depfile='.deps/fo-area.Plo' tmpdepfile='.deps/fo-area.TPlo' \ depmode=gcc3 /bin/sh ../depcomp \ /bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -DG_LOG_DOMAIN=\"libfo\" -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I.. -I../fo -I../property -I../datatype -g -O2 -I/usr/local/include/pangopdf/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/local/include -I/usr/include/freetype2 -Wall -c -o fo-area.lo `test -f 'fo-area.c' || echo './'`fo-area.c rm -f .libs/fo-area.lo gcc -DHAVE_CONFIG_H -I. -I. -I.. -DG_LOG_DOMAIN=\"libfo\" -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I.. -I../fo -I../property -I../datatype -g -O2 -I/usr/local/include/pangopdf/pango-1.0 -I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/local/include -I/usr/include/freetype2 -Wall -c fo-area.c -MT fo-area.lo -MD -MP -MF .deps/fo-area.TPlo -fPIC -DPIC -o fo-area.o cc1: warning: changing search order for system directory "/usr/local/include" cc1: warning: as it has already been specified as a non-system directory In file included from fo-area.h:21, from fo-area.c:13: ../fo/fo-fo.h:19:25: libxml/tree.h: No such file or directory In file included from fo-area.h:21, from fo-area.c:13: ../fo/fo-fo.h:80: parse error before "xmlNodePtr" ../fo/fo-fo.h:81: parse error before "fo_fo_get_element" ../fo/fo-fo.h:81: warning: type defaults to `int' in declaration of `fo_fo_get_element' ../fo/fo-fo.h:81: warning: data definition has no type or storage class In file included from fo-area.c:35: ../fo/fo-fo-private.h:25: parse error before "xmlNodePtr" ../fo/fo-fo-private.h:25: warning: no semicolon at end of struct or union ../fo/fo-fo-private.h:32: parse error before '}' token fo-area.c: In function `fo_area_update_after_clone_default': fo-area.c:1183: dereferencing pointer to incomplete type fo-area.c:1184: dereferencing pointer to incomplete type fo-area.c:1186: dereferencing pointer to incomplete type make[2]: *** [fo-area.lo] Error 1 make[2]: Leaving directory `/home/charlie/projects/xml/roff/xmlroff-0.2.1/area' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/charlie/projects/xml/roff/xmlroff-0.2.1' make: *** [all] Error 2 As you can see from the error, the libxml2 include path does not get to the compiler. If I add $(LIBXML_CFLAGS) to the INCLUDE makefile variable then the compile works. From your email I see I should be using LIBXSLT_CFLAGS but the result is the same. Maybe I'm missing something but I don't see it. Charlie B. |
From: Tony G. <Ton...@Su...> - 2003-03-03 17:05:28
|
Charles Bozeman wrote at 1 Mar 2003 21:42:47 -0600: > I had intended the to go to the list instead of Tony personally. SourceForge policy is against Reply-To: munging. I prefer Reply-To: munging for mailing lists (but don't want to start discussing it further here), but it's best if this list behaves like the other SourceForge lists. ... > Sorry took so long to reply. I filed a bug with an attached patch to add > the include path to pich up libxml2. I still haven't been able to get What version of libxslt are you using? For libxslt-1.0.17, 'xslt-config --cflags' includes '-I/usr/local/include/libxml2', which is why builing xmlroff works for me. > xmlroff to work yet; my suspicion is it has something to do with > freetype or fontconfig. It appears that fontconfig and PDFlib aren't agreeing on what constitutes a font. > The command I was trying to run is: > ./xmlroff xmlroff.fo That should work. > I also tried changed the font-family to other values but I still get the > same error. Did you try reducing xmlroff.fo so there's only one fo:block and experimenting with the font-family, font-weight, and font-style properties. While you're using an FO file with multiple font-family, etc., it's hard to tell which one is causing a problem. > I am just going to have to run gdb to try and find the problem. Break on PDF_findfont() to see what font names are being passed to PDFlib. > Let me know if you have any ideas. What does the 'fc-list' command show? 'fc-list' lists all the fonts that the fontconfig library knows about, although I don't find its output tells you all that much. 'xmlroff -d2 xmlroff.fo' or 'xmlroff -d8 xmlroff.fo' will give you a lot of information, but will still only show the font-family names used in the xmlroff.fo file. Regards, Tony Graham ------------------------------------------------------------------------ XML Technology Center - Dublin Sun Microsystems Ireland Ltd Phone: +353 1 8199708 Hamilton House, East Point Business Park, Dublin 3 x(70)19708 |
From: Tony G. <Ton...@Su...> - 2003-03-03 16:26:48
|
xmlroff 0.2.1 xmlroff 0.2.1 was placed on SourceForge on Friday, February 28. This release does not add any new formatting object or property support. The main change if the addition of the FoPropertyTextPropertyIface interface type to the properties of %inline; formatting objects. This addition had been planned for a while, and it will get rid of the many 'implicit declaration of *_get_attr' messages when compiling xmlroff. Other changes include the addition of fo-property-util.[ch] and a change to the top-level Makefile.am so I could compile xmlroff with a statically linked fontconfig library. xmlroff 0.2.2 will follow once I include Charles Bozeman's build fixes. xmlroff Wiki I have been adding some pages to the xmlroff Wiki at http://xmlroff.sourceforge.net/phpwiki/. You are invited to read and annotate the Wiki pages. xml...@li... You are also encouraged to use this mailing list to discuss xmlroff. There are currently 14 subscribers to this list. I have turned on the requirement that only subscribers can post to this list, which should cut down the spam. (There's already been two bounces from spam since I made the change.) Bug report categories I have set up several bug report categories. Please select a category when reporting a bug since it appears that I don't receive notification of bugs without a category. Please also let me know if you consider the categories don't match your bug. PangoPDF 1.2.0.1 I put PangoPDF 1.2.0.1 on SourceForge today. It does not have any new functionality compared to PangoPDF 1.2.0, just some fixes to make it easier to build. Regards, Tony Graham ------------------------------------------------------------------------ XML Technology Center - Dublin Sun Microsystems Ireland Ltd Phone: +353 1 8199708 Hamilton House, East Point Business Park, Dublin 3 x(70)19708 |
From: Charles B. <cbo...@hi...> - 2003-03-02 03:42:22
|
I had intended the to go to the list instead of Tony personally. -- Charles Bozeman <cbo...@hi...> |
From: Tony G. <Ton...@Su...> - 2003-02-27 14:40:17
|
Dave Malcolm wrote at 27 Feb 2003 13:48:21 +0000: > I'm considering adding xmlroff support to a Gnome application I'm > working on (www.conglomerate.org). A dream come true. > I'm wondering if there are any plans to support the GnomePrint API > within xmlroff, perhaps as an alternative backend to the PDFlib > backend? As far as I can tell, it would involve refactoring FoDoc > into an abstract base class, with the current implementation as a > subclass (FoDocPDF?), with another subclass talking to a > GnomePrintContext (FoDocGnomePrint?). That is why FoDoc exists. The historical reason why xmlroff uses PDFlib is that when I started, Pango and GnomePrint were a lot further apart than they are today and, considering that the PDF generation should be a minor part of the XSL formatter, I took the path that would get results the quickest and implemented a PDFlib backend for Pango rather than a GnomePrint backend. All I really ever wanted was to be able to pass a PangoLayout to GnomePrint and have it print. Back when Pango and GnomePrint used different font representations and each did its own thing about locating and naming the fonts on the system, passing a PangoLayout to GnomePrint wasn't an option. Now that GnomePrint and Pango are converging on using fontconfig (and FreeType2), it could be done more easily. Note that the fine print on the PangoPDF web pages says that an eventual goal is to use GnomePrint. > This should enable us to get nice Gnome-ified print preview dialogs > etc, and hopefully we could then make both backends optional (my > users are likely to have GnomePrint installed, but not the PDFlib > and PangoPDF libs). But currently you can't just pass a PangoLayout to GnomePrint, can you? > What do you think of this idea? Is it worth me hacking a patch together? More than worth it. Regards, Tony Graham ------------------------------------------------------------------------ XML Technology Center - Dublin Sun Microsystems Ireland Ltd Phone: +353 1 8199708 Hamilton House, East Point Business Park, Dublin 3 x(70)19708 |
From: Dave M. <da...@da...> - 2003-02-27 13:34:12
|
Hi I'm considering adding xmlroff support to a Gnome application I'm working on (www.conglomerate.org). I'm wondering if there are any plans to support the GnomePrint API within xmlroff, perhaps as an alternative backend to the PDFlib backend? As far as I can tell, it would involve refactoring FoDoc into an abstract base class, with the current implementation as a subclass (FoDocPDF?), with another subclass talking to a GnomePrintContext (FoDocGnomePrint?). This should enable us to get nice Gnome-ified print preview dialogs etc, and hopefully we could then make both backends optional (my users are likely to have GnomePrint installed, but not the PDFlib and PangoPDF libs). What do you think of this idea? Is it worth me hacking a patch together? Thanks in advance Dave Malcolm |
From: Tony G. <Ton...@Su...> - 2003-02-27 12:57:54
|
Charles Bozeman wrote at 26 Feb 2003 20:33:49 -0600: > I believe I have finally built everything needed to run xmlroff but I am > getting the following error message: > PDFlib I/O error: Bogus Type 1 font ASCII data (0x30, 0x00) That looks like an error from PDFlib. I haven't seen that error message before. > I have a stock Red Hat 8.0 system with updated libxml2 (2.5.3) and > libxslt (1.0.25). I had a lot of trouble compiling xmlroff because the > Makefile.in files did not include the libxml include paths but I > eventually managed. Please file a bug. Since I can compile xmlroff, I'd like to know what's different for you. > Does anyone have any ideas on where I should look? What font are you specifying in your FO file? If you're using a generic font family like 'sans', try changing to a different family, e.g., 'monospace', or to a specific font family, e.g. 'arial' or 'helvetica'. Also try to reduce your FO file to the minimum that will produce the error. Regards, Tony Graham ------------------------------------------------------------------------ XML Technology Center - Dublin Sun Microsystems Ireland Ltd Phone: +353 1 8199708 Hamilton House, East Point Business Park, Dublin 3 x(70)19708 |
From: Charles B. <cbo...@hi...> - 2003-02-27 02:33:53
|
I believe I have finally built everything needed to run xmlroff but I am getting the following error message: PDFlib I/O error: Bogus Type 1 font ASCII data (0x30, 0x00) I have a stock Red Hat 8.0 system with updated libxml2 (2.5.3) and libxslt (1.0.25). I had a lot of trouble compiling xmlroff because the Makefile.in files did not include the libxml include paths but I eventually managed. Does anyone have any ideas on where I should look? -- Charles Bozeman <cbo...@hi...> |
From: Urgent: Don't be l. o. y. c. g. b. m. c. <St...@ea...> - 2003-02-26 06:54:37
|
Learn the hush-hush secrets of making BIG money on the Web" Hello: There is only one way to make money on the Web ...Bulk E-mail. But that can be downright dangerous if you don't know the secrets of doing it right...specifically, the hush-hush secrets used by Mastercard, Polaroid, AOL and all of the professional bulk mail companies! Now you too, can capitalize on these techniques to build a six-figure income in the next six months thanks to a new $20 program called "Web Fisher". To learn how, get our FREE "Untold Secrets" booklet today. There's no cost or obligation....just excitement and hope for a better financial future! Get it now! Just send a blank email, with "Secrets" in the subject line, to Har...@ne... Best regards, Harold S. McCorkle. For easy Removal just click here: St...@ea...?subject=REMOVE-ME |
From: xx <xx...@16...> - 2003-02-26 03:22:01
|
亲爱的朋友:您好! 在家看广告也能赚钱,每小时0.6美圆,折合人民币是每小时5元,比在麦当劳兼职还 要合算!何乐而不为?试过了就知道! 这是我尝试过的最简单、最可爱的赚方了,我以前用猫的时候就老想着电话费,所以 一直在找可以信任的赚钱方法。现在用宽带或 者包月了,又不想辛辛苦苦去上班,就想网上赚点零用钱,那么,让我们一起看看下面我 为您推荐的东东吧。 请花少少时间看看这篇 文章。 首先申明,我也是在半信半疑下申请的,地址: http://www.cashfiesta.com/php/join.php?ref=yh000001 确实在上个月给我汇来了69美圆。是dollor哦,试一试吧,越早赚的越多哦。 注释:zhuandaqian是我的帐号。我就是您的推荐者,必须要有推荐人才能注册成 功。我可以随时帮您解决疑难问题,因为每个人都要成为别人的下线,而且丝毫不 会影响到您自己的点数。 免费注册方法与步骤....... CashFiesta 公司简介:该公司是美国加利福尼亚伯克利市的一家新兴的从事互联网 广告业务的公司,现与实力雄厚的Explore Technologies及Inc公司合并, 服务没有使用时间限制,国际用户最小付费金额为50美元 ,不收手续费,每月10号结算。结算时只要您 的金额达到50美元,该公司便会自动寄封地址确认信给您,确认后公司便会把支票寄出。 信誉绝对可靠!它位列网上广告公司的三甲之 内,至今还没有网友投诉过! 只要其注册会员在一边上网时,一边接收该公司发送过来 的广告条,就可以按其上网时间长短获得一定 报酬。目前的报酬率是每小时0.6美元,满50美元即会付款,换成人民币大约是每小时5元 ,比在麦当劳兼职一个小时的工资多点,而时 间长短没有上限。此外,如果您将其介绍给别人,即发展下线,那么在您的下线流览上网 时,你也可以从中获利。具体来说,每一个会 员的收入可以包括到8层下线,提供的一个例子,假设您发展了3个下线,而每个下线又发 展了3个下线,您和您所有下线平均每天上网1 个小时,那么你的月收入就有2321美元了。当然这只是理论数据,真正有没有这么多完全 看你个人的努力和运气了。因为要建立一个这 么大的下线网是需要你的时间和毅力。 一、 最大好处: 1. 只要在线就计数,无论您在做什么。 2. 支持8级下线!稍加努力,就会出现下线贡献的点数远远超过自己所得点数的情况,甚 至自己不用上线,每月也会有一笔固定收入进 帐,岂不快哉? 3. 注册一个指定站点得1000点。支付比率也会增加0.01以上。此方法简捷有效,但大多 数朋友由于不认识英文而错过了这个好机会。 当有Sign Up字样时,不要吝惜那几分钟时间,简单填一些表单,您就会发现自己的点数 一下上涨了千余点! 4. 请将下面申请地址中的用户名换成您自己的,并在各个BBS上张贴,发展自己的下线。 4.当你成为黄金会员(积聚黄金点gold points到133点)时,你的报酬将大大增加. 成为黄金会员的要求:得到黄金积分133分以上,得黄金积分的方法有,1. 注册六个以上offer;2.每天使用其广告条半 小时以上;3.注册赚点10000点以上;4.根据你的下线情况给你计算黄金积 分等。5.另外,每个月根据你累积的点数, Cashfiesta.com会有Bonus给你。如,点数在10000和20000之间,就可以得到 额外的4000点,点数在30000以上,则可以得到 额外的7000点.好了,还是给你介绍详细的注册方法吧.申请方法及过程:申 请时姓名、住址、邮编等一定要真实,清楚, 否则收不到支票了! 二、 申请方法及过程:申请时姓名、住址、邮编等一定要真实,清楚,否则收不到支票 了。 三、 注册方法如下: 点击连接http://www.cashfiesta.com/php/join.php?ref=yh000001进入注册页 面。如果不能直接点击,请将其复制到浏览器的 地址栏进入。 注意:请用英文或拼音填写!您可别把中文填上哟 Login (用户名,用易记,常用的,可以自己取) password:(密码) Verify password:(重复密码) First name 用来拿支票的身份证上的名字,外国人习惯名前姓后) Last name: (你身份证上的姓氏,如姓“张”则填“Zhang”) Street Address:(您的住址,可以用拼音,按外国人习惯,从小到大写清楚,至少要中 国的 邮递员明白, 例如:北京路45号,7栋201房,填 Room201,Building 7, 45 beijing Road) City:(居住城市) Zip/Postal Code:(邮编,一定要写正确哦。) State:(居住的州,中国选[Not Selected]) Province 请填您居住的省份) Country:(国籍) E-Mail Address (能收到信的邮箱) Verify E-Mail Address (校验邮箱,再填一遍) 注意:为了减少自己常用的邮箱的垃圾,建议申请一个新的邮箱。 Age:(年龄) Gender:(性别,Male男,Female女) Education:(受教育程度) Annual household income:(薪水) Please tell us why you use Internet: (check all that apply) 你用Internet做什么,随便选就可以了 What do you search for or buy online: (check all that apply) 你在网上找什么或者购买什么,随便选就可以 Preferred check size:(选择多少美元起付款) 看你喜欢了,一般选$50 Referred by: 不要修改,否则无法认证。 在"I have read and understand the Member Agreement."前打钩同意协议,一定要选上 ! 填完后检查一遍(除了Name和Referrer外,其他都可以后修改),按一下"Submit Registration",就进行注册了。 心动不如行动,立即去注册吧!或许哪一天忽然暂停申请了也未可知。申请后马上能收到 注册信,接着就可下载广告条开始赚钱了!注 册信包含您的用户名、密码、发展下线链接、查帐链接。该信无需回复。下载广告条的安 装文件大约500K。 四.使用方法: 1. 下载广告条http://www.cashfiesta.com/download/Cashfiesta.exe 下载后点击图标 便会自动安装,你上网后可打开。执行后会下 载其他四个辅助文件,当升级时会重新下载。然后会出现登陆框。 2. 广告条的使用广告条的左上方有Home,可进入该网站主页,CashFiesta POINTS,可显 示自己所得的点数,Referrals,显示自己的下 线数目等。 广告条左角的小人在走动时,表示在计费,如果小人停止了,请用光标点击 小人,让它走动。 注意!!当广告条打开时,计算机屏幕右下角启动条上会显示一个$ 图标,当它是绿色时 ,表示在计费。- 正在赚点 (任务栏上的$图 标为绿色) 每隔一段时间,$ 图标就会变红. - 停止赚点(任务栏上的$图标为红色) 广告条在任务栏上的$图标变红或小人坐下时请 在广告条上移动鼠标,此时小人会拍拍手站起来走,如果不行请点击广告后在广告条上移 动鼠标。 小人如果跑到广告条里去就要点击 他,让他回到广告条左侧,否则不会继续放广告。技巧:当小人开始走进广告条里面时, 在小人前方点击鼠标他马上会回去,时间不会 超过10秒。 成为黄金会员的要求:得到黄金积分133分以上,得黄金积分的方法有,1.注册六个以上o ffer;2.每天使用其广告条半小时以上;3.注 册赚点10000点以上;4.根据你的下线情况给你计算黄金积分等。 CashFiesta每月付款,50美元起付,未满则累积至下月。 疑难解答 1. 每小时能得到多少点? cashfiesta每2分钟一组广告,每分钟10点,精确到6秒一点,每小时600点。 2. 月末如何申请付款? 当结算后足够付款额就会出现付款按钮。 3. 如何完全删除cashfiesta? 除删除文件外还需在注册表中删除:开始-运行-regedit-编辑-查找cashfiesta,然后删 去即可。 4. 为何打开广告条时经常要下载半天? 其实cashfiesta的安装文件只是一个最初文件,执行后会下载其他四个辅助文件。当升级 时会重新下载。另外如果前一次没有下载完整 也会重新下载。因下载文件较大,推荐再网速快的时候下载。 5. 我需要点cashfiesta上的广告吗? cashfiesta和Cashsurfers一样不要求点击广告。但由于广告客户是根据点击率来付款给 他们的,因此您的点击会为他们公司带来收入 ,也同样会为我们自己提高收入。所以我推荐大家还是多多点击。 6. 我的广告条无法显示小人(或者广告条透明)怎么办? cashfiesta第一次执行时会下载其他四个辅助文件。因为较大,当网速太慢或出现问题是 会没下载完全,但仍可运行,就会出现上面的 种种情况,请完全删除cashfiesta重新运行即可解决。 7. 所谓离线也加点是怎么回事? cashfiesta广告条有一个很大的特点,就是它的计点方式与别的公司广告条不一样。大多 数公司的条是10-20秒发一次信号给服务器, 但cashfiesta是14-15分钟记一次点的。在这个周期内,您就是断线然后再连上,也同样 可以加点。所以有些人会说广告条离线也加点 的。其实离线加点是不太现实的,我想没有人为了这个15分钟开关一次猫吧? 8. 我打开广告条时出现"Cashfiesta cannot detect your default browser"是什么意思 ? 它没找到您的默认浏览器(要求Ie 4.0或以上)。但无碍于您使用广告条加点,只是在点 击广告条时无法打开新窗口。 9. 为何我打开广告条时或登录时说我账号密码错误?难道我被封了账号? 不用担心,当cashfiesta服务器中断时它就会这样显示。服务器恢复后就会正常。 10. 如果我忘了自己的密码怎么办? 输入您的账号和信箱,您会收到一封包含您的账号和密码的信。 注册好了吗,等着收钱吧 强烈推荐!只要在线就计数,1小时0.6美圆,合人民币5元! 请相信我我不会骗你的,这对我也没有任何的好事,对不对,祝你早日成大款!!!!! ! 致 礼! |
From: useni g. <gar...@la...> - 2003-02-22 14:25:40
|
Dear Sir, My name is MR GARUBA USENI the eldest son of Rtd General JEREMAIAH. J. T. USENI who was the estwhile Minister of the Federal Capital territory Abuja in the late General Sani Abachas Regime of 1993-1998. I am contacting you in a benevolent spirit; utmost confidence and trust to enable us provide a solution to a money transfer of $45M that is presently putting my entire family into great disarray. You may be quite surprised at my sudden contact to you but do not despair, I got your contact from a business site on the internet and following the information I gathered about you, I was convinced that you could be of assistance to me. So, decided to contact you at once due to the urgency required for us to immediately transfer the said funds out of the country. During the time my father was in the government with the late General Sani Abacha as the head of state, they were both involved in several deals that yielded Billions of Dollars. The prominent amongst the deals was monies that emanated from funds set aside for the importation of Arms and Ammunitions to boost the Nigerian Defense, funds set to embark on an oversea campaign to counter the United States action to put a stop to the self succession bid of the Abachas government to retain power, and monies set aside to rehabilitate the ailing Nigerian Petroleum Refineries and the National Electric Power Authority which supplies Electricity to the entire nation. If you are conversant with world news, you would understand better. During this period my father was able to make some good money for himself and kept in his private bank accounts. The then head of state General Sani Abacha transferred his share of the money through a Lebanese businessman, Chagoury and a Jewish businessman, Mark Rissar to bank accounts overseas. Unfortunately, all the secrets were revealed by the investigation agencies set up by the successive governments and most of the Abacha's loots were traced and repatriated from the various accounts to the Federal Government Treasury. Out of the money my father made, he left the sum of N50 Million (Fifty Million Naira) in the CBN escrow account for further transfer into a foreign account and a sum of $45M (Forty-five Million Dollars) was kept in a Private security firm here in Nigeria, though it has ben moved out of the country for security reasons. Through the confessions made by the Abacha's Family, the N50 Million was recovered by the investigating agency from the CBN escrow account. But were unable to discover the $45M, which he kept in the vaults. The reason is because no names were used to lodge in the funds. Instead, he used PERSONAL IDENTIFICATION NUMBERS (PIN) and declared the contents as Bearer Bonds and Treasury Bills. Also the firm issued him with a certificate of deposit of the consignments. Note that I have these information in my custody. Right now, my father has been arrested and detained for interrogation. As the eldest son of my Father, I believe that I owe the entire family an obligation to ensure that the $45M is successfully transferred abroad for investment purposes. With the present situation, I cannot do it all by myself. It is based on this that I am making this contact with you. I have done a thorough homework and fine-tuned the best way to create you as the beneficiary to the funds and effect the transfer accordingly. Is rest assured that the modalities I have resolved to finalize the entire project guarantees our safety and the successful transfer of the funds. So, you will be absolutely right when you say that this project is risk-free and viable. If you are capable and willing to assist, contact me at once via email for more details. Believe me, there is no one else we can trust again. All my father's friends have deserted us after exploiting us on the pretence of trying to help my father. As it is said, it is at the time of problems that you know your true friends. So long as you keep everything to yourself, we would definitely have no problems. For your assistance, I am ready to give you as much as 20% of the total funds after transfer and invest a reasonable percentage into any viable business you may suggest. Please, I need your assistance to make this happen and please; do not undermine it because it will also be a source of up liftment to you also. You have absolutely nothing to loose in assisting us instead, you have so much to gain. Awaiting your urgent and positive response. BEST REGARDS, MR GARUBA USENI. N/B YOU CAN ALSO CALL ME ON MY TELEPHONE NUMBER: 234-802 3177144 _________________________________________________________ http://www.latinmail.com. Gratuito, latino y en español. |
From: Tony G. <Ton...@Su...> - 2003-02-17 17:50:48
|
xml...@li... is the mailing list to discuss the use and development of the Sun xmlroff XSL Formatter. If it concerns xmlroff, it's on-topic. If it doesn't, it's off-topic. General XSL-FO questions should be addressed to a general XSL-FO list or to the XSL-List (http://www.mulberrytech.com/xsl/xsl-list/). General XSLT questions, such as how to transform your XML into the FO vocabulary, should also be addressed to a general XSL list such as the XSL-List. What remains to be discussed on the xmlroff-list is xmlroff. Anything to do with xmlroff can be discussed here. After all, there's nowhere else where the subscribers are this interested in xmlroff. Outright bugs should be reported on the SourceForge bug tracker, but if you're not sure, check the SourceForge bug tracker anyway and then ask about it here if you're still not sure. Discussing how to improve xmlroff is definitely on-topic. xmlroff is still a work in progress and it has gone through numerous design changes already, so there's no reason to stop improving the basic design just because xmlroff has gone public. Regards, Tony Graham ------------------------------------------------------------------------ XML Technology Center - Dublin Sun Microsystems Ireland Ltd Phone: +353 1 8199708 Hamilton House, East Point Business Park, Dublin 3 x(70)19708 |