Differences between revisions 7 and 8
Revision 7 as of 2006-09-26 08:45:25
Size: 1740
Editor: 221
Comment:
Revision 8 as of 2006-09-26 09:16:22
Size: 1311
Editor: 85-125-62-180
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
* [http://www.5ijipiao.com 机票]
* [http://www.5ijipiao.com 国际机票]
* [http://www.5ijipiao.com 飞机票]
* [http://5ijipiao.com 国际机票]
* [http://www.5ijipiao.com/bj/ 北京机票]
* [http://www.5ijipiao.com/sh/ 上海机票]
* [http://www.5ijipiao.com/gz/ 广州机票]
* [http://www.5ijipiao.com/cd/ 成都机票]
* [http://www.5ijipiao.com/cq/ 重庆机票]
* [http://www.5ijipiao.com/km/ 昆明机票]
* [http://www.5ijipiao.com/sz/ 深圳机票]
* [http://www.5ijipiao.com/hz/ 杭州机票]
* [http://www.5ijipiao.com/xa/ 西安机票]
* [http://www.5ijipiao.com/dl/ 大连机票]
* [http://www.5ijipiao.com/tj/ 天津机票]
* [http://www.5ijipiao.com/gjjp.asp 国际机票]
* [http://www.5ijipiao.com/dzjp.asp 打折机票]
* [http://www.5ijipiao.com/tjjp.asp 特价机票]
* [http://www.5ijipiao.com/xsjp.asp 学生机票]
* [http://www.jipiao126.com 特价机票]
* [http://www.jipiao126.com 国际机票]
* [http://www.jipiao126.com 打折机票]
* [http://www.canjipiao.com 广州机票]
* [http://www.canjipiao.com 广州打折机票]
* [http://www.canjipiao.com 广州特价机票]
* [http://www.bjxiongfei.com 北京机票]
* [http://www.bjxiongfei.com 北京飞机票]
* [http://www.bjxiongfei.com 北京特价机票]
* [http://www.jipiaoair.com 特价机票]
* [http://www.jipiaoair.com/jipiao.html 机票]
* [http://www.jipiaoair.com/guojijipiao.html 国际机票]
* [http://www.jipiaoair.com/tejiajipiao.html 特价机票]
* [http://www.jipiaoair.com/dazhejipiao.html 打折机票]
* [http://www.jipiaoair.com/shanghai/jipiao.html 上海机票]
* [http://www.jipiaoair.com/beijing/jipiao.html 北京机票]
* [http://www.jipiaoair.com/guangzhou/jipiao.html 广州机票]
(when there's no content, it's better to put ''something'' in and let others correct it, no?)

Currently there are only few guidelines for creating a page inside Python Wiki:

 * Please structure long pages to sections (learn to use '== headings ==')
 * If you have source code included, run it yourself to test for at least simple errors
 * Avoid duplicating information when not necessary, and respect copyrights. If you are unsure, at least credit the source, so that others can fix things if needed
 * Learn to use wiki format => HelpOnFormatting. It allows for more consistent page styles
 * Optionally use [http://docutils.sourceforge.net/docs/user/rst/quickref.html ReStructured Text] markup; an example is available in the [wiki:Self:WikiSandBox#head-8dca6975b53d274a0c94033a07763c9651f25a64 WikiSandBox].
 * Take advantage of this wiki's ability to markup Python language - it is easier to read than simple, plain monotype font. An example:
 {{{
#!python
from hello import world

def say_hello():
    """Just say hello :)"""
    what = world()
    message = what.greet() # no, there's no module named "hello"
                            # in Python stdlib - at least not yet :)
    return message

if __name__ == "__main__":
    say_hello()
}}}
 Yeah, this is a stub only...

(when there's no content, it's better to put something in and let others correct it, no?)

Currently there are only few guidelines for creating a page inside Python Wiki:

  • Please structure long pages to sections (learn to use '== headings ==')
  • If you have source code included, run it yourself to test for at least simple errors
  • Avoid duplicating information when not necessary, and respect copyrights. If you are unsure, at least credit the source, so that others can fix things if needed
  • Learn to use wiki format => HelpOnFormatting. It allows for more consistent page styles

  • Optionally use [http://docutils.sourceforge.net/docs/user/rst/quickref.html ReStructured Text] markup; an example is available in the [wiki:WikiSandBox WikiSandBox].

  • Take advantage of this wiki's ability to markup Python language - it is easier to read than simple, plain monotype font. An example:
       1 from hello import world
       2 
       3 def say_hello():
       4     """Just say hello :)"""
       5     what = world()
       6     message = what.greet()  # no, there's no module named "hello" 
       7                             # in Python stdlib - at least not yet :)
       8     return message
       9 
      10 if __name__ == "__main__":
      11     say_hello()
    
    Yeah, this is a stub only...

WikiGuidelines (last edited 2013-11-14 18:29:01 by PaulBoddie)

Unable to edit the page? See the FrontPage for instructions.