You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(47) |
Aug
(73) |
Sep
(104) |
Oct
(55) |
Nov
|
Dec
|
---|
From: alex <bin...@li...> - 2001-08-07 18:10:29
|
alex Tue Aug 7 11:10:23 2001 EDT Modified files: /r2 INSTALL.WIN32 Log: Ronald TAO's Win32 Install instructions, synched from sourceforge. Index: r2/INSTALL.WIN32 diff -u r2/INSTALL.WIN32:1.4 r2/INSTALL.WIN32:1.5 --- r2/INSTALL.WIN32:1.4 Fri Jul 13 12:16:51 2001 +++ r2/INSTALL.WIN32 Tue Aug 7 11:10:23 2001 @@ -1,49 +1,47 @@ binarycloud make/r2 Win32 quick tutorial ------------------------------------------------------------------------------- -1. go to http://sources.redhat.com/cygwin/ install the latest cygwin -package, +1. go to http://sources.redhat.com/cygwin/ install the latest cygwin package, up till now, I still not sure which package is a must to install, so try - hard to install all packages, make sure you set the default TEXT FILE -TYPE + hard to install all packages, make sure you set the default TEXT FILE TYPE to UNIX from the installation tools, sorry :) -2. get the latest win32 version of PHP for http://www.php.net/, don't ask me +2. get the latest win32 version PHP from http://www.php.net/, don't ask me how to install PHP, ok... 3. get the latest binarycloud r2 package, there are two ways to do so, first you can download the tarball here, http://www.binarycloud.com/download/, and unpack it in the cygwin environment, DO NOT UNPACK IT IN NATIVE WIN32 - ENVIRONMENT, or checkout from the latest CVS sourse tree. (I forgot the -a/c - and password for anonymous access, you ask alex, ok...) - -4. set the environment variable BCHOME to c:/path/to/binaryclound (yes, is -the - Windows sytle path, not the UNIX one, check your own), try to type these -in - cygwin shell. + ENVIRONMENT, or checkout from the latest CVS sourse tree, in your cygwin + shell type the following commands, + cvs -d:pserver:ano...@cv...: + /cvsroot/binarycloud login (type it in the same line, use anonymous as + password) + cvs -z3 -d:pserver:ano...@cv...: + /cvsroot/binarycloud co r2 (type it in the same line) + +4. set the environment variable BCHOME to c:/path/to/binaryclound (yes, is the + Windows sytle path with driver letter, not the UNIX one, check your own), + try to type these in cygwin shell. export BCHOME='c:/path/to/binarycloud' Then try the following to see if it is ok or not. echo $BCHOME + it should print out the path you have just set, like + c:/path/to/binarycloud -You need a text editor you familiar with for the following steps, no metter -it +You need a text editor you familiar with for the following steps, no metter it is vi in cygwin or UltraEdit in Windows, but make sure it can work with UNIX type EOL, otherwise you will find all the files are very messy. -5. use a editor to open $BCHOME/base/utils/installcode.sh, add the following +5. use an editor to open $BCHOME/base/utils/installcode.sh, add the following line to the very begining of the file (the first line, ok...). #!/bin/sh (yes, is UNIX style path this time) -6. use a editor to open $BCHOME/base/utils/processprepend.php and -xml2php.php - you can see these in the first line, #!/usr/local/php4/bin/php -q, of -both +6. use an editor to open $BCHOME/base/utils/processprepend.php and xml2php.php + you can see these in the first line, #!/usr/local/php4/bin/php -q, of both files, simply replace it by the following line. #!c:/path/to/php/php.exe -q (yes, is Windows sytle again) -7. things done, go back to $BCHOME, and type make, everythins should be -fine. +7. things done, go back to $BCHOME, and type make, everythings should be fine. ------------------------------------------------------------------------------- Please send your comment to ron...@ho.... have fun :) |
From: alex <bin...@li...> - 2001-08-01 22:49:56
|
alex Wed Aug 1 15:49:50 2001 EDT Modified files: /r2/binarycloud/base/core Debug.php Page.php Log: Couple post mods to Page and Debug for caching Index: r2/binarycloud/base/core/Debug.php diff -u r2/binarycloud/base/core/Debug.php:1.5 r2/binarycloud/base/core/Debug.php:1.6 --- r2/binarycloud/base/core/Debug.php:1.5 Wed Aug 1 14:47:53 2001 +++ r2/binarycloud/base/core/Debug.php Wed Aug 1 15:49:50 2001 @@ -1,7 +1,7 @@ <?php // Header {{{ /******************************************************************************* - ** -File $Id: Debug.php,v 1.5 2001/08/01 21:47:53 alex Exp $ + ** -File $Id: Debug.php,v 1.6 2001/08/01 22:49:50 alex Exp $ ** -License LGPL (http://www.gnu.org/copyleft/lesser.html) ** -Copyright 2001, The Turing Studio, Inc. ** -Author alex black, en...@tu... @@ -689,7 +689,11 @@ function _output_globals() { $this->_output_header('GLOBALS Array'); - print_r($GLOBALS); + ob_start(); + print_r($GLOBALS); + $output = ob_get_contents(); + ob_end_clean(); + echo htmlspecialchars($output, ENT_QUOTES); } // }}} Index: r2/binarycloud/base/core/Page.php diff -u r2/binarycloud/base/core/Page.php:1.12 r2/binarycloud/base/core/Page.php:1.13 --- r2/binarycloud/base/core/Page.php:1.12 Wed Aug 1 14:47:53 2001 +++ r2/binarycloud/base/core/Page.php Wed Aug 1 15:49:50 2001 @@ -1,7 +1,7 @@ <?php // Header {{{ /* - * -File $Id: Page.php,v 1.12 2001/08/01 21:47:53 alex Exp $ + * -File $Id: Page.php,v 1.13 2001/08/01 22:49:50 alex Exp $ * -License LGPL (http://www.gnu.org/copyleft/lesser.html) * -Copyright 2001, The Turing Studio, Inc. * -Authors alex black, en...@tu... @@ -201,7 +201,7 @@ echo join('', $this->output); } - if ($this->cache['is_valid'] == false) { + if ($this->caching == true) { $this->_cache_output('pages'); } } |
alex Wed Aug 1 14:47:54 2001 EDT Added files: /r2/binarycloud/user/htdocs cache_test.php Modified files: /r2/binarycloud/base/core Debug.php Page.php /r2/binarycloud/base/init Init.php /r2/binarycloud/user Makefile /r2/binarycloud/user/htdocs Makefile cache.php index.php Log: Page Output Caching |
From: alex <bin...@li...> - 2001-08-01 20:09:18
|
alex Wed Aug 1 13:09:12 2001 EDT Added files: /r2/binarycloud/user/cache README.txt Removed files: /r2/binarycloud/user/cache README Log: filename change for make Index: r2/binarycloud/user/cache/README.txt +++ r2/binarycloud/user/cache/README.txt This is the file strage directory for Cache. |
From: alex <bin...@li...> - 2001-08-01 19:51:36
|
alex Wed Aug 1 12:51:31 2001 EDT Removed files: /r2/binarycloud/ext/pear cvsman.txt Log: oops, included a quick cvs manual dump |
From: alex <bin...@li...> - 2001-08-01 19:39:26
|
alex Wed Aug 1 12:39:21 2001 EDT Added files: /r2/binarycloud/ext/pear/build shtool Log: completing pear refresh |
alex Wed Aug 1 12:36:32 2001 EDT Removed files: /r2/binarycloud/ext/pear CMD.php CODING_STANDARDS Cache.php Cache.xml DB.php HTTP.php ITX.xml Log.php Mail.php Makefile.in PEAR.php README TODO catalog install-pear.txt package.dtd pear.m4 /r2/binarycloud/ext/pear/Benchmark Iterate.php Timer.php /r2/binarycloud/ext/pear/Cache Container.php Error.php Function.php Graphics.php Output.php OutputCompression.php URL.php /r2/binarycloud/ext/pear/Cache/Container db.php dbx.php file.php phplib.php shm.php /r2/binarycloud/ext/pear/Console Getopt.php /r2/binarycloud/ext/pear/Crypt CBC.php HCEMD5.php /r2/binarycloud/ext/pear/DB MAINTAINERS STATUS TESTERS common.php fbsql.php ibase.php ifx.php msql.php mssql.php mysql.php oci8.php odbc.php pgsql.php storage.php sybase.php /r2/binarycloud/ext/pear/DB/tests db_error.phpt db_error2.phpt db_factory.phpt db_ismanip.phpt db_parsedsn.phpt errors.inc fetchmodes.inc fetchrow.inc numcols.inc numrows.inc prepexe.inc sequences.inc simplequery.inc tableinfo.inc transactions.inc /r2/binarycloud/ext/pear/DB/tests/ibase 001.phpt 002.phpt 003.phpt 004.phpt 006.phpt 010.phpt connect.inc mktable.inc skipif.inc /r2/binarycloud/ext/pear/DB/tests/mysql 001.phpt 002.phpt 003.phpt 004.phpt 005.phpt 006.phpt 007.phpt 008.phpt 009.phpt 010.phpt 012.phpt README connect.inc mktable.inc skipif.inc /r2/binarycloud/ext/pear/DB/tests/oci8 001.phpt 002.phpt 003.phpt 004.phpt 005.phpt 006.phpt 007.phpt 008.phpt 009.phpt 010.phpt connect.inc mktable.inc skipif.inc /r2/binarycloud/ext/pear/DB/tests/odbc 001.phpt 002.phpt 003.phpt 004.phpt 006.phpt 007.phpt 010.phpt connect.inc dsn.inc mktable.inc skipif.inc /r2/binarycloud/ext/pear/DB/tests/pgsql 001.phpt 002.phpt 003.phpt 004.phpt 005.phpt 006.phpt 007.phpt 008.phpt 009.phpt 010.phpt 011.phpt README connect.inc mktable.inc skipif.inc /r2/binarycloud/ext/pear/Date Calc.php Human.php /r2/binarycloud/ext/pear/Experimental README /r2/binarycloud/ext/pear/Experimental/HTML Menu_Browser.php /r2/binarycloud/ext/pear/Experimental/Image color_helper.php gbutton.php gtext.php /r2/binarycloud/ext/pear/Experimental/XML Xml2obj.php fo2pdf.php sql2xml.php sql2xml_ext.php /r2/binarycloud/ext/pear/File Find.php Passwd.php SearchReplace.php /r2/binarycloud/ext/pear/HTML Common.php Form.php IT.php ITX.php IT_Error.php Menu.php Page.php Processor.php Select.php Table.php /r2/binarycloud/ext/pear/HTTP Compress.php /r2/binarycloud/ext/pear/Image Remote.php /r2/binarycloud/ext/pear/Log composite.php file.php mcal.php observer.php sql.php syslog.php /r2/binarycloud/ext/pear/Mail RFC822.php sendmail.php smtp.php /r2/binarycloud/ext/pear/Math Fraction.php Util.php /r2/binarycloud/ext/pear/Net Curl.php Dig.php SMTP.php Socket.php /r2/binarycloud/ext/pear/Numbers Roman.php /r2/binarycloud/ext/pear/PEAR Common.php Installer.php Packager.php Uploader.php /r2/binarycloud/ext/pear/Payment Verisign.php /r2/binarycloud/ext/pear/Schedule At.php /r2/binarycloud/ext/pear/XML Parser.php RPC.php Render.php /r2/binarycloud/ext/pear/XML/RPC Server.php /r2/binarycloud/ext/pear/XML/tests 001.phpt 002.phpt 003.phpt 004.phpt 005.phpt parser1.r parser1.t parser2.i parser2.r parser2.t parser3.r parser3.t parsererror.r parsererror.t test.xml /r2/binarycloud/ext/pear/scripts pear.in php-config.in phpextdist phpize.in /r2/binarycloud/ext/pear/tests PEAR.r PEAR.t PEAR_Error.r PEAR_Error.t pear1.phpt pear_error.phpt pear_error2.phpt pear_error3.phpt php.ini Log: refresh of pear |
From: alex <bin...@li...> - 2001-07-28 23:40:51
|
alex Sat Jul 28 16:40:45 2001 EDT Added files: /r2/binarycloud/user/cache README Log: Added a readme file for the user cache directory. |
From: alex <bin...@li...> - 2001-07-28 17:55:57
|
alex Sat Jul 28 10:55:52 2001 EDT Modified files: /r2/binarycloud/base/core Request.php Log: Small header mod. Index: r2/binarycloud/base/core/Request.php diff -u r2/binarycloud/base/core/Request.php:1.3 r2/binarycloud/base/core/Request.php:1.4 --- r2/binarycloud/base/core/Request.php:1.3 Mon Jul 2 12:58:53 2001 +++ r2/binarycloud/base/core/Request.php Sat Jul 28 10:55:52 2001 @@ -1,7 +1,7 @@ <?php // Header {{{ /******************************************************************************* - ** -File $Id: Request.php,v 1.3 2001/07/02 19:58:53 alex Exp $ + ** -File $Id: Request.php,v 1.4 2001/07/28 17:55:52 alex Exp $ ** -License LGPL (http://www.gnu.org/copyleft/lesser.html) ** -Copyright 2001 Thyrell ** -Author Andreas Aderhold, <a.a...@th...> @@ -29,7 +29,7 @@ * - fix decoding of n depth arrays (currently supportet n=1) * * @author Andreas Aderhold, a.a...@th... - * @version $Id: Request.php,v 1.3 2001/07/02 19:58:53 alex Exp $ + * @version $Id: Request.php,v 1.4 2001/07/28 17:55:52 alex Exp $ */ class Request { |
From: alex <bin...@li...> - 2001-07-28 17:54:23
|
alex Sat Jul 28 10:54:17 2001 EDT Added files: /r2/binarycloud/base/core Cache.php Log: shell of the Cache class. Index: r2/binarycloud/base/core/Cache.php +++ r2/binarycloud/base/core/Cache.php <?php // Header {{{ /** ** -File $Id: Cache.php,v 1.1 2001/07/28 17:54:17 alex Exp $ ** -License LGPL (http://www.gnu.org/copyleft/lesser.html) ** -Copyright 2001, The Turing Studio, Inc. ** -Author alex black, en...@tu... **/ $PACKAGE='binarycloud.core'; // }}} // {{{ Cache /** * This is the bc Cache class, it serves as a wrapper for the PEAR * Cache class. This class captures page output, and allows for quick * retrieval based on request_uri. * * @author alex black, en...@tu... */ class Cache { // {{{ CaptureOutput /** * This method checks the contents of the output buffer when it * is called, and stores it using PEAR Cache. * * @author alex black, en...@tu... * @access public */ function CaptureOutput() { } // }}} } // }}} ?> |
From: alex <bin...@li...> - 2001-07-28 17:32:34
|
alex Sat Jul 28 10:32:28 2001 EDT Modified files: /r2/binarycloud/base/init Init.php Log: Added _load_cache method to Init, Cache class is coming. Index: r2/binarycloud/base/init/Init.php diff -u r2/binarycloud/base/init/Init.php:1.34 r2/binarycloud/base/init/Init.php:1.35 --- r2/binarycloud/base/init/Init.php:1.34 Wed Jul 25 13:58:58 2001 +++ r2/binarycloud/base/init/Init.php Sat Jul 28 10:32:28 2001 @@ -1,7 +1,7 @@ <?php // Header {{{ /******************************************************************************* - ** -File $Id: Init.php,v 1.34 2001/07/25 20:58:58 alex Exp $ + ** -File $Id: Init.php,v 1.35 2001/07/28 17:32:28 alex Exp $ ** -License LGPL (http://www.gnu.org/copyleft/lesser.html) ** -Copyright 2001, The Turing Studio, Inc. ** -Author alex black, en...@tu... @@ -70,6 +70,7 @@ $this->_load_pear(); $this->_load_auth(); $this->_load_perm(); +// $this->_load_cache(); $this->_load_page(); } @@ -305,6 +306,34 @@ global $Perm; $Perm = new Perm(); $Perm->Check_Permissions(); + return true; + } else { + return false; + } + } + + + // }}} + // {{{ _load_cache + + /** + * If $gPageDef['init']['cache'] is set, this method imports + * the Cache class, and passes the options contained in + * $gPageDef['init']['cache'] to it. + * + * @author alex black, en...@tu... + * @return true if Cache is loaded, false if it is not + * @access private + */ + + function _load_cache() { + global $gPageDef; + + if (isset($gPageDef['init']['cache'])) { + import('binarycloud.core.Cache'); + global $Cache; + $Cache = new Cache(); + $Cache->options=$gPageDef['init']['cache']; return true; } else { return false; |
From: alex <bin...@li...> - 2001-07-28 17:24:50
|
alex Sat Jul 28 10:24:44 2001 EDT Added files: /r2/binarycloud/user/htdocs cache.php Log: Adding Cache test Page. Index: r2/binarycloud/user/htdocs/cache.php +++ r2/binarycloud/user/htdocs/cache.php <?php // {{{ Header /* * -File $Id: cache.php,v 1.1 2001/07/28 17:24:44 alex Exp $ * -License LGPL (http://www.gnu.org/copyleft/lesser.html) * -Copyright 2001, The Turing Studio, Inc. * -Author alex black, en...@tu... */ // }}} include_once('./prepend.php'); import('binarycloud.init.Init'); // ripped from /path/to/binarycloud/user/htdocs/index.xml $gPageDef = array( 'title' => "binarycloud page title", 'init' => array( 'ini' => true, 'auth' => false, 'perm' => false, 'sess' => true, 'lang' => true, 'cache' => array( 'ttl' => '220', 'var' => 'moo' ) ), 'templates' => array( 'default' => array( 'name' => "example", 'package' => "html.masters", 'type' => "html", ), 'other' => array( 'name' => "other", 'package' => "html.masters", 'type' => "html", ) ), 'modules' => array( 'content' => array( 'layout' => array( 'name' => "example", 'package' => "html.layouts", ), 'load' => array( array( 'id' => 'mooboo', 'name' => "OtherWorld", 'package' => "hello_world", 'load_order' => "3" ), array( 'id' => 'some_other_unique_name', 'name' => "SetLangExample", 'package' => "set_lang_example", 'load_order' => "6" ), array( 'name' => "HelloWorld", 'package' => "hello_world", 'load_order' => "1", 'params' => array ( 'example' => "this is an option value", 'another' => 1 ), ), array( 'name' => "HelloWorld", 'package' => "hello_world", 'load_order' => "5" ), array( 'name' => "HelloWorld", 'package' => "hello_world", 'load_order' => "4" ), array( 'name' => "HelloWorld", 'package' => "hello_world", 'load_order' => "2" ), ), ), 'left' => array( 'load' => array( array( 'name' => "HelloWorld", 'package' => "hello_world", 'load_order' => "2" ), array( 'name' => "HelloWorld", 'package' => "hello_world", 'load_order' => "1" ), ), ), ), ); $Init = new Init(); $Init->Startup(); $Page->BuildPage(); $Init->Shutdown(); // debug tests //$Debug->CaptureMessage('Test message', 'This is coming from the index.php page.'); // output debug $Debug->Output('script_time'); //$Debug->Output('all_classes'); //$Debug->Output('core_classes'); //$Debug->Output('messages'); //$Debug->Output('system_constants'); //$Debug->Output('user_constants'); //$Debug->Output('vars'); //$Debug->Output('server_env'); $Debug->Output('globals'); //$Debug->Output('all'); ?> |
From: alex <bin...@li...> - 2001-07-28 01:00:38
|
alex Fri Jul 27 18:00:33 2001 EDT Added files: /r2/binarycloud/docs/ref languages.txt Log: ref/ dir for useful external docs. Index: r2/binarycloud/docs/ref/languages.txt +++ r2/binarycloud/docs/ref/languages.txt Fairly complete lang code/charset list from the w3c. (tab-delimited) Afrikaans af iso-8859-1 Albanian sq iso-8859-1 Arabic ar iso-8859-6 Basque eu iso-8859-1 Bulgarian bg iso-8859-5 Byelorussian be iso-8859-5 Catalan ca iso-8859-1 Croatian hr iso-8859-2 Czech cs iso-8859-2 Danish da iso-8859-1 Dutch nl iso-8859-1 English en iso-8859-1 Estonian et iso-8859-15 Faroese fo iso-8859-1 Finnish fi iso-8859-1 French fr iso-8859-1 Galician gl iso-8859-1 German de iso-8859-1 Greek el iso-8859-7 Hebrew iw iso-8859-8 Hungarian hu iso-8859-2 Icelandic is iso-8859-1 Irish ga iso-8859-1 Italian it iso-8859-1 Japanese ja shift_jis, iso-2022-jp, euc-jp Latvian lv iso-8859-13 Lithuanian lt iso-8859-13 Macedonian mk iso-8859-5 Norwegian no iso-8859-1 Polish pl iso-8859-2 Portuguese pt iso-8859-1 Romanian ro iso-8859-2 Russian ru iso-8859-5 Scottish gd iso-8859-1 Serbian sr iso-8859-5 Slovak sk iso-8859-2 Slovenian sl iso-8859-2 Spanish es iso-8859-1 Swedish sv iso-8859-1 Turkish tr iso-8859-9 Ukrainian uk iso-8859-5 |
From: alex <bin...@li...> - 2001-07-28 00:57:56
|
alex Fri Jul 27 17:57:50 2001 EDT Modified files: /r2 TODO Log: Removed checkin bc_edit TODO Item. Index: r2/TODO diff -u r2/TODO:1.15 r2/TODO:1.16 --- r2/TODO:1.15 Wed Jul 25 14:12:19 2001 +++ r2/TODO Fri Jul 27 17:57:50 2001 @@ -1,5 +1,5 @@ # cvs: -# $Id: TODO,v 1.15 2001/07/25 21:12:19 alex Exp $ +# $Id: TODO,v 1.16 2001/07/28 00:57:50 alex Exp $ r2 build: ------------------------------- @@ -23,8 +23,6 @@ -make default module association work for master templates. this should be a function of Page, not the subject template. likely a $Page->defaults['unique_id']. - --putz with bc_edit a bit more, check it into cvs. -create a lib which can properly (numerically) encode entities incoming from bc_edit. |
From: alex <bin...@li...> - 2001-07-28 00:57:21
|
alex Fri Jul 27 17:57:16 2001 EDT Modified files: /r2/binarycloud/user/htdocs/resources/bc_edit example.html Log: Update of the example bc_edit html to include some javascript. Index: r2/binarycloud/user/htdocs/resources/bc_edit/example.html diff -u r2/binarycloud/user/htdocs/resources/bc_edit/example.html:1.1 r2/binarycloud/user/htdocs/resources/bc_edit/example.html:1.2 --- r2/binarycloud/user/htdocs/resources/bc_edit/example.html:1.1 Fri Jul 27 17:54:48 2001 +++ r2/binarycloud/user/htdocs/resources/bc_edit/example.html Fri Jul 27 17:57:16 2001 @@ -1,6 +1,6 @@ <!-- // {{{ Header --File $Id: example.html,v 1.1 2001/07/28 00:54:48 alex Exp $ +-File $Id: example.html,v 1.2 2001/07/28 00:57:16 alex Exp $ -License LGPL (http://www.gnu.org/copyleft/lesser.html) -Copyright 2001, The Turing Studio, Inc. -Author alex black, en...@tu... @@ -8,12 +8,24 @@ --> <html xmlns:cms> <head> + <?import namespace="cms" implementation="bc_edit.htc" /> <!-- ?> --> + </head> <body bgcolor="#FFFFFF" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"> <cms:bc_edit id="content_edit" style="height:100%; width:100%;" /> +<script> +document.all.content_edit.Text = window.opener.document.all.change_text.value; +</script> + +<button onclick='window.opener.document.all.change_text.value=document.all.content_edit.Text; window.close();' title="Bold" id="done" name="">Done</button> + +<button onclick='window.close();' title="Bold" id="cancel" name="">Cancel</button> + + </body> </html> + |
alex Fri Jul 27 17:55:24 2001 EDT Added files: /r2/binarycloud/user/htdocs/resources/images/binarycloud/editor align_center_off.gif align_center_on.gif align_justify_off.gif align_justify_on.gif align_left_off.gif align_left_on.gif align_right_off.gif align_right_on.gif bold_off.gif bold_on.gif cancel_off.gif cancel_on.gif color_off.gif color_on.gif divider.gif font_minus_off.gif font_minus_on.gif font_plus_off.gif font_plus_on.gif hr_off.gif hr_on.gif html_off.gif html_on.gif image_off.gif image_on.gif indent_off.gif indent_on.gif insert_p_off.gif insert_p_on.gif italic_off.gif italic_on.gif letter_list_off.gif letter_list_on.gif link_off.gif link_on.gif no_link_off.gif no_link_on.gif normal_off.gif normal_on.gif numbered_list_off.gif numbered_list_on.gif outdent_off.gif outdent_on.gif re_synch_off.gif re_synch_on.gif save_changes_off.gif save_changes_on.gif teletype_off.gif teletype_on.gif ul_off.gif ul_on.gif Log: Images to support bc_edit |
alex Fri Jul 27 17:54:48 2001 EDT Added files: /r2/binarycloud/user/htdocs/resources/bc_edit bc_edit.htc example.html /r2/binarycloud/user/htdocs/resources/css bc_edit.css /r2/binarycloud/user/htdocs/resources/js bc_edit.js Log: Adding bc_edit to the repository, this is a simple visual editor for html, it works only in IE 5.5+ |
From: alex <bin...@li...> - 2001-07-27 23:56:01
|
alex Fri Jul 27 16:55:56 2001 EDT Removed files: /r2/binarycloud/ext get_pear.sh Log: don't need this. |
From: alex <bin...@li...> - 2001-07-27 23:55:39
|
alex Fri Jul 27 16:55:34 2001 EDT Removed files: /r2/binarycloud/ext .cvsignore Log: canned it, easier to just keep pear in the repository. |
alex Fri Jul 27 16:54:42 2001 EDT Added files: /r2/binarycloud/ext/pear/DB/tests/ibase 001.phpt 002.phpt 003.phpt 004.phpt 006.phpt 010.phpt connect.inc mktable.inc skipif.inc /r2/binarycloud/ext/pear/DB/tests/mysql 001.phpt 002.phpt 003.phpt 004.phpt 005.phpt 006.phpt 007.phpt 008.phpt 009.phpt 010.phpt 012.phpt README connect.inc mktable.inc skipif.inc /r2/binarycloud/ext/pear/DB/tests/oci8 001.phpt 002.phpt 003.phpt 004.phpt 005.phpt 006.phpt 007.phpt 008.phpt 009.phpt 010.phpt connect.inc mktable.inc skipif.inc /r2/binarycloud/ext/pear/DB/tests/odbc 001.phpt 002.phpt 003.phpt 004.phpt 006.phpt 007.phpt 010.phpt connect.inc dsn.inc mktable.inc skipif.inc /r2/binarycloud/ext/pear/DB/tests/pgsql 001.phpt 002.phpt 003.phpt 004.phpt 005.phpt 006.phpt 007.phpt 008.phpt 009.phpt 010.phpt 011.phpt README connect.inc mktable.inc skipif.inc Log: more pear adds |
alex Fri Jul 27 16:54:17 2001 EDT Added files: /r2/binarycloud/ext/pear/Cache/Container db.php dbx.php file.php phplib.php shm.php /r2/binarycloud/ext/pear/DB/tests db_error.phpt db_error2.phpt db_factory.phpt db_ismanip.phpt db_parsedsn.phpt errors.inc fetchmodes.inc fetchrow.inc numcols.inc numrows.inc prepexe.inc sequences.inc simplequery.inc tableinfo.inc transactions.inc /r2/binarycloud/ext/pear/Experimental/HTML Menu_Browser.php /r2/binarycloud/ext/pear/Experimental/Image color_helper.php gbutton.php gtext.php /r2/binarycloud/ext/pear/Experimental/XML Xml2obj.php fo2pdf.php sql2xml.php sql2xml_ext.php Log: more pear adds |
From: alex <bin...@li...> - 2001-07-27 23:54:05
|
alex Fri Jul 27 16:54:00 2001 EDT Added files: /r2/binarycloud/ext/pear/DB MAINTAINERS STATUS TESTERS /r2/binarycloud/ext/pear/Experimental README /r2/binarycloud/ext/pear/XML/RPC Server.php /r2/binarycloud/ext/pear/XML/tests 001.phpt 002.phpt 003.phpt 004.phpt 005.phpt parser1.r parser1.t parser2.i parser2.r parser2.t parser3.r parser3.t parsererror.r parsererror.t test.xml /r2/binarycloud/ext/pear/scripts phpextdist Log: more pear adds |
alex Fri Jul 27 16:53:34 2001 EDT Added files: /r2/binarycloud/ext/pear/Cache Container.php Error.php Function.php Graphics.php Output.php OutputCompression.php URL.php /r2/binarycloud/ext/pear/Console Getopt.php /r2/binarycloud/ext/pear/Crypt CBC.php HCEMD5.php /r2/binarycloud/ext/pear/DB common.php fbsql.php ibase.php ifx.php msql.php mssql.php mysql.php oci8.php odbc.php pgsql.php storage.php sybase.php /r2/binarycloud/ext/pear/Date Calc.php Human.php /r2/binarycloud/ext/pear/File Find.php Passwd.php SearchReplace.php /r2/binarycloud/ext/pear/HTML Common.php Form.php IT.php ITX.php IT_Error.php Menu.php Page.php Processor.php Select.php Table.php /r2/binarycloud/ext/pear/HTTP Compress.php /r2/binarycloud/ext/pear/Image Remote.php /r2/binarycloud/ext/pear/Log composite.php file.php mcal.php observer.php sql.php syslog.php /r2/binarycloud/ext/pear/Mail RFC822.php sendmail.php smtp.php /r2/binarycloud/ext/pear/Math Fraction.php Util.php /r2/binarycloud/ext/pear/Net Curl.php Dig.php SMTP.php Socket.php /r2/binarycloud/ext/pear/Numbers Roman.php /r2/binarycloud/ext/pear/PEAR Common.php Installer.php Packager.php Uploader.php /r2/binarycloud/ext/pear/Payment Verisign.php /r2/binarycloud/ext/pear/Schedule At.php /r2/binarycloud/ext/pear/XML Parser.php RPC.php Render.php /r2/binarycloud/ext/pear/scripts pear.in php-config.in phpize.in /r2/binarycloud/ext/pear/tests PEAR.r PEAR.t PEAR_Error.r PEAR_Error.t pear1.phpt pear_error.phpt pear_error2.phpt pear_error3.phpt php.ini Log: more pear adds |
From: alex <bin...@li...> - 2001-07-27 23:52:39
|
alex Fri Jul 27 16:52:31 2001 EDT Added files: /r2/binarycloud/ext/pear CMD.php CODING_STANDARDS Cache.php Cache.xml DB.php HTTP.php ITX.xml Log.php Mail.php Makefile.in PEAR.php README TODO catalog install-pear.txt package.dtd pear.m4 /r2/binarycloud/ext/pear/Benchmark Iterate.php Timer.php Log: adding pear to the repository for convenience |
From: alex <bin...@li...> - 2001-07-27 23:50:16
|
alex Fri Jul 27 16:50:11 2001 EDT Added files: /r2/binarycloud/ext .cvsignore Log: Added another cvsignore for pear* Index: r2/binarycloud/ext/.cvsignore +++ r2/binarycloud/ext/.cvsignore pear* |