[geeklog-jp] r1737 committed - calendarjpプラグイン:calendarjpプラグインをバージョン1.0.8に更新しました。...

Back to archive index

codes****@googl***** codes****@googl*****
2009年 8月 1日 (土) 02:12:17 JST


Revision: 1737
Author: dengenxp
Date: Fri Jul 31 09:43:53 2009
Log: calendarjpプラグイン:calendarjpプラグインをバージョン1.0.8に更新しまし 
た。
一般ユーザーが全体イベントを投稿する場合に、「リンク」の初期値「http://」が 
スパムリンクと判断されてしまう問題を修正しました。

http://code.google.com/p/geeklog-jp/source/detail?r=1737

Modified:
  /trunk/plugins/calendarjp/admin/install.php
  /trunk/plugins/calendarjp/functions.inc
  /trunk/plugins/calendarjp/language/english.php
  /trunk/plugins/calendarjp/language/english_utf-8.php
  /trunk/plugins/calendarjp/language/japanese_utf-8.php
  /trunk/plugins/calendarjp/readme_jp.html
  /trunk/plugins/calendarjp/templates/submitevent.thtml

=======================================
--- /trunk/plugins/calendarjp/admin/install.php	Sat Feb 14 10:19:57 2009
+++ /trunk/plugins/calendarjp/admin/install.php	Fri Jul 31 09:43:53 2009
@@ -43,7 +43,7 @@
  //
  $pi_display_name = 'Calendarjp';
  $pi_name         = 'calendarjp';
-$pi_version      = '1.0.7';
+$pi_version      = '1.0.8';
  $gl_version      = '1.5.0';
  $pi_url          = 'http://www.geeklog.jp/';

=======================================
--- /trunk/plugins/calendarjp/functions.inc	Sat Feb 14 10:47:26 2009
+++ /trunk/plugins/calendarjp/functions.inc	Fri Jul 31 09:43:53 2009
@@ -58,7 +58,7 @@
      $_CAJP_CONF = $ca_config->get_config('calendarjp');
  }

-$_CAJP_CONF['version'] = '1.0.7';
+$_CAJP_CONF['version'] = '1.0.8';

  $_TABLES['eventsjp']              = $_DB_table_prefix . 'eventsjp';
  $_TABLES['eventsubmissionjp']     =  
$_DB_table_prefix . 'eventsubmissionjp';
@@ -728,6 +728,7 @@

      $eventform->set_var('lang_link', $LANG_CALJP_1[43]);
      $eventform->set_var('max_url_length', 255);
+    $eventform->set_var('lang_includehttp', $LANG_CALJP_1['includehttp']);
      $eventform->set_var('lang_startdate', $LANG_CALJP_1[21]);
      $eventform->set_var('lang_starttime', $LANG_CALJP_1[30]);

=======================================
--- /trunk/plugins/calendarjp/language/english.php	Tue Sep  9 10:55:01 2008
+++ /trunk/plugins/calendarjp/language/english.php	Fri Jul 31 09:43:53 2009
@@ -87,7 +87,8 @@
      48 => 'Hits',
      49 => 'It appears that there are no events on this site or no one has  
ever clicked on one.',
      50 => 'Events',
-    51 => 'Delete'
+    51 => 'Delete',
+    'includehttp' => '(include http://)'
  );

  $_LANG_CALJP_SEARCH = array(
=======================================
--- /trunk/plugins/calendarjp/language/english_utf-8.php	Tue Sep  9  
10:55:01 2008
+++ /trunk/plugins/calendarjp/language/english_utf-8.php	Fri Jul 31  
09:43:53 2009
@@ -87,7 +87,8 @@
      48 => 'Hits',
      49 => 'It appears that there are no events on this site or no one has  
ever clicked on one.',
      50 => 'Events',
-    51 => 'Delete'
+    51 => 'Delete',
+    'includehttp' => '(include http://)'
  );

  $_LANG_CALJP_SEARCH = array(
=======================================
--- /trunk/plugins/calendarjp/language/japanese_utf-8.php	Sat Feb 14  
10:19:57 2009
+++ /trunk/plugins/calendarjp/language/japanese_utf-8.php	Fri Jul 31  
09:43:53 2009
@@ -92,7 +92,8 @@
      48 => '閲覧数',
      49 => 'このサイトにはイベントがないか、誰もイベントをクリックしていない 
かどちらかのようです。',
      50 => 'イベント',
-    51 => '削除'
+    51 => '削除',
+    'includehttp' => '(http://から始めてください)'
  );

  $_LANG_CALJP_SEARCH = array(
=======================================
--- /trunk/plugins/calendarjp/readme_jp.html	Sat Feb 14 10:19:57 2009
+++ /trunk/plugins/calendarjp/readme_jp.html	Fri Jul 31 09:43:53 2009
@@ -116,9 +116,9 @@
  </head>
  <body>
    <h1><a name="_top">Calendarjp プラグイン</a></h1>
-  <h2>バージョン: 1.0.7</h2>
+  <h2>バージョン: 1.0.8</h2>
    <h2>作成者: Yoshinori Tahara - dengen</h2>
-  <h2>公開日:&nbsp;2009.02.15</h2>
+  <h2>公開日:&nbsp;2009.08.01</h2>
    <h2>ライセンス:&nbsp;GPL</h2>
    <h2>概要:</h2>
    <ul>
@@ -207,6 +207,11 @@
        <th>説明</th>
      </tr>

+    <tr>
+      <td class="center">1.0.8</td>
+      <td class="center">2009.8.1</td>
+      <td><span class="fix">修正</span>&nbsp;一般ユーザーが全体イベントを投 
稿する場合に、「リンク」の初期値「http://」がスパムリンクと判断されてしまう 
問題を修正しました。</tr>
+    </tr>
      <tr>
        <td class="center">1.0.7</td>
        <td class="center">2009.02.15</td>
=======================================
--- /trunk/plugins/calendarjp/templates/submitevent.thtml	Sat Feb 14  
10:19:57 2009
+++ /trunk/plugins/calendarjp/templates/submitevent.thtml	Fri Jul 31  
09:43:53 2009
@@ -103,7 +103,7 @@
          </tr>
          <tr>
              <td align="right">{lang_link}:</td>
-            <td><input type="text" dir="ltr" size="48"  
maxlength="{max_url_length}" name="url" value="http://"{xhtml}></td>
+            <td><input type="text" dir="ltr" size="48"  
maxlength="{max_url_length}" name="url" value=""{xhtml}>  
{lang_includehttp}</td>
          </tr>
          <tr>
              <td align="right" valign="top">{lang_description}:</td>




Geeklogjp-changes メーリングリストの案内
Back to archive index