Loading...
 

TikiCommandLineCVS

SVN updates (for all versions of Tiki) will stop in January 2023. This coincides with when Tiki18 reaches end of life. However, even if you use another version (like Tiki 21x) from SVN, you will stop getting updates because the Git and SVN combined workflow will be retired. You should get your updates from Git. See also: Tiki Version control history.








The information below is out-of-date

Please see download and TRIM instead

Get the latest CVS using the command line

Getting Tiki CVS for the first time :

cvs -d:pserver:anonymous@tikiwiki.cvs.sourceforge.net:/cvsroot/tikiwiki login

cvs -z3 -d:pserver:anonymous@tikiwiki.cvs.sourceforge.net:/cvsroot/tikiwiki co tikiwiki

Getting the proper branch

cvs -d:pserver:anonymous@tikiwiki.cvs.sourceforge.net:/cvsroot/tikiwiki login
cvs co -r BRANCH-1-9 -d tiki-1.9 tikiwiki

It will create a new directory named tiki-1.9/
Note : the name of the tag, despite it can suggest it's the rc1, is actually the name of the branch... historical mistake perpetuated...

The Available branches are BRANCH-1-9 and HEAD (that last one is the default you'll have if you don't specify the branch name with the -r param).

The module is tikiwiki, including the tikiwiki source code, including smarty and adodb third party source code. If you only need the tiki source and use your own smarty and adodb, you can use the module named tiki instead of tikiwiki.

-----

Getting only the parts of Tiki that have changed :

cvs -d:pserver:anonymous@tikiwiki.cvs.sourceforge.net:/cvsroot/tikiwiki login

cvs -d:pserver:anonymous@tikiwiki.cvs.sourceforge.net:/cvsroot/tikiwiki up -dP

Getting the docs from CVS :

cvs -d:pserver:anonymous@tikiwiki.cvs.sourceforge.net:/cvsroot/tikiwiki login

cvs -d:pserver:anonymous@tikiwiki.cvs.sourceforge.net:/cvsroot/tikiwiki co tiki-docs

This will create a tiki-docs/


--------

Bash script to update only Tiki parts that have changed :


Open your console in the directory with tiki, in my case /var/www/html. Then type :

vi tikicvs.sh

I copy pasted the text into vi. The copy part is easy ctrl +c pasting into the console is ctrl+ shift+v

#! /bin/sh
# this should do the trick
#
# Where you tikiwiki is
MYTIKI=/home/www/tikiwiki
#
CVSROOT=":pserver:anonymous@tikiwiki.cvs.sourceforge.net:/cvsroot/tikiwiki"
CVS_RSH=""
export CVSROOT CVS_RSH

cd $MYTIKI

cvs -d $CVROOT login
cvs -d $CVROOT up -dP

# Because you are set ENV with CVSROOT, you can just do this
# cvs up -dP

rm -fR tiki/templates_c/%%*

# Need if you don't want anonymous can install in your site
rm -f tiki-install.php

then to exit vi :

escape> :> wq enter>

Make this script an executable:

chmod a+x tikicvs.sh enter>

ls and the tikicvs.sh should be there. Then all you need to do at the root shell is

./tikicvs.sh


--------

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
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