OSDN Git Service

- set the role of any files ('*') to 'php' except bin/ethna.{sh,bat}.
authorichii386 <ichii386@2ef88817-412d-0410-a32c-8029a115e976>
Fri, 5 Jan 2007 08:22:09 +0000 (08:22 +0000)
committerichii386 <ichii386@2ef88817-412d-0410-a32c-8029a115e976>
Fri, 5 Jan 2007 08:22:09 +0000 (08:22 +0000)
- update CHANGES.

CHANGES
bin/ethna_make_package.php

diff --git a/CHANGES b/CHANGES
index c4fc075..e8fd28c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -4,8 +4,15 @@
 
 *** features
 
+- ethna¥³¥Þ¥ó¥É¤Ç@PHP-BIN@¤¬ÃÖ´¹¤µ¤ì¤º¤Ë»Ä¤Ã¤Æ¤¤¤ë¾ì¹ç(CVSÈǤò»È¤Ã¤Æ¤¤¤ë¤È¤­¤Ê¤É)¤ËÂбþ
+- ¥Ç¥Õ¥©¥ë¥È¥Æ¥ó¥×¥ì¡¼¥È¤Ë¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤ò¤³¤Ã¤½¤êÄɲÃ
+
 *** bug fixes
 
+- Mac/Windows¤Çpear·Ðͳ¤Ç¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ë¼ºÇÔ¤·¤Æ¤¤¤¿ÌäÂê¤ò²ò¾Ã
+-- ¤¹¤Ù¤Æ¤Îrole¤òphp¤Ë¤·¤Æ¡¢ethna.{sh,bat}¤Î¤ßscript¤ò»ØÄê
+- Ethna_ViewClass::setPlugin() ¤Ç $plugin ¤Î¸¡¾Ú¤Ë is_callable ¤ò»ÈÍÑ (ethna-users:0507)
+- install-plugin ¤¬Àµ¤·¤¯Æ°¤¤¤Æ¤¤¤Ê¤«¤Ã¤¿¤Î¤ò½¤Àµ (#9582)
 - ethna.sh¤ÇPHP¤Î¥Ñ¥¹¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤«¤Ã¤¿¤Î¤ò½¤Àµ(ethna-users:0508)
 - Ethna_AppObject¤Ç'key'¤Î¾ò·ï¤Ëunique_key, multiple_key¤¬Ï³¤ì¤Æ¤¤¤¿¤Î¤ò½¤Àµ
 - Ethna_ViewClass¤Ç<label id="foo">¤È¤Ê¤Ã¤Æ¤¤¤¿¤Î¤ò<label for="foo">¤Ë½¤Àµ
index db4eebe..b57ef68 100644 (file)
@@ -63,6 +63,7 @@ $config = array(
     'changelogoldtonew' => false,
     'exceptions' => array('README' => 'doc', 'LICENSE' => 'doc', 'CHANGES' => 'doc'),
     'description' => $description,
+    'exceptions' => array('bin/ethna.sh' => 'script', 'bin/ethna.bat' => 'script'),
     'installexceptions' => array('bin/ethna.sh' => '/', 'bin/ethna.bat' => '/'),
     'installas' => array('bin/ethna.sh' => 'ethna', 'bin/ethna.bat' => 'ethna.bat'),
 );
@@ -80,11 +81,7 @@ $packagexml->setAPIStability($state);
 $packagexml->setNotes('Ethna PHP Web Application Framework');
 $packagexml->setPackageType('php');
 
-$packagexml->addRole('css', 'php');
-$packagexml->addRole('tpl', 'php');
-$packagexml->addRole('ethna', 'php');
-$packagexml->addRole('sh', 'script');
-$packagexml->addRole('bat', 'script');
+$packagexml->addRole('*', 'php');
 
 $packagexml->setPhpDep('4.1.0');
 $packagexml->setPearinstallerDep('1.3.5');