vtkhtml

所属分类:图形图象
开发工具:Others
文件大小:15366KB
下载次数:79
上传日期:2008-12-16 21:01:18
上 传 者管理员
说明:  介绍如何使用VTK以及VTK的发展现状
(Describes how to use VTK as well as the development of VTK)

文件列表:
vtkhtml\buy-books.php (8024, 2007-05-08)
vtkhtml\contribute.php (4322, 2004-10-26)
vtkhtml\copyright.php (3302, 2006-06-03)
vtkhtml\CVS\Entries (651, 2007-07-25)
vtkhtml\CVS\Entries.Extra (324, 2007-07-25)
vtkhtml\CVS\Entries.Extra.Old (344, 2007-07-25)
vtkhtml\CVS\Entries.Old (671, 2007-07-25)
vtkhtml\CVS\Repository (9, 2007-07-25)
vtkhtml\CVS\Root (52, 2007-07-25)
vtkhtml\CVS\Template (1049, 2007-07-25)
vtkhtml\documents.php (1427, 2006-09-12)
vtkhtml\example-code.php (14870, 2003-09-17)
vtkhtml\files\CVS\Entries (15, 2007-07-25)
vtkhtml\files\CVS\Entries.Extra (15, 2007-07-25)
vtkhtml\files\CVS\Entries.Extra.Old (0, 2007-07-25)
vtkhtml\files\CVS\Entries.Old (3, 2007-07-25)
vtkhtml\files\CVS\Repository (15, 2007-07-25)
vtkhtml\files\CVS\Root (52, 2007-07-25)
vtkhtml\files\CVS\Template (1049, 2007-07-25)
vtkhtml\files\support\CVS\Entries (228, 2007-07-25)
vtkhtml\files\support\CVS\Entries.Extra (105, 2007-07-25)
vtkhtml\files\support\CVS\Entries.Extra.Old (0, 2007-07-25)
vtkhtml\files\support\CVS\Entries.Old (0, 2007-07-25)
vtkhtml\files\support\CVS\Repository (23, 2007-07-25)
vtkhtml\files\support\CVS\Root (52, 2007-07-25)
vtkhtml\files\support\CVS\Template (1049, 2007-07-25)
vtkhtml\files\support\ffmpeg_source.tar.gz (2073166, 2006-02-23)
vtkhtml\files\support\vp-vtk-support.zip (166208, 2002-04-03)
vtkhtml\files\support\vtkmpeg2encode.tar.gz (44737, 2007-01-25)
vtkhtml\files\support\vtkmpeg2encode.zip (63638, 2007-01-25)
vtkhtml\get-software-vp.php (13508, 2004-05-25)
vtkhtml\get-software.php (12141, 2007-03-30)
vtkhtml\images\banners\CVS\Entries (52, 2007-07-25)
vtkhtml\images\banners\CVS\Entries.Extra (19, 2007-07-25)
vtkhtml\images\banners\CVS\Entries.Extra.Old (0, 2007-07-25)
vtkhtml\images\banners\CVS\Entries.Old (0, 2007-07-25)
vtkhtml\images\banners\CVS\Repository (24, 2007-07-25)
vtkhtml\images\banners\CVS\Root (52, 2007-07-25)
vtkhtml\images\banners\CVS\Template (1049, 2007-07-25)
vtkhtml\images\banners\Thumbs.db (5120, 2007-07-25)
... ...

============================================================ How to edit the public.kitware.com web sites (VTK, mainpage) ============================================================ Get a local copy of the VTK web pages ------------------------------------- - Checkout the vtkhtml CVS module. cvs -d :pserver:@public.kitware.com:/cvsroot/VTK co vtkhtml Edit your local copy -------------------- - Use relative path/link to refer to pages/links within this site/directory (i.e. do not use absolute path/link). - Use lower case letters for filenames, separate each word with a dash '-' (i.e. do not mix lower case and upper case letters). - Put images in the images/ dir. Dispatch them in the images/ subdirs according to their type (icons, banners, borders, backgrounds, etc.). - Put PDF files in the pdf/ dir. - Put zip files, archives, non-multimedia files in the files/ dir. - Put scripts (PHP, Java) in the scripts/ dir. - Put CSS style sheets (.css) in the styles/ dir. - Put preparation files in the ressources/ dir (if they are to be re-used). For examples, these multi-channel Photoshop files that were used to create specific multimedia file. Update the remote/online web pages ---------------------------------- - Commit your local changes to the CVS. - Update the online web pages on public.www.kitware.com. login to public.kitware.com as www cd /vtk/WWW/vtkhtml cvs -q update -d -P Appendix A: public.kitware.com main page ---------------------------------------- Same applies for the public mainpage (home) except that: - Checkout the mainpage CVS module. cvs -d :pserver:@public.kitware.com:/cvsroot/www co mainpage - Update the online web pages on public.www.kitware.com. login to public.kitware.com as www cd ~www/mainpage cvs -q update -d -P Appendix B: Test your local copy on Windows 2000 computer --------------------------------------------------------- - Install the Apache web server for windows. Can be found on Tripoint downloads (\\Tripoint\KitwareShared\Download\Apache1.3.22-windows\apache_1.3.22-win32-x86.msi) Run the msi file, specify any installation directory (here C:\internet\web\apache) - Install PHP 4 Can be found on Tripoint downloads (\\Tripoint\KitwareShared\Download\Php\4.0.6\php-4.0.6-Win32.zip) Unzip php-4.0.6-Win32.zip into any directory (here: C:\internet\web\php\4). - Configure Apache. Edit C:\internet\web\apache\conf\httpd.conf Search for the LoadModule string (you will find a bunch of #LoadModule lines) and add the following line (modify it according to your PHP install dir): LoadModule php4_module c:/internet/web/php/4/sapi/php4apache.dll Search for the DirectoryIndex string, and make sure the following block exists or looks like: DirectoryIndex index.html index.php index.php3 Search for the AddType string, and add or uncomment the following lines: AddType application/x-httpd-php .php .php4 AddType application/x-httpd-php-source .phps - Configure PHP. Copy the C:\internet\web\php\4\php.ini-dist file to C:\WINNT\php.ini Edit C:\WINNT\php.ini Search for the extension_dir string and modify it according to your PHP installation dir. Example: extension_dir = C:\internet\web\php\4\extensions - Start (or restart) the server from the Program Files menu. (Apache httpd Server -> Control Apache Server -> (Re)Start - Go to http://localhost In order the see your local copy of the web sites they must be stored under your DocumentRoot. You can modify the DocumentRoot location by editing in the the Apache httpd.conf file. Search and edit the following strings: [...] DocumentRoot "D:/users/barre/internet/web/localhost/kitware" [...] # # This should be changed to whatever you set DocumentRoot to. # Ideally you could for example checkout the vtkhtml dir under: D:\users\barre\internet\web\localhost\kitware\public\mainpage

近期下载者

相关文件


收藏者