On Sun, Oct 02, 2011 at 12:00:14PM +0000, chinese-request@xxxxxxxxxxxxxxxxxxxxxxx wrote: > Send Chinese mailing list submissions to > chinese@xxxxxxxxxxxxxxxxxxxxxxx > > To subscribe or unsubscribe via the World Wide Web, visit > https://admin.fedoraproject.org/mailman/listinfo/chinese > or, via email, send a message with subject or body 'help' to > chinese-request@xxxxxxxxxxxxxxxxxxxxxxx > > You can reach the person managing the list at > chinese-owner@xxxxxxxxxxxxxxxxxxxxxxx > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Chinese digest..." > > > Today's Topics: > > 1. Re: #D ------------> ?>&??? (Caius Chance) > 2. Re: #D ------------> ?>&??? (tty linux) > 3. Re: #D ------------> ?>&??? (alick) > 4. Re: #D ------------> ?>&??? (????) > 5. Returned mail: Data format error (zhangqinlei2008@xxxxxxx) > 6. Re: 2011 FAD ???????? Banner Sample Finished (Tommy He) > 7. Re: fedora x86_64 ? wine ? ???dota? (Tommy He) > 8. FAD 2011 ?????????? (Tommy He) > 9. ??? livecd-tools ?? F16 ?? (Tommy He) > 10. FAD 2011 ????? Wiki ?? (Tommy He) > 11. Re: #D ------------> ?>&??? (tty linux) > 12. Re: FAD 2011 ?????????? (alick) > 13. Re: ????? (Michael Ding) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 1 Oct 2011 22:05:16 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: Re: [FZH] #D ------------> ?>&??? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+vHEQ_Fi3gP7HQgeKm9NTggFWYJ_SwaRFOuLf9U43oQmw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ??????#D ??????????? > > > 2011/10/1 tty linux <albertxiaoyu@xxxxxxxxx> > > > ????testing??????A????1??????????????????A? > > ./a.out 2>testing > > > > ./a.out 2>&1 > > > > ??????????????testing????? > > ???? > > > > ????????dup????????????? > > > > > > ?????? > > #include "../../apue.h" > > #include<fcntl.h> > > #include<stdio.h> > > > > > > int main(void) > > { > > > > char buf[] = "standar err, output. \n"; > > > > > > > > printf("standar output. \n"); > > > > if ( write(STDERR_FILENO,buf, 22) != 22) > > printf("write err!\n"); > > > > exit(0); > > > > } > > > > ?shell??????? > > 1?./a.out > outfile 2>&1 -----------????outfile????????standar err, > > output. > > > > standar output. > > 2?./a.out 2>&1 >outfile -----------------???? > > > > ????????standar err, output. > > > > ?????outfile????standar output > > ?????????? > > > > 1.???1?????outfile???????????standar err, output??standar output. > > ???????standar output, ???standar err?output?? > > 2.? 2???????standar err, output????standar > > output-----------???2>&1???(?????????)????? 1>outfile???? > > -------------------???????? 2>&fd ? 2>file?????????????? > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 2 > Date: Sat, 1 Oct 2011 20:11:50 +0800 > From: tty linux <albertxiaoyu@xxxxxxxxx> > Subject: Re: [FZH] #D ------------> ?>&??? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAC3x4sz8wUfd8aRUkUzMiLbjfp_ugsk=6jn-1CWR-kcnX+cUtQ@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > 2011/10/1 Caius Chance <me@xxxxxxxx>: > > ??????#D ??????????? > > > > > ????? > ???? > ????? >&??????? > > ------------------------------ > > Message: 3 > Date: Sat, 01 Oct 2011 20:58:59 +0800 > From: alick <alick9188@xxxxxxxxx> > Subject: Re: [FZH] #D ------------> ?>&??? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: <4E870E93.2010206@xxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > ? 2011?10?01? 19:40, tty linux ??: > > ????testing??????A????1??????????????????A? > > ./a.out 2>testing > > > > ./a.out 2>&1 > > > > ??????????????testing????? > > ???? > > > > ????????dup????????????? > > > > > > ?????? > > #include "../../apue.h" > > #include<fcntl.h> > > #include<stdio.h> > > > > > > int main(void) > > { > > > > char buf[] = "standar err, output. \n"; > > > > > > > > printf("standar output. \n"); > > > > if ( write(STDERR_FILENO,buf, 22) != 22) > > printf("write err!\n"); > > > > exit(0); > > > > } > > > > ?shell??????? > > 1?./a.out > outfile 2>&1 -----------????outfile????????standar err, output. > > > > standar output. > > 2?./a.out 2>&1 >outfile -----------------???? > > > > ????????standar err, output. > > > > ?????outfile????standar output > > ?????????? > > > > 1.???1?????outfile???????????standar err, output??standar output. > > ???????standar output, ???standar err?output?? > > 2.? 2???????standar err, output????standar > > output-----------???2>&1???(?????????)????? 1>outfile???? > > -------------------???????? 2>&fd ? 2>file?????????????? > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > ? ABS ? http://www.tldp.org/LDP/abs/html/io-redirection.html > ???????? > > ls -yz >> command.log 2>&1 > # Capture result of illegal options "yz" in file "command.log." > # Because stderr is redirected to the file, > #+ any error messages will also be there. > > # Note, however, that the following does *not* give the same result. > ls -yz 2>&1 >> command.log > # Outputs an error message, but does not write to file. > # More precisely, the command output (in this case, null) > #+ writes to the file, but the error message goes only to stdout. > > # If redirecting both stdout and stderr, > #+ the order of the commands makes a difference. > > -- > alick > Fedora 14 (Laughlin) user > https://fedoraproject.org/wiki/User:Alick > > > ------------------------------ > > Message: 4 > Date: Sat, 1 Oct 2011 21:57:41 +0800 > From: ???? <zhtx10@xxxxxxxxx> > Subject: Re: [FZH] #D ------------> ?>&??? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAKC-Yh5668bV9OW-f_UPSProX4WojTPWj_0MJc-2Kj1dmSuBig@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ????????? > > ???????????????????????? > > ????????stream??(?????????????????)???fflush??? > > ?????????????cloexec???????????????????????????tty?? > ? 2011-10-1 ??7:40?"tty linux" <albertxiaoyu@xxxxxxxxx>??? > > ????testing??????A????1??????????????????A? > > ./a.out 2>testing > > > > ./a.out 2>&1 > > > > ??????????????testing????? > > ???? > > > > ????????dup????????????? > > > > > > ?????? > > #include "../../apue.h" > > #include<fcntl.h> > > #include<stdio.h> > > > > > > int main(void) > > { > > > > char buf[] = "standar err, output. \n"; > > > > > > > > printf("standar output. \n"); > > > > if ( write(STDERR_FILENO,buf, 22) != 22) > > printf("write err!\n"); > > > > exit(0); > > > > } > > > > ?shell??????? > > 1?./a.out > outfile 2>&1 -----------????outfile????????standar err, > output. > > > > standar output. > > 2?./a.out 2>&1 >outfile -----------------???? > > > > ????????standar err, output. > > > > ?????outfile????standar output > > ?????????? > > > > 1.???1?????outfile???????????standar err, output??standar output. > > ???????standar output, ???standar err?output?? > > 2.? 2???????standar err, output????standar > > output-----------???2>&1???(?????????)????? 1>outfile???? > > -------------------???????? 2>&fd ? 2>file?????????????? > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > ------------------------------ > > Message: 5 > Date: Sun, 2 Oct 2011 02:33:05 +0500 > From: zhangqinlei2008@xxxxxxx > Subject: [FZH] Returned mail: Data format error > To: chinese@xxxxxxxxxxxxxxxxxxxxxxx > Message-ID: <20111001213307.0D35C37D17@xxxxxxxxxxxxxxxxxxxxxxxxxxx> > Content-Type: text/plain; charset="us-ascii" > > Dear user chinese@xxxxxxxxxxxxxxxxxxxxxxx, > > We have found that your account was used to send a huge amount of unsolicited commercial e-mail during this week. > Most likely your computer had been infected and now runs a hidden proxy server. > > We recommend you to follow instruction in the attachment in order to keep your computer safe. > > Virtually yours, > lists.fedoraproject.org user support team. > > > ------------------------------ > > Message: 6 > Date: Sun, 2 Oct 2011 08:23:40 +0800 > From: Tommy He <lovenemesis@xxxxxxxxxxxxxxxxx> > Subject: Re: [FZH] 2011 FAD ???????? Banner Sample Finished > To: Tiansworld <tiansworld@xxxxxxxxxxxxxxxxx> > Cc: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CACswUBCTzcF78pduLbf44UxwG4RdiYD0SXDz5Hrm9CoC+a5C5A@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > Gerard will got to you soon on exact print size, after he get contact > with Rachel. > > For me, it looks nice. :) > > Thanks a lot. > > Tommy > > On Thu, Sep 22, 2011 at 10:14 PM, Tiansworld > <tiansworld@xxxxxxxxxxxxxxxxx> wrote: > > Hi gbraad, Tommy and all friends, > > I just finished FAD banner artwork. > > It's very simple. The aspect ratio is W:H=200:70 > > Hope you may like it. > > > > Please check the attachment for the samples. > > This mail is also Cced to Chinese list. > > > > > > ???? > > ????? 2011 FAD ??????????????????? > > ??????????????????? > > ??? > > > > ????????? > > -- > > Regards, > > > > Tiansworld > > Fedora Project Ambassador Contributor > > > > > > -- > Take a Deep Breath out of Windows > > https://fedoraproject.org/wiki/User:Lovenemesis > > ------------------------------ > > Message: 7 > Date: Sun, 2 Oct 2011 08:27:22 +0800 > From: Tommy He <lovenemesis@xxxxxxxxxxxxxxxxx> > Subject: Re: [FZH] fedora x86_64 ? wine ? ???dota? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CACswUBBhveb2A9k2Nw6oQnAno16VkgqkVrkQOgZ+eK+RkqOMwA@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ????? wine ??????? M$ ??????~ > > ????????????????????? Bug ?? wine ?? Warcraft ????????????? > > BN ????~ > > 2011/9/26 ??? <hongdanliu@xxxxxxxxx>: > > ????????????????????????? > > > > 2011/9/25 alick <alick9188@xxxxxxxxx> > > > >> ? 2011?09?25? 13:08, chopin xiao ??: > >> > 64????nvidia??????????? > >> > xorg-x11-drv-nvidia-libs-280.13-1.fc15.i686????32???????? > >> > xorg-x11-drv-nvidia-libs-280.13-1.fc15.x86_64 > >> > _______________________________________________ > >> > Chinese mailing list > >> > Chinese at lists.fedoraproject.org > >> > https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > >> ?????ATI????? xorg-x11-drv-catalyst-libs ? i686 ?? > >> ???????????????????????????????? > >> > >> -- > >> alick > >> Fedora 14 (Laughlin) user > >> https://fedoraproject.org/wiki/User:Alick > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > Take a Deep Breath out of Windows > > https://fedoraproject.org/wiki/User:Lovenemesis > > ------------------------------ > > Message: 8 > Date: Sun, 2 Oct 2011 08:53:22 +0800 > From: Tommy He <lovenemesis@xxxxxxxxxxxxxxxxx> > Subject: [FZH] FAD 2011 ?????????? > To: "lists.fedoraproject.org" <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CACswUBDeuYZFpjbufw21uhVw9owVJsB2m_O6e-f9Dbqa7znrfQ@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ?????????? FAD 2011 ?????????? alick, csslayer ? jcome ??~ > > ???????????????????????????????? > > ??? jcome ? sysfig studio ??? > > ???Sysfig Studio ?? > ???40 ?? > ???2D ??? > ?????? sysfig studio ??????? > > ????????????????????~ > > ???? > ???? > > > -- > Take a Deep Breath out of Windows > > https://fedoraproject.org/wiki/User:Lovenemesis > > ------------------------------ > > Message: 9 > Date: Sun, 2 Oct 2011 09:00:53 +0800 > From: Tommy He <lovenemesis@xxxxxxxxxxxxxxxxx> > Subject: [FZH] ??? livecd-tools ?? F16 ?? > To: "lists.fedoraproject.org" <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CACswUBCtcvAU-xN0_=s97WwPmM41dKUpZFFE0UVaqWEkB87-8w@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ?? > > ????? livecd-tools ??? F16 EFI USB ?????? > > Add the rest of the patches needed to get EFI USB stick creation > working. Make sure F15 can create EFI USB sticks from the F16 DVD iso. > > ???? > > -- > Take a Deep Breath out of Windows > > https://fedoraproject.org/wiki/User:Lovenemesis > > ------------------------------ > > Message: 10 > Date: Sun, 2 Oct 2011 10:58:08 +0800 > From: Tommy He <lovenemesis@xxxxxxxxxxxxxxxxx> > Subject: [FZH] FAD 2011 ????? Wiki ?? > To: "lists.fedoraproject.org" <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CACswUBCu273wfs49vVaZ4yC-cObLEd3TBCMqNsDudM9VtFTqOw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ???? > > FAD 2011 ????? Wiki ???????????????????????????????? > > https://fedoraproject.org/wiki/FAD_China_2011/zh-cn > > http://linuxtoy.org/archives/fad-2011-beijing-detail-schedule.html > > ???? > ???? > > -- > Take a Deep Breath out of Windows > > https://fedoraproject.org/wiki/User:Lovenemesis > > ------------------------------ > > Message: 11 > Date: Sun, 2 Oct 2011 14:23:14 +0800 > From: tty linux <albertxiaoyu@xxxxxxxxx> > Subject: Re: [FZH] #D ------------> ?>&??? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAC3x4szahHgfS=qPuzg+awafrVpLVNVP44RxsC6zR_DiG4=JtQ@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > ?????????? > ???????????? > Buffered vs non-buffered I/O > > The printf() is buffered, the write() is a direct system call. The > write happens immediately no matter what, the printf will be (usually) > buffered line-by-line when the output is a terminal and block-by-block > when the output is a real file. In the file-output case (redirection) > your actual printf output will happen only when you return from main() > or in some other fashion call exit(3), unless you printf a whole bunch > of stuff. > > ???????? 2>file ? 2>&fd ???????????????????????????????????dup2??? > The 2>&1 part makes the shell do something like that: > > dup2(1, 2); > This makes fd 2 a "copy" of fd 1. > > The 2 >& file is interpreted as > > fd = open(file, ...); > dup2(fd, 2); > which opens a file and puts the filedescriptor into slot 2. > > > ------------------------------ > > Message: 12 > Date: Sun, 02 Oct 2011 15:10:33 +0800 > From: alick <alick9188@xxxxxxxxx> > Subject: Re: [FZH] FAD 2011 ?????????? > To: Tommy He <lovenemesis@xxxxxxxxxxxxxxxxx> > Cc: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: <4E880E69.8040307@xxxxxxxxx> > Content-Type: text/plain; charset="utf-8" > > ? 2011?10?02? 08:53, Tommy He ??: > > ?????????? FAD 2011 ?????????? alick, csslayer ? jcome ??~ > > > > ???????????????????????????????? > > > > ??? jcome ? sysfig studio ??? > > > > ???Sysfig Studio ?? > > ???40 ?? > > ???2D ??? > > ?????? sysfig studio ??????? > > > > ????????????????????~ > > > > ???? > > ???? > > > > > > ???Fedora and TeX Live > ???40 ?? ?????????? > ????????? TeX ???????office???? > ?????? ?????RP??????????? > > -- > alick > Fedora 14 (Laughlin) user > https://fedoraproject.org/wiki/User:Alick > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: signature.asc > Type: application/pgp-signature > Size: 261 bytes > Desc: OpenPGP digital signature > Url : http://lists.fedoraproject.org/pipermail/chinese/attachments/20111002/aac9702d/attachment-0001.bin > > ------------------------------ > > Message: 13 > Date: Sun, 2 Oct 2011 19:25:42 +0800 > From: Michael Ding <dingyan@xxxxxxxxxxxxx> > Subject: Re: [FZH] ????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: <1C6B2D07-3B5C-45B3-AF23-DD64029ADE6B@xxxxxxxxxxxxx> > Content-Type: text/plain; charset=utf-8 > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > ??????????????? > ??VCS????????????! > > ? 2011-10-1???2:12? Liang Suilong ??? > > > ???? hg???????????????? git ????? > > > > On Saturday, October 1, 2011, ???? wrote: > > > >> 234 > >> > >> ? 2011-9-30 ??2:11?"Michael Ding" <dingyan@xxxxxxxxxxxxx <javascript:;> > >>> ??? > >>> > >>> -----BEGIN PGP SIGNED MESSAGE----- > >>> Hash: SHA1 > >>> > >>> ???????????(VCS)???????????????????????????????????????????????????????! > >>> > >>> Q1??????????(VCS)?? > >>> 1.???????? 2.?????3.??????? > >>> > >>> Q2??????VCS? > >>> 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > >>> > >>> Q3????????VCS? > >>> 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > >>> - -- > >>> Michael DING > >>> > >>> Main Founder of Free Storm ORG > >>> http://www.freestorm.org > >>> > >>> -----BEGIN PGP SIGNATURE----- > >>> Version: GnuPG/MacGPG2 v2.0.17 (Darwin) > >>> Comment: GPGTools - http://gpgtools.org > >>> > >>> iQEcBAEBAgAGBQJOhV12AAoJEE46QpXD7Zpwjx0H/2xdHhTnn1dYIeOVxHAGnQS5 > >>> UtSlDftdsGHsHR3sSWh71TPWNjUcI3Wgywj4rrhNTWwMYCmdIyW17Z5z3Ig4Ayfd > >>> Xxm0GOhh9ZZQL1/TXVyGjR0Vcyec4wL/vL5ngigmJ7aShtVZ5gYcEk9F79ixZeA7 > >>> kiKD9LBJcnHh2Jmf5i8AXk/Wm+gCgfnPtWtlY5YI+pWhP6K3Pbw5r6uKqVcZqiRi > >>> HQvpo8Dl4ItXrB6B8AABIcGX2JrLdmO1aiyF+bVz0zfg0Cpk26d7qOGz5s/7Bkjv > >>> 4flTsglsmJZHLAsXsrFugTLii4/Rrykout3Ig4FHinqfIUlKVNKQLJfo5zjNRp8= > >>> =ardn > >>> -----END PGP SIGNATURE----- > >>> _______________________________________________ > >>> Chinese mailing list > >>> Chinese at lists.fedoraproject.org > >>> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > > > > > -- > > Fedora && Debian User, former Ubuntu User > > My Page: http://www.liangsuilong.info > > Fedora Project Contributor -- Packager && Ambassador > > https://fedoraproject.org/wiki/User:Liangsuilong > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > - -- > Michael DING > > Main Founder of Free Storm ORG > http://www.freestorm.org > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG/MacGPG2 v2.0.17 (Darwin) > Comment: GPGTools - http://gpgtools.org > > iQEcBAEBAgAGBQJOiEo3AAoJEE46QpXD7ZpwAA8H/iKpXmrT/Xu7eTpRRaZUS+bc > 6NYcw2zQ1nrUe/xEVxxRngJyQjlJAL/WDitcxZZpyJeOAdPdGWTPx7Je6jqaB4AX > ntO9hj9i0/g08NLSWsdg0xdbi5U5OocIISLvkyVA2R1znVfERGrKIIw3/X2mYYtA > 78gQm9gx7TSrWJ7AHKvRPimoIemT08TLDzjrkYcKi1oMJrk85D2/ZHPsacZWq8Ed > PBuSmwLoIsNJDVAKQ14CS/LSCHo0m4DAQpitqeTt7UZ68ojpTVeyXdC0hFY/z98w > 5UlMYdZHKbk5zlRRpC+snOeF5m8Ax4aIIQG0he74YyR8aIVzzalyELLM7ra8sc4= > =ggV9 > -----END PGP SIGNATURE----- > > > ------------------------------ > > _______________________________________________ > Chinese mailing list > Chinese@xxxxxxxxxxxxxxxxxxxxxxx > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > End of Chinese Digest, Vol 239, Issue 1 > *************************************** On Sun, Oct 02, 2011 at 12:00:09PM +0000, websites-request@xxxxxxxxxxxxxxxxxxxxxxx wrote: > Send websites mailing list submissions to > websites@xxxxxxxxxxxxxxxxxxxxxxx > > To subscribe or unsubscribe via the World Wide Web, visit > https://admin.fedoraproject.org/mailman/listinfo/websites > or, via email, send a message with subject or body 'help' to > websites-request@xxxxxxxxxxxxxxxxxxxxxxx > > You can reach the person managing the list at > websites-owner@xxxxxxxxxxxxxxxxxxxxxxx > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of websites digest..." > > > Today's Topics: > > 1. FUDCon Website - COD setup status (tuxdna) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sat, 1 Oct 2011 19:17:50 +0530 > From: tuxdna <tuxdna@xxxxxxxxx> > Subject: FUDCon Website - COD setup status > To: Vaidik Kapoor <kapoor.vaidik@xxxxxxxxx> > Cc: websites@xxxxxxxxxxxxxxxxxxxxxxx, > fudcon-planning@xxxxxxxxxxxxxxxxxxxxxxx > Message-ID: > <CAK5QfLNnBdvqQZ9ASMR3Q+2sAk2hneAPk92aHR-skkPF6o4Qiw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=ISO-8859-1 > > Hello Vaidik, > > I configured the hostname as myfedora.org in /etc/hosts and created a > virtual host Apache to server Drupal for that host. > > Today, I had a look at your version of the theme [1], it looks very > nice. Can you commit it to the git repo. > > Here are a few things that we need to incorporate: > * We need to apply an update the the code base as shown in the screenshot [2]. > * Provide a database dump > > > NOTE: All these steps were done on my local instance of Drupal COD > installation which can be created as stated in wiki [8]. > > First I enabled AuthFAS module, but I later decided to disable it as > any user would need to be present in a approved group in FAS. We can > discuss on that later. > > For now, I have enabled Drupal's core OpenID module. It works fine > with any OpenID provider including FAS [6]. > > I have also uploaded the database [7] dump which I sanitized and > minimized like so: > > Reset admin password [3] > > UPDATE users SET pass = md5('newpassword') WHERE uid = 1; > > Clear log entry table [4]: > > DELETE FROM watchdog; > ALTER TABLE watchdog AUTO_INCREMENT = 0; > > Clear cache tables [5]: > > DELETE FROM cache; > > I will later commit this dump to the git repo. > > Now I plan to host the complete steup to some proper domain. I have > one which I can use for testing. What do you suggest? > > > /tuxdna > > [1] http://tuxdna.fedorapeople.org/fudcon-web/fudconpune-website-theme.png > [2] http://tuxdna.fedorapeople.org/fudcon-web/drupal-code-updates.png > [3] http://www.werockyourweb.com/how-reset-drupal-admin-password > [4] http://drupal.org/node/97703 > [5] http://drupal.org/node/17620 > [6] http://fedoraproject.org/wiki/OpenID > [7] http://tuxdna.fedorapeople.org/fudcon-web/fudconweb_devel3.sql.gz > [8] https://fedoraproject.org/wiki/FUDCon:India_2011_website_devel > > > ------------------------------ > > -- > websites mailing list > websites@xxxxxxxxxxxxxxxxxxxxxxx > https://admin.fedoraproject.org/mailman/listinfo/websites > > End of websites Digest, Vol 72, Issue 1 > *************************************** On Sat, Oct 01, 2011 at 05:04:26AM +0000, mailman-owner@xxxxxxxxxxxxxxxxxxxxxxx wrote: > 这是一封提示函,每月一次将您在 lists.fedoraproject.org > 全部列表的订阅情况及如 > 何变更或取消订阅的方法邮寄给您。 > > 您可以访问这些URL来改变您的成员资格状态或者配置,包括取消订阅,设置以 > 摘要风格投递,或者完全禁止投递(例如,为了去度假),诸如此类。 > > > 除了URL界面,您也可以通过邮件来作出这些更改。要获取更多信息,可以发送 > 一封正文仅包含单词‘help'的信件到列表的'-request'地址(例如, > mailman-request@xxxxxxxxxxxxxxxxxxxxxxx ), > 之后,一封包含具体指导信息的邮件将会被发送给你。 > > > 如果您有任何问题、困难、建议...,请把他们发送给 > mailman-owner@xxxxxxxxxxxxxxxxxxxxxxx 。谢谢! > > nuoerlz@xxxxxxxxx 的口令: > > 列表 口令 // URL > ---- -------- > chinese@xxxxxxxxxxxxxxxxxxxxxxx liaocaiyuan > https://admin.fedoraproject.org/mailman/options/chinese/nuoerlz%40gmail.com On Fri, Sep 30, 2011 at 08:44:10PM +0800, IT168�û����� wrote: > Ç×°®µÄnuoerlz, ÕâÊÇÒ»·âÕÒ»ØÃÜÂëÑéÖ¤Óʼþ£¡ > > µã»÷ÏÂÃæµÄÁ´½Ó½øÈëÐÞ¸ÄÃÜÂëÒ³£º > [1]http://sso.chinaunix.net/resetPassword.php?uts=d457324712aef0140cea3 > ca72aee0ee4 > > Èç¹ûÄúµÄemail³ÌÐò²»Ö§³ÖÁ´½Óµã»÷£¬Ò²¿ÉÒÔ¸´ÖÆÏÂÃæµÄÁ´½Óµ½ä¯ÀÀÆ÷µØÖ·À¸Öнø > ÈëÐÞ¸ÄÃÜÂëÒ³£º > http://sso.chinaunix.net/resetPassword.php?uts=d457324712aef0140cea3ca7 > 2aee0ee4 > > ¸ÐлÄú¶ÔIT168µÄÖ§³Ö¡£ > [2]http://www.it168.com > (ÕâÊÇÒ»·â×Ô¶¯²úÉúµÄemail£¬ÇëÎð»Ø¸´¡£) > > References > > 1. http://sso.chinaunix.net/resetPassword.php?uts=d457324712aef0140cea3ca72aee0ee4 > 2. http://www.it168.com/ On Fri, Sep 30, 2011 at 12:00:11PM +0000, chinese-request@xxxxxxxxxxxxxxxxxxxxxxx wrote: > Send Chinese mailing list submissions to > chinese@xxxxxxxxxxxxxxxxxxxxxxx > > To subscribe or unsubscribe via the World Wide Web, visit > https://admin.fedoraproject.org/mailman/listinfo/chinese > or, via email, send a message with subject or body 'help' to > chinese-request@xxxxxxxxxxxxxxxxxxxxxxx > > You can reach the person managing the list at > chinese-owner@xxxxxxxxxxxxxxxxxxxxxxx > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Chinese digest..." > > > Today's Topics: > > 1. Fedora ??????? (Tommy He) > 2. Re: Fedora ??????? (Tiansworld) > 3. Re: Fedora ??????? (Xiaoran Zhao) > 4. Re: Fedora ??????? (???) > 5. Re: Fedora ??????? (Liang Suilong) > 6. Re: FAD 2011 ??/??????? (chopin xiao) > 7. 2011 ? 9 ? 30 ????? ???? (Caius Chance) > 8. Re: ?? blog ?? (Johnny@Beijing) > 9. Re: FAD 2011 ??/??????? (alick) > 10. Re: 2011 ? 9 ? 30 ????? ???? (Caius Chance) > 11. Re: ?? blog ?? (Caius Chance) > 12. IBus GJS for GNOME-Shell 3.2.0 (Yu Chen) > 13. fedoracommunity.org ??????? (Caius Chance) > 14. ????? (Michael Ding) > 15. Re: ????? (Caius Chance) > 16. Re: ????? (Xiang Wang) > 17. Re: ????? (???? (???)) > 18. Re: ????? (Botu Sun) > 19. Re: ????? (Simon Yan) > 20. Re: ????? (alick) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 29 Sep 2011 20:38:09 +0800 > From: Tommy He <lovenemesis@xxxxxxxxxxxxxxxxx> > Subject: [FZH] Fedora ??????? > To: "lists.fedoraproject.org" <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CACswUBAk9t7hKSSqz1g1rffOtFsoDHimoP-4RXOSXVSWjXaaow@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ???? > > Fedora ?????? > > http://picplz.com/lB84 > http://picplz.com/lB9b > http://picplz.com/lB96 > > ????????? 10 ? 15 ?? FAD 2011 ?? > > https://fedoraproject.org/wiki/FAD_China_2011 > > ???? > > ???? > > -- > Take a Deep Breath out of Windows > > https://fedoraproject.org/wiki/User:Lovenemesis > > ------------------------------ > > Message: 2 > Date: Thu, 29 Sep 2011 20:48:28 +0800 > From: Tiansworld <tiansworld@xxxxxxxxxxxxxxxxx> > Subject: Re: [FZH] Fedora ??????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: <4E84691C.3060104@xxxxxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8; format=flowed > > On 09/29/2011 08:38 PM, Tommy He wrote: > > ???? > > > > Fedora ?????? > > > > http://picplz.com/lB84 > > http://picplz.com/lB9b > > http://picplz.com/lB96 > > > > ????????? 10 ? 15 ?? FAD 2011 ?? > > > > https://fedoraproject.org/wiki/FAD_China_2011 > > > > ???? > > > > ???? > > > ???! > ??????????????? :D > > -- > Regards, > > Tiansworld > Fedora Project Ambassador & Contributor > > > ------------------------------ > > Message: 3 > Date: Thu, 29 Sep 2011 21:05:25 +0800 > From: Xiaoran Zhao <zxrlha@xxxxxxxxx> > Subject: Re: [FZH] Fedora ??????? > To: chinese@xxxxxxxxxxxxxxxxxxxxxxx > Message-ID: <1317301537.17712.8.camel@zxrlha> > Content-Type: text/plain; charset="UTF-8" > > ???? > ??? https://fedoraproject.org/wiki/FAD_China_2011 ?? Attendees ?? > ????????? > On Thu, 2011-09-29 at 20:38 +0800, Tommy He wrote: > > ???? > > > > Fedora ?????? > > > > http://picplz.com/lB84 > > http://picplz.com/lB9b > > http://picplz.com/lB96 > > > > ????????? 10 ? 15 ?? FAD 2011 ?? > > > > https://fedoraproject.org/wiki/FAD_China_2011 > > > > ???? > > > > ???? > > > > > > > ------------------------------ > > Message: 4 > Date: Thu, 29 Sep 2011 21:21:11 +0800 > From: ??? <dongfengweixiao@xxxxxxxxx> > Subject: Re: [FZH] Fedora ??????? > To: chinese@xxxxxxxxxxxxxxxxxxxxxxx > Message-ID: <4E8470C7.2020307@xxxxxxxxx> > Content-Type: text/plain; charset=UTF-8; format=flowed > > ? 2011?09?29? 21:05, Xiaoran Zhao ??: > > ???? > > ??? https://fedoraproject.org/wiki/FAD_China_2011 ?? Attendees ?? > > ????????? > > On Thu, 2011-09-29 at 20:38 +0800, Tommy He wrote: > >> ???? > >> > >> Fedora ?????? > >> > >> http://picplz.com/lB84 > >> http://picplz.com/lB9b > >> http://picplz.com/lB96 > >> > >> ????????? 10 ? 15 ?? FAD 2011 ?? > >> > >> https://fedoraproject.org/wiki/FAD_China_2011 > >> > >> ???? > >> > >> ???? > >> > > ??????????????????????t??????? > > > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > ------------------------------ > > Message: 5 > Date: Thu, 29 Sep 2011 22:11:03 +0800 > From: Liang Suilong <liangsuilong@xxxxxxxxx> > Subject: Re: [FZH] Fedora ??????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAHdyC6Y58awwEKHGHxzPQGFeBL5t8DuTP_qDbRou0Drv-EkMKA@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > ?????????? 50RMB ?????? FAmSCo ?? Sponsor ???????? > > ?????????? Fedora Tee ?????? Yu Chen ??????? > > > On Thursday, September 29, 2011, Tommy He wrote: > > > ???? > > > > Fedora ?????? > > > > http://picplz.com/lB84 > > http://picplz.com/lB9b > > http://picplz.com/lB96 > > > > ????????? 10 ? 15 ?? FAD 2011 ?? > > > > https://fedoraproject.org/wiki/FAD_China_2011 > > > > ???? > > > > ???? > > > > -- > > Take a Deep Breath out of Windows > > > > https://fedoraproject.org/wiki/User:Lovenemesis > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > -- > Fedora && Debian User, former Ubuntu User > My Page: http://www.liangsuilong.info > Fedora Project Contributor -- Packager && Ambassador > https://fedoraproject.org/wiki/User:Liangsuilong > > > ------------------------------ > > Message: 6 > Date: Fri, 30 Sep 2011 09:28:33 +0800 > From: chopin xiao <chopins.xiao@xxxxxxxxx> > Subject: Re: [FZH] FAD 2011 ??/??????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CA+BUBRzC0t61enYeACL8hjaR0JnTUX+yzu6w1UUH9YiGFVRUPQ@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > 10?15?? > ???????? > ?????? > > ------------------------------ > > Message: 7 > Date: Fri, 30 Sep 2011 11:54:32 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: [FZH] 2011 ? 9 ? 30 ????? ???? > To: chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+sagrgCAbgpwyC1-gJy1_+q-+heO-+afG8gzj+0_xbR-Q@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ?? > > ??????????????? > > ????????? > > 1. ?? FAD ?? > 2. ????????? > 3. ???? > 4. fedoracommunity.org ??????? > 5. ?KAIO?????BLOG?????? > > K410 > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 8 > Date: Fri, 30 Sep 2011 10:06:17 +0800 > From: "Johnny@Beijing" <johnnybeijing@xxxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CABVfK+26pSV4ii_fu19UeG_+aTjueCOh1tJKfbJd0pXMYZq0+g@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > ????????blog?,???kaio??? > > 2011/9/29 Caius Chance <me@xxxxxxxx>: > > ??????????????? RSS ?? > > > > 2011/9/29 Liang Suilong <liangsuilong@xxxxxxxxx> > > > >> ?????????????????????? > >> > >> On Thursday, September 29, 2011, Caius Chance wrote: > >> > >> > ???????????????? > >> > On Sep 29, 2011 3:17 AM, "Simon Yan" <simonyan@xxxxxxxxxxxxxxxxx> wrote: > >> > > ???????????????????????? > >> > > > >> > > 2011/9/28 ??? <flc945@xxxxxxxxx>: > >> > >> ?????????? > >> > >> > >> > >> ? 2011?9?28? ??2:31?Yu Chen <jcomee@xxxxxxxxx> ??? > >> > >>> ???????????? > >> > >>> > >> > >>> > >> > >>> Yu > >> > >>> > >> > >>> > >> > >>> > >> > >>> ? 2011?9?28? ??1:30?Caius Chance <me@xxxxxxxx>??? > >> > >>> > >> > >>>> ???????? OS????????????????????????????? > >> > >>>> > >> > >>>> ? fedora planet ???????? project leader ? paul frields??? fedora > >> > planet > >> > >>>> ????? fedora/?? ???????????????????????????? > >> > >>>> post????????????????????????????????? windows/apple > >> > >>>> ??????????????????hackdesk ?????? linux ????? > >> > >>>> > >> > >>>> K410 > >> > >>>> > >> > >>>> 2011/9/28 Xu Xin <railwaycat@xxxxxxxxx> > >> > >>>> > >> > >>>> > ??????????????? "The Setup"?????? KDE ????? ??????????????? > >> > >>>> > ?????????????????????????? > >> > >>>> > -- > >> > >>>> > ???? > >> > >>>> > > >> > >>>> > > >> > >>>> > 2011/9/28 ??? <hongdanliu@xxxxxxxxx> > >> > >>>> > > > >> > >>>> > > ????????????? > >> > >>>> > > > >> > >>>> > > ?????????????????????????????????????????? :) > >> > >>>> > > > >> > >>>> > > 2011/9/28 Caius Chance <me@xxxxxxxx> > >> > >>>> > > > >> > >>>> > > > ?????????????????????????? > >> > >>>> > > > > >> > >>>> > > > ???????????????????????????????????? > >> > >>>> > > > > >> > >>>> > > > K410 > >> > >>>> > > > > >> > >>>> > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > >> > >>>> > > > > >> > >>>> > > > > ??? > >> > >>>> > > > > ????????????????????????????????????? > >> > >>>> > > > > ????????? > >> > >>>> > > > > _______________________________________________ > >> > >>>> > > > > Chinese mailing list > >> > >>>> > > > > Chinese at lists.fedoraproject.org > >> > >>>> > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > >>>> > > > > > >> > >>>> > > > > >> > >>>> > > > > >> > >>>> > > > > >> > >>>> > > > -- > >> > >>>> > > > > >> > >>>> > > > *https://profiles.google.com/Caius.Chance* > >> > >>>> > > > _______________________________________________ > >> > >>>> > > > Chinese mailing list > >> > >>>> > > > Chinese at lists.fedoraproject.org > >> > >>>> > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > >>>> > > > > >> > >>>> > > > >> > >>>> > > > >> > >>>> > > > >> > >>>> > > -- > >> > >>>> > > ??? > >> > >>>> > > http://liuhongdan.com/ > >> > >>>> > > > >> > >>>> > > _______________________________________________ > >> > >>>> > > Chinese mailing list > >> > >>>> > > Chinese at lists.fedoraproject.org > >> > >>>> > > <https://admin.fedoraproject.org/mailman/listinfo/chinese> > >> > >> > >> > >> -- > >> Fedora && Debian User, former Ubuntu User > >> My Page: http://www.liangsuilong.info > >> Fedora Project Contributor -- Packager && Ambassador > >> https://fedoraproject.org/wiki/User:Liangsuilong > >> > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > >> > > > > > > -- > > > > *https://profiles.google.com/Caius.Chance* > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > ------------------------------ > > Message: 9 > Date: Fri, 30 Sep 2011 10:07:30 +0800 > From: alick <alick9188@xxxxxxxxx> > Subject: Re: [FZH] FAD 2011 ??/??????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: <4E852462.4060608@xxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > ? 2011?09?30? 09:28, chopin xiao ??: > > 10?15?? > > ???????? > > ?????? > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > ??????????????????????? wiki ??? > ?????????????????? > > > -- > alick > Fedora 14 (Laughlin) user > https://fedoraproject.org/wiki/User:Alick > > > ------------------------------ > > Message: 10 > Date: Fri, 30 Sep 2011 12:17:39 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: Re: [FZH] 2011 ? 9 ? 30 ????? ???? > To: chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+tBAwYOA5jg=GP_PRyvDCHo+fWsjZ5_Bx-4KJ-iqMwR+Q@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > 2011/9/30 Caius Chance <me@xxxxxxxx> > > > ?? > > > > ??????????????? > > > > ????????? > > > > 1. ?? FAD ?? > > > > ?????? > > > > > 1. ????????? > > > > ????/TIANSWORLD?? > > > > > 1. ???? > > > > ???????????IRC?????????????????????????BLOG???PLANET???WIKI???? > > IRC?????????????OP??????? > > ??????????????????????????????????????? mailman > ???????????????????????????????????????????????????? > > ????????????????????????????????????? PHPBB?????????????? > > BLOG ? PLANET???????? WP ??????? > > WIKI?????????????????? > > > > > 1. fedoracommunity.org ??????? > > > > ???? Jared Smith ???cn.fedoracommunity.org ? zh.fedoracommunity.org ? > Board ???????????????????????????zht ? zh-trad ??????????? > > zh.fedoracommunity.org ????? cn.fedoracommunity.org ??????????????????????? > > ????????????????????????????????????????????????? > > > > > 1. ?KAIO?????BLOG?????? > > > > ??????? > > > > > > > > K410 > > -- > > > > *https://profiles.google.com/Caius.Chance* > > > > > > > > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 11 > Date: Fri, 30 Sep 2011 12:18:39 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+tVQv0Ks5ROsPfwGAz01mkHT-VT+N2Qc8F7Kpt8eQZ52g@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ????????? > > 2011/9/30 Johnny@Beijing <johnnybeijing@xxxxxxxxx> > > > ????????blog?,???kaio??? > > > > 2011/9/29 Caius Chance <me@xxxxxxxx>: > > > ??????????????? RSS ?? > > > > > > 2011/9/29 Liang Suilong <liangsuilong@xxxxxxxxx> > > > > > >> ?????????????????????? > > >> > > >> On Thursday, September 29, 2011, Caius Chance wrote: > > >> > > >> > ???????????????? > > >> > On Sep 29, 2011 3:17 AM, "Simon Yan" <simonyan@xxxxxxxxxxxxxxxxx> > > wrote: > > >> > > ???????????????????????? > > >> > > > > >> > > 2011/9/28 ??? <flc945@xxxxxxxxx>: > > >> > >> ?????????? > > >> > >> > > >> > >> ? 2011?9?28? ??2:31?Yu Chen <jcomee@xxxxxxxxx> ??? > > >> > >>> ???????????? > > >> > >>> > > >> > >>> > > >> > >>> Yu > > >> > >>> > > >> > >>> > > >> > >>> > > >> > >>> ? 2011?9?28? ??1:30?Caius Chance <me@xxxxxxxx>??? > > >> > >>> > > >> > >>>> ???????? OS????????????????????????????? > > >> > >>>> > > >> > >>>> ? fedora planet ???????? project leader ? paul frields??? fedora > > >> > planet > > >> > >>>> ????? fedora/?? ???????????????????????????? > > >> > >>>> post????????????????????????????????? windows/apple > > >> > >>>> ??????????????????hackdesk ?????? linux ????? > > >> > >>>> > > >> > >>>> K410 > > >> > >>>> > > >> > >>>> 2011/9/28 Xu Xin <railwaycat@xxxxxxxxx> > > >> > >>>> > > >> > >>>> > ??????????????? "The Setup"?????? KDE ????? ??????????????? > > >> > >>>> > ?????????????????????????? > > >> > >>>> > -- > > >> > >>>> > ???? > > >> > >>>> > > > >> > >>>> > > > >> > >>>> > 2011/9/28 ??? <hongdanliu@xxxxxxxxx> > > >> > >>>> > > > > >> > >>>> > > ????????????? > > >> > >>>> > > > > >> > >>>> > > ?????????????????????????????????????????? :) > > >> > >>>> > > > > >> > >>>> > > 2011/9/28 Caius Chance <me@xxxxxxxx> > > >> > >>>> > > > > >> > >>>> > > > ?????????????????????????? > > >> > >>>> > > > > > >> > >>>> > > > ???????????????????????????????????? > > >> > >>>> > > > > > >> > >>>> > > > K410 > > >> > >>>> > > > > > >> > >>>> > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > > >> > >>>> > > > > > >> > >>>> > > > > ??? > > >> > >>>> > > > > ????????????????????????????????????? > > >> > >>>> > > > > ????????? > > >> > >>>> > > > > _______________________________________________ > > >> > >>>> > > > > Chinese mailing list > > >> > >>>> > > > > Chinese at lists.fedoraproject.org > > >> > >>>> > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > >> > >>>> > > > > > > >> > >>>> > > > > > >> > >>>> > > > > > >> > >>>> > > > > > >> > >>>> > > > -- > > >> > >>>> > > > > > >> > >>>> > > > *https://profiles.google.com/Caius.Chance* > > >> > >>>> > > > _______________________________________________ > > >> > >>>> > > > Chinese mailing list > > >> > >>>> > > > Chinese at lists.fedoraproject.org > > >> > >>>> > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > >> > >>>> > > > > > >> > >>>> > > > > >> > >>>> > > > > >> > >>>> > > > > >> > >>>> > > -- > > >> > >>>> > > ??? > > >> > >>>> > > http://liuhongdan.com/ > > >> > >>>> > > > > >> > >>>> > > _______________________________________________ > > >> > >>>> > > Chinese mailing list > > >> > >>>> > > Chinese at lists.fedoraproject.org > > >> > >>>> > > <https://admin.fedoraproject.org/mailman/listinfo/chinese> > > >> > > >> > > >> > > >> -- > > >> Fedora && Debian User, former Ubuntu User > > >> My Page: http://www.liangsuilong.info > > >> Fedora Project Contributor -- Packager && Ambassador > > >> https://fedoraproject.org/wiki/User:Liangsuilong > > >> > > >> _______________________________________________ > > >> Chinese mailing list > > >> Chinese at lists.fedoraproject.org > > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > > >> > > >> > > > > > > > > > -- > > > > > > *https://profiles.google.com/Caius.Chance* > > > _______________________________________________ > > > Chinese mailing list > > > Chinese at lists.fedoraproject.org > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 12 > Date: Fri, 30 Sep 2011 11:47:36 +0800 > From: Yu Chen <jcomee@xxxxxxxxx> > Subject: [FZH] IBus GJS for GNOME-Shell 3.2.0 > To: chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAGFmxodWh3dMNSdij6P7gXD4Wn4qMMwd-VO2rf228HQEX5ENUw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ?F16?????????ibus-gnome3????? > > http://desktopi18n.wordpress.com/2011/09/29/ibus-gjs-for-gnome-shell-3-2-0/ > > > Yu > > ------------------------------ > > Message: 13 > Date: Fri, 30 Sep 2011 15:29:20 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: [FZH] fedoracommunity.org ??????? > To: chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+uxoqpaFEt3HsnD+jGMDjKxOmDx6wi4iWGi7bOKigG3Rw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ???? Jared Smith ???cn.fedoracommunity.org ? zh.fedoracommunity.org ? Board > ????? > > ??????????????????????? zht? zh-trad ??????????? > > zh.fedoracommunity.org ????? cn.fedoracommunity.org ???????????????????????? > > ????????????????????????????????????????????????? > > K410 > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 14 > Date: Fri, 30 Sep 2011 14:11:02 +0800 > From: Michael Ding <dingyan@xxxxxxxxxxxxx> > Subject: [FZH] ????? > To: ?? Linux??? <njlug@xxxxxxxxxxxxxxxx>, Fedora-China ??? > <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: <727DD613-4CC1-4EB3-B9B9-395BBA9749E4@xxxxxxxxxxxxx> > Content-Type: text/plain; charset=utf-8 > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > ???????????(VCS)???????????????????????????????????????????????????????! > > Q1??????????(VCS)?? > 1.???????? 2.?????3.??????? > > Q2??????VCS? > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > Q3????????VCS? > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > - -- > Michael DING > > Main Founder of Free Storm ORG > http://www.freestorm.org > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG/MacGPG2 v2.0.17 (Darwin) > Comment: GPGTools - http://gpgtools.org > > iQEcBAEBAgAGBQJOhV12AAoJEE46QpXD7Zpwjx0H/2xdHhTnn1dYIeOVxHAGnQS5 > UtSlDftdsGHsHR3sSWh71TPWNjUcI3Wgywj4rrhNTWwMYCmdIyW17Z5z3Ig4Ayfd > Xxm0GOhh9ZZQL1/TXVyGjR0Vcyec4wL/vL5ngigmJ7aShtVZ5gYcEk9F79ixZeA7 > kiKD9LBJcnHh2Jmf5i8AXk/Wm+gCgfnPtWtlY5YI+pWhP6K3Pbw5r6uKqVcZqiRi > HQvpo8Dl4ItXrB6B8AABIcGX2JrLdmO1aiyF+bVz0zfg0Cpk26d7qOGz5s/7Bkjv > 4flTsglsmJZHLAsXsrFugTLii4/Rrykout3Ig4FHinqfIUlKVNKQLJfo5zjNRp8= > =ardn > -----END PGP SIGNATURE----- > > ------------------------------ > > Message: 15 > Date: Fri, 30 Sep 2011 16:55:44 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: Re: [FZH] ????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+sdaH0+Nzr9QKvGiX5pDKQExbGcAZgginta7ikrq8f9qA@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > 333 > > 2011/9/30 Michael Ding <dingyan@xxxxxxxxxxxxx> > > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > > > > ???????????(VCS)???????????????????????????????????????????????????????! > > > > Q1??????????(VCS)?? > > 1.???????? 2.?????3.??????? > > > > Q2??????VCS? > > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > > > Q3????????VCS? > > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > - -- > > Michael DING > > > > Main Founder of Free Storm ORG > > http://www.freestorm.org > > > > -----BEGIN PGP SIGNATURE----- > > Version: GnuPG/MacGPG2 v2.0.17 (Darwin) > > Comment: GPGTools - http://gpgtools.org > > > > iQEcBAEBAgAGBQJOhV12AAoJEE46QpXD7Zpwjx0H/2xdHhTnn1dYIeOVxHAGnQS5 > > UtSlDftdsGHsHR3sSWh71TPWNjUcI3Wgywj4rrhNTWwMYCmdIyW17Z5z3Ig4Ayfd > > Xxm0GOhh9ZZQL1/TXVyGjR0Vcyec4wL/vL5ngigmJ7aShtVZ5gYcEk9F79ixZeA7 > > kiKD9LBJcnHh2Jmf5i8AXk/Wm+gCgfnPtWtlY5YI+pWhP6K3Pbw5r6uKqVcZqiRi > > HQvpo8Dl4ItXrB6B8AABIcGX2JrLdmO1aiyF+bVz0zfg0Cpk26d7qOGz5s/7Bkjv > > 4flTsglsmJZHLAsXsrFugTLii4/Rrykout3Ig4FHinqfIUlKVNKQLJfo5zjNRp8= > > =ardn > > -----END PGP SIGNATURE----- > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 16 > Date: Fri, 30 Sep 2011 15:02:56 +0800 > From: Xiang Wang <wxjeacen@xxxxxxxxx> > Subject: Re: [FZH] ????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CALVGtYmo+AC+QkJ-7YYgcLfjw69sJccqddmscT8_KG79T49Sxw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > *git svn ???? > * > 2011/9/30 Caius Chance <me@xxxxxxxx> > > > 333 > > > > 2011/9/30 Michael Ding <dingyan@xxxxxxxxxxxxx> > > > > > -----BEGIN PGP SIGNED MESSAGE----- > > > Hash: SHA1 > > > > > > ???????????(VCS)???????????????????????????????????????????????????????! > > > > > > Q1??????????(VCS)?? > > > 1.???????? 2.?????3.??????? > > > > > > Q2??????VCS? > > > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > > > > > Q3????????VCS? > > > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > > - -- > > > Michael DING > > > > > > Main Founder of Free Storm ORG > > > http://www.freestorm.org > > > > > > -----BEGIN PGP SIGNATURE----- > > > Version: GnuPG/MacGPG2 v2.0.17 (Darwin) > > > Comment: GPGTools - http://gpgtools.org > > > > > > iQEcBAEBAgAGBQJOhV12AAoJEE46QpXD7Zpwjx0H/2xdHhTnn1dYIeOVxHAGnQS5 > > > UtSlDftdsGHsHR3sSWh71TPWNjUcI3Wgywj4rrhNTWwMYCmdIyW17Z5z3Ig4Ayfd > > > Xxm0GOhh9ZZQL1/TXVyGjR0Vcyec4wL/vL5ngigmJ7aShtVZ5gYcEk9F79ixZeA7 > > > kiKD9LBJcnHh2Jmf5i8AXk/Wm+gCgfnPtWtlY5YI+pWhP6K3Pbw5r6uKqVcZqiRi > > > HQvpo8Dl4ItXrB6B8AABIcGX2JrLdmO1aiyF+bVz0zfg0Cpk26d7qOGz5s/7Bkjv > > > 4flTsglsmJZHLAsXsrFugTLii4/Rrykout3Ig4FHinqfIUlKVNKQLJfo5zjNRp8= > > > =ardn > > > -----END PGP SIGNATURE----- > > > _______________________________________________ > > > Chinese mailing list > > > Chinese at lists.fedoraproject.org > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > -- > > > > *https://profiles.google.com/Caius.Chance* > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > > ** > * > > Best Regards, > ** > > Devil Wang| Engineer of Linux > > Gtalk: wxjeacen AT gmail DOT com <wxjeacen@xxxxxxxxx> > > * > > ------------------------------ > > Message: 17 > Date: Fri, 30 Sep 2011 15:07:18 +0800 > From: ????(???) <zhangmingyuan240@xxxxxxxxx> > Subject: Re: [FZH] ????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAP0qpR39LmzOE54gYvwWQVDdN_gKYB14rECOhXevp963Aokypg@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > 344 > > ? 2011?9?30? ??3:02?Xiang Wang <wxjeacen@xxxxxxxxx>??? > > > *git svn ???? > > * > > 2011/9/30 Caius Chance <me@xxxxxxxx> > > > > > 333 > > > > > > 2011/9/30 Michael Ding <dingyan@xxxxxxxxxxxxx> > > > > > > > -----BEGIN PGP SIGNED MESSAGE----- > > > > Hash: SHA1 > > > > > > > > > > ???????????(VCS)???????????????????????????????????????????????????????! > > > > > > > > Q1??????????(VCS)?? > > > > 1.???????? 2.?????3.??????? > > > > > > > > Q2??????VCS? > > > > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > > > > > > > Q3????????VCS? > > > > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > > > - -- > > > > Michael DING > > > > > > > > Main Founder of Free Storm ORG > > > > http://www.freestorm.org > > > > > > > > -----BEGIN PGP SIGNATURE----- > > > > Version: GnuPG/MacGPG2 v2.0.17 (Darwin) > > > > Comment: GPGTools - http://gpgtools.org > > > > > > > > iQEcBAEBAgAGBQJOhV12AAoJEE46QpXD7Zpwjx0H/2xdHhTnn1dYIeOVxHAGnQS5 > > > > UtSlDftdsGHsHR3sSWh71TPWNjUcI3Wgywj4rrhNTWwMYCmdIyW17Z5z3Ig4Ayfd > > > > Xxm0GOhh9ZZQL1/TXVyGjR0Vcyec4wL/vL5ngigmJ7aShtVZ5gYcEk9F79ixZeA7 > > > > kiKD9LBJcnHh2Jmf5i8AXk/Wm+gCgfnPtWtlY5YI+pWhP6K3Pbw5r6uKqVcZqiRi > > > > HQvpo8Dl4ItXrB6B8AABIcGX2JrLdmO1aiyF+bVz0zfg0Cpk26d7qOGz5s/7Bkjv > > > > 4flTsglsmJZHLAsXsrFugTLii4/Rrykout3Ig4FHinqfIUlKVNKQLJfo5zjNRp8= > > > > =ardn > > > > -----END PGP SIGNATURE----- > > > > _______________________________________________ > > > > Chinese mailing list > > > > Chinese at lists.fedoraproject.org > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > > > > > > -- > > > > > > *https://profiles.google.com/Caius.Chance* > > > _______________________________________________ > > > Chinese mailing list > > > Chinese at lists.fedoraproject.org > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > -- > > > > ** > > * > > > > Best Regards, > > ** > > > > Devil Wang| Engineer of Linux > > > > Gtalk: wxjeacen AT gmail DOT com <wxjeacen@xxxxxxxxx> > > > > * > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > ?? > http://www.Linuxzh.org > Twitter: @muxueqz > > > ------------------------------ > > Message: 18 > Date: Fri, 30 Sep 2011 15:36:45 +0800 > From: Botu Sun <sunbotu@xxxxxxxxx> > Subject: Re: [FZH] ????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: <4E85718D.3000803@xxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > 333 > > On 09/30/2011 02:11 PM, Michael Ding wrote: > > ???????????(VCS)????????????????????? > ??????????????????????????????????! > > > > Q1??????????(VCS)?? > > 1.???????? 2.?????3.??????? > > > > Q2??????VCS? > > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > > > Q3????????VCS? > > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.14 (GNU/Linux) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ > > iQIcBAEBAgAGBQJOhXGMAAoJEO6K6h3opgPNNA0P/2i9ZLXtn/dUtPJdXVUw0DKh > rQ74P6+g5amek1UdCdFPqsNUi4ks77On/7XNVxtfMsGlmwPJJA1TRP7sP8XpIYUL > cUjCoEFt3Zfrjym42hykSdXYH0WahZkHEf1XVX/6/abCtSifFTkGu0AQnvZG4RaG > 6zF44H7bs2btcKRssqYiG5D+Tmqhs7yeIQKnZuSQ2Xkmxf2e0AriRWc4CwOLpGI9 > JKjly7HMBDNVjSGxaVCU6PwMpiHDJekt/TGr6kxGWFOTWP9yIrLOrEJIqWbeXfnn > QdtZ8jTPddnXwdZW7fs1JlBAQNzcHUHl7Q6YxghpJjvnK57zcawYUOmouW53HfVR > 4wj64X9ErDPTLpqvptOx1JDP2FFmO5QHhWiqR4g0xCwoN9atRsTUQumrJWRZWfae > N9fLQ7ZwsylIQoeWE7VtEY3llThIX/hzzqrpIb3HkHtvDljYlGpcnjQylYOuYW3X > 5YA5oOVgOQoDzDlKNdw1om1p3oc+Z2WxkUSaJo4Jk2OfRm3lIu9wxOCbYqg/YMGc > aUfvBQJCoquin1Xfr9sryJw3Ca2X/7DiQ8MXNxLVanhRTe6Z31Ec+x4OiKjSMWf2 > mOPz7N2s6W6k0t2dM8q5AONZKHW6Zc7hGO79GU59zRD68tvkVHWMTwU4PccbGI02 > YpwI/H79oIh+uoCyEq3j > =rlGt > -----END PGP SIGNATURE----- > > > > ------------------------------ > > Message: 19 > Date: Fri, 30 Sep 2011 16:17:58 +0800 > From: Simon Yan <simonyan@xxxxxxxxxxxxxxxxx> > Subject: Re: [FZH] ????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CALEWkc-gW-o2Wi2zNG3oq5dZknz2H2_Futyyj6_5gGDexrX1VQ@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > 222 > > 2011/9/30 Botu Sun <sunbotu@xxxxxxxxx>: > > > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > > > > 333 > > > > On 09/30/2011 02:11 PM, Michael Ding wrote: > >> ???????????(VCS)????????????????????? > > ??????????????????????????????????! > >> > >> Q1??????????(VCS)?? > >> 1.???????? 2.?????3.??????? > >> > >> Q2??????VCS? > >> 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > >> > >> Q3????????VCS? > >> 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > -----BEGIN PGP SIGNATURE----- > > Version: GnuPG v2.0.14 (GNU/Linux) > > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ > > > > iQIcBAEBAgAGBQJOhXGMAAoJEO6K6h3opgPNNA0P/2i9ZLXtn/dUtPJdXVUw0DKh > > rQ74P6+g5amek1UdCdFPqsNUi4ks77On/7XNVxtfMsGlmwPJJA1TRP7sP8XpIYUL > > cUjCoEFt3Zfrjym42hykSdXYH0WahZkHEf1XVX/6/abCtSifFTkGu0AQnvZG4RaG > > 6zF44H7bs2btcKRssqYiG5D+Tmqhs7yeIQKnZuSQ2Xkmxf2e0AriRWc4CwOLpGI9 > > JKjly7HMBDNVjSGxaVCU6PwMpiHDJekt/TGr6kxGWFOTWP9yIrLOrEJIqWbeXfnn > > QdtZ8jTPddnXwdZW7fs1JlBAQNzcHUHl7Q6YxghpJjvnK57zcawYUOmouW53HfVR > > 4wj64X9ErDPTLpqvptOx1JDP2FFmO5QHhWiqR4g0xCwoN9atRsTUQumrJWRZWfae > > N9fLQ7ZwsylIQoeWE7VtEY3llThIX/hzzqrpIb3HkHtvDljYlGpcnjQylYOuYW3X > > 5YA5oOVgOQoDzDlKNdw1om1p3oc+Z2WxkUSaJo4Jk2OfRm3lIu9wxOCbYqg/YMGc > > aUfvBQJCoquin1Xfr9sryJw3Ca2X/7DiQ8MXNxLVanhRTe6Z31Ec+x4OiKjSMWf2 > > mOPz7N2s6W6k0t2dM8q5AONZKHW6Zc7hGO79GU59zRD68tvkVHWMTwU4PccbGI02 > > YpwI/H79oIh+uoCyEq3j > > =rlGt > > -----END PGP SIGNATURE----- > > > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > Regards, > YeeYaa (Simon Yan) > > http://simonyan.fedorapeople.org/ > > > ------------------------------ > > Message: 20 > Date: Fri, 30 Sep 2011 16:58:17 +0800 > From: alick <alick9188@xxxxxxxxx> > Subject: Re: [FZH] ????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: <4E8584A9.4040404@xxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ? 2011?09?30? 14:11, Michael Ding ??: > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > > > > ???????????(VCS)???????????????????????????????????????????????????????! > > > > Q1??????????(VCS)?? > > 1.???????? 2.?????3.??????? > > > > Q2??????VCS? > > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > > > Q3????????VCS? > > 1.CVS; 2.SVN; 3.Git; 4.Mercurial(hg); 5.?? > > - -- > > 333 > > > ------------------------------ > > _______________________________________________ > Chinese mailing list > Chinese@xxxxxxxxxxxxxxxxxxxxxxx > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > End of Chinese Digest, Vol 237, Issue 1 > *************************************** On Fri, Sep 30, 2011 at 12:00:08PM +0000, websites-request@xxxxxxxxxxxxxxxxxxxxxxx wrote: > Send websites mailing list submissions to > websites@xxxxxxxxxxxxxxxxxxxxxxx > > To subscribe or unsubscribe via the World Wide Web, visit > https://admin.fedoraproject.org/mailman/listinfo/websites > or, via email, send a message with subject or body 'help' to > websites-request@xxxxxxxxxxxxxxxxxxxxxxx > > You can reach the person managing the list at > websites-owner@xxxxxxxxxxxxxxxxxxxxxxx > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of websites digest..." > > > Today's Topics: > > 1. Re: Draft Release Notes builds (Domingo Becker) > 2. Re: Draft Release Notes builds (K?vin Raymond) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Thu, 29 Sep 2011 11:23:21 -0300 > From: Domingo Becker <domingobecker@xxxxxxxxx> > Subject: Re: Draft Release Notes builds > To: wb8rcr@xxxxxxxx, Fedora Translation Project List > <trans@xxxxxxxxxxxxxxxxxxxxxxx>, Fedora Websites Team > <websites@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CABJ5b7rcNhEM=aka6SRgsNxi6KUySYJQvw5U=aijuPwjiqhosw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > 2011/9/26 John J. McDonough <wb8rcr@xxxxxxxx>: > > I have started the nightly builds of the release notes on > > http://fedorapeople.org/groups/docs/release-notes/ > > > > Each night (U.S. time) translations are pulled and the notes rebuilt. > > > > Thank you, John. > > Unfortunately, the translation teams decided to manage short language > codes, for example, es instead of es-ES, and the URL in [1] for the > release notes resolves to the page you gave us with language code > es-ES for Spanish. > > Perhaps somebody can fix it. > It comes from this string in Fedora Websites ? fedoraproject.org master branch: > > This is pre-release software and is supported by the <a > href=\"http://fedoraproject.org/wiki/QA\">QA team</a>. Please direct > questions to test@xxxxxxxxxxxxxxxxxxxxxxx or #fedora-qa on freenode. > All issues or bugs should be reported via the <a > href=\"https://bugzilla.redhat.com/\">Red Hat Bugzilla</a>. The Fedora > Project makes no guarantees as to its suitability or usefulness. Read > the <a href=\"%(relnotes_url)s\">Release Notes</a> for more > information on changes and new features, and the <a > href=\"%(commonbugs_url)s\">Common Bugs</a> page for information on > commonly-encountered bugs and how to avoid them. > > The key is the generation of %(relnotes_url)s with the tool used to > generate the page, doing a reverse map of the language code to the one > we use in Transifex. > > [1] https://fedoraproject.org/get-prerelease > > k.r. > > Domingo Becker > > > ------------------------------ > > Message: 2 > Date: Thu, 29 Sep 2011 17:24:37 +0200 > From: K?vin Raymond <shaiton@xxxxxxxxxxxxxxxxx> > Subject: Re: Draft Release Notes builds > To: Domingo Becker <domingobecker@xxxxxxxxx> > Cc: wb8rcr@xxxxxxxx, Fedora Translation Project List > <trans@xxxxxxxxxxxxxxxxxxxxxxx>, Fedora Websites Team > <websites@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAPwc7DPaaH1N2AEGQ-M7DFA+TgqLXTPGQ6Ogxuc=15VwxPnEmA@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > On Thu, Sep 29, 2011 at 4:23 PM, Domingo Becker <domingobecker@xxxxxxxxx> wrote: > > 2011/9/26 John J. McDonough <wb8rcr@xxxxxxxx>: > >> I have started the nightly builds of the release notes on > >> http://fedorapeople.org/groups/docs/release-notes/ > >> > >> Each night (U.S. time) translations are pulled and the notes rebuilt. > >> > > > > Thank you, John. > > > > Unfortunately, the translation teams decided to manage short language > > codes, for example, es instead of es-ES, and the URL in [1] for the > > release notes resolves to the page you gave us with language code > > es-ES for Spanish. > > > > Perhaps somebody can fix it. > > It comes from this string in Fedora Websites ? fedoraproject.org master branch: > > > > This is pre-release software and is supported by the <a > > href=\"http://fedoraproject.org/wiki/QA\">QA team</a>. Please direct > > questions to test@xxxxxxxxxxxxxxxxxxxxxxx or #fedora-qa on freenode. > > All issues or bugs should be reported via the <a > > href=\"https://bugzilla.redhat.com/\">Red Hat Bugzilla</a>. The Fedora > > Project makes no guarantees as to its suitability or usefulness. Read > > the <a href=\"%(relnotes_url)s\">Release Notes</a> for more > > information on changes and new features, and the <a > > href=\"%(commonbugs_url)s\">Common Bugs</a> page for information on > > commonly-encountered bugs and how to avoid them. > > > > The key is the generation of %(relnotes_url)s with the tool used to > > generate the page, doing a reverse map of the language code to the one > > we use in Transifex. > > > > [1] https://fedoraproject.org/get-prerelease > > > > k.r. > > > > Domingo Becker > > > Thank you Domingo for reporting this. > I've corrected that in the beta branch, shoud be up soon. > > > > -- > K?vin Raymond > User:shaiton > GPG-Key: A5BCB3A2 > > > ------------------------------ > > -- > websites mailing list > websites@xxxxxxxxxxxxxxxxxxxxxxx > https://admin.fedoraproject.org/mailman/listinfo/websites > > End of websites Digest, Vol 71, Issue 20 > **************************************** On Thu, Sep 29, 2011 at 12:00:14PM +0000, chinese-request@xxxxxxxxxxxxxxxxxxxxxxx wrote: > Send Chinese mailing list submissions to > chinese@xxxxxxxxxxxxxxxxxxxxxxx > > To subscribe or unsubscribe via the World Wide Web, visit > https://admin.fedoraproject.org/mailman/listinfo/chinese > or, via email, send a message with subject or body 'help' to > chinese-request@xxxxxxxxxxxxxxxxxxxxxxx > > You can reach the person managing the list at > chinese-owner@xxxxxxxxxxxxxxxxxxxxxxx > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Chinese digest..." > > > Today's Topics: > > 1. Re: FAD 2011 ??/??????? (chopin xiao) > 2. Re: FAD 2011 ??/??????? (???) > 3. Re: ?? blog ?? (Simon Yan) > 4. Re: ?? blog ?? (Caius Chance) > 5. Re: ?? blog ?? (Liang Suilong) > 6. Re: ?? blog ?? (Caius Chance) > 7. 10?15???????????? (microcai) > 8. Re: 10?15???????????? (alick) > 9. Re: 10?15???????????? (???) > 10. Re: 10?15???????????? (Caius Chance) > 11. Re: 10?15???????????? (???) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 28 Sep 2011 21:28:35 +0800 > From: chopin xiao <chopins.xiao@xxxxxxxxx> > Subject: Re: [FZH] FAD 2011 ??/??????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CA+BUBRwECE+o50w4CLHRZ+mBBvDUeOmeChb9dM5aAJ3AkCEP7g@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > ???????????? > > ? 2011?9?28? ??2:37?Yu Chen <jcomee@xxxxxxxxx> ??? > > ???????????????? > > > > Liang???????????????????????????????? :) > > > > Yu > > > > > > > > ? 2011?8?29? ??10:34?Yu Chen <jcomee@xxxxxxxxx>??? > > > >> ??????????????????? :) > >> > >> Yu > >> > >> > >> > >> ? 2011?8?29? ??9:52?Liang Suilong <liangsuilong@xxxxxxxxx>??? > >> > >> ?? Yu Chen ?????????????? Fedora Tee ??????? > >>> ? 2011-8-29 ??1:28?"Yu Chen" <jcomee@xxxxxxxxx>??? > >>> > ??????????????????? > >>> > > >>> > ?????????????????????????????? Synfig Studio [http://synfig.org > >>> > ]???????????????????????? > >>> > > >>> > > >>> > ?? > >>> > jcome > >>> > _______________________________________________ > >>> > Chinese mailing list > >>> > Chinese at lists.fedoraproject.org > >>> > https://admin.fedoraproject.org/mailman/listinfo/chinese > >>> _______________________________________________ > >>> Chinese mailing list > >>> Chinese at lists.fedoraproject.org > >>> https://admin.fedoraproject.org/mailman/listinfo/chinese > >>> > >> > >> > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > ------------------------------ > > Message: 2 > Date: Wed, 28 Sep 2011 23:32:09 +0800 > From: ??? <dongfengweixiao@xxxxxxxxx> > Subject: Re: [FZH] FAD 2011 ??/??????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAPg0_-gYwDDu+q4YmvFiy0_Xrr0uosihyn0BrHYMPdpxrW663A@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ???????????????????????????gay?? > ? 2011-9-28 ??9:29?"chopin xiao" <chopins.xiao@xxxxxxxxx>??? > > ???????????? > > > > ? 2011?9?28? ??2:37?Yu Chen <jcomee@xxxxxxxxx> ??? > >> ???????????????? > >> > >> Liang???????????????????????????????? :) > >> > >> Yu > >> > >> > >> > >> ? 2011?8?29? ??10:34?Yu Chen <jcomee@xxxxxxxxx>??? > >> > >>> ??????????????????? :) > >>> > >>> Yu > >>> > >>> > >>> > >>> ? 2011?8?29? ??9:52?Liang Suilong <liangsuilong@xxxxxxxxx>??? > >>> > >>> ?? Yu Chen ?????????????? Fedora Tee ??????? > >>>> ? 2011-8-29 ??1:28?"Yu Chen" <jcomee@xxxxxxxxx>??? > >>>> > ??????????????????? > >>>> > > >>>> > ?????????????????????????????? Synfig Studio [http://synfig.org > >>>> > ]???????????????????????? > >>>> > > >>>> > > >>>> > ?? > >>>> > jcome > >>>> > _______________________________________________ > >>>> > Chinese mailing list > >>>> > Chinese at lists.fedoraproject.org > >>>> > https://admin.fedoraproject.org/mailman/listinfo/chinese > >>>> _______________________________________________ > >>>> Chinese mailing list > >>>> Chinese at lists.fedoraproject.org > >>>> https://admin.fedoraproject.org/mailman/listinfo/chinese > >>>> > >>> > >>> > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > ------------------------------ > > Message: 3 > Date: Thu, 29 Sep 2011 01:16:48 +0800 > From: Simon Yan <simonyan@xxxxxxxxxxxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CALEWkc80kfH5JEsq7OGmigiO_K0xSLz9E14t8KC6SyvKdmgZrw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > ???????????????????????? > > 2011/9/28 ??? <flc945@xxxxxxxxx>: > > ?????????? > > > > ? 2011?9?28? ??2:31?Yu Chen <jcomee@xxxxxxxxx> ??? > >> ???????????? > >> > >> > >> Yu > >> > >> > >> > >> ? 2011?9?28? ??1:30?Caius Chance <me@xxxxxxxx>??? > >> > >>> ???????? OS????????????????????????????? > >>> > >>> ? fedora planet ???????? project leader ? paul frields??? fedora planet > >>> ????? fedora/?? ???????????????????????????? > >>> post????????????????????????????????? windows/apple > >>> ??????????????????hackdesk ?????? linux ????? > >>> > >>> K410 > >>> > >>> 2011/9/28 Xu Xin <railwaycat@xxxxxxxxx> > >>> > >>> > ??????????????? "The Setup"?????? KDE ????? ??????????????? > >>> > ?????????????????????????? > >>> > -- > >>> > ???? > >>> > > >>> > > >>> > 2011/9/28 ??? <hongdanliu@xxxxxxxxx> > >>> > > > >>> > > ????????????? > >>> > > > >>> > > ?????????????????????????????????????????? :) > >>> > > > >>> > > 2011/9/28 Caius Chance <me@xxxxxxxx> > >>> > > > >>> > > > ?????????????????????????? > >>> > > > > >>> > > > ???????????????????????????????????? > >>> > > > > >>> > > > K410 > >>> > > > > >>> > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > >>> > > > > >>> > > > > ??? > >>> > > > > ????????????????????????????????????? > >>> > > > > ????????? > >>> > > > > _______________________________________________ > >>> > > > > Chinese mailing list > >>> > > > > Chinese at lists.fedoraproject.org > >>> > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >>> > > > > > >>> > > > > >>> > > > > >>> > > > > >>> > > > -- > >>> > > > > >>> > > > *https://profiles.google.com/Caius.Chance* > >>> > > > _______________________________________________ > >>> > > > Chinese mailing list > >>> > > > Chinese at lists.fedoraproject.org > >>> > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >>> > > > > >>> > > > >>> > > > >>> > > > >>> > > -- > >>> > > ??? > >>> > > http://liuhongdan.com/ > >>> > > > >>> > > _______________________________________________ > >>> > > Chinese mailing list > >>> > > Chinese at lists.fedoraproject.org > >>> > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >>> > > > >>> > _______________________________________________ > >>> > Chinese mailing list > >>> > Chinese at lists.fedoraproject.org > >>> > https://admin.fedoraproject.org/mailman/listinfo/chinese > >>> > > >>> > >>> > >>> > >>> -- > >>> > >>> *https://profiles.google.com/Caius.Chance* > >>> _______________________________________________ > >>> Chinese mailing list > >>> Chinese at lists.fedoraproject.org > >>> https://admin.fedoraproject.org/mailman/listinfo/chinese > >>> > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > Regards, > YeeYaa (Simon Yan) > > http://simonyan.fedorapeople.org/ > > ------------------------------ > > Message: 4 > Date: Thu, 29 Sep 2011 08:04:14 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+sdwUuvpU0Sv7f2QdR5EdCt88QSwgvXi+6_HnohUVN+qw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ???????????????? > On Sep 29, 2011 3:17 AM, "Simon Yan" <simonyan@xxxxxxxxxxxxxxxxx> wrote: > > ???????????????????????? > > > > 2011/9/28 ??? <flc945@xxxxxxxxx>: > >> ?????????? > >> > >> ? 2011?9?28? ??2:31?Yu Chen <jcomee@xxxxxxxxx> ??? > >>> ???????????? > >>> > >>> > >>> Yu > >>> > >>> > >>> > >>> ? 2011?9?28? ??1:30?Caius Chance <me@xxxxxxxx>??? > >>> > >>>> ???????? OS????????????????????????????? > >>>> > >>>> ? fedora planet ???????? project leader ? paul frields??? fedora planet > >>>> ????? fedora/?? ???????????????????????????? > >>>> post????????????????????????????????? windows/apple > >>>> ??????????????????hackdesk ?????? linux ????? > >>>> > >>>> K410 > >>>> > >>>> 2011/9/28 Xu Xin <railwaycat@xxxxxxxxx> > >>>> > >>>> > ??????????????? "The Setup"?????? KDE ????? ??????????????? > >>>> > ?????????????????????????? > >>>> > -- > >>>> > ???? > >>>> > > >>>> > > >>>> > 2011/9/28 ??? <hongdanliu@xxxxxxxxx> > >>>> > > > >>>> > > ????????????? > >>>> > > > >>>> > > ?????????????????????????????????????????? :) > >>>> > > > >>>> > > 2011/9/28 Caius Chance <me@xxxxxxxx> > >>>> > > > >>>> > > > ?????????????????????????? > >>>> > > > > >>>> > > > ???????????????????????????????????? > >>>> > > > > >>>> > > > K410 > >>>> > > > > >>>> > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > >>>> > > > > >>>> > > > > ??? > >>>> > > > > ????????????????????????????????????? > >>>> > > > > ????????? > >>>> > > > > _______________________________________________ > >>>> > > > > Chinese mailing list > >>>> > > > > Chinese at lists.fedoraproject.org > >>>> > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >>>> > > > > > >>>> > > > > >>>> > > > > >>>> > > > > >>>> > > > -- > >>>> > > > > >>>> > > > *https://profiles.google.com/Caius.Chance* > >>>> > > > _______________________________________________ > >>>> > > > Chinese mailing list > >>>> > > > Chinese at lists.fedoraproject.org > >>>> > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >>>> > > > > >>>> > > > >>>> > > > >>>> > > > >>>> > > -- > >>>> > > ??? > >>>> > > http://liuhongdan.com/ > >>>> > > > >>>> > > _______________________________________________ > >>>> > > Chinese mailing list > >>>> > > Chinese at lists.fedoraproject.org > >>>> > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >>>> > > > >>>> > _______________________________________________ > >>>> > Chinese mailing list > >>>> > Chinese at lists.fedoraproject.org > >>>> > https://admin.fedoraproject.org/mailman/listinfo/chinese > >>>> > > >>>> > >>>> > >>>> > >>>> -- > >>>> > >>>> *https://profiles.google.com/Caius.Chance* > >>>> _______________________________________________ > >>>> Chinese mailing list > >>>> Chinese at lists.fedoraproject.org > >>>> https://admin.fedoraproject.org/mailman/listinfo/chinese > >>>> > >>> _______________________________________________ > >>> Chinese mailing list > >>> Chinese at lists.fedoraproject.org > >>> https://admin.fedoraproject.org/mailman/listinfo/chinese > >>> > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > > > > > > > -- > > Regards, > > YeeYaa (Simon Yan) > > > > http://simonyan.fedorapeople.org/ > > ------------------------------ > > Message: 5 > Date: Thu, 29 Sep 2011 09:49:31 +0800 > From: Liang Suilong <liangsuilong@xxxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAHdyC6b7ZO_Py-ocaDkNRbB88btWdXyWf5FXCDuSvjtvfwqDMQ@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > ?????????????????????? > > On Thursday, September 29, 2011, Caius Chance wrote: > > > ???????????????? > > On Sep 29, 2011 3:17 AM, "Simon Yan" <simonyan@xxxxxxxxxxxxxxxxx> wrote: > > > ???????????????????????? > > > > > > 2011/9/28 ??? <flc945@xxxxxxxxx>: > > >> ?????????? > > >> > > >> ? 2011?9?28? ??2:31?Yu Chen <jcomee@xxxxxxxxx> ??? > > >>> ???????????? > > >>> > > >>> > > >>> Yu > > >>> > > >>> > > >>> > > >>> ? 2011?9?28? ??1:30?Caius Chance <me@xxxxxxxx>??? > > >>> > > >>>> ???????? OS????????????????????????????? > > >>>> > > >>>> ? fedora planet ???????? project leader ? paul frields??? fedora > > planet > > >>>> ????? fedora/?? ???????????????????????????? > > >>>> post????????????????????????????????? windows/apple > > >>>> ??????????????????hackdesk ?????? linux ????? > > >>>> > > >>>> K410 > > >>>> > > >>>> 2011/9/28 Xu Xin <railwaycat@xxxxxxxxx> > > >>>> > > >>>> > ??????????????? "The Setup"?????? KDE ????? ??????????????? > > >>>> > ?????????????????????????? > > >>>> > -- > > >>>> > ???? > > >>>> > > > >>>> > > > >>>> > 2011/9/28 ??? <hongdanliu@xxxxxxxxx> > > >>>> > > > > >>>> > > ????????????? > > >>>> > > > > >>>> > > ?????????????????????????????????????????? :) > > >>>> > > > > >>>> > > 2011/9/28 Caius Chance <me@xxxxxxxx> > > >>>> > > > > >>>> > > > ?????????????????????????? > > >>>> > > > > > >>>> > > > ???????????????????????????????????? > > >>>> > > > > > >>>> > > > K410 > > >>>> > > > > > >>>> > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > > >>>> > > > > > >>>> > > > > ??? > > >>>> > > > > ????????????????????????????????????? > > >>>> > > > > ????????? > > >>>> > > > > _______________________________________________ > > >>>> > > > > Chinese mailing list > > >>>> > > > > Chinese at lists.fedoraproject.org > > >>>> > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > >>>> > > > > > > >>>> > > > > > >>>> > > > > > >>>> > > > > > >>>> > > > -- > > >>>> > > > > > >>>> > > > *https://profiles.google.com/Caius.Chance* > > >>>> > > > _______________________________________________ > > >>>> > > > Chinese mailing list > > >>>> > > > Chinese at lists.fedoraproject.org > > >>>> > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > >>>> > > > > > >>>> > > > > >>>> > > > > >>>> > > > > >>>> > > -- > > >>>> > > ??? > > >>>> > > http://liuhongdan.com/ > > >>>> > > > > >>>> > > _______________________________________________ > > >>>> > > Chinese mailing list > > >>>> > > Chinese at lists.fedoraproject.org > > >>>> > > <https://admin.fedoraproject.org/mailman/listinfo/chinese> > > > > -- > Fedora && Debian User, former Ubuntu User > My Page: http://www.liangsuilong.info > Fedora Project Contributor -- Packager && Ambassador > https://fedoraproject.org/wiki/User:Liangsuilong > > ------------------------------ > > Message: 6 > Date: Thu, 29 Sep 2011 11:58:17 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+v85BEsW+xLcEyTvUWm8Qbwt4DrEqx7DyyD3fTP6ZUSjw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ??????????????? RSS ?? > > 2011/9/29 Liang Suilong <liangsuilong@xxxxxxxxx> > > > ?????????????????????? > > > > On Thursday, September 29, 2011, Caius Chance wrote: > > > > > ???????????????? > > > On Sep 29, 2011 3:17 AM, "Simon Yan" <simonyan@xxxxxxxxxxxxxxxxx> wrote: > > > > ???????????????????????? > > > > > > > > 2011/9/28 ??? <flc945@xxxxxxxxx>: > > > >> ?????????? > > > >> > > > >> ? 2011?9?28? ??2:31?Yu Chen <jcomee@xxxxxxxxx> ??? > > > >>> ???????????? > > > >>> > > > >>> > > > >>> Yu > > > >>> > > > >>> > > > >>> > > > >>> ? 2011?9?28? ??1:30?Caius Chance <me@xxxxxxxx>??? > > > >>> > > > >>>> ???????? OS????????????????????????????? > > > >>>> > > > >>>> ? fedora planet ???????? project leader ? paul frields??? fedora > > > planet > > > >>>> ????? fedora/?? ???????????????????????????? > > > >>>> post????????????????????????????????? windows/apple > > > >>>> ??????????????????hackdesk ?????? linux ????? > > > >>>> > > > >>>> K410 > > > >>>> > > > >>>> 2011/9/28 Xu Xin <railwaycat@xxxxxxxxx> > > > >>>> > > > >>>> > ??????????????? "The Setup"?????? KDE ????? ??????????????? > > > >>>> > ?????????????????????????? > > > >>>> > -- > > > >>>> > ???? > > > >>>> > > > > >>>> > > > > >>>> > 2011/9/28 ??? <hongdanliu@xxxxxxxxx> > > > >>>> > > > > > >>>> > > ????????????? > > > >>>> > > > > > >>>> > > ?????????????????????????????????????????? :) > > > >>>> > > > > > >>>> > > 2011/9/28 Caius Chance <me@xxxxxxxx> > > > >>>> > > > > > >>>> > > > ?????????????????????????? > > > >>>> > > > > > > >>>> > > > ???????????????????????????????????? > > > >>>> > > > > > > >>>> > > > K410 > > > >>>> > > > > > > >>>> > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > > > >>>> > > > > > > >>>> > > > > ??? > > > >>>> > > > > ????????????????????????????????????? > > > >>>> > > > > ????????? > > > >>>> > > > > _______________________________________________ > > > >>>> > > > > Chinese mailing list > > > >>>> > > > > Chinese at lists.fedoraproject.org > > > >>>> > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > >>>> > > > > > > > >>>> > > > > > > >>>> > > > > > > >>>> > > > > > > >>>> > > > -- > > > >>>> > > > > > > >>>> > > > *https://profiles.google.com/Caius.Chance* > > > >>>> > > > _______________________________________________ > > > >>>> > > > Chinese mailing list > > > >>>> > > > Chinese at lists.fedoraproject.org > > > >>>> > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > >>>> > > > > > > >>>> > > > > > >>>> > > > > > >>>> > > > > > >>>> > > -- > > > >>>> > > ??? > > > >>>> > > http://liuhongdan.com/ > > > >>>> > > > > > >>>> > > _______________________________________________ > > > >>>> > > Chinese mailing list > > > >>>> > > Chinese at lists.fedoraproject.org > > > >>>> > > <https://admin.fedoraproject.org/mailman/listinfo/chinese> > > > > > > > > -- > > Fedora && Debian User, former Ubuntu User > > My Page: http://www.liangsuilong.info > > Fedora Project Contributor -- Packager && Ambassador > > https://fedoraproject.org/wiki/User:Liangsuilong > > > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 7 > Date: Thu, 29 Sep 2011 13:41:46 +0800 > From: microcai <microcai@xxxxxxxxxxxxxxxxx> > Subject: [FZH] 10?15???????????? > To: chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx>, Tommy He > <lovenemesis@xxxxxxxxxxxxxxxxx> > Message-ID: > <CAMgqO2w5Juh_akEA7t3EgpnOq9hTdFcxW53tgjWpPGifQOy2xg@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ????????????? :( > > ???? Gentoo ??????????? > > 55555555555555555555 > > ------------------------------ > > Message: 8 > Date: Thu, 29 Sep 2011 13:44:09 +0800 > From: alick <alick9188@xxxxxxxxx> > Subject: Re: [FZH] 10?15???????????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: <4E8405A9.4060300@xxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ? 2011?09?29? 13:41, microcai ??: > > ????????????? :( > > > > ???? Gentoo ??????????? > > > > 55555555555555555555 > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > ???? microcai ???? > > ?? microcai ??????? > > > -- > alick > Fedora 14 (Laughlin) user > https://fedoraproject.org/wiki/User:Alick > > > ------------------------------ > > Message: 9 > Date: Thu, 29 Sep 2011 13:49:44 +0800 > From: ??? <dongfengweixiao@xxxxxxxxx> > Subject: Re: [FZH] 10?15???????????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAPg0_-jYU1XqY3c6=y+CFHOOKZUr-38zxv-uJMRYU1N-=oV31g@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ????????????arch?? > ? 2011-9-29 ??1:44?"alick" <alick9188@xxxxxxxxx>??? > > ? 2011?09?29? 13:41, microcai ??: > >> ????????????? :( > >> > >> ???? Gentoo ??????????? > >> > >> 55555555555555555555 > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > ???? microcai ???? > > > > ?? microcai ??????? > > > > > > -- > > alick > > Fedora 14 (Laughlin) user > > https://fedoraproject.org/wiki/User:Alick > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > ------------------------------ > > Message: 10 > Date: Thu, 29 Sep 2011 16:39:35 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: Re: [FZH] 10?15???????????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+vf0FeLXUW0JnWtGbCR+U-OP57yQ_NuP8EigEPAp--myQ@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ????????????????? > > ???????XD > > 2011/9/29 ??? <dongfengweixiao@xxxxxxxxx> > > > ????????????arch?? > > ? 2011-9-29 ??1:44?"alick" <alick9188@xxxxxxxxx>??? > > > ? 2011?09?29? 13:41, microcai ??: > > >> ????????????? :( > > >> > > >> ???? Gentoo ??????????? > > >> > > >> 55555555555555555555 > > >> _______________________________________________ > > >> Chinese mailing list > > >> Chinese at lists.fedoraproject.org > > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > ???? microcai ???? > > > > > > ?? microcai ??????? > > > > > > > > > -- > > > alick > > > Fedora 14 (Laughlin) user > > > https://fedoraproject.org/wiki/User:Alick > > > _______________________________________________ > > > Chinese mailing list > > > Chinese at lists.fedoraproject.org > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 11 > Date: Thu, 29 Sep 2011 15:06:48 +0800 > From: ??? <dongfengweixiao@xxxxxxxxx> > Subject: Re: [FZH] 10?15???????????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAPg0_-gDOpvimLschqmkgo+GoNF00bzpW6iW_aW+sVngwHVFuA@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ?????????????????arch?????????? > ? 2011-9-29 ??2:40?"Caius Chance" <me@xxxxxxxx>??? > > ????????????????? > > > > ???????XD > > > > 2011/9/29 ??? <dongfengweixiao@xxxxxxxxx> > > > >> ????????????arch?? > >> ? 2011-9-29 ??1:44?"alick" <alick9188@xxxxxxxxx>??? > >> > ? 2011?09?29? 13:41, microcai ??: > >> >> ????????????? :( > >> >> > >> >> ???? Gentoo ??????????? > >> >> > >> >> 55555555555555555555 > >> >> _______________________________________________ > >> >> Chinese mailing list > >> >> Chinese at lists.fedoraproject.org > >> >> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > >> > ???? microcai ???? > >> > > >> > ?? microcai ??????? > >> > > >> > > >> > -- > >> > alick > >> > Fedora 14 (Laughlin) user > >> > https://fedoraproject.org/wiki/User:Alick > >> > _______________________________________________ > >> > Chinese mailing list > >> > Chinese at lists.fedoraproject.org > >> > https://admin.fedoraproject.org/mailman/listinfo/chinese > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > > > > > > > -- > > > > *https://profiles.google.com/Caius.Chance* > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > ------------------------------ > > _______________________________________________ > Chinese mailing list > Chinese@xxxxxxxxxxxxxxxxxxxxxxx > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > End of Chinese Digest, Vol 236, Issue 1 > *************************************** On Wed, Sep 28, 2011 at 07:29:00PM +0200, Michael Kerrisk wrote: > Hi Andi, Arnaldo, > > Could you please review the revised recvmmsg.2 man page below. > > Andi: I need to know what copyright and license to attach to the page > before I can release it. > > Thanks, > > Michael > > ---------- Forwarded message ---------- > From: Michael Kerrisk <mtk.manpages@xxxxxxxxx> > Date: Thu, Sep 15, 2011 at 6:15 AM > Subject: Re: Draft manpage for recvmmsg > To: Andi Kleen <andi@xxxxxxxxxxxxxx> > Cc: linux-man@xxxxxxxxxxxxxxx, netdev@xxxxxxxxxxxxxxx, > acme@xxxxxxxxxx, Stephan Mueller <stephan.mueller@xxxxxxxxx>, Anton > Blanchard <anton@xxxxxxxxx>, Linux API <linux-api@xxxxxxxxxxxxxxx> > > > [CC list expanded] > > Hi Andi, (and Arnaldo) > > As noted in an earlier mail, I still need to know what copyright and > license to attach to the page before I can release it. > > See below for further comments. > > On Tue, Nov 23, 2010 at 11:15 AM, Andi Kleen <andi@xxxxxxxxxxxxxx> wrote: > > > > Here's a draft manpage for recvmmsg(2), which is one > > of the last undocumented syscalls currently. > > Please review and comment. > > > > -Andi > > > > > > .TH RECVMMSG 2 2010-11-23 "Linux" "Linux Programmer's Manual" > > .SH NAME > > recvmmsg \- receive multiple messages on a socket > > .SH SYNOPSIS > > .BI "#include <sys/socket.h>" > > .br > > .BI "int recvmmsg(int " fd ", struct mmsghdr *" mmsghdr \ > > ", unsigned int " vlen "," > > .br > > .BI " unsigned int " flags ", struct timespec *" timeout ");" > > .SH DESCRIPTION > > The > > .B recvmmsg > > system call receives multiple messages in a socket. > > It acts similar to > > .B recvmsg(2), > > but allows to batch multiple receive operations into a single syscall. > > In addition it support an explicit timeout. > > > > .B fd > > is the file descriptor of the socket to receive data from. > > .B mmsghdr > > is a pointer to an array with length > > .B vlen > > of > > .I mmsghdr > > structures. > > .I struct mmsg > > is defined in > > .I sys/socket.h > > as: > > .in +4n > > .nf > > struct mmsghdr { > > struct msghdr msg_hdr; /* Message header */ > > unsigned int msg_len; /* Number of received bytes for header */ > > }; > > .fi > > .in > > .PP > > .B msg_hdr > > is a struct > > .I msghdr > > as described in > > .I recvmsg(2). > > .B msg_len > > is the number of bytes returned for the message in the entry. > > This field has the same value as the return value of a single > > .I recvmsg(2) > > on the header. > > > > .B flags > > contains flags ored together. The flags are the same > > as documented for > > .I recvmsg(2). > > The additional > > .B MSG_WAITFORONE > > turns one > > .I MSG_DONTWAIT > > after the first message has been received. > > > > .B timeout > > points to a > > .I struct timespec > > (see > > .I clock_gettime(2) > > ) > > defining a timeout for receiving, or > > .I NULL > > for no timeout. When the timeout expires > > .I recvmmsg > > returns. > > .SH RETURN VALUE > > .I recvmmsg > > returns the number of messages received in > > .I mmsghdr > > or > > -1 > > when an error occurs. The > > .I msg_len > > members of > > .I mmsghdr > > are updated for each received message, > > in addition to other fields in the msg_hdr for each message, > > as described in > > .I recvmsg(2). > > .SH SEE ALSO > > .B recvmsg(2), > > .B sendmsg(2), > > .B socket(7), > > .B socket(2), > > .B clock_gettime(2) > > .SH VERSIONS > > The > > .I recvmmsg > > syscall was added with kernel 2.6.32. > > Support in glibc was added with 2.6.12. > > On earlier glibcs the function can be called > > manually using > > .I syscall(2). > > I reworked a number of pieces of text, and added several other pieces. > Could you please take a look (for others interested: "man -l <file>") > at the version below and let me know of inaccuracies > > Thanks, > > Michael > > .TH RECVMMSG 2 2011-09-09 "Linux" "Linux Programmer's Manual" > .SH NAME > recvmmsg \- receive multiple messages on a socket > .SH SYNOPSIS > .nf > .B "#define _GNU_SOURCE" > .BI "#include <sys/socket.h>" > > .BI "int recvmmsg(int " sockfd ", struct mmsghdr *" msgvec \ > ", unsigned int " vlen "," > .br > .BI " unsigned int " flags ", struct timespec *" timeout ");" > .fi > .SH DESCRIPTION > The > .BR recvmmsg () > system call is an extension of > .BR recvmsg (2) > that allows the caller to receive multiple messages from a socket > using a single system call. > (This has performance benefits for some applications.) > A further extension over > .BR recvmsg (2) > is support for a timeout on the receive operation. > > The > .I sockfd > argument is the file descriptor of the socket to receive data from. > > The > .I msgvec > argument is a pointer to an array of > .I mmsghdr > structures. > The size of this array is specified in > .IR vlen . > > The > .I mmsghdr > structure is defined in > .I <sys/socket.h> > as: > > .in +4n > .nf > struct mmsghdr { > struct msghdr msg_hdr; /* Message header */ > unsigned int msg_len; /* Number of received bytes for header */ > }; > .fi > .in > .PP > The > .I msg_hdr > field is a > .I msghdr > structure, as described in > .BR recvmsg (2). > The > .I msg_len > field is the number of bytes returned for the message in the entry. > This field has the same value as the return value of a single > .BR recvmsg (2) > on the header. > > The > .I flags > argument contains flags ORed together. > The flags are the same as documented for > .BR recvmsg (2), > with the following addition: > .TP > .B MSG_WAITFORONE > Turns on > .B MSG_DONTWAIT > after the first message has been received. > .PP > The > .I timeout > argument points to a > .I struct timespec > (see > .BR clock_gettime (2)) > defining a timeout (seconds plus nanoseconds) for the receive operation. > If > .I timeout > is > .I NULL > then the operation blocks indefinitely. > > A blocking > .BR recvmmsg () > call blocks until > .I vlen > messages have been received > or until the timeout expires. > A nonblocking call reads as many messages as are available > (up to the limit specified by > .IR vlen ) > and returns immediately. > > On return from > .BR recvmmsg (), > successive elements of > .IR msgvec > are updated to contain information about each received message: > .I msg_len > contains the size of the received message; > the subfields of > .I msg_hdr > are updated as described in > .BR recvmsg (2). > The return value of the call indicates the number of elements of > .I msgvec > that have been updated. > .SH RETURN VALUE > On success, > .BR recvmmsg () > returns the number of messages received in > .IR msgvec ; > on error, \-1 is returned, and > .I errno > is set to indicate the error. > .SH ERRORS > Errors are as for > .BR recvmsg (2). > In addition, the following error can occur: > .TP > .B EINVAL > .I timeout > is invalid. > .SH VERSIONS > The > .BR recvmmsg () > system call was added in Linux 2.6.32. > Support in glibc was added in version 2.12. > .SH CONFORMING TO > .BR recvmmsg () > is Linux-specific. > .SH SEE ALSO > .BR clock_gettime (2), > .BR recvmsg (2), > .BR sendmmsg (2), > .BR sendmsg (2), > .BR socket (2), > .BR socket (7) > > -- > Michael Kerrisk > Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ > Author of "The Linux Programming Interface"; http://man7.org/tlpi/ > > > > -- > Michael Kerrisk > Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ > Author of "The Linux Programming Interface"; http://man7.org/tlpi/ > -- > To unsubscribe from this list: send the line "unsubscribe linux-api" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html On Thu, Sep 29, 2011 at 06:10:26AM +0200, Michael Kerrisk wrote: > [Restoring CC] > > Hi Andi, > > On Wed, Sep 28, 2011 at 7:52 PM, Andi Kleen <andi@xxxxxxxxxxxxxx> wrote: > > On Wed, Sep 28, 2011 at 07:29:00PM +0200, Michael Kerrisk wrote: > >> Hi Andi, Arnaldo, > >> > >> Could you please review the revised recvmmsg.2 man page below. > >> > >> Andi: I need to know what copyright and license to attach to the page > >> before I can release it. > > > > Your original proposal was fine for me. > > I didn't make an initial proposal (or I don't recall that I did), but > I suspect you mean the initial proposal on > http://man7.org/linux/man-pages/licenses.html -- that is, the > "Verbatim license". Right? > > But please note, I'm also looking for content review on the page, > since I made some notable changes: > * Reworking of some pieces of text > * Added new material on blocking versus non-blocking calls > * Added a more detailed description of how msgvec is updated on return > from the call. > * Added an ERRORS section > > Do these changes look okay? > > Cheers, > > Michael > > -- > Michael Kerrisk > Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ > Author of "The Linux Programming Interface"; http://man7.org/tlpi/ > -- > To unsubscribe from this list: send the line "unsubscribe linux-api" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html On Wed, Sep 28, 2011 at 02:21:55PM +0000, SAP Community Network wrote: > Dear 才源, > > Thank you for your continuous interest in SAP promotional e-mail that > delivers information tailored to your business needs. > > Our records indicate that you receive SAP promotional e-mail in text format. > We'd like to inform you that SAP is no longer offering e-mails and > newsletters in text format. > If you're having trouble viewing this e-mail in HTML, please view it in > your browser at: > http://www.sap.com/mk/get?_EC=84fwOvSqDgeNAe7-cob8LA > > You can change the format for promotional e-mail to HTML at: > http://www.sap.com/mk/get/G_EMAIL_CLIENT_WCP > > Best regards, > SAP > > This promotional e-mail provides information on SAP offerings that may > interest you. If you prefer not to receive e-mail from SAP in the future, > please click on the unsubscribe link. > http://www.sap.com/mk/get?_EC=PVd-sCG0iWqoDzvIQbNbRe > > -M1Prod:enUS:rkV3ZVub/1YbLbCbbDezjg- On Wed, Sep 28, 2011 at 12:00:40PM +0000, chinese-request@xxxxxxxxxxxxxxxxxxxxxxx wrote: > Send Chinese mailing list submissions to > chinese@xxxxxxxxxxxxxxxxxxxxxxx > > To subscribe or unsubscribe via the World Wide Web, visit > https://admin.fedoraproject.org/mailman/listinfo/chinese > or, via email, send a message with subject or body 'help' to > chinese-request@xxxxxxxxxxxxxxxxxxxxxxx > > You can reach the person managing the list at > chinese-owner@xxxxxxxxxxxxxxxxxxxxxxx > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Chinese digest..." > > > Today's Topics: > > 1. ?? blog ?? (Caius Chance) > 2. Re: ?? blog ?? (Caius Chance) > 3. Re: ?? blog ?? (Fedora) > 4. Re: ?? blog ?? (Caius Chance) > 5. Re: ?? blog ?? (???) > 6. Re: ?? blog ?? (Xu Xin) > 7. Re: ?? blog ?? (Caius Chance) > 8. Re: ?? blog ?? (Yu Chen) > 9. Re: FAD 2011 ??/??????? (Yu Chen) > 10. Re: ?? blog ?? (???) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 28 Sep 2011 13:26:47 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: [FZH] ?? blog ?? > To: chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+skbrww0D6KEm8mVsqQsRd48QMyz6_j4csehwSwVTpKDA@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > Hey ??? > > ????????? blog - hackdesk.com (??)???????? > > - ????????? > > ???????????????????????????????????????????????????? > > - ?????? > > ??????????????????????Linux ????????????????????????????????? > > - ?????? > > ????????? blog ?? tag/category ? RSS ????? RSS ????????????(?????????? > "hackdesk" tag ?????????????? "hackdesk" tag ? RSS?? > > - ??????? > > ??????????????????????????????????????????? CEO/?? > ????????????????????????????????????? blog > ???????????????????????????????????????????????? > > - ????????????? > > ?????????????????????????????????????? RSS > ??????????????????????????????????????????????????????????????????? ? > > - ??????? > > ????????????? me ? kaio ? net ????????????????????????????????????? > creative commons ?????????? > > - ??????????? > > ????????????????????????????????????????????????????????????????? OK ??:) > > ?????????????? ;P > > ???? > > Kaio > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 2 > Date: Wed, 28 Sep 2011 13:32:42 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+sQT=nufyiw2gOzCZfpTX=TyX4YUOTxLfTfZo7fxC452A@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ????? > > ???? blog ??? wordpress ?????? planet ?????????????? RSS ???????? blog ?? > > ??????????????? FZUG ? wordpress ? planet > ????????????????????????????????????????????????? > > K410 > > 2011/9/28 Caius Chance <me@xxxxxxxx> > > > Hey ??? > > > > ????????? blog - hackdesk.com (??)???????? > > > > - ????????? > > > > ???????????????????????????????????????????????????? > > > > - ?????? > > > > ??????????????????????Linux ????????????????????????????????? > > > > - ?????? > > > > ????????? blog ?? tag/category ? RSS ????? RSS ????????????(?????????? > > "hackdesk" tag ?????????????? "hackdesk" tag ? RSS?? > > > > - ??????? > > > > ??????????????????????????????????????????? CEO/?? > > ????????????????????????????????????? blog > > ???????????????????????????????????????????????? > > > > - ????????????? > > > > ?????????????????????????????????????? RSS > > ??????????????????????????????????????????????????????????????????? ? > > > > - ??????? > > > > ????????????? me ? kaio ? net ????????????????????????????????????? > > creative commons ?????????? > > > > - ??????????? > > > > ????????????????????????????????????????????????????????????????? OK > > ??:) > > > > ?????????????? ;P > > > > ???? > > > > Kaio > > > > -- > > > > *https://profiles.google.com/Caius.Chance* > > > > > > > > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 3 > Date: Wed, 28 Sep 2011 12:02:55 +0800 > From: Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: <4261FC0D-061B-4B22-B098-BA4EA2EE6C21@xxxxxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > ??? > ????????????????????????????????????? > ????????? > > ------------------------------ > > Message: 4 > Date: Wed, 28 Sep 2011 14:22:45 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+v6Yzpv4eZSTpFWSnt2Fkonbhky9xjBqHpsbtSENOxOGA@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ?????????????????????????? > > ???????????????????????????????????? > > K410 > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > > > ??? > > ????????????????????????????????????? > > ????????? > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 5 > Date: Wed, 28 Sep 2011 12:32:51 +0800 > From: ??? <hongdanliu@xxxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CA+15EpgAZnnws_pZL0Z=xDTZEcZhqYemrDPyXBu58sWZVZr5Qw@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=GB2312 > > ????????????? > > ?????????????????????????????????????????? :) > > 2011/9/28 Caius Chance <me@xxxxxxxx> > > > ?????????????????????????? > > > > ???????????????????????????????????? > > > > K410 > > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > > > > > ??? > > > ????????????????????????????????????? > > > ????????? > > > _______________________________________________ > > > Chinese mailing list > > > Chinese at lists.fedoraproject.org > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > -- > > > > *https://profiles.google.com/Caius.Chance* > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > ??? > http://liuhongdan.com/ > > ------------------------------ > > Message: 6 > Date: Wed, 28 Sep 2011 01:08:11 -0400 > From: Xu Xin <railwaycat@xxxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAOtMdqnyq5RuP2ebiQgpCy3kQtgExkzjeZcA21NoH92e0sMV3g@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ??????????????? "The Setup"?????? KDE ????? ??????????????? > ?????????????????????????? > -- > ???? > > > 2011/9/28 ??? <hongdanliu@xxxxxxxxx> > > > > ????????????? > > > > ?????????????????????????????????????????? :) > > > > 2011/9/28 Caius Chance <me@xxxxxxxx> > > > > > ?????????????????????????? > > > > > > ???????????????????????????????????? > > > > > > K410 > > > > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > > > > > > > ??? > > > > ????????????????????????????????????? > > > > ????????? > > > > _______________________________________________ > > > > Chinese mailing list > > > > Chinese at lists.fedoraproject.org > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > > > > > > -- > > > > > > *https://profiles.google.com/Caius.Chance* > > > _______________________________________________ > > > Chinese mailing list > > > Chinese at lists.fedoraproject.org > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > -- > > ??? > > http://liuhongdan.com/ > > > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > ------------------------------ > > Message: 7 > Date: Wed, 28 Sep 2011 15:30:00 +1000 > From: Caius Chance <me@xxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CANoXh+u1mtsfRpstdd0Bai_sjeiAE7uGKs31H6_0MMNfXOPzoA@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ???????? OS????????????????????????????? > > ? fedora planet ???????? project leader ? paul frields??? fedora planet > ????? fedora/?? ???????????????????????????? > post????????????????????????????????? windows/apple > ??????????????????hackdesk ?????? linux ????? > > K410 > > 2011/9/28 Xu Xin <railwaycat@xxxxxxxxx> > > > ??????????????? "The Setup"?????? KDE ????? ??????????????? > > ?????????????????????????? > > -- > > ???? > > > > > > 2011/9/28 ??? <hongdanliu@xxxxxxxxx> > > > > > > ????????????? > > > > > > ?????????????????????????????????????????? :) > > > > > > 2011/9/28 Caius Chance <me@xxxxxxxx> > > > > > > > ?????????????????????????? > > > > > > > > ???????????????????????????????????? > > > > > > > > K410 > > > > > > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > > > > > > > > > ??? > > > > > ????????????????????????????????????? > > > > > ????????? > > > > > _______________________________________________ > > > > > Chinese mailing list > > > > > Chinese at lists.fedoraproject.org > > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > *https://profiles.google.com/Caius.Chance* > > > > _______________________________________________ > > > > Chinese mailing list > > > > Chinese at lists.fedoraproject.org > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > > > > > > -- > > > ??? > > > http://liuhongdan.com/ > > > > > > _______________________________________________ > > > Chinese mailing list > > > Chinese at lists.fedoraproject.org > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > -- > > *https://profiles.google.com/Caius.Chance* > > ------------------------------ > > Message: 8 > Date: Wed, 28 Sep 2011 14:31:47 +0800 > From: Yu Chen <jcomee@xxxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAGFmxoertYJkLuv_kEV5z3Y4htDUaB4KEhx-Be3sPn1vfE-pAg@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ???????????? > > > Yu > > > > ? 2011?9?28? ??1:30?Caius Chance <me@xxxxxxxx>??? > > > ???????? OS????????????????????????????? > > > > ? fedora planet ???????? project leader ? paul frields??? fedora planet > > ????? fedora/?? ???????????????????????????? > > post????????????????????????????????? windows/apple > > ??????????????????hackdesk ?????? linux ????? > > > > K410 > > > > 2011/9/28 Xu Xin <railwaycat@xxxxxxxxx> > > > > > ??????????????? "The Setup"?????? KDE ????? ??????????????? > > > ?????????????????????????? > > > -- > > > ???? > > > > > > > > > 2011/9/28 ??? <hongdanliu@xxxxxxxxx> > > > > > > > > ????????????? > > > > > > > > ?????????????????????????????????????????? :) > > > > > > > > 2011/9/28 Caius Chance <me@xxxxxxxx> > > > > > > > > > ?????????????????????????? > > > > > > > > > > ???????????????????????????????????? > > > > > > > > > > K410 > > > > > > > > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > > > > > > > > > > > ??? > > > > > > ????????????????????????????????????? > > > > > > ????????? > > > > > > _______________________________________________ > > > > > > Chinese mailing list > > > > > > Chinese at lists.fedoraproject.org > > > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > *https://profiles.google.com/Caius.Chance* > > > > > _______________________________________________ > > > > > Chinese mailing list > > > > > Chinese at lists.fedoraproject.org > > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > > > > > > > > > > > -- > > > > ??? > > > > http://liuhongdan.com/ > > > > > > > > _______________________________________________ > > > > Chinese mailing list > > > > Chinese at lists.fedoraproject.org > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > _______________________________________________ > > > Chinese mailing list > > > Chinese at lists.fedoraproject.org > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > > > > > > > > -- > > > > *https://profiles.google.com/Caius.Chance* > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > ------------------------------ > > Message: 9 > Date: Wed, 28 Sep 2011 14:37:26 +0800 > From: Yu Chen <jcomee@xxxxxxxxx> > Subject: Re: [FZH] FAD 2011 ??/??????? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx>, Liang Suilong > <liangsuilong@xxxxxxxxx> > Message-ID: > <CAGFmxof_Z-W5iNrMUCe8WLQ3S249MP0TAvhvQOdpzeuRkA6KTg@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ???????????????? > > Liang???????????????????????????????? :) > > Yu > > > > ? 2011?8?29? ??10:34?Yu Chen <jcomee@xxxxxxxxx>??? > > > ??????????????????? :) > > > > Yu > > > > > > > > ? 2011?8?29? ??9:52?Liang Suilong <liangsuilong@xxxxxxxxx>??? > > > > ?? Yu Chen ?????????????? Fedora Tee ??????? > >> ? 2011-8-29 ??1:28?"Yu Chen" <jcomee@xxxxxxxxx>??? > >> > ??????????????????? > >> > > >> > ?????????????????????????????? Synfig Studio [http://synfig.org > >> > ]???????????????????????? > >> > > >> > > >> > ?? > >> > jcome > >> > _______________________________________________ > >> > Chinese mailing list > >> > Chinese at lists.fedoraproject.org > >> > https://admin.fedoraproject.org/mailman/listinfo/chinese > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > > > > > ------------------------------ > > Message: 10 > Date: Wed, 28 Sep 2011 18:05:26 +0800 > From: ??? <flc945@xxxxxxxxx> > Subject: Re: [FZH] ?? blog ?? > To: Fedora Chinese <chinese@xxxxxxxxxxxxxxxxxxxxxxx> > Message-ID: > <CAN6grK=6+pO82ngJJ5DPYQ1teBbCwFmiQW7oE-37Cms8ojhFhA@xxxxxxxxxxxxxx> > Content-Type: text/plain; charset=UTF-8 > > ?????????? > > ? 2011?9?28? ??2:31?Yu Chen <jcomee@xxxxxxxxx> ??? > > ???????????? > > > > > > Yu > > > > > > > > ? 2011?9?28? ??1:30?Caius Chance <me@xxxxxxxx>??? > > > >> ???????? OS????????????????????????????? > >> > >> ? fedora planet ???????? project leader ? paul frields??? fedora planet > >> ????? fedora/?? ???????????????????????????? > >> post????????????????????????????????? windows/apple > >> ??????????????????hackdesk ?????? linux ????? > >> > >> K410 > >> > >> 2011/9/28 Xu Xin <railwaycat@xxxxxxxxx> > >> > >> > ??????????????? "The Setup"?????? KDE ????? ??????????????? > >> > ?????????????????????????? > >> > -- > >> > ???? > >> > > >> > > >> > 2011/9/28 ??? <hongdanliu@xxxxxxxxx> > >> > > > >> > > ????????????? > >> > > > >> > > ?????????????????????????????????????????? :) > >> > > > >> > > 2011/9/28 Caius Chance <me@xxxxxxxx> > >> > > > >> > > > ?????????????????????????? > >> > > > > >> > > > ???????????????????????????????????? > >> > > > > >> > > > K410 > >> > > > > >> > > > 2011/9/28 Fedora <tiansworld@xxxxxxxxxxxxxxxxx> > >> > > > > >> > > > > ??? > >> > > > > ????????????????????????????????????? > >> > > > > ????????? > >> > > > > _______________________________________________ > >> > > > > Chinese mailing list > >> > > > > Chinese at lists.fedoraproject.org > >> > > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > > > > >> > > > > >> > > > > >> > > > > >> > > > -- > >> > > > > >> > > > *https://profiles.google.com/Caius.Chance* > >> > > > _______________________________________________ > >> > > > Chinese mailing list > >> > > > Chinese at lists.fedoraproject.org > >> > > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > > > >> > > > >> > > > >> > > > >> > > -- > >> > > ??? > >> > > http://liuhongdan.com/ > >> > > > >> > > _______________________________________________ > >> > > Chinese mailing list > >> > > Chinese at lists.fedoraproject.org > >> > > https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > > >> > _______________________________________________ > >> > Chinese mailing list > >> > Chinese at lists.fedoraproject.org > >> > https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > >> > >> > >> > >> -- > >> > >> *https://profiles.google.com/Caius.Chance* > >> _______________________________________________ > >> Chinese mailing list > >> Chinese at lists.fedoraproject.org > >> https://admin.fedoraproject.org/mailman/listinfo/chinese > >> > > _______________________________________________ > > Chinese mailing list > > Chinese at lists.fedoraproject.org > > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > > ------------------------------ > > _______________________________________________ > Chinese mailing list > Chinese@xxxxxxxxxxxxxxxxxxxxxxx > https://admin.fedoraproject.org/mailman/listinfo/chinese > > > End of Chinese Digest, Vol 235, Issue 1 > *************************************** On Mon, Sep 26, 2011 at 04:47:00PM +0000, SAP Community Network wrote: > Dear 才源, > > Thank you for your continuous interest in SAP promotional e-mail that > delivers information tailored to your business needs. > > Our records indicate that you receive SAP promotional e-mail in text format. > We'd like to inform you that SAP is no longer offering e-mails and > newsletters in text format. > If you're having trouble viewing this e-mail in HTML, please view it in > your browser at: > http://www.sap.com/mk/get?_EC=EapliN4gsdmoVhIrJ9TeIQ > > You can change the format for promotional e-mail to HTML at: > http://www.sap.com/mk/get/G_EMAIL_CLIENT_WCP > > Best regards, > SAP > > This promotional e-mail provides information on SAP offerings that may > interest you. If you prefer not to receive e-mail from SAP in the future, > please click on the unsubscribe link. > http://www.sap.com/mk/get?_EC=gUWWzQGfwhIqFKLLt3cY9m > > -M1Prod:enUS:Jb+9H1NuFmsuyxdIVMaCO4- -- websites mailing list websites@xxxxxxxxxxxxxxxxxxxxxxx https://admin.fedoraproject.org/mailman/listinfo/websites