Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

Kohana 中文代码仓库(Kohana Code Depository)Kohana 中文爱好者为 中文 Kohana 用户创建的一个交流平台,立志把 Kohana 做好本地化工作,目前主要任务是翻译和维护官方的文档。其次同时为开源项目做出贡献。 这个地方主要存放 Kohana ... [More] 中文爱好者用户公开发布的一些代码文件,比如辅助函数(Helpers),库(Libraries),扩展(Modules)和一些相关的其他东西。 希望大家可以踊跃参与进来。 下面列表是本仓库已经包含的代码文件: 辅助函数(Helpers) google - Google API,目前只有翻译功能以及对 URI 地址进行 SEO 友好化处理 color - 颜色之间的转换和随机颜色的生成 库(Libraries) Akismet - 利用 Akismet.com 网站服务构建的防垃圾评论库 Input - 扩展系统内建的 input 库,添加 IP 归属地功能(需求:QQ纯真数据库) Modules - Kohana 扩展(Modules)管理库 OAuth - OAuth 验证类(需求: OAuth Class 和 RESTRequest Library) Database - 扩展系统内建的 Database 库,增加数据库多配置(需求:database.php配置文件夹) Logger - Kohana 系统日志查看工具 扩展(Modules) DBManager - 数据库管理 其他(Others) Kohana 项目模板 For NetBeans - 为 Netbeans 6.5+ 制作的Kohana 项目模板 如果你也有想贡献自己的代码和大家分享,那就加入我们吧! [Less]

3.0
   
  0 reviews  |  1 user  |  2,919 lines of code  |  0 current contributors  |  Analyzed about 22 hours ago
 
 

php-akismet-contactWritten as a method to clear out my inbox. Spammers aggressively submit junk into any form they can find on the web, making most "Contact Me" forms useless. This is an attempt to fix that. Security MeasuresAll form fields are checked for newlines or null bytes followed ... [More] by email commands. HTTP Referrer is required, and checked against an array of allowed referrers. Sender email is validated Emails may only be sent to the recipient defined in the script If all of these checks pass, the contents of the email submitted to Akismet to verify it's not spam. Example Form Name Email Message Required Parametersrecipient - valid email address that will be the to address email - valid email that will be the from address. the contents of this parameter will be sent to Akismet for spam checking bcc - THIS FIELD IS REQUIRED TO BE BLANK. This is designed to bait spammers. I've found that spammers generally submit all contact form fields, even if commented out. (http://isc.sans.org/diary.php?storyid=1836) Optional Parametersredirect - full URL (with http://) that the script will redirect to on success. name - the contents of this parameter will be sent to Akismet for spam checking comments - the contents of this parameter will be sent to Akismet for spam checking All other parameters will be included in the email, but will not be checked by Akismet. Please note that in order to use this, you must have a vaild WordPress API key (http://wordpress.com/api-keys/). They are free for non/small-profit types and getting one will only take a couple of minutes. ToDorequired fields multiple recipients [Less]

0
 
  0 reviews  |  0 users  |  231 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

This project contains various open source projects created by Arrowpointe Corp. (http://www.arrowpointe.com). Projects Hosted HereAkismet Web2Lead - PHP scripts that capture "Web-To-Lead" submissions bound for Salesforce.com. Prior to submitting them to Salesforce, the code will send ... [More] the data over to Akismet for analysis as to whether or not it's spam. It will append that result and send the information onto Salesforce Web-To-Lead. Detailed setup instructions can be found here. [Less]

0
 
  0 reviews  |  0 users  |  242 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

A ColdFusion API to provide access to the Akisment anti-spam service. This component is bare bones and can be used in a variety of projects, the ideal candidate being blog software such as BlogCFC. This is ready for testing, but not a general release. Documentation is already in the works and will be out soon.

0
 
  0 reviews  |  0 users  |  33 lines of code  |  0 current contributors  |  Analyzed about 1 year ago
 
 

A stand-alone comment spam filtering library. Includes Akismet, Invisible Captcha, and Visible Captcha. The Akismet library included is based on code in use by Subtext and DasBlog.

0
 
  0 reviews  |  0 users  |  679,164 lines of code  |  0 current contributors  |  Analyzed about 2 years ago
 
 

Модуль фильтрует спам с помощью сервиса akismet.com. Пример использования: $akismet = new Akismet; $akismet->author = $post->name; $akismet->email = $post->email; $akismet->url = $post->site; $akismet->content = ... [More] $post->comment; $akismet->type = 'comment'; if ($akismet->check_spam() OR $akismet->get_errors()) { $post->add_error($field, 'is_spam'); Kohana::log ('akismet.spam_detected', 'info'); } или {{{ $post = new Validation($_POST)->add_callbacks('comment', 'Akismet::verify'); }}} [http://progik.ru/ Author's site] [Less]

0
 
  0 reviews  |  0 users  |  133 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

Apache Module mod_akismet Overviewmod_akismet is Apache module that enables you to detect spam comments before your application handler by Akismet's anti-comment-spam service. It is designed to stand in front of your Apache application handler and allow you to check out spam comment post. If it ... [More] detects spam post, it adds spam detected flag to both apache subprocess_env and incoming http header table with the key named "akismet_detect_spam". Therefore, the spam detected flag can be referred by app handler or next apache modules. News2009/7/2: migrate svn repository to github 2009/5/10 : version 0.0.1 released (Experimental) DocumentationPrerequisites Build and Install Configuration Directives More Configuration Sample Configuration Application Sample DownloadsReleased packages: downloads page Current source code: http://github.com/yokawasa/mod_akismet/tree/master Questions, ProblemsFeel free to email me (yokawasa at gmail dot com) if you have any questions. Or always welcome if you have ideas for improvements or even patches! In addition, if you find any problems, please report them as a new issue. see current issues. AuthorsYoichi Kawasaki [Less]

0
 
  0 reviews  |  0 users  |  958 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

Acts_as_spammable is a simple RoR plugin to manage detection and reporting of spam with Akismet.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

OverviewA class to abstract communication with the Akismet service to determine if a submitted comment to your website should be considered spam or not. Specific support for PHP4, but also works in PHP5. DocumentationPlease view the documentation page for more information. DownloadVisit the download page for the latest version.

0
 
  0 reviews  |  0 users  |  179 lines of code  |  0 current contributors  |  Analyzed 1 day ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.