Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ハッシュタグサーチ(#hashtag)を日本語に対応させる #6

Closed
yu-tang opened this issue May 1, 2011 · 0 comments
Closed
Assignees

Comments

@yu-tang
Copy link
Owner

yu-tang commented May 1, 2011

コメント中に #hashtag と記述することによって、同一タグを含むコメントの検索結果へのリンクが張られる機能を指す。

「@リプライ(@mentions)を日本語に対応させる」課題(#5)に関連した課題。

現状

ASCII 単語にしか対応していない。
日本語の単語には、リンクが張られない。

拡張

日本語の単語にもリンクが張られるように拡張する。

実装方法

変更前

/library/core/class.format.php

public static function Mentions($Mixed) {

(中略)

   // Handle #hashtag searches
   if(C('Garden.Format.Hashtags')) {
      $Mixed = preg_replace(
               '/(^|[\s,\.>])\#([\w\-]+)(?=[\s,\.!?]|$)/i',
               '\1'.Anchor('#\2', '/search?Search=%23\2&Mode=like').'\3',
               $Mixed
      );
   }

上記の正規表現を変更する。
日本語の単語の正規表現の条件は、 #4 を参照。
厳密に言うと #4 は単語ではなくユーザー名の条件になるが、ユーザー名を検索することも有り得るので、ハッシュタグに使用する単語の条件としても あるていど有効と思われる。

@ghost ghost assigned yu-tang May 1, 2011
@yu-tang yu-tang closed this as completed in 183ae1a May 1, 2011
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant