Loading...
 

코드 구하기

Translation of this page is incomplete.


이 페이지는 최신 티키 코드를 얻는 법에 대한 정보를 포함합니다.


최신 티키 코드를 다운로드할 수 있는 방법은 여러가지가 있습니다:

SVN 에서 6.x LTS 를 사용

SVN 에서 티키 6.x 의 최신 버전을 다운로드하려면 다음 단계를 따르십시오:

  1. 코드 체크아웃
    • 방법 1
      (지정하게 될) 새 폴더에 체크아웃
      Copy to clipboard
      svn checkout https://svn.code.sf.net/p/tikiwiki/code/branches/6.x myfolder
    • 방법 2
      현재 폴더에 체크아웃
      Copy to clipboard
      svn checkout https://svn.code.sf.net/p/tikiwiki/code/branches/6.x .
  2. SVN 에서 업데이트.
    업데이트 참조


SVN 에서 9.x 를 사용


Use these steps to download the latest Tiki 9.x from SVN:

  1. Checkout the code.
    • Method 1
      Checking out to a new folder (that you will specify)
      Copy to clipboard
      svn checkout https://svn.code.sf.net/p/tikiwiki/code/branches/9.x mynewfolder
    • Method 2
      Checking out to the current folder
      Copy to clipboard
      svn checkout https://svn.code.sf.net/p/tikiwiki/code/branches/9.x .

      The dot "." means the current folder from where you run the command.

      The other instructions on this page only checkout the Tiki code, not any mods you have intalled or want to install. See below if you want to get the code for mods.
  2. Update from SVN.
    See Update
  3. Commit your code.
    See How to get commit access for information on contributing code and joining the Tiki developer community.
    Before you Commit
    Copy to clipboard
    svn diff

    When you are Ready
    Copy to clipboard
    svn commit -m "message for commit log" nameoffile.php templates/nameoffile.tpl

    You can also see full instructions to commit

Using 10.x from SVN


Use these steps to download the latest Tiki 10.x from SVN:

  1. Checkout the code.
    • Method 1
      Checking out to a new folder (that you will specify)
      Copy to clipboard
      svn checkout https://svn.code.sf.net/p/tikiwiki/code/branches/10.x mynewfolder
    • Method 2
      Checking out to the current folder
      Copy to clipboard
      svn checkout https://svn.code.sf.net/p/tikiwiki/code/branches/10.x .

      The dot "." means the current folder from where you run the command.

      The other instructions on this page only checkout the Tiki code, not any mods you have intalled or want to install. See below if you want to get the code for mods.
  2. Update from SVN.
    See Update
  3. Commit your code.
    See How to get commit access for information on contributing code and joining the Tiki developer community.
    Before you Commit
    Copy to clipboard
    svn diff

    When you are Ready
    Copy to clipboard
    svn commit -m "message for commit log" nameoffile.php templates/nameoffile.tpl

    You can also see full instructions to commit

SVN 에서 11.x 를 사용


SVN 에서 티키 11.x 의 최신 버전을 다운로드하려면 다음 단계를 따르십시오:

  1. 코드 체크아웃
    • 방법 1
      (지정하게 될) 새 폴더로 체크아웃
      Copy to clipboard
      svn checkout https://svn.code.sf.net/p/tikiwiki/code/branches/11.x mynewfolder
    • Method 2
      현재 폴더로 체크아웃
      Copy to clipboard
      svn checkout https://svn.code.sf.net/p/tikiwiki/code/branches/11.x .

      마침표 "." 는 명령어를 실행하는 현재 폴더를 의미합니다.

      이 페이지의 다른 설명은 티키 코드 만 체크아웃만 하며 기존에 설치했던 혹은 설치를 원하는 모드 (mod) 는 포함하지 않습니다. 모드에 대한 코들르 원하는 경우 아래를 참고하십시오.
  2. SVN 에서 업데이트.
    업데이트 참고
  3. 코드 커밋하기.
    티키 개발자 커뮤니티에 참여하고 코드를 기여하는 것에 대한 정보는 커밋 권한 얻는 방법 을 참고하십시오.
    커밋하기 전에
    Copy to clipboard
    svn diff

    준비가 되면
    Copy to clipboard
    svn commit -m "message for commit log" nameoffile.php templates/nameoffile.tpl

    full instructions to commit|커밋에 대한 전체 설명을 참조하실 수도 있습니다

Using trunk from SVN (future 12.x)

Use these steps to download the latest Tiki 12.x from SVN:

  1. Checkout the code.
    • Method 1
      Checking out to a new folder (that you will specify)
      Copy to clipboard
      svn checkout https://svn.code.sf.net/p/tikiwiki/code/trunk mynewfolder
    • Method 2
      Checking out to the current folder
      Copy to clipboard
      svn checkout https://svn.code.sf.net/p/tikiwiki/code/trunk .

      The dot "." means the current folder from where you run the command.
      The other instructions on this page only checkout the Tiki code, not any mods you have intalled or want to install. See below if you want to get the code for mods.
  2. Update from SVN.
    See Update
  3. Commit your code.
    See How to get commit access for information on contributing code and joining the Tiki developer community.
    Before you Commit
    Copy to clipboard
    svn diff

    When you are Ready
    Copy to clipboard
    svn commit -m "message for commit log" nameoffile.php templates/nameoffile.tpl

    You might need to do a checkout with httpss instead of https in the repository url from above, in order to be able to commit back to the sf.net repository.
    You can also see full instructions to commit

Getting a specific version from SVN (ex.: 7.1)

Copy to clipboard
svn checkout https://svn.code.sf.net/p/tikiwiki/code/tags/7.1/ mynewfolder

Using Mods

If you want to checkout latest files for Mods, then you have to separately use:

Checking out Mods with SVN
Copy to clipboard
svn checkout https://svn.code.sf.net/p/tikiwiki/code/mods/trunk

Things in Tiki are changing rapidly. You may need to pick up your mod from https://tikiwiki.svn.sourceforge.net/ and navigate down to mods > wiki-plugins. If you install the mod by hand like this, you need to put the .php file in ./lib/wiki-plugins/ (see also the sh setup.sh fix step herein).

업데이트 하기

  • 마이너 (예: 6.x 에서 6.y 로) 혹은 메이저 (예: 6.x 에서 8.x 로) 어느 방식이건 업데이트 하십시오

Pre-release packages (zip files)

FTP 설치에서 전환하는 법

Tiki Remote Instance Manager (TRIM)

For managing multiple, independent Tiki installations. Please see TRIM

Amazon Machine Image (AMI) for EC2

Amazon Elastic Compute Cloud - Amazon Web Services. Please see: EC2

Keywords

The following is a list of keywords that should serve as hubs for navigation within the Tiki development and should correspond to documentation keywords.

Each feature in Tiki has a wiki page which regroups all the bugs, requests for enhancements, etc. It is somewhat a form of wiki-based project management. You can also express your interest in a feature by adding it to your profile. You can also try out the Dynamic filter.

Accessibility (WAI & 508)
Accounting
Administration
Ajax
Articles & Submissions
Backlinks
Banner
Batch
BigBlueButton audio/video/chat/screensharing
Blog
Bookmark
Browser Compatibility
Calendar
Category
Chat
Comment
Communication Center
Consistency
Contacts Address book
Contact us
Content template
Contribution
Cookie
Copyright
Credits
Custom Home (and Group Home Page)
Database MySQL - MyISAM
Database MySQL - InnoDB
Date and Time
Debugger Console
Diagram
Directory (of hyperlinks)
Documentation link from Tiki to doc.tiki.org (Help System)
Docs
DogFood
Draw -superseded by Diagram
Dynamic Content
Preferences
Dynamic Variable
External Authentication
FAQ
Featured links
Feeds (RSS)
File Gallery
Forum
Friendship Network (Community)
Gantt
Group
Groupmail
Help
History
Hotword
HTML Page
i18n (Multilingual, l10n, Babelfish)
Image Gallery
Import-Export
Install
Integrator
Interoperability
Inter-User Messages
InterTiki
jQuery
Kaltura video management
Kanban
Karma
Live Support
Logs (system & action)
Lost edit protection
Mail-in
Map
Menu
Meta Tag
Missing features
Visual Mapping
Mobile
Mods
Modules
MultiTiki
MyTiki
Newsletter
Notepad
OS independence (Non-Linux, Windows/IIS, Mac, BSD)
Organic Groups (Self-managed Teams)
Packages
Payment
PDF
Performance Speed / Load / Compression / Cache
Permission
Poll
Profiles
Quiz
Rating
Realname
Report
Revision Approval
Scheduler
Score
Search engine optimization (SEO)
Search
Security
Semantic links
Share
Shopping Cart
Shoutbox
Site Identity
Slideshow
Smarty Template
Social Networking
Spam protection (Anti-bot CATPCHA)
Spellcheck
Spreadsheet
Staging and Approval
Stats
Survey
Syntax Highlighter (Codemirror)
Tablesorter
Tags
Task
Tell a Friend
Terms and Conditions
Theme
TikiTests
Federated Timesheets
Token Access
Toolbar (Quicktags)
Tours
Trackers
TRIM
User Administration
User Files
User Menu
Watch
Webmail and Groupmail
WebServices
Wiki History, page rename, etc
Wiki plugins extends basic syntax
Wiki syntax text area, parser, etc
Wiki structure (book and table of content)
Workspace and perspectives
WYSIWTSN
WYSIWYCA
WYSIWYG
XMLRPC
XMPP




Useful Tools