close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "svn": libsvn_fs-1.so.1: failed to map segment from shared object: Cannot allocate memory). Look in the Trac log for more information.
- Timestamp:
-
Apr 19, 2009, 6:51:55 PM (17 years ago)
- Author:
-
jazz
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v3
|
v4
|
|
| 19 | 19 | * [http://trac-hacks.org/wiki/WikiIncludePlugin WikiInclude] - 讓用 ![[WikiInclude(WikiStart)]] 語法來包含其他 Wiki 頁面中的內容 |
| 20 | 20 | {{{ |
| 21 | | $ svn co http://trac-hacks.org/svn/wikiincludeplugin |
| 22 | | $ cd wikiincludeplugin/0.9/ |
| 23 | | wikiincludeplugin/0.9$ sudo python setup.py bdist_egg |
| 24 | | wikiincludeplugin/0.9$ sudo easy_install dist/WikiInclude-0.1-py2.5.egg |
| | 21 | $ wget "http://trac-hacks.org/attachment/wiki/WikiIncludePlugin/0.11.versions.tbz2?format=raw" -O wikiincludeplugin-0.11.tar.gz |
| | 22 | $ tar jxvf wikiincludeplugin-0.11.tar.gz |
| | 23 | $ cd 0.11 |
| | 24 | 0.11$ cat > setup.py << EOF |
| | 25 | from setuptools import setup |
| | 26 | |
| | 27 | PACKAGE = 'WikiInclude' |
| | 28 | VERSION = '0.2' |
| | 29 | DESCRIPTION = 'Page include plugin for Trac Wiki' |
| | 30 | |
| | 31 | setup(name=PACKAGE, |
| | 32 | version=VERSION, |
| | 33 | packages=['wikiinclude'], |
| | 34 | entry_points={'trac.plugins': ['wikiinclude.wikiinclude=wikiinclude.wikiinclude']}) |
| | 35 | EOF |
| | 36 | 0.11$ sudo python setup.py bdist_egg |
| | 37 | 0.11$ sudo easy_install dist/WikiInclude-0.2-py2.5.egg |
| 25 | 38 | }}} |
| | 39 | * [http://svn.ipd.uni-karlsruhe.de/trac/javaparty/wiki/TracRedirect TracRedirect] - 用 ![[Redirect(網址)]] 語法來作頁面自動轉址 |
| | 40 | {{{ |
| | 41 | $ svn co http://svn.ipd.uka.de/repos/javaparty/JP/trac/plugins/redirect-0.11/ |
| | 42 | $ cd redirect-0.11/ |
| | 43 | redirect-0.11$ sudo python setup.py bdist_egg |
| | 44 | redirect-0.11$ sudo easy_install dist/TracRedirect-0.11.3.dev_r3272-py2.5.egg |
| | 45 | }}} |