|
From: Verdon V. <ve...@us...> - 2008-01-06 00:35:13
|
Update of /cvsroot/phpwebsite-comm/modules/podcaster/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4231/docs Modified Files: CHANGELOG COPYRIGHT ChangeLog INSTALL TODO Added Files: theme_tags.txt Log Message: getting ready for 1.0.4 and release --- NEW FILE: theme_tags.txt --- Podcaster only uses one theme tag. Name: sidebox Tag : PCR_SIDEBOX --------------- Podcaster will put this content into the DEFAULT tag if the theme does not assign it. It contains either the most recent or a random episode, in a sidebox, if enabled in podcaster's settings. Index: COPYRIGHT =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/docs/COPYRIGHT,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** COPYRIGHT 2 Jan 2008 04:44:05 -0000 1.2 --- COPYRIGHT 6 Jan 2008 00:34:45 -0000 1.3 *************** *** 3,7 **** # @author Verdon Vaillancourt <verdonv at users dot sourceforge dot net> ! Copyright (C) 2007 by the following: (If you have contributed code to podcaster, you should be on this list) --- 3,7 ---- # @author Verdon Vaillancourt <verdonv at users dot sourceforge dot net> ! Copyright (C) 2007-08 by the following: (If you have contributed code to podcaster, you should be on this list) Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/docs/CHANGELOG,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CHANGELOG 2 Jan 2008 05:29:49 -0000 1.2 --- CHANGELOG 6 Jan 2008 00:34:45 -0000 1.3 *************** *** 1,2 **** --- 1,15 ---- + Version 1.0.4 -- Jan 2008 + ------------------------------------------------------------------ + Jan 03-05 2008 + + Updated documentation + + Got channel rss caching working (needs updated /core/class/cache.php) + + Added empty message and create link, in empty channel list + + Fixed default for approved flag for new episode by unrestricted users + + Added podcaster block and related settings + + Made RSS cache timeout configurable in settings tab + + Added an info tab and a few notes on media files and iTunes categories + + General code tidying and review to prepare for release + + Version 1.0.3 -- Dec 2007 ------------------------------------------------------------------ Index: ChangeLog =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/docs/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ChangeLog 2 Jan 2008 05:29:49 -0000 1.8 --- ChangeLog 6 Jan 2008 00:34:45 -0000 1.9 *************** *** 1,2 **** --- 1,15 ---- + Version 1.0.4 -- Jan 2008 + ------------------------------------------------------------------ + Jan 03-05 2008 + + Updated documentation + + Got channel rss caching working (needs updated /core/class/cache.php) + + Added empty message and create link, in empty channel list + + Fixed default for approved flag for new episode by unrestricted users + + Added podcaster block and related settings + + Made RSS cache timeout configurable in settings tab + + Added an info tab and a few notes on media files and iTunes categories + + General code tidying and review to prepare for release + + Version 1.0.3 -- Dec 2007 ------------------------------------------------------------------ Index: INSTALL =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/docs/INSTALL,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** INSTALL 2 Jan 2008 04:44:05 -0000 1.5 --- INSTALL 6 Jan 2008 00:34:45 -0000 1.6 *************** *** 30,34 **** mv podcaster /home/username/public_html/mod/podcaster ! 4. Go to your phpWS control panel and install podcaster from Boost. --- 30,34 ---- mv podcaster /home/username/public_html/mod/podcaster ! 4. Go to your phpwebsite control panel and install podcaster from Boost. *************** *** 36,71 **** !!!IMPORTANT NOTE ON FILE SIZES!!! ================================== ! podcaster, of course, depends on uploading mp3 files for feeds. You will ! be restricted to the value set in upload_max_filesize of your servers ! php.ini file. On many servers, this defaults to around 2MB, obviously ! not enough for an audio file of much length. If you have access to the php.ini file, you can increase this value, or you can ask your sys admin ! to do it for you. Another way to increase this amount (also useful if ! your sys admin doesn't want to make this change server-wide) is through ! the use of an .htaccess file at the root of your domain. Keep in mind, ! if you increase upload_max_filesize a lot, you may also need to increase ! post_max_size. post_max_size should always be larger than ! upload_max_filesize. ! ! I have provided another means to deal with larger audio files also. You ! may also upload files to your /files/podcaster directory via ftp or some ! other emans, and then use the 'Import' function in any add/edit podcast ! screens to register these files with the module. If you do use this ! method, be sure to stick to legal file names and avoid spaces or special ! characters. ! ! ! A NOTE ON CATEGORIES: ! ===================== ! Currently, podcaster channels make use of fatcat categories. As any text ! may be used in the rss <category> tag, these categories are also used in ! the rss feed for any given channel. ! I am working on a mechanism for the next release of podcaster, that will ! provide support for <itunes:category> tags as well. The itunes ! categories are quite specific, so editable fatcat categories are not ! suitable. I have provided example <itunes:category> tags in ! /templates/backend_feed.tpl and /templates/backend_item.tpl if you wish ! to hard-code itunes categories there in the interum, you could. Keep in ! mind, they would be global to all feeds though. --- 36,51 ---- !!!IMPORTANT NOTE ON FILE SIZES!!! ================================== ! podcaster, of course, depends on uploading mp3 files for feeds and uses ! Filecabinet to do it. You will be restricted to the value set in ! upload_max_filesize of your servers php.ini file and other settings in ! Filecabinet. On many servers, this defaults to around 2MB, obviously not ! enough for an audio file of much length. If you have access to the php.ini file, you can increase this value, or you can ask your sys admin ! to do it for you. For more information, refer to ! /docs/upload_limits.txt. ! Filecabinet provides another means to deal with larger media files. You ! may also upload files to your /files/filecabinet/incoming directory via ! ftp or some other emans, and then use the 'Classify' function in ! filecabinet to register these files with the system. Index: TODO =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/podcaster/docs/TODO,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** TODO 2 Jan 2008 05:29:49 -0000 1.6 --- TODO 6 Jan 2008 00:34:45 -0000 1.7 *************** *** 3,19 **** # @author Verdon Vaillancourt <verdonv at users dot sourceforge dot net> - ## figure out caching in channel viewrss - - *) review episode save key and short url - can it be like webpages - - *) consider an 'info' tab for admins ! *) put logic in (channel level?) to specify multimedia or document in episode class ! *) further user permission and security audit review, but so far so good ! *) some kind of front page block function ! *) review and improve default views, eg go to create channel instead of list when none exist, etc --- 3,21 ---- # @author Verdon Vaillancourt <verdonv at users dot sourceforge dot net> ! Q: further user permission and security audit review, but so far so good ! A: take another look at restricted vs unrestricted correct usage ! Q: bullet-proof iTunes category entry ! A: next version (1.1?) ! Q: put logic in (channel level?) to specify multimedia or document in episode class ! A: future version (1.1 or 1.2?) ! Q: embedd multimedia javascript app ! A: waiting for filecabinet changes + Q: review episode save key and short url + can it be like webpages + A: only if either the default .htaccess rewrite expression is changed, or + if I change episode to page. still needs thought |