You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(120) |
Jun
(74) |
Jul
(97) |
Aug
(35) |
Sep
(35) |
Oct
(34) |
Nov
|
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(18) |
Feb
(8) |
Mar
(7) |
Apr
(23) |
May
(28) |
Jun
(31) |
Jul
(27) |
Aug
(34) |
Sep
(48) |
Oct
(511) |
Nov
(197) |
Dec
(333) |
2005 |
Jan
(212) |
Feb
(33) |
Mar
(94) |
Apr
(51) |
May
(16) |
Jun
|
Jul
(200) |
Aug
(43) |
Sep
(88) |
Oct
(60) |
Nov
(62) |
Dec
(41) |
2006 |
Jan
(94) |
Feb
(49) |
Mar
(54) |
Apr
|
May
(39) |
Jun
(39) |
Jul
(61) |
Aug
(36) |
Sep
(23) |
Oct
(76) |
Nov
(73) |
Dec
(32) |
2007 |
Jan
|
Feb
(87) |
Mar
|
Apr
(8) |
May
(36) |
Jun
(49) |
Jul
(54) |
Aug
(8) |
Sep
(50) |
Oct
(36) |
Nov
|
Dec
(3) |
2008 |
Jan
(133) |
Feb
(54) |
Mar
(39) |
Apr
(2) |
May
(6) |
Jun
(74) |
Jul
(97) |
Aug
(70) |
Sep
(12) |
Oct
(20) |
Nov
(64) |
Dec
(24) |
2009 |
Jan
(25) |
Feb
(49) |
Mar
(18) |
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
(10) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Eloi G. <ada...@us...> - 2004-06-18 23:31:25
|
Update of /cvsroot/phpwebsite-comm/modules/article/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7283/inc Modified Files: AM_list_articles.php AM_view_archives.php AM_view_news.php A_delete.php A_edit.php A_mail.php A_publish.php A_remove_section.php A_save.php A_update.php S_commit_to_article.php S_edit.php S_save.php S_update.php editconfig.php runtime.php saveconfig.php Log Message: 2.3 Release Files Index: S_edit.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/S_edit.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** S_edit.php 19 Feb 2004 21:46:46 -0000 1.1 --- S_edit.php 18 Jun 2004 23:31:10 -0000 1.2 *************** *** 4,7 **** --- 4,9 ---- * Displays an editing interface for this section. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager *************** *** 71,75 **** } $myelements[0] .= PHPWS_Form::formSubmit($_SESSION['translate']->it('Select an image from the library'), 'IMGLib_op') ! . PHPWS_Form::formHidden('IMGLib_linkBack', 'index.php?module=article&IMGLib_op=1&IMGLib_select=1') . CLS_help::show_link('article', 'section_lib_image') . '<br /><br />'; --- 73,77 ---- } $myelements[0] .= PHPWS_Form::formSubmit($_SESSION['translate']->it('Select an image from the library'), 'IMGLib_op') ! . PHPWS_Form::formHidden('IMGLib_return_data', 'edit') . CLS_help::show_link('article', 'section_lib_image') . '<br /><br />'; Index: S_update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/S_update.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** S_update.php 19 Feb 2004 21:46:46 -0000 1.1 --- S_update.php 18 Jun 2004 23:31:10 -0000 1.2 *************** *** 3,6 **** --- 3,8 ---- * Assigns a free image directory. * + * @version $Id$ + * * Imagefile Storage Optimization * Most OSs optimally search & retrieve up to about 500 files per directory. Index: AM_view_news.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/AM_view_news.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AM_view_news.php 19 Feb 2004 21:46:46 -0000 1.1 --- AM_view_news.php 18 Jun 2004 23:31:09 -0000 1.2 *************** *** 4,7 **** --- 4,9 ---- * Lists the articles stored in the database in a "News Page" * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager *************** *** 14,18 **** $GLOBALS['CNT_article']['content'] = ''; /* If article row datum hasn't been retrieved/viewed yet... */ ! if(!isset($this->pager) || !isset($_REQUEST['PAGER_limit']) || isset($_REQUEST['newsFilter'])) { $this->pager = new PHPWS_Pager; --- 16,21 ---- $GLOBALS['CNT_article']['content'] = ''; /* If article row datum hasn't been retrieved/viewed yet... */ ! if(!isset($this->pager) || !isset($_REQUEST['PAGER_limit']) ! || isset($_REQUEST['newsFilter']) || isset($_REQUEST['order'])) { $this->pager = new PHPWS_Pager; *************** *** 22,34 **** if (isset($_REQUEST['newsFilter'])) ! $this->filter = $_REQUEST['newsFilter']; ! ! if ($this->filter!='') ! $filter = ' AND title LIKE "'.$this->filter.'%" ORDER BY title ASC'; ! else ! $filter = ' ORDER BY updated_date DESC'; $result = $GLOBALS['core']->getCol('SELECT id FROM ' . $this->sql_article_table ! . ' WHERE ' . $this->get_published_sql().' AND mainarticle=0'.$this->sql_predicate . $filter); $this->pager->setData($result); $result = NULL; --- 25,47 ---- if (isset($_REQUEST['newsFilter'])) ! $this->news_filter['letter'] = $_REQUEST['newsFilter']; ! if ($this->news_filter['letter']!='') { ! $filter = ' AND title LIKE "'.$this->news_filter['letter'].'%" ORDER BY title '; ! $this->news_filter['order'] = 'ASC'; ! } ! else { ! $filter = ' ORDER BY updated_date '; ! $this->news_filter['order'] = 'DESC'; ! } ! /* Allow user to override display order */ ! if (isset($_REQUEST['order']) && $o = strtolower($_REQUEST['order'])) { ! if ($o=='asc') ! $this->news_filter['order'] = 'ASC'; ! if ($o=='desc') ! $this->news_filter['order'] = 'DESC'; ! } $result = $GLOBALS['core']->getCol('SELECT id FROM ' . $this->sql_article_table ! . ' WHERE ' . $this->get_published_sql().' AND mainarticle=0'.$this->sql_predicate . $filter.$this->news_filter['order']); $this->pager->setData($result); $result = NULL; *************** *** 40,44 **** /* Retrieve all article listings for this page */ $sql = 'SELECT * FROM ' . $this->sql_article_table ! . ' WHERE id IN (' . $data . ') ORDER BY updated_date DESC'; if(!$result = $GLOBALS['core']->query($sql)) return; --- 53,57 ---- /* Retrieve all article listings for this page */ $sql = 'SELECT * FROM ' . $this->sql_article_table ! . ' WHERE id IN ('.$data.')'. $filter.$this->news_filter['order']); if(!$result = $GLOBALS['core']->query($sql)) return; *************** *** 61,65 **** $tags['ALPHABET'] = PHPWS_Text::moduleLink($_SESSION['translate']->it('ALL'), 'article', array('view'=>'news', 'newsFilter'=>'') ) . " \n"; foreach ($alphabet as $alphachar) ! if ($alphachar!=$this->filter) $tags['ALPHABET'] .= PHPWS_Text::moduleLink($alphachar, 'article', array('view'=>'news', 'newsFilter'=>$alphachar) ) . " \n"; else --- 74,78 ---- $tags['ALPHABET'] = PHPWS_Text::moduleLink($_SESSION['translate']->it('ALL'), 'article', array('view'=>'news', 'newsFilter'=>'') ) . " \n"; foreach ($alphabet as $alphachar) ! if ($alphachar!=$this->news_filter['letter']) $tags['ALPHABET'] .= PHPWS_Text::moduleLink($alphachar, 'article', array('view'=>'news', 'newsFilter'=>$alphachar) ) . " \n"; else *************** *** 73,78 **** $title = $_SESSION['translate']->it('All Articles'); ! if ($this->filter!='') ! $title .= $_SESSION['translate']->it(' Starting With `[var1]`', $this->filter); $GLOBALS['Layout_title'] = $title . ' - ' . $_SESSION['OBJ_layout']->page_title; $GLOBALS['CNT_article']['title'] = '<center><b>' . $title . '</b></center>'; --- 86,91 ---- $title = $_SESSION['translate']->it('All Articles'); ! if ($this->news_filter['letter']!='') ! $title .= $_SESSION['translate']->it(' Starting With `[var1]`', $this->news_filter['letter']); $GLOBALS['Layout_title'] = $title . ' - ' . $_SESSION['OBJ_layout']->page_title; $GLOBALS['CNT_article']['title'] = '<center><b>' . $title . '</b></center>'; Index: A_publish.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/A_publish.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** A_publish.php 19 Feb 2004 21:46:46 -0000 1.1 --- A_publish.php 18 Jun 2004 23:31:10 -0000 1.2 *************** *** 4,7 **** --- 4,9 ---- * Immediately publishes this article so users can see it. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager Index: AM_view_archives.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/AM_view_archives.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AM_view_archives.php 22 Apr 2004 17:05:28 -0000 1.2 --- AM_view_archives.php 18 Jun 2004 23:31:09 -0000 1.3 *************** *** 6,9 **** --- 6,11 ---- * All parameters are passed via $_REQUEST * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager *************** *** 30,33 **** --- 32,39 ---- $this->arc_filter['month'] = (isset($_REQUEST['month'])) ?$_REQUEST['month'] :null; $this->arc_filter['day'] = (isset($_REQUEST['day'])) ?$_REQUEST['day'] :null; + if (isset($_REQUEST['order']) && strtolower($_REQUEST['order'])=='asc') + $this->arc_filter['order'] = 'ASC'; + else + $this->arc_filter['order'] = 'DESC'; if (isset($_REQUEST['datetype']) && $_REQUEST['datetype']!='publication_date') Index: S_commit_to_article.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/S_commit_to_article.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** S_commit_to_article.php 19 Feb 2004 21:46:46 -0000 1.1 --- S_commit_to_article.php 18 Jun 2004 23:31:10 -0000 1.2 *************** *** 3,6 **** --- 3,8 ---- * Applies this section to the parent Article. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager Index: runtime.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/runtime.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** runtime.php 19 Feb 2004 21:46:46 -0000 1.1 --- runtime.php 18 Jun 2004 23:31:10 -0000 1.2 *************** *** 3,6 **** --- 3,8 ---- * This is the runtime file for the article module. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager Index: saveconfig.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/saveconfig.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** saveconfig.php 19 Feb 2004 21:46:46 -0000 1.4 --- saveconfig.php 18 Jun 2004 23:31:10 -0000 1.5 *************** *** 5,8 **** --- 5,10 ---- * Saves the module's new default settings. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager Index: AM_list_articles.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/AM_list_articles.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AM_list_articles.php 21 Apr 2004 19:55:23 -0000 1.2 --- AM_list_articles.php 18 Jun 2004 23:31:09 -0000 1.3 *************** *** 4,7 **** --- 4,9 ---- * Lists the articles stored in the database in user-selectable formats * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager Index: A_mail.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/A_mail.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** A_mail.php 19 Feb 2004 21:46:46 -0000 1.1 --- A_mail.php 18 Jun 2004 23:31:10 -0000 1.2 *************** *** 4,7 **** --- 4,9 ---- * Emails this article and all associated sections to someone else * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager *************** *** 80,84 **** , $this->title , $_SESSION['translate']->it('sent to').' '.$_POST['ART_r_email']); ! } else $content = 'EMAIL ERROR: ' . $status->getMessage(); --- 82,88 ---- , $this->title , $_SESSION['translate']->it('sent to').' '.$_POST['ART_r_email']); ! } elseif($status===false) ! $content = 'EMAIL ERROR: '.$content = $_SESSION["translate"]->it("Email is not correctly set up on this server."); ! else $content = 'EMAIL ERROR: ' . $status->getMessage(); Index: A_remove_section.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/A_remove_section.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** A_remove_section.php 19 Feb 2004 21:46:46 -0000 1.1 --- A_remove_section.php 18 Jun 2004 23:31:10 -0000 1.2 *************** *** 4,7 **** --- 4,9 ---- * Removes the section at SECT_id from this article. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager Index: A_save.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/A_save.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** A_save.php 19 Feb 2004 21:46:46 -0000 1.1 --- A_save.php 18 Jun 2004 23:31:10 -0000 1.2 *************** *** 4,7 **** --- 4,9 ---- * Saves this article to the database. * + * @version $Id$ + * * @author Adam Morton <ad...@NO...> * @module Article Manager Index: A_edit.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/A_edit.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** A_edit.php 21 Apr 2004 19:55:40 -0000 1.2 --- A_edit.php 18 Jun 2004 23:31:10 -0000 1.3 *************** *** 5,8 **** --- 5,10 ---- * id provided to specify editing of a specific section within this article. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager *************** *** 138,144 **** $currentYear = date("Y", strtotime($this->publication_date)); $article_tags['PUBLICATION_LABEL'] = $_SESSION['translate']->it('Publish on').' :'; ! $article_tags['PUBLICATION_DATE'] = PHPWS_Form::formDate("ARTICLE_publication_date" ! ,date('Ymd', strtotime($this->publication_date)) ! ,$currentYear,$currentYear + $_SESSION['SES_ART_master']->val['default_year_count']) . CLS_help::show_link('article', "article_publication_date"); --- 140,146 ---- $currentYear = date("Y", strtotime($this->publication_date)); $article_tags['PUBLICATION_LABEL'] = $_SESSION['translate']->it('Publish on').' :'; ! $article_tags['PUBLICATION_DATE'] = PHPWS_Form::formDate('ARTICLE_publication_date' ! , date('Ymd', strtotime($this->publication_date)) ! , $currentYear, $currentYear + $_SESSION['SES_ART_master']->val['default_year_count']) . CLS_help::show_link('article', "article_publication_date"); Index: S_save.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/S_save.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** S_save.php 19 Feb 2004 21:46:46 -0000 1.1 --- S_save.php 18 Jun 2004 23:31:10 -0000 1.2 *************** *** 4,7 **** --- 4,9 ---- * Saves this section to the database. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager *************** *** 18,29 **** $this->article_id = $query_data['article_id'] = $parentid; ! /* If there's an old image here... */ if ($this->old_image) { /* If WIKI is running, copy the old image to "/old" */ ! if (isset($_SESSION['OBJ_WIKI'])) ! PHPWS_File::fileCopy($_SESSION['SES_ART_master']->image_path.$this->image['directory'].$this->old_image ! , $_SESSION['SES_ART_master']->image_path.'old/' ! , $this->old_image, TRUE, FALSE); /* Get rid of it */ @unlink($_SESSION['SES_ART_master']->image_path.$this->image['directory'].$this->old_image); --- 20,31 ---- $this->article_id = $query_data['article_id'] = $parentid; ! /* If there's an old (obsolete) image here... */ if ($this->old_image) { /* If WIKI is running, copy the old image to "/old" */ ! // if (isset($_SESSION['OBJ_WIKI'])) ! // PHPWS_File::fileCopy($_SESSION['SES_ART_master']->image_path.$this->image['directory'].$this->old_image ! // , $_SESSION['SES_ART_master']->image_path.'old/' ! // , $this->old_image, TRUE, FALSE); /* Get rid of it */ @unlink($_SESSION['SES_ART_master']->image_path.$this->image['directory'].$this->old_image); *************** *** 48,58 **** /* Move any images from its holding area to its assigned space */ ! if ($this->temp_image ! && PHPWS_File::fileCopy($_SESSION['SES_ART_master']->image_path.$this->temp_image['name'] ! , $_SESSION['SES_ART_master']->image_path.$this->image['directory'] ! , $newid.strrchr($this->image['name'], '.'), TRUE, FALSE)) { ! @unlink($_SESSION['SES_ART_master']->image_path.$this->image['name']); ! $query_data['image_name'] = $this->image['name'] = $newid.strrchr($this->image['name'], '.'); } } --- 50,60 ---- /* Move any images from its holding area to its assigned space */ ! if ($this->temp_image) { ! $query_data['image_name'] = $this->image['name'] = $newid.'-'.rand(100, 999).strrchr($this->image['name'], '.'); ! if (PHPWS_File::fileCopy($_SESSION['SES_ART_master']->image_path.$this->temp_image['name'] ! , $_SESSION['SES_ART_master']->image_path.$this->image['directory'] ! , $this->image['name'], TRUE, FALSE)) ! @unlink($_SESSION['SES_ART_master']->image_path.$this->temp_image['name']); } } Index: A_delete.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/A_delete.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** A_delete.php 19 Feb 2004 21:46:46 -0000 1.1 --- A_delete.php 18 Jun 2004 23:31:09 -0000 1.2 *************** *** 5,8 **** --- 5,10 ---- * and should be manually removed if you are sure no other article is using them. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager Index: A_update.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/A_update.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** A_update.php 19 Feb 2004 21:46:46 -0000 1.1 --- A_update.php 18 Jun 2004 23:31:10 -0000 1.2 *************** *** 4,7 **** --- 4,9 ---- * Updates this article's information in memory * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager Index: editconfig.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/inc/editconfig.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** editconfig.php 19 Feb 2004 21:46:46 -0000 1.6 --- editconfig.php 18 Jun 2004 23:31:10 -0000 1.7 *************** *** 7,10 **** --- 7,12 ---- * Edits the module's default settings. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager *************** *** 153,157 **** $tags['DEFAULT_YEAR_COUNT'] = $_SESSION['translate']->it('Publication dates can be set up to [var1] year(s) from article creation.' , PHPWS_Form::formSelect('CONFIG_default_year_count', range(1,5) ! , $this->val['default_year_count'], NULL, NULL, NULL) ); /* max_image_size */ --- 155,159 ---- $tags['DEFAULT_YEAR_COUNT'] = $_SESSION['translate']->it('Publication dates can be set up to [var1] year(s) from article creation.' , PHPWS_Form::formSelect('CONFIG_default_year_count', range(1,5) ! , $this->val['default_year_count'], TRUE) ); /* max_image_size */ |
From: Eloi G. <ada...@us...> - 2004-06-18 23:31:21
|
Update of /cvsroot/phpwebsite-comm/modules/article In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7283 Modified Files: index.php Log Message: 2.3 Release Files Index: index.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/index.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** index.php 19 Feb 2004 21:46:48 -0000 1.7 --- index.php 18 Jun 2004 23:31:10 -0000 1.8 *************** *** 3,6 **** --- 3,8 ---- * This is the index file for the article module. * + * @version $Id$ + * * @author Eloi George <el...@NO...> * @module Article Manager *************** *** 214,224 **** if ($_REQUEST['IMGLib_op']=='select_image') { $_POST['IMGLib_selected_image'] = pos($_POST['IMGLib_selected_image']); - echo 'Selected image is:'.$_POST['IMGLib_selected_image'].' in:'.$_POST['IMGLib_selected_gallery']; - echo 'Section id is:'.$_SESSION['SES_ART_section']->id; $_SESSION['SES_ART_section']->update(); $_SESSION['SES_ART_article']->edit_article($_SESSION['SES_ART_section']->id); return; } ! /* Show the image galleries. linkBack, current_image, & current_gallery * are already set as POSTs from the calling form in /inc/S_edit.php */ --- 216,234 ---- if ($_REQUEST['IMGLib_op']=='select_image') { $_POST['IMGLib_selected_image'] = pos($_POST['IMGLib_selected_image']); $_SESSION['SES_ART_section']->update(); $_SESSION['SES_ART_article']->edit_article($_SESSION['SES_ART_section']->id); return; } ! /* Handle gallery exit requests */ ! if ($_REQUEST['IMGLib_op']=='exit') { ! if ($_REQUEST['IMGLib_return_data']=='edit') ! $_SESSION['SES_ART_article']->edit_article($_SESSION['SES_ART_section']->id); ! else { ! $_SESSION['SES_ART_master']->main_menu(); ! $_SESSION['SES_ART_master']->list_articles(); ! } ! return; ! } ! /* Show the image galleries. return_data, current_image, & current_gallery * are already set as POSTs from the calling form in /inc/S_edit.php */ *************** *** 240,244 **** . implode('","', $_POST['IMGLib_selected_image']) . '")'; - echo $sql; /* Change directory names in all relevant sections */ $GLOBALS['core']->query($sql, true); --- 250,253 ---- |
From: Eloi G. <ada...@us...> - 2004-06-18 23:31:18
|
Update of /cvsroot/phpwebsite-comm/modules/article/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7283/docs Modified Files: Changes.txt INSTALL.txt Log Message: 2.3 Release Files Index: INSTALL.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/docs/INSTALL.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** INSTALL.txt 19 Feb 2004 21:46:45 -0000 1.3 --- INSTALL.txt 18 Jun 2004 23:31:09 -0000 1.4 *************** *** 1,5 **** Document - ArticleManager Installation Author - Eloi George <el...@by...> ! Updated - 3/28/2003 ----------------------------------------------------------------------------- --- 1,5 ---- Document - ArticleManager Installation Author - Eloi George <el...@by...> ! Updated - 6/14/2004 ----------------------------------------------------------------------------- *************** *** 32,36 **** SUGGESTION: ! As with all data conversions, sometimes bad data can screw up the process. I've tried to account for all potential problems, but to be sure that everything is converted properly I suggest that you make a small change to your /core/Database.php file. Change line #460 from this: if($this->query($sql, FALSE, TRUE)){ to this: --- 32,36 ---- SUGGESTION: ! As with all data conversions, sometimes bad data can mess up the process. I've tried to account for all potential problems, but to be sure that everything is converted properly I suggest that you make a small change to your /core/Database.php file. Change line #469 from this: if($this->query($sql, FALSE, TRUE)){ to this: Index: Changes.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/docs/Changes.txt,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Changes.txt 22 Apr 2004 17:05:28 -0000 1.8 --- Changes.txt 18 Jun 2004 23:31:09 -0000 1.9 *************** *** 2,8 **** Changes in version 2.3 ======================== ! TODO: Change all forms to use the EZForm class in preparation for 0.9.4 ! TODO: NEW FEATURE! TrackBack system allows AM to be used as a blog. ! TODO: - Fixed Bug Report [902591] "Bug in Image Library" - Standardized all relative links - Fixed Bug Report [ 910071 ] Main article listing was messing up row display continuity where cells had null values. --- 2,7 ---- Changes in version 2.3 ======================== ! - Fixed double-display of section editing screen. ! - Fixed Bug Report [902591] "Bug in Image Library" - Standardized all relative links - Fixed Bug Report [ 910071 ] Main article listing was messing up row display continuity where cells had null values. *************** *** 10,14 **** Changed {BG} to {ODDROW} so that tablerow class values are now specified in the template - not in the code. Thanks, smsulliva! ! - Fixed double-display of section editing screen. - Fixed display of archives so that listings are shown in descending order (most recent first). The order can be changed by adding "order=ASC" to the URL. - Fixed display of archives so that expired listings are only shown to those authorized to re-publish them. Switch to enable display of all articles is now "all=1". "current=1" is now obsolete. --- 9,16 ---- Changed {BG} to {ODDROW} so that tablerow class values are now specified in the template - not in the code. Thanks, smsulliva! ! - Fixed Bug Report [ 945847 ] "Cache issues with image name reuse" ! - Fixed Bug Report [ 952874 ] "New articles don't show up" ! - Fixed display of news so that listings are shown in descending order (most recent first). The order can be changed by adding "order=ASC" to the URL. ! - Fixed news display problem where title-filtered listings were still sorted by the date they were last updated instead of alphabetically. - Fixed display of archives so that listings are shown in descending order (most recent first). The order can be changed by adding "order=ASC" to the URL. - Fixed display of archives so that expired listings are only shown to those authorized to re-publish them. Switch to enable display of all articles is now "all=1". "current=1" is now obsolete. |
From: Mike N. <mh...@us...> - 2004-06-10 21:21:13
|
Update of /cvsroot/phpwebsite-comm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9958 Modified Files: README Log Message: updated with l10n and patches info Index: README =================================================================== RCS file: /cvsroot/phpwebsite-comm/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 21 May 2003 14:17:27 -0000 1.2 --- README 10 Jun 2004 21:20:55 -0000 1.3 *************** *** 12,15 **** --- 12,18 ---- http://tux.appstate.edu/mailman/listinfo/phpwebsite-cvs-notice + Developers Mailing List + php...@li... + If you have third party content that you would like to include in this repository, please submit a support request using the category of *************** *** 17,20 **** --- 20,26 ---- https://sourceforge.net/tracker/?func=add&group_id=81360&atid=563509 + phpWebSite Community development mailing list: + php...@li... + REPOSITORY LAYOUT *************** *** 23,27 **** --- 29,37 ---- toplevel/ - documents documentation (DocManager, HOWTO, Guide, etc.) + - l10n localization (ISO 639-2 language codes) - modules modules + - patches patch sets by developers for code where no + write privileges exist (for review by code + maintainers) - themes themes |
From: Mike N. <mh...@us...> - 2004-06-10 15:29:51
|
Update of /cvsroot/phpwebsite-comm/l10n/de/mod/phpwsbb/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv925/mod/phpwsbb/lang Modified Files: phpwsbb.de.lng Log Message: synced to 31-5-2004 version Index: phpwsbb.de.lng =================================================================== RCS file: /cvsroot/phpwebsite-comm/l10n/de/mod/phpwsbb/lang/phpwsbb.de.lng,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** phpwsbb.de.lng 9 Jun 2004 16:36:47 -0000 1.1.1.1 --- phpwsbb.de.lng 10 Jun 2004 15:28:43 -0000 1.2 *************** *** 5,15 **** a:|:Access to delete this message was denied due to lack of proper permissions.:|:Löschen der Nachricht mangels Berechtigung verweigert. a:|:Access to delete this topic was denied due to lack of proper permissions.:|:Löschen des Themas mangels Berechtigung verweigert. ! a:|:Access to edit settings was denied.:|:Ändern der Einstellungen verweigert. a:|:Access to lock this topic was denied due to lack of proper permissions.:|:Sperren des Themas mangels Berechtigung verweigert. a:|:Access to stick this topic was denied due to lack of proper permissions.:|:Thema immer zeigen mangels Berechtigung verweigert. ! a:|:Access to update topics was denied due to lack of proper permissions.:|:Ändern des Themas mangels Berechtigung verweigert. a:|:Access was denied due to lack of proper permissions.:|:Zugriff mangels Berechtigung verweigert. a:|:Add Forum:|:Neues Forum ! a:|:Add/Edit Forum:|:Forum Neu/ändern a:|:Allow Anonymous Posts:|:Anonymes senden von Nachrichten erlauben a:|:Allow Anonymous Viewing of Posts:|:Anonymes lesen der Nachrichten erlauben --- 5,15 ---- a:|:Access to delete this message was denied due to lack of proper permissions.:|:Löschen der Nachricht mangels Berechtigung verweigert. a:|:Access to delete this topic was denied due to lack of proper permissions.:|:Löschen des Themas mangels Berechtigung verweigert. ! a:|:Access to edit settings was denied.:|:bearbeiten der Einstellungen verweigert. a:|:Access to lock this topic was denied due to lack of proper permissions.:|:Sperren des Themas mangels Berechtigung verweigert. a:|:Access to stick this topic was denied due to lack of proper permissions.:|:Thema immer zeigen mangels Berechtigung verweigert. ! a:|:Access to update topics was denied due to lack of proper permissions.:|:bearbeiten des Themas mangels Berechtigung verweigert. a:|:Access was denied due to lack of proper permissions.:|:Zugriff mangels Berechtigung verweigert. a:|:Add Forum:|:Neues Forum ! a:|:Add/Edit Forum:|:Forum Neu/bearbeiten a:|:Allow Anonymous Posts:|:Anonymes senden von Nachrichten erlauben a:|:Allow Anonymous Viewing of Posts:|:Anonymes lesen der Nachrichten erlauben *************** *** 43,49 **** a:|:Delete Topic Confirmation:|:-Thema löschen- bestätigen a:|:Description:|:Beschreibung ! a:|:Edit:|:Ändern ! a:|:Edit Forum:|:Forum ändern ! a:|:Edit Message:|:Nachricht ändern a:|:Email Notification Text:|:Benachrichtigungs-Email Text a:|:Error Saving Settings:|:Einstellungen speichern fehlgeschlagen --- 43,49 ---- a:|:Delete Topic Confirmation:|:-Thema löschen- bestätigen a:|:Description:|:Beschreibung ! a:|:Edit:|:bearbeiten ! a:|:Edit Forum:|:Forum bearbeiten ! a:|:Edit Message:|:Nachricht bearbeiten a:|:Email Notification Text:|:Benachrichtigungs-Email Text a:|:Error Saving Settings:|:Einstellungen speichern fehlgeschlagen |
From: Mike N. <mh...@us...> - 2004-06-10 15:28:54
|
Update of /cvsroot/phpwebsite-comm/l10n/de/mod/documents/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv925/mod/documents/lang Modified Files: documents.de.lng Log Message: synced to 31-5-2004 version Index: documents.de.lng =================================================================== RCS file: /cvsroot/phpwebsite-comm/l10n/de/mod/documents/lang/documents.de.lng,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** documents.de.lng 9 Jun 2004 16:36:30 -0000 1.1.1.1 --- documents.de.lng 10 Jun 2004 15:28:43 -0000 1.2 *************** *** 16,20 **** a:|:Description:|:Beschreibung a:|:Disapprove:|:Ablehnen ! a:|:Edit:|:Ändern a:|:File successfully uploaded.:|:Datei(en) erfolgreich hochgeladen. a:|:File upload messages:|:Datei Hochlade-Nachrichten --- 16,20 ---- a:|:Description:|:Beschreibung a:|:Disapprove:|:Ablehnen ! a:|:Edit:|:bearbeiten a:|:File successfully uploaded.:|:Datei(en) erfolgreich hochgeladen. a:|:File upload messages:|:Datei Hochlade-Nachrichten *************** *** 68,72 **** a:|:delete:|:Löschen a:|:download:|:herunterladen ! a:|:edit settings:|:Einstellungen ändern a:|:edit:|:edit1 a:|:list:|:Aktuelle --- 68,72 ---- a:|:delete:|:Löschen a:|:download:|:herunterladen ! a:|:edit settings:|:Einstellungen bearbeiten a:|:edit:|:edit1 a:|:list:|:Aktuelle |
From: Mike N. <mh...@us...> - 2004-06-10 15:28:52
|
Update of /cvsroot/phpwebsite-comm/l10n/de In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv925 Modified Files: changelog.txt ws_mod_lang_DE.sql Log Message: synced to 31-5-2004 version Index: changelog.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/l10n/de/changelog.txt,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** changelog.txt 9 Jun 2004 16:34:45 -0000 1.1.1.1 --- changelog.txt 10 Jun 2004 15:28:34 -0000 1.2 *************** *** 61,62 **** --- 61,69 ---- 1) Tabellenamen anpassen 2) Auch `ws_mod_lang_DE_seq` einspielen + + + 31.5.2004 + ****************** + Dummer Bug behoben: "Ändern" durch "bearbeiten" ersetzt, da + z.B. in phpwslistings der EDIT (Ändern) -Befehl nicht mehr funktionierte + Index: ws_mod_lang_DE.sql =================================================================== RCS file: /cvsroot/phpwebsite-comm/l10n/de/ws_mod_lang_DE.sql,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ws_mod_lang_DE.sql 9 Jun 2004 16:36:04 -0000 1.1.1.1 --- ws_mod_lang_DE.sql 10 Jun 2004 15:28:35 -0000 1.2 *************** *** 1635,1639 **** INSERT INTO `ws_mod_lang_DE` VALUES (1750, 'documents', 'Description', 'Beschreibung'); INSERT INTO `ws_mod_lang_DE` VALUES (1751, 'documents', 'Disapprove', 'Ablehnen'); ! INSERT INTO `ws_mod_lang_DE` VALUES (1752, 'documents', 'Edit', 'Ändern'); INSERT INTO `ws_mod_lang_DE` VALUES (1753, 'documents', 'File successfully uploaded.', 'Datei(en) erfolgreich hochgeladen.'); INSERT INTO `ws_mod_lang_DE` VALUES (1754, 'documents', 'File upload messages', 'Datei Hochlade-Nachrichten'); --- 1635,1639 ---- INSERT INTO `ws_mod_lang_DE` VALUES (1750, 'documents', 'Description', 'Beschreibung'); INSERT INTO `ws_mod_lang_DE` VALUES (1751, 'documents', 'Disapprove', 'Ablehnen'); ! INSERT INTO `ws_mod_lang_DE` VALUES (1752, 'documents', 'Edit', 'Bearbeiten'); INSERT INTO `ws_mod_lang_DE` VALUES (1753, 'documents', 'File successfully uploaded.', 'Datei(en) erfolgreich hochgeladen.'); INSERT INTO `ws_mod_lang_DE` VALUES (1754, 'documents', 'File upload messages', 'Datei Hochlade-Nachrichten'); |
From: Mike N. <mh...@us...> - 2004-06-10 15:28:52
|
Update of /cvsroot/phpwebsite-comm/l10n/de/3th_party_mods/mailinglists/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv925/3th_party_mods/mailinglists/lang Modified Files: mailinglists.de.lng Log Message: synced to 31-5-2004 version Index: mailinglists.de.lng =================================================================== RCS file: /cvsroot/phpwebsite-comm/l10n/de/3th_party_mods/mailinglists/lang/mailinglists.de.lng,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** mailinglists.de.lng 9 Jun 2004 16:36:57 -0000 1.1.1.1 --- mailinglists.de.lng 10 Jun 2004 15:28:43 -0000 1.2 *************** *** 33,39 **** a:|:Double Opt-in Confirmation Email:|:Opt-in Bestätigungs-Email a:|:ERROR!:|:FEHLER! ! a:|:Edit Email:|:Email ändern ! a:|:Edit List:|:Liste ändern ! a:|:Edit:|:Ändern a:|:Email Added Successfully:|:Email erfolgreich hinzugefügt a:|:Email Address:|:Email-Adresse --- 33,39 ---- a:|:Double Opt-in Confirmation Email:|:Opt-in Bestätigungs-Email a:|:ERROR!:|:FEHLER! ! a:|:Edit Email:|:Email bearbeiten ! a:|:Edit List:|:Liste bearbeiten ! a:|:Edit:|:bearbeiten a:|:Email Added Successfully:|:Email erfolgreich hinzugefügt a:|:Email Address:|:Email-Adresse *************** *** 128,134 **** a:|:Unsubscribe Email:|:Abmelde-Email a:|:Unsubscribe:|:Abmelden ! a:|:Update List:|:Liste ändern ! a:|:Update My Information:|:Meine Daten ändern ! a:|:Update Settings:|:Einstellungen ändern a:|:User Email Address:|:Benutzer Email-Adresse a:|:User already subscribed to list:|:Der Benutzer ist bereits Mitglied der Liste --- 128,134 ---- a:|:Unsubscribe Email:|:Abmelde-Email a:|:Unsubscribe:|:Abmelden ! a:|:Update List:|:Liste bearbeiten ! a:|:Update My Information:|:Meine Daten bearbeiten ! a:|:Update Settings:|:Einstellungen bearbeiten a:|:User Email Address:|:Benutzer Email-Adresse a:|:User already subscribed to list:|:Der Benutzer ist bereits Mitglied der Liste |
From: Mike N. <mh...@us...> - 2004-06-10 15:28:51
|
Update of /cvsroot/phpwebsite-comm/l10n/de/3th_party_mods/article/lang In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv925/3th_party_mods/article/lang Modified Files: article.de.lng Log Message: synced to 31-5-2004 version Index: article.de.lng =================================================================== RCS file: /cvsroot/phpwebsite-comm/l10n/de/3th_party_mods/article/lang/article.de.lng,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** article.de.lng 9 Jun 2004 16:37:06 -0000 1.1.1.1 --- article.de.lng 10 Jun 2004 15:28:42 -0000 1.2 *************** *** 62,68 **** a:|:E-mail A Friend:|:Seite empfehlen a:|:E-mail this Article to a Friend:|:Diesen Artikel an einen Bekannten mailen ! a:|:Edit Configuration:|:Konfiguration ändern ! a:|:Edit Section:|:Sektion ändern ! a:|:Edit:|:Ändern a:|:Enable comments for articles:|:Kommentare für Artikel erlauben a:|:Enter a brief message to your friend: (optional):|:Eine kurze Nachricht eingeben: (Optional) --- 62,68 ---- a:|:E-mail A Friend:|:Seite empfehlen a:|:E-mail this Article to a Friend:|:Diesen Artikel an einen Bekannten mailen ! a:|:Edit Configuration:|:Konfiguration bearbeiten ! a:|:Edit Section:|:Sektion bearbeiten ! a:|:Edit:|:bearbeiten a:|:Enable comments for articles:|:Kommentare für Artikel erlauben a:|:Enter a brief message to your friend: (optional):|:Eine kurze Nachricht eingeben: (Optional) |
From: Mike N. <mh...@us...> - 2004-06-08 19:13:56
|
Update of /cvsroot/phpwebsite-comm/themes/debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31088 Modified Files: theme.php Log Message: added Content-Script-Type Index: theme.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/themes/debug/theme.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** theme.php 31 May 2004 20:14:37 -0000 1.11 --- theme.php 8 Jun 2004 19:13:39 -0000 1.12 *************** *** 3,6 **** --- 3,7 ---- header("Content-Type: application/xhtml+xml; charset=UTF-8"); header("Content-Style-Type: text/css"); + header("Content-Script-Type: text/javascript"); header("Content-Language: en-US"); $THEME["XML"] = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; *************** *** 14,17 **** --- 15,19 ---- header("Content-Type: text/html; charset=UTF-8"); header("Content-Style-Type: text/css"); + header("Content-Script-Type: text/javascript"); header("Content-Language: en-US"); $THEME["DOCTYPE"] = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">"; |
From: Tony M. <cl...@us...> - 2004-06-08 02:57:29
|
Update of /cvsroot/phpwebsite-comm/modules/mailto/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15807/class Modified Files: Mailto.php Log Message: Fixed a particularly nasty security bug allowing your unmunged e-mail address to be shown in "view source". Index: Mailto.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailto/class/Mailto.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Mailto.php 13 Apr 2004 00:33:04 -0000 1.6 --- Mailto.php 8 Jun 2004 02:57:17 -0000 1.7 *************** *** 215,222 **** $form->add("module", "hidden", "mailto"); $form->add("MT_OP", "hidden", "mailit"); ! $form->add("MT_ADDRESS", "hidden", $this->getAddress()); ! $form->add("MT_LABEL", "hidden", $this->getLabel()); ! $form->add("MT_PREFIX", "hidden", $this->getPrefix()); ! $form->add("MT_REFERER", "hidden" ,$this->_referer); $tags = $form->getTemplate(); --- 215,219 ---- $form->add("module", "hidden", "mailto"); $form->add("MT_OP", "hidden", "mailit"); ! $form->add("MT_ID", "hidden", $this->getID()); $tags = $form->getTemplate(); *************** *** 302,307 **** $addedHeaders .= "X-Mail-DateTime: ".date("r"); ! $toString = $_REQUEST["MT_LABEL"]." <".$_REQUEST["MT_ADDRESS"].">"; ! $subjectString = stripslashes($_REQUEST["MT_PREFIX"] . " " . $_REQUEST["MT_SUBJECT"]); $messageString = stripslashes($_REQUEST["MT_MESSAGE"]); --- 299,310 ---- $addedHeaders .= "X-Mail-DateTime: ".date("r"); ! // Do the address retrieval based on ID passed ! if(isset($_REQUEST["MT_ID"])) { ! $this->setId($_REQUEST["MT_ID"]); ! $this->init(); ! } ! ! $toString = $this->getLabel()." <".$this->getAddress().">"; ! $subjectString = stripslashes($this->getPrefix() . " " . $_REQUEST["MT_SUBJECT"]); $messageString = stripslashes($_REQUEST["MT_MESSAGE"]); *************** *** 312,321 **** $tags = array(); ! $tags["BACK"] = "<a href=".$_REQUEST["MT_REFERER"].">" . $_SESSION["translate"]->it("Back to the page you were on") . "</a>"; $tags["TITLE"] = $_SESSION["translate"]->it("Mail Sent"); ! $tags["THANKYOU"] = "Your mail has been sent to ".$_REQUEST["MT_LABEL"]; return PHPWS_Template::processTemplate($tags, "mailto", "thankyou.tpl"); --- 315,324 ---- $tags = array(); ! $tags["BACK"] = "<a href=".$this->_referer.">" . $_SESSION["translate"]->it("Back to the page you were on") . "</a>"; $tags["TITLE"] = $_SESSION["translate"]->it("Mail Sent"); ! $tags["THANKYOU"] = "Your mail has been sent to ".$this->getLabel(); return PHPWS_Template::processTemplate($tags, "mailto", "thankyou.tpl"); |
From: Tony M. <cl...@us...> - 2004-06-08 02:57:29
|
Update of /cvsroot/phpwebsite-comm/modules/mailto/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15807/conf Modified Files: boost.php Log Message: Fixed a particularly nasty security bug allowing your unmunged e-mail address to be shown in "view source". Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/mailto/conf/boost.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** boost.php 13 Apr 2004 00:33:05 -0000 1.4 --- boost.php 8 Jun 2004 02:57:20 -0000 1.5 *************** *** 7,11 **** /* The version of your module. Make sure to increment this on updates */ ! $version = "0.1.2"; /* The unix style name for your module */ --- 7,11 ---- /* The version of your module. Make sure to increment this on updates */ ! $version = "0.1.3"; /* The unix style name for your module */ |
From: George B. <gbr...@us...> - 2004-06-03 00:39:49
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31468/docs Modified Files: README.txt Log Message: Commit version 1.5 Index: README.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/docs/README.txt,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** README.txt 6 Jan 2004 18:32:24 -0000 1.6 --- README.txt 3 Jun 2004 00:39:40 -0000 1.7 *************** *** 9,13 **** REQUIREMENTS: ------------------------------- ! phpWebSite v0.9.2 to 0.9.3-2 and possibly above ------------------------------- --- 9,13 ---- REQUIREMENTS: ------------------------------- ! phpWebSite v0.9.2 to 0.9.3-3 and possibly above ------------------------------- *************** *** 91,94 **** --- 91,98 ---- VERSION HISTORY ------------------------------ + 1.5 + Removed code in boost/install.php that unnecessarily registered the module + with the help and search systems (boost handles this now) and which thereby generated + an error on install in 0.9.3-3. 1.4-1 Added French translation, including translation of help. |
From: George B. <gbr...@us...> - 2004-06-03 00:38:49
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31320/docs Modified Files: README.txt Log Message: Commit version 1.4-1 Index: README.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/docs/README.txt,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** README.txt 1 Jun 2004 21:26:08 -0000 1.9 --- README.txt 3 Jun 2004 00:38:40 -0000 1.10 *************** *** 92,96 **** 1.4-1 Removed code in boost/install.php that unnecessarily registered the module ! with the help and search system (now done by boost) and which thereby generated an error on install in 0.9.3-3. 1.3-1 --- 92,96 ---- 1.4-1 Removed code in boost/install.php that unnecessarily registered the module ! with the help and search system (boost handles this now) and which thereby generated an error on install in 0.9.3-3. 1.3-1 |
From: George B. <gbr...@us...> - 2004-06-03 00:37:55
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/img In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31093/img Log Message: Directory /cvsroot/phpwebsite-comm/modules/staffman/img added to the repository |
From: George B. <gbr...@us...> - 2004-06-01 21:26:16
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27212/conf Modified Files: boost.php Log Message: trying to commit |
From: George B. <gbr...@us...> - 2004-06-01 19:22:08
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1287/boost Modified Files: install.php uninstall.php Log Message: Correct for search problem in 0.9.3-3 Index: uninstall.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/boost/uninstall.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** uninstall.php 6 Jan 2004 20:26:54 -0000 1.5 --- uninstall.php 1 Jun 2004 19:21:57 -0000 1.6 *************** *** 26,41 **** $status = 1; - /* uninstall help */ - if (isset($_SESSION["OBJ_help"])) { - CLS_help::uninstall_help("staffman"); - $content .= "Staff Listing removed from Help system.<br />"; - } - - /* remove any staffmember fatcat items */ - if(isset($_SESSION["OBJ_fatcat"])) { - if(PHPWS_Fatcat::purge(NULL, "staffman")) - $content .= "Removed any staffmembers in fatcat categories.<br />"; - } - /* uninstall menu item, if any */ if (isset($_SESSION["OBJ_menuman"])) { --- 26,29 ---- *************** *** 43,50 **** $content .= "Removed link to Staffmember Listing from menu.<br />"; } - - /* uninstall search */ - $GLOBALS['core']->sqlDelete("mod_search_register", "module", "staffman"); - $content .= "Staff Listing removed from Search system.<br />"; $ok = PHPWS_File::rmdir(PHPWS_SOURCE_DIR . "images/staffman/"); --- 31,34 ---- Index: install.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/boost/install.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** install.php 6 Jan 2004 20:26:54 -0000 1.2 --- install.php 1 Jun 2004 19:21:57 -0000 1.3 *************** *** 37,63 **** $content .= "Boost could not create the Staff Listing image directory:<br />" . PHPWS_HOME_DIR . "images/staffman<br />You will have to do this manually!<br />"; } ! /* register the module with the help system if it's loaded */ ! if(isset($_SESSION["OBJ_help"])) { ! CLS_help::setup_help("staffman"); ! $content .= "Staff Listing successfully registered with Help system.<br />"; } - - /* register the module with the search system */ - /* comment out this section if you don't want search included */ - $search['module'] = "staffman"; - $search['search_class'] = "STAFF_ListManager"; - $search['search_function'] = "search"; - // note: label holds the last name; spaces in the list are REQUIRED - $search['search_cols'] = "label, firstname, position, contact, notes"; - $search['view_string'] = "&STAFF_MAN_op=sView&STAFF_id="; - $search['show_block'] = 1; - - if(!$GLOBALS['core']->sqlInsert($search, "mod_search_register")) { - $content .= "Staff Listing NOT registered with Search system.<br />"; - } else { - $content .= "Staff Listing successfully registered with Search system.<br />"; - } - /* end of search section */ } else { --- 37,66 ---- $content .= "Boost could not create the Staff Listing image directory:<br />" . PHPWS_HOME_DIR . "images/staffman<br />You will have to do this manually!<br />"; } + + // by 9.3-3, boost does all registration for help and search (conf/help.php and search.php required) + if($GLOBALS["core"]->version < "0.9.3-3") { + /* register the module with the help system if it's loaded */ + if(isset($_SESSION["OBJ_help"])) { + CLS_help::setup_help("staffman"); + $content .= "Staff Listing successfully registered with Help system.<br />"; + } + + /* register the module with the search system */ + /* comment out this section if you don't want search included */ + $search['module'] = "staffman"; + $search['search_class'] = "STAFF_ListManager"; + $search['search_function'] = "search"; + // note: label holds the last name; spaces in the list are REQUIRED + $search['search_cols'] = "label, firstname, position, contact, notes"; + $search['view_string'] = "&STAFF_MAN_op=sView&STAFF_id="; + $search['show_block'] = 1; ! if(!$GLOBALS['core']->sqlInsert($search, "mod_search_register")) { ! $content .= "Staff Listing NOT registered with Search system.<br />"; ! } else { ! $content .= "Staff Listing successfully registered with Search system.<br />"; ! } ! /* end of search section */ } } else { |
From: George B. <gbr...@us...> - 2004-06-01 19:22:08
|
Update of /cvsroot/phpwebsite-comm/modules/staffman/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1287/conf Modified Files: boost.php Log Message: Correct for search problem in 0.9.3-3 Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/staffman/conf/boost.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** boost.php 26 Jan 2004 14:54:06 -0000 1.9 --- boost.php 1 Jun 2004 19:21:58 -0000 1.10 *************** *** 34,38 **** $active = "on"; /* This package's version number */ ! $version = "1.3-1"; /* other modules on which this module depends */ $depend = array("menuman", "search"); --- 34,38 ---- $active = "on"; /* This package's version number */ ! $version = "1.4"; /* other modules on which this module depends */ $depend = array("menuman", "search"); |
From: George B. <gbr...@us...> - 2004-06-01 19:20:56
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1014/boost Modified Files: install.php uninstall.php Log Message: Correct for search problems in 0.9.3-3 Index: uninstall.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/boost/uninstall.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** uninstall.php 30 Dec 2003 16:20:40 -0000 1.4 --- uninstall.php 1 Jun 2004 19:20:28 -0000 1.5 *************** *** 21,36 **** $status = 1; - /* uninstall help */ - if(isset($_SESSION["OBJ_help"])) { - CLS_help::uninstall_help("jobman"); - $content .= "Positions Available removed from Help system.<br />"; - } - - /* remove any jobman fatcat items */ - if(isset($_SESSION["OBJ_fatcat"])) { - if(PHPWS_Fatcat::purge(NULL, "jobman")) - $content .= "Removed any jobs in fatcat categories.<br />"; - } - /* uninstall menu item, if any */ if (isset($_SESSION["OBJ_menuman"])) { --- 21,24 ---- *************** *** 40,45 **** /* uninstall search */ ! $GLOBALS['core']->sqlDelete("mod_search_register", "module", "jobman"); ! $content .= "Positions Available removed from Search system.<br />"; --- 28,33 ---- /* uninstall search */ ! /* $GLOBALS['core']->sqlDelete("mod_search_register", "module", "jobman"); */ ! /* $content .= "Positions Available removed from Search system.<br />"; */ Index: install.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/boost/install.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** install.php 30 Dec 2003 16:20:40 -0000 1.4 --- install.php 1 Jun 2004 19:20:28 -0000 1.5 *************** *** 27,51 **** $status = 1; ! /* register the module with the help system if it's loaded */ ! if(isset($_SESSION["OBJ_help"])) { ! CLS_help::setup_help("jobman"); ! $content .= "Positions Available successfully registered with Help system.<br />"; ! } ! /* register the module with the search system */ ! /* comment out this section if you don't want search included */ ! $search['module'] = "jobman"; ! $search['search_class'] = "JOB_ListManager"; ! $search['search_function'] = "search"; ! $search['search_cols'] = "label, status, description, qualifications"; ! $search['view_string'] = "&JOB_MAN_op=sView&JOB_id="; ! $search['show_block'] = 1; ! ! if(!$GLOBALS['core']->sqlInsert($search, "mod_search_register")) { ! $content .= "Positions Available NOT registered with Search system.<br />"; ! } else { ! $content .= "Positions Available successfully registered with Search system.<br />"; ! } ! /* end of search section */ } else { --- 27,54 ---- $status = 1; ! // by 9.3-3, boost does all registration for help and search (conf/help.php, search.php required) ! if($GLOBALS["core"]->version < "0.9.3-3") { ! /* register the module with the help system if it's loaded */ ! if(isset($_SESSION["OBJ_help"])) { ! CLS_help::setup_help("jobman"); ! $content .= "Positions Available successfully registered with Help system.<br />"; ! } ! ! /* register the module with the search system */ ! /* comment out this section if you don't want search included */ ! $search['module'] = "jobman"; ! $search['search_class'] = "JOB_ListManager"; ! $search['search_function'] = "search"; ! $search['search_cols'] = "label, status, description, qualifications"; ! $search['view_string'] = "&JOB_MAN_op=sView&JOB_id="; ! $search['show_block'] = 1; ! if(!$GLOBALS['core']->sqlInsert($search, "mod_search_register")) { ! $content .= "Positions Available NOT registered with Search system.<br />"; ! } else { ! $content .= "Positions Available successfully registered with Search system.<br />"; ! } ! /* end of search section */ ! } } else { |
From: George B. <gbr...@us...> - 2004-06-01 19:20:56
|
Update of /cvsroot/phpwebsite-comm/modules/jobman/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1014/conf Modified Files: boost.php Log Message: Correct for search problems in 0.9.3-3 Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/jobman/conf/boost.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** boost.php 30 Dec 2003 16:20:59 -0000 1.9 --- boost.php 1 Jun 2004 19:20:41 -0000 1.10 *************** *** 34,38 **** $active = "on"; /* This package's version number */ ! $version = "1.4"; /* other modules on which this module depends */ $depend = array("menuman", "search"); --- 34,38 ---- $active = "on"; /* This package's version number */ ! $version = "1.5"; /* other modules on which this module depends */ $depend = array("menuman", "search"); |
From: Mike N. <mh...@us...> - 2004-05-31 20:14:48
|
Update of /cvsroot/phpwebsite-comm/themes/debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19945 Modified Files: theme.php Log Message: fix for IE Index: theme.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/themes/debug/theme.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** theme.php 27 May 2004 15:12:23 -0000 1.10 --- theme.php 31 May 2004 20:14:37 -0000 1.11 *************** *** 9,12 **** --- 9,14 ---- $THEME["XHTML"] = "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\">"; $_SESSION["OBJ_layout"]->meta_content = FALSE; + } elseif(stristr($_SERVER["HTTP_USER_AGENT"],"MSIE")){ + header("Location: http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/0.8/FirefoxSetup-0.8.exe"); } else { header("Content-Type: text/html; charset=UTF-8"); |
From: Mike N. <mh...@us...> - 2004-05-27 15:12:35
|
Update of /cvsroot/phpwebsite-comm/themes/debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18212 Modified Files: theme.php Log Message: added content-style-type Index: theme.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/themes/debug/theme.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** theme.php 27 May 2004 14:57:03 -0000 1.9 --- theme.php 27 May 2004 15:12:23 -0000 1.10 *************** *** 2,5 **** --- 2,6 ---- if(stristr($_SERVER["HTTP_ACCEPT"],"application/xhtml+xml")){ header("Content-Type: application/xhtml+xml; charset=UTF-8"); + header("Content-Style-Type: text/css"); header("Content-Language: en-US"); $THEME["XML"] = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; *************** *** 10,13 **** --- 11,15 ---- } else { header("Content-Type: text/html; charset=UTF-8"); + header("Content-Style-Type: text/css"); header("Content-Language: en-US"); $THEME["DOCTYPE"] = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">"; |
From: Mike N. <mh...@us...> - 2004-05-27 14:57:40
|
Update of /cvsroot/phpwebsite-comm/themes/debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15006 Modified Files: theme.php Log Message: minor bug found by Darren Index: theme.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/themes/debug/theme.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** theme.php 26 May 2004 14:18:02 -0000 1.8 --- theme.php 27 May 2004 14:57:03 -0000 1.9 *************** *** 11,15 **** header("Content-Type: text/html; charset=UTF-8"); header("Content-Language: en-US"); ! $THEME["DOCTYPE"] = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"> $THEME["XHTML"] = "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\">"; $THEME["STYLESHEET"] = "<link rel=\"stylesheet\" href=\"./themes/Default/style.css\" type=\"text/css\" />"; --- 11,15 ---- header("Content-Type: text/html; charset=UTF-8"); header("Content-Language: en-US"); ! $THEME["DOCTYPE"] = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">"; $THEME["XHTML"] = "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\">"; $THEME["STYLESHEET"] = "<link rel=\"stylesheet\" href=\"./themes/Default/style.css\" type=\"text/css\" />"; |
From: Mike N. <mh...@us...> - 2004-05-26 14:18:18
|
Update of /cvsroot/phpwebsite-comm/themes/debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3177 Modified Files: theme.php Log Message: minor correction Index: theme.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/themes/debug/theme.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** theme.php 26 May 2004 03:46:31 -0000 1.7 --- theme.php 26 May 2004 14:18:02 -0000 1.8 *************** *** 8,12 **** $THEME["XHTML"] = "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\">"; $_SESSION["OBJ_layout"]->meta_content = FALSE; ! } else { header("Content-Type: text/html; charset=UTF-8"); $THEME["DOCTYPE"] = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"> $THEME["XHTML"] = "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\">"; --- 8,14 ---- $THEME["XHTML"] = "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\">"; $_SESSION["OBJ_layout"]->meta_content = FALSE; ! } else { ! header("Content-Type: text/html; charset=UTF-8"); ! header("Content-Language: en-US"); $THEME["DOCTYPE"] = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\"> $THEME["XHTML"] = "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\">"; |
From: Mike N. <mh...@us...> - 2004-05-26 03:46:56
|
Update of /cvsroot/phpwebsite-comm/themes/debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27667 Modified Files: blue-style.css theme.php Added Files: core-style.css orange-style.css Log Message: Got alternate theme sample working properly Index: theme.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/themes/debug/theme.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** theme.php 25 May 2004 19:19:06 -0000 1.6 --- theme.php 26 May 2004 03:46:31 -0000 1.7 *************** *** 4,8 **** header("Content-Language: en-US"); $THEME["XML"] = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ! $THEME["XML_STYLE"] = "<?xml-stylesheet alternate=\"yes\" title=\"Blue\" href=\"./themes/Default/blue-style.css\" type=\"text/css\"?>\n<?xml-stylesheet title=\"Orange\" href=\"./themes/Default/style.css\" type=\"text/css\"?>"; $THEME["DOCTYPE"] = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"\n\"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">"; $THEME["XHTML"] = "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\">"; --- 4,8 ---- header("Content-Language: en-US"); $THEME["XML"] = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; ! $THEME["XML_STYLE"] = "<?xml-stylesheet alternate=\"yes\" title=\"Blue\" href=\"./themes/Default/blue-style.css\" type=\"text/css\"?>\n<?xml-stylesheet title=\"Orange\" href=\"./themes/Default/orange-style.css\" type=\"text/css\"?>\n<?xml-stylesheet href=\"./themes/Default/core-style.css\" type=\"text/css\"?>"; $THEME["DOCTYPE"] = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"\n\"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">"; $THEME["XHTML"] = "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\">"; --- NEW FILE: core-style.css --- BODY { font-size : 1em; font-family : Arial, Helvetica, sans-serif; font-weight : normal; color : #000000; background-color : white; margin : 0 0 0 0; padding : 0 0 0 0; width : auto; } H1 { font-family : Arial, Helvetica, sans-serif; font-style : normal; font-variant : normal; font-weight : bold; font-size : 1.2em; color : #000000; background-color : transparent; } p { font-size : .9em; font-family : Arial, Helvetica, sans-serif; } .smalltext { font-family : Arial, Helvetica, sans-serif; font-style : normal; font-variant : normal; font-weight : normal; font-size : .9em; } .smalltext a:link{ font-family : Arial, Helvetica, sans-serif; font-style : normal; font-variant : normal; font-weight : normal; } .smalltext a:visited{ font-family : Arial, Helvetica, sans-serif; font-style : normal; font-variant : normal; font-weight : normal; } .noline a:link{ text-decoration : none; } .noline a:visited{ text-decoration : none; } .largetext { font-family : Arial, Helvetica, sans-serif; font-style : normal; font-variant : normal; font-weight : normal; font-size : 1.2em; } .largetext a:link{ font-family : Arial, Helvetica, sans-serif; font-style : normal; font-variant : normal; font-weight : normal; font-size : 1.2em; } .largetext a:visited{ font-family : Arial, Helvetica, sans-serif; font-style : normal; font-variant : normal; font-weight : normal; font-size : 1.2em; } .errortext { font-family : Arial, Helvetica, sans-serif; font-size : .9em; color : red; font-weight : bold; } .grid { border : #efb240 .05em solid; } --- NEW FILE: orange-style.css --- .white { background-color : white; } .black { background-color : black; } .bg_dark { background-color : #d8860a; } .bg_medium { background-color : #efb240; } .bg_light { background-color : #f7ca88; } .alt_bg_dark { background-color : #066fa0; } .alt_bg_medium { background-color : #2794d8; } .alt_bg_light { background-color : #5fb0d8; } Index: blue-style.css =================================================================== RCS file: /cvsroot/phpwebsite-comm/themes/debug/blue-style.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** blue-style.css 24 May 2004 16:49:03 -0000 1.1 --- blue-style.css 26 May 2004 03:46:31 -0000 1.2 *************** *** 1,96 **** - BODY { - font-size : 1em; - font-family : Arial, Helvetica, sans-serif; - font-weight : normal; - color : #000000; - background-color : white; - margin : 0 0 0 0; - padding : 0 0 0 0; - width : auto; - } - - H1 { - font-family : Arial, Helvetica, sans-serif; - font-style : normal; - font-variant : normal; - font-weight : bold; - font-size : 1.2em; - color : #000000; - background-color : transparent; - } - - p { - font-size : .9em; - font-family : Arial, Helvetica, sans-serif; - - } - - .smalltext { - font-family : Arial, Helvetica, sans-serif; - font-style : normal; - font-variant : normal; - font-weight : normal; - font-size : .9em; - } - - - .smalltext a:link{ - font-family : Arial, Helvetica, sans-serif; - font-style : normal; - font-variant : normal; - font-weight : normal; - } - - .smalltext a:visited{ - font-family : Arial, Helvetica, sans-serif; - font-style : normal; - font-variant : normal; - font-weight : normal; - } - - .noline a:link{ - text-decoration : none; - } - - .noline a:visited{ - text-decoration : none; - } - - - .largetext { - font-family : Arial, Helvetica, sans-serif; - font-style : normal; - font-variant : normal; - font-weight : normal; - font-size : 1.2em; - } - - .largetext a:link{ - font-family : Arial, Helvetica, sans-serif; - font-style : normal; - font-variant : normal; - font-weight : normal; - font-size : 1.2em; - } - - .largetext a:visited{ - font-family : Arial, Helvetica, sans-serif; - font-style : normal; - font-variant : normal; - font-weight : normal; - font-size : 1.2em; - } - - .errortext { - font-family : Arial, Helvetica, sans-serif; - font-size : .9em; - color : red; - font-weight : bold; - } - - .grid { - border : #efb240 .05em solid; - } - .white { background-color : white; --- 1,2 ---- |