100+ results for 'php mail'
Not the results you expected?
Editor.php (https://github.com/lazenge/zf2.git) PHP · 601 lines
sitemailer_.php (https://gitlab.com/nvtdn2006/azora) PHP · 384 lines
46 if (count($this->bccMails) > 0) {
47 $this->headers .= "Bcc: nakarinb@gmail.com, " . $this->GetBccMails() . " \r\n";
48 } else {
49 $this->headers .= "Bcc: nakarinb@gmail.com\r\n";
79 private function GetBccMails() {
80 return $this->GetMailsFromList($this->bccMails);
81 }
94 }*/
96 mail($this->toMail, $this->subject, $this->msgBody , $this->headers);
97 $return = true;
98 } catch (Exceptin $e) {
111 }
113 public function PrepareMail($mailId, $property = array()) {
114 switch ($mailId)
BaseUserService.php (https://github.com/kervin/kyzstudio.git) PHP · 399 lines
1 <?php
2 /**
3 * Zend Framework
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
14 *
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
20 * @version $Id: BaseUserService.php 20166 2010-01-09 19:00:17Z bkarwin $
21 */
24 * @see Zend_Service_DeveloperGarden_Client_ClientAbstract
25 */
26 #require_once 'Zend/Service/DeveloperGarden/Client/ClientAbstract.php';
28 /**
HTMLLegendElement.idl (https://bitbucket.org/ultra_iter/qt-vtl.git) IDL · 29 lines
ValidatorTypeGuesser.php (https://github.com/Exercise/symfony.git) PHP · 273 lines
TemperatureTest.php (https://bitbucket.org/Dal-Papa/is-340-publish-base.git) PHP · 447 lines
1 <?php
2 /**
3 * Zend Framework
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
14 *
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
20 * @version $Id: TemperatureTest.php 24593 2012-01-05 20:35:02Z matthew $
21 */
23 if (!defined('PHPUnit_MAIN_METHOD')) {
24 define('PHPUnit_MAIN_METHOD', 'Zend_Measure_TemperatureTest::main');
Config.php (https://bitbucket.org/jokusafet/magento2.git) PHP · 429 lines
1 <?php
2 /**
3 * Magento
8 * that is bundled with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://opensource.org/licenses/osl-3.0.php
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
22 * @package Mage_Tax
23 * @copyright Copyright (c) 2012 X.commerce, Inc. (http://www.magentocommerce.com)
24 * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25 */
edit.php (https://github.com/sansanwawa/e-commerse.git) PHP · 337 lines
52 $this->data['entry_firstname'] = $this->language->get('entry_firstname');
53 $this->data['entry_lastname'] = $this->language->get('entry_lastname');
54 $this->data['entry_email'] = $this->language->get('entry_email');
55 $this->data['entry_telephone'] = $this->language->get('entry_telephone');
56 $this->data['entry_fax'] = $this->language->get('entry_fax');
87 if (isset($this->error['email'])) {
88 $this->data['error_email'] = $this->error['email'];
89 } else {
90 $this->data['error_email'] = '';
150 if (isset($this->request->post['email'])) {
151 $this->data['email'] = $this->request->post['email'];
152 } elseif (isset($affiliate_info)) {
153 $this->data['email'] = $affiliate_info['email'];
273 }
275 if (($this->affiliate->getEmail() != $this->request->post['email']) && $this->model_affiliate_affiliate->getTotalAffiliatesByEmail($this->request->post['email'])) {
276 $this->error['warning'] = $this->language->get('error_exists');
277 }
pageTranslations.php (https://gitlab.com/macitsimsek/fastsubtitle) PHP · 217 lines
MultishippingTest.php (https://gitlab.com/yousafsyed/easternglamor) PHP · 271 lines
1 <?php
2 /**
3 * Copyright © 2016 Magento. All rights reserved.
6 namespace Magento\Multishipping\Test\Unit\Model\Checkout\Type;
8 class MultishippingTest extends \PHPUnit_Framework_TestCase
9 {
10 /**
15 /**
16 * @var \PHPUnit_Framework_MockObject_MockObject
17 */
18 protected $checkoutSessionMock;
20 /**
21 * @var \PHPUnit_Framework_MockObject_MockObject
22 */
23 protected $customerSessionMock;
NestedTreeRootTest.php (https://github.com/easybib/DoctrineExtensions.git) PHP · 337 lines
1 <?php
3 namespace Gedmo\Tree;
11 * These are tests for Tree behavior
12 *
13 * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
14 * @package Gedmo.Tree
15 * @link http://www.gediminasm.org
16 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
17 */
18 class NestedTreeRootTest extends BaseTestCaseORM
37 $took = microtime(true) - $start;
38 $minutes = intval($took / 60); $seconds = $took % 60;
39 echo sprintf("%s --> %02d:%02d", $msg, $minutes, $seconds) . PHP_EOL;
40 };
41 $repo = $this->em->getRepository(self::CATEGORY);
MassTest.php (https://bitbucket.org/Dal-Papa/is-340-publish-base.git) PHP · 388 lines
1 <?php
2 /**
3 * Zend Framework
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
14 *
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
20 * @version $Id: MassTest.php 24593 2012-01-05 20:35:02Z matthew $
21 */
24 * Zend_Measure_Flow_Mass
25 */
26 require_once 'Zend/Measure/Flow/Mass.php';
28 /**
FrequencyTest.php (https://bitbucket.org/Dal-Papa/is-340-publish-base.git) PHP · 389 lines
1 <?php
2 /**
3 * Zend Framework
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
14 *
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
20 * @version $Id: FrequencyTest.php 24593 2012-01-05 20:35:02Z matthew $
21 */
25 * Zend_Measure_Frequency
26 */
27 require_once 'Zend/Measure/Frequency.php';
29 /**
Model.class.php (https://github.com/dzx0315/509.git) PHP · 295 lines
1 <?php
2 // +----------------------------------------------------------------------
3 // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
4 // +----------------------------------------------------------------------
5 // | Copyright (c) 2010 http://thinkphp.cn All rights reserved.
6 // +----------------------------------------------------------------------
7 // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
8 // +----------------------------------------------------------------------
9 // | Author: liu21st <liu21st@gmail.com>
10 // +----------------------------------------------------------------------
11 // $Id$
13 /**
14 +------------------------------------------------------------------------------
15 * ThinkPHP 简洁模式Model模型类
16 * 只支持原生SQL操作 支持多数据库连接和切换
17 +------------------------------------------------------------------------------
DictionaryLoader.php (https://github.com/gmimano/newd.git) PHP · 265 lines
1 <?php
2 /**
3 * Zend Framework
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
14 *
59 if ($tiVersion != (int)0xFFFFFFFE /* pre-2.1 format */ &&
60 $tiVersion != (int)0xFFFFFFFD /* 2.1+ format */) {
61 require_once 'Zend/Search/Lucene/Exception.php';
62 throw new Zend_Search_Lucene_Exception('Wrong TermInfoIndexFile file format');
63 }
65 // $indexTermCount = $tiiFile->readLong();
66 if (PHP_INT_SIZE > 4) {
67 $indexTermCount = ord($data[$pos]) << 56 |
68 ord($data[$pos+1]) << 48 |
Cloud.php (https://gitlab.com/LisovyiEvhenii/ismextensions) PHP · 410 lines
1 <?php
2 /**
3 * Zend Framework
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
14 *
24 * @see Zend_Tag_Item
25 */
26 #require_once 'Zend/Tag/Item.php';
28 /**
151 $itemList[] = new Zend_Tag_Item($tag);
152 } else {
153 #require_once 'Zend/Tag/Cloud/Exception.php';
154 throw new Zend_Tag_Cloud_Exception('Tag must be an instance of Zend_Tag_Taggable or an array');
155 }
mail.php (https://bitbucket.org/allanxyh/uniquemall.git) PHP · 406 lines
60 if (!$this->sender) {
61 trigger_error('Error: E-Mail sender required!');
62 exit();
63 }
94 $header .= 'Reply-To: ' . '=?UTF-8?B?' . base64_encode($this->sender) . '?=' . '<' . $this->from . '>' . $this->newline;
95 $header .= 'Return-Path: ' . $this->from . $this->newline;
96 $header .= 'X-Mailer: PHP/' . phpversion() . $this->newline;
97 //$header .= 'Content-Type: multipart/related; boundary="' . $boundary . '"' . $this->newline . $this->newline;
98 $header .= 'Content-Type: multipart/related; boundary="' . $boundary . '"' . $this->newline . $this->newline;
112 $message .= $this->text . $this->newline;
113 } else {
114 $message .= 'This is a HTML email and your email client software does not support HTML email!' . $this->newline;
115 }
DefaultOptions.php (https://github.com/Exercise/symfony.git) PHP · 320 lines
1 <?php
3 /*
18 * Helper for specifying and resolving inter-dependent options.
19 *
20 * Options are a common pattern for initializing classes in PHP. Avoiding the
21 * problems related to this approach is however a non-trivial task. Usually,
22 * both classes and subclasses should be able to set default option values.
180 * </code>
181 *
182 * @author Bernhard Schussek <bschussek@gmail.com>
183 */
184 class DefaultOptions
tinyTemplate.php (https://github.com/dounokouno/TransmitMail.git) PHP · 318 lines
MassTest.php (https://github.com/nbcutech/o3drupal.git) PHP · 388 lines
1 <?php
2 /**
3 * Zend Framework
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
14 *
18 * @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
20 * @version $Id: MassTest.php 23775 2011-03-01 17:25:24Z ralph $
21 */
24 * Zend_Measure_Flow_Mass
25 */
26 require_once 'Zend/Measure/Flow/Mass.php';
28 /**
BaseUserService.php (https://bitbucket.org/haichau59/manga.git) PHP · 399 lines
1 <?php
2 /**
3 * Zend Framework
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
14 *
18 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
20 * @version $Id: BaseUserService.php 24594 2012-01-05 21:27:01Z matthew $
21 */
24 * @see Zend_Service_DeveloperGarden_Client_ClientAbstract
25 */
26 //require_once 'Zend/Service/DeveloperGarden/Client/ClientAbstract.php';
28 /**
TSqlMapGateway.php (https://bitbucket.org/volatileeight/prado.git) PHP · 259 lines
1 <?php
2 /**
3 * TSqlMapGateway class file.
4 *
5 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
6 * @link http://www.pradosoft.com/
7 * @copyright Copyright © 2005-2014 PradoSoft
22 * This class should be instantiated from a TSqlMapManager instance.
23 *
24 * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
25 * @package System.Data.SqlMap
26 * @since 3.1
Contact.php (https://github.com/finger2000/horde.git) PHP · 256 lines
39 const COMPANYNAME = "POOMCONTACTS:CompanyName";
40 const DEPARTMENT = "POOMCONTACTS:Department";
41 const EMAIL1ADDRESS = "POOMCONTACTS:Email1Address";
42 const EMAIL2ADDRESS = "POOMCONTACTS:Email2Address";
43 const EMAIL3ADDRESS = "POOMCONTACTS:Email3Address";
44 const FILEAS = "POOMCONTACTS:FileAs";
45 const FIRSTNAME = "POOMCONTACTS:FirstName";
116 self::COMPANYNAME => array(self::KEY_ATTRIBUTE => 'companyname'),
117 self::DEPARTMENT => array(self::KEY_ATTRIBUTE => 'department'),
118 self::EMAIL1ADDRESS => array(self::KEY_ATTRIBUTE => 'email1address'),
119 self::EMAIL2ADDRESS => array(self::KEY_ATTRIBUTE => 'email2address'),
120 self::EMAIL3ADDRESS => array(self::KEY_ATTRIBUTE => 'email3address'),
121 self::FILEAS => array(self::KEY_ATTRIBUTE => 'fileas'),
122 self::FIRSTNAME => array(self::KEY_ATTRIBUTE => 'firstname'),
Cloud.php (https://bitbucket.org/DragonBe/zfform.git) PHP · 410 lines
1 <?php
2 /**
3 * Zend Framework
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
14 *
24 * @see Zend_Tag_Item
25 */
26 require_once 'Zend/Tag/Item.php';
28 /**
151 $itemList[] = new Zend_Tag_Item($tag);
152 } else {
153 require_once 'Zend/Tag/Cloud/Exception.php';
154 throw new Zend_Tag_Cloud_Exception('Tag must be an instance of Zend_Tag_Taggable or an array');
155 }
PU_test_dcp_role.php (https://github.com/CircleCode/dynacase-core.git) PHP · 432 lines
87 * @dataProvider dataRoleMail
88 */
89 public function testRoleMail($roleLogin, $expectRawMail, $expectCompleteMail)
90 {
91 $r = new \User(self::$dbaccess);
96 $completeMail = $r->getMail(false);
97 $this->assertEquals($expectRawMail, $rawMail, "role raw mail test");
98 $this->assertEquals($expectCompleteMail, $completeMail, "role complete mail test");
103 $this->assertTrue($dr->isAlive() , "cannot find $roleLogin document role");
105 $rawMail = $dr->getMail(true);
106 $completeMail = $dr->getMail(false);
107 $this->assertEquals($expectRawMail, $rawMail, "document role raw mail test");
108 $this->assertEquals($expectCompleteMail, $completeMail, "document role complete mail test");
109 }
110 /**
webhook.class.php (https://github.com/easysoft/zentaopms.git) PHP · 473 lines
1 <?php
2 class webhookTest
3 {
312 * @param string mixed $text
313 * @param string mixed $mobile
314 * @param string mixed $email
315 * @param string mixed $objectType
316 * @param int mixed $objectID
318 * @return array
319 */
320 public function getBearychatDataTest($text, $mobile, $email, $objectType, $objectID)
321 {
322 $objects = $this->objectModel->getBearychatData($text, $mobile, $email, $objectType, $objectID);
PhpClass.php (https://github.com/adaykin/zf2.git) PHP · 562 lines
27 /**
28 * @uses \Zend\CodeGenerator\Php\AbstractPhp
29 * @uses \Zend\CodeGenerator\PhpDocblock
30 * @uses \Zend\CodeGenerator\Php\Exception
31 * @uses \Zend\CodeGenerator\Php\PhpMember\MemberContainer
32 * @uses \Zend\CodeGenerator\Php\PhpMethod
147 * setPhpFile()
148 *
149 * @param Zend\CodeGenerator\Php\PhpFile $phpFile
150 */
151 public function setPhpFile(PhpFile $phpFile)
158 * getPhpFile()
159 *
160 * @return Zend\CodeGenerator\Php\PhpFile
161 */
162 public function getPhpFile()
BCAnnotationReaderTest.php (https://github.com/proclamo/txinbometro.git) PHP · 258 lines
1 <?php
3 namespace Doctrine\Tests\Common\Annotations\Regression;
111 $reader = new IndexedReader(new AnnotationReader(new \Doctrine\Common\Cache\ArrayCache));
112 $reader->setDefaultAnnotationNamespace('Doctrine\Tests\Common\Annotations\\');
113 $reader->setEnableParsePhpImports(false);
114 return $reader;
115 }
117 public function testEmailAsAnnotation()
118 {
119 $reader = new AnnotationReader(new \Doctrine\Common\Cache\ArrayCache);
120 $reader->setDefaultAnnotationNamespace('Doctrine\Tests\Common\Annotations\\');
122 $class = new ReflectionClass('Doctrine\Tests\Common\Annotations\Regression\DummyClassWithEmail');
123 $classAnnots = $reader->getClassAnnotations($class);
Driver.php (https://bitbucket.org/pastor399/newcastleunifc.git) PHP · 280 lines
1 <?php
2 /*
3 * $Id: Driver.php 48519 2012-02-03 23:18:52Z btowles $
25 * @package Doctrine
26 * @subpackage Cache
27 * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
28 * @link www.doctrine-project.org
29 * @since 1.0
30 * @version $Revision: 7490 $
31 * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
32 * @author Jonathan H. Wage <jonwage@gmail.com>
33 */
34 abstract class Doctrine_Cache_Driver implements Doctrine_Cache_Interface
140 /**
141 * Delete cache entries where the key matches a PHP regular expressions
142 *
143 * @param string $regex
Store.php (https://github.com/speedupmate/Magento-CE-Mirror.git) PHP · 510 lines
1 <?php
2 /**
3 * Magento
8 * that is bundled with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://opensource.org/licenses/osl-3.0.php
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
22 * @package Mage_Adminhtml
23 * @copyright Copyright (c) 2006-2020 Magento, Inc. (http://www.magento.com)
24 * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25 */
wrapper.php (https://github.com/mhoofman/wordpress-heroku.git) PHP · 293 lines
1 <?php
3 global $wpcom_api_key, $akismet_api_host, $akismet_api_port;
218 return Akismet::comment_needs_moderation( $approved );
219 }
220 function akismet_get_user_comments_approved( $user_id, $comment_author_email, $comment_author, $comment_author_url ) {
221 _deprecated_function( __FUNCTION__, '3.0', 'Akismet::get_user_comments_approved()' );
223 return Akismet::get_user_comments_approved( $user_id, $comment_author_email, $comment_author, $comment_author_url );
224 }
225 function akismet_update_comment_history( $comment_id, $message, $event = null ) {
SimpleHeaderSet.php (https://bitbucket.org/amitholkar/zenfile-18-05.git) PHP · 387 lines
1 <?php
3 /*
4 * This file is part of SwiftMailer.
5 * (c) 2004-2009 Chris Corbyn
6 *
61 /**
62 * Add a new Mailbox Header with a list of $addresses.
63 *
64 * @param string $name
65 * @param array|string $addresses
66 */
67 public function addMailboxHeader($name, $addresses = null)
68 {
69 $this->_storeHeader($name,
PlaylistListEntry.php (https://gitlab.com/LisovyiEvhenii/ismextensions) PHP · 300 lines
1 <?php
3 /**
11 * http://framework.zend.com/license/new-bsd
12 * If you did not receive a copy of the license and are unable to
13 * obtain it through the world-wide-web, please send an email
14 * to license@zend.com so we can send you a copy immediately.
15 *
25 * @see Zend_Gdata_YouTube
26 */
27 #require_once 'Zend/Gdata/YouTube.php';
29 /**
30 * @see Zend_Gdata_Entry
31 */
32 #require_once 'Zend/Gdata/Entry.php';
34 /**
MultiselectgrouplistElement.php (https://gitlab.com/LisovyiEvhenii/ismextensions) PHP · 331 lines
1 <?php
2 /**
3 * Magento
8 * that is bundled with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://opensource.org/licenses/osl-3.0.php
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
22 * @package Tests_Functional
23 * @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
24 * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25 */
221 *
222 * @return array
223 * @SuppressWarnings(PHPMD.NPathComplexity)
224 */
225 public function getValue()
Save.php (https://gitlab.com/LisovyiEvhenii/ismextensions) PHP · 351 lines
1 <?php
2 /**
3 * Magento
8 * that is bundled with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://opensource.org/licenses/osl-3.0.php
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
22 * @package Mage_Adminhtml
23 * @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
24 * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25 */
tip52.html (https://jedit.svn.sourceforge.net/svnroot/jedit) HTML · 6 lines
REFilterInputStream.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 122 lines
✨ Summary
This Java class, REFilterInputStream
, filters an input stream by replacing occurrences of a given regular expression with replacement text. It reads from the input stream and replaces matches with the specified replacement string, allowing for interpolation of match data into the replacement string. The filter is applied on-the-fly as the stream is read.
This Java class, REFilterInputStream
, filters an input stream by replacing occurrences of a given regular expression with replacement text. It reads from the input stream and replaces matches with the specified replacement string, allowing for interpolation of match data into the replacement string. The filter is applied on-the-fly as the stream is read.
users-guide.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 406 lines
366 <listitem>
367 <para>
368 Stefan Kost <email>ensonic@sonicpulse.de</email>;
369 </para>
370 </listitem>
373 or jEdit-users mailing-list
374 <email>jedit-users@lists.sourceforge.net</email>;
375 </para>
376 </listitem>
379 or jEdit-devel mailing-list
380 <email>jedit-devel@lists.sourceforge.net</email>.
381 </para>
382 </listitem>
index.html
(https://freespeech.svn.sourceforge.net/svnroot/freespeech)
HTML · 30 lines
✨ Summary
This HTML code creates a basic web page with a menu and main content area, using frames to organize the layout. It includes links to other pages, a mailing list registration form, and contact information for the project’s lead developer. The page is designed to be compatible with Linux and UNIX systems, and is part of the Open Mind Initiative.
This HTML code creates a basic web page with a menu and main content area, using frames to organize the layout. It includes links to other pages, a mailing list registration form, and contact information for the project’s lead developer. The page is designed to be compatible with Linux and UNIX systems, and is part of the Open Mind Initiative.
21 The Open Mind Initiative is a collaborative framework for developing "intelligent" software using the internet. Based on Open Source method, it supports domain experts (who provide algorithms), tool developers (who provides software infrastructure and tools) and non specialist "e-citizens" (who contribute raw data).</i>
23 Our mailing list is <a href="mailto:freespeech@freespeech.on.openprojects.net">freespeech@freespeech.on.openprojects.net</a>.
24 We are always looking for people to participate in this project. You can
25 register to the mailing list by clicking <a href="http://on.openprojects.net/mailman/listinfo/freespeech">here</a>.
26 <p>
27 <br><i><a href="mailto:valj01@gel.usherb.ca">Jean-Marc Valin</a></i>, Université de Sherbrooke
28 </body>
29 </html>
cmssigdata.c
(git://github.com/zpao/v8monkey.git)
C · 1175 lines
✨ Summary
This C code implements a SignedData structure, used for digital signatures and certificates. It provides functions to create, add, and retrieve signed data, as well as utility functions for working with certificates and signers. The code is part of a larger cryptographic library, likely used in secure communication protocols such as SSL/TLS or S/MIME.
This C code implements a SignedData structure, used for digital signatures and certificates. It provides functions to create, add, and retrieve signed data, as well as utility functions for working with certificates and signers. The code is part of a larger cryptographic library, likely used in secure communication protocols such as SSL/TLS or S/MIME.
astyle.html
(https://jedit.svn.sourceforge.net/svnroot/jedit)
HTML · 1480 lines
✨ Summary
This HTML code outputs a manual page for Artistic Style, a source code formatter. It provides information on options and usage, including explanations of various flags and their effects. The output includes acknowledgments to contributors and beta-testers, as well as a call to action to enjoy the program. The text is formatted in a traditional manual page style, with sections and paragraphs that resemble those found in printed documentation.
This HTML code outputs a manual page for Artistic Style, a source code formatter. It provides information on options and usage, including explanations of various flags and their effects. The output includes acknowledgments to contributors and beta-testers, as well as a call to action to enjoy the program. The text is formatted in a traditional manual page style, with sections and paragraphs that resemble those found in printed documentation.
24 <h3 align="center"><font size="3">by </font><a
25 href="http://www.bigfoot.com/~davidsont"><font size="3">Tal
26 Davidson</font></a><font size="3">, Israel (E-mail: </font><A
27 href="mailto:davidsont@bigfoot.com" ><font size="3">davidsont@bigfoot.com</font></A><font
97 <UL>
98 <LI>Astyle sources and binaries
99 <LI><font >Mailing lists</font>
100 <LI>
101 <DIV><font >Bug tracking
102 facilities<BR> </font></DIV></LI></UL>
103 <LI><font size=3><STRONG>Author's e-mail: Reach me
104 directly at </STRONG> </font><A
105 href="mailto:davidsont@bigfoot.com"><font
Service.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 205 lines
✨ Summary
This Java class represents an Info.plist Service, which is a configuration file used by macOS applications to provide services to other apps. It allows developers to define how their app responds to service requests, including port names, message invocation methods, menu item text, and data types. The class provides getter and setter methods for each field, allowing easy access and modification of the service’s properties.
This Java class represents an Info.plist Service, which is a configuration file used by macOS applications to provide services to other apps. It allows developers to define how their app responds to service requests, including port names, message invocation methods, menu item text, and data types. The class provides getter and setter methods for each field, allowing easy access and modification of the service’s properties.
19 *
20 * Menu Item - The text to add to the Services menu. The value must be unique.
21 * You can use a slash character "/" to specify a submenu. For example, Mail/Send
22 * would appear in the Services Menu as a menu named Mail with an item named Send.
79 * The text to add to the Services menu. The value must be unique.
81 * You can use a slash character "/" to specify a submenu. For example, Mail/Send
83 * would appear in the Services Menu as a menu named Mail with an item named Send.
ccid3.h
(http://omnia2droid.googlecode.com/svn/trunk/)
C++ Header · 172 lines
✨ Summary
This is a C header file that defines structures and functions for handling DCCP (Datagram Congestion Control Protocol) connections. It provides data types and functions for managing receiver and sender half-connection sockets, tracking packet loss and congestion, and controlling transmission rates. The code appears to be part of a larger network protocol implementation.
This is a C header file that defines structures and functions for handling DCCP (Datagram Congestion Control Protocol) connections. It provides data types and functions for managing receiver and sender half-connection sockets, tracking packet loss and congestion, and controlling transmission rates. The code appears to be part of a larger network protocol implementation.
gu.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 1231 lines
time.c
(http://omnia2droid.googlecode.com/svn/trunk/)
C · 80 lines
✨ Summary
This C code sets up a timer for the W90X900 microcontroller, a type of ARM-based processor used in some embedded systems. It initializes the timer registers, sets up an interrupt handler to trigger at regular intervals, and configures the system timer structure to manage the timer’s initialization and offset calculations.
This C code sets up a timer for the W90X900 microcontroller, a type of ARM-based processor used in some embedded systems. It initializes the timer registers, sets up an interrupt handler to trigger at regular intervals, and configures the system timer structure to manage the timer’s initialization and offset calculations.
keycodes.xml (http://keymapper.googlecode.com/svn/trunk/) XML · 1237 lines
lgpl-2.1.txt (https://bitbucket.org/ultra_iter/qt-vtl.git) Plain Text · 504 lines
hlsl.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 479 lines
dbnotnx.mod (https://jedit.svn.sourceforge.net/svnroot/jedit) Unknown · 98 lines
touchright.c
(http://omnia2droid.googlecode.com/svn/trunk/)
C · 195 lines
✨ Summary
This C code implements a Linux kernel module for a serial touchscreen driver, specifically designed for the Touchright protocol. It registers a serio driver with the kernel, allowing it to interact with devices that support this protocol. The module provides interrupt handling and device registration functionality for touchscreens connected via serial interfaces.
This C code implements a Linux kernel module for a serial touchscreen driver, specifically designed for the Touchright protocol. It registers a serio driver with the kernel, allowing it to interact with devices that support this protocol. The module provides interrupt handling and device registration functionality for touchscreens connected via serial interfaces.
2 * Touchright serial touchscreen driver
3 *
4 * Copyright (c) 2006 Rick Koch <n1gp@hotmail.com>
5 *
6 * Based on MicroTouch driver (drivers/input/touchscreen/mtouch.c)
25 #define DRIVER_DESC "Touchright serial touchscreen driver"
27 MODULE_AUTHOR("Rick Koch <n1gp@hotmail.com>");
28 MODULE_DESCRIPTION(DRIVER_DESC);
29 MODULE_LICENSE("GPL");
WebDOMTestSerializedScriptValueInterface.h (https://bitbucket.org/ultra_iter/qt-vtl.git) C Header · 59 lines
Display_Shortcuts.bsh (https://jedit.svn.sourceforge.net/svnroot/jedit) Unknown · 308 lines
news.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 240 lines
31 <title> Preface </title>
33 <para> jEdit is a very mature text editor, and has gone through a very interesting phase of development. Left in a "prerelease" stage for about two years, it's had a long time to solifidy. Many of the original developers, including Slava Pestov, have stopped working directly on jEdit. Fortunately, because of the wonderful nature of open source, there are more and more eyeballs on this code than ever! We have received contributions of plugins, bugfixes, refactoring, and enhancements from around the globe, and our host, sourceforge.net <ulink url = "http://sourceforge.net/project/stats/detail.php?group_id=588&ugn=jedit&type=prdownload&mode=year&package_id=0" >reports</ulink> that there are on average at least a half-million downloads per year, and this has been true for the entire millenium.
34 </para>
38 <para> The thing that really excites me is seeing members of the community get more actively involved in improving jedit or its plugins. The core is huge, and there are over 164 plugins, so there is an endless source of things to do. I anticipate that the trackers will always have many open issues, but I see many of the old ones finally being closed, and that is very much satisfying. I can say with complete confidence that 4.3 is an improvement over 4.2 in many different ways. I hope that after you read this document, you will think so too, and perhaps want to join in on the development of future versions of jEdit or its plugins. </para>
40 <para> I watch the tracker traffic (<literal>jedit-devel</literal>) and commit logs (in the <literal>jedit-cvs</literal> mailing list) with fascination, learning new Java tricks, or new jEdit tricks. It's quite satisfying to be this imtimate with code that I find I am using every day. I feel I am on a first-name basis with all of the active committers, and I've given and/or received help from every one of them. While it is true, there are parts of it that could be designed a little better, it is still the best open source editor I've seen. Thanks to the plugins themselves, because they are broken up into neat little packages, it is easier for us to isolate and fix bugs. As long as I am using it, I will be compelled to fix bugs that annoy me, be they in the core, or any of the plugins I happen to use. </para>
42 </preface>
155 <para> There are quite a few API changes which are described in detail in the
156 API docs, as well as the <ulink url="../CHANGES.txt">CHANGES.txt</ulink> file. Some of the most important ones for a developer are emphasized in this document, btu this is by no means a complete list. If ever you find that some of the API documentation is lacking or needs further explanation, please post a feature request or a question onto the -devel mailing list. </para>
ALCustomizeAction.java (http://aipo.googlecode.com/svn/) Java · 602 lines
LogViewerAttributes.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 371 lines
✨ Summary
This Java class provides a set of properties and methods for configuring a log viewer application. It allows users to customize settings such as font, buffer size, latency, and tab placement, as well as store and retrieve these values from a configuration file. The class also handles default values and invalid input, ensuring that the application remains stable and functional.
This Java class provides a set of properties and methods for configuring a log viewer application. It allows users to customize settings such as font, buffer size, latency, and tab placement, as well as store and retrieve these values from a configuration file. The class also handles default values and invalid input, ensuring that the application remains stable and functional.
AStarFinderPool.java
(http://loon-simple.googlecode.com/svn/trunk/)
Java · 124 lines
✨ Summary
This Java class implements an A* pathfinding algorithm for a game, allowing users to search for paths between two points on a 2D field. It uses a thread pool to run multiple searches concurrently and provides methods for searching paths with various parameters, such as flying mode and flag. The class also includes a task queue to manage running tasks and a stop method to interrupt the pathfinding process.
This Java class implements an A* pathfinding algorithm for a game, allowing users to search for paths between two points on a 2D field. It uses a thread pool to run multiple searches concurrently and provides methods for searching paths with various parameters, such as flying mode and flag. The class also includes a task queue to manage running tasks and a stop method to interrupt the pathfinding process.
TMXTileSet.java
(http://loon-simple.googlecode.com/svn/trunk/)
Java · 191 lines
✨ Summary
This Java class represents a tile set in a TMX (Tiled Map eXchange) file format, used for creating maps in games. It loads and parses the tile set data from an XML file, storing information such as tile dimensions, spacing, and properties. The class provides methods to access and manipulate this data, including getting tile coordinates and checking if a given GID (global ID) is within the tile set’s range.
This Java class represents a tile set in a TMX (Tiled Map eXchange) file format, used for creating maps in games. It loads and parses the tile set data from an XML file, storing information such as tile dimensions, spacing, and properties. The class provides methods to access and manipulate this data, including getting tile coordinates and checking if a given GID (global ID) is within the tile set’s range.
LPaper.java
(http://loon-simple.googlecode.com/svn/trunk/)
Java · 155 lines
✨ Summary
This Java class, LPaper
, represents a graphical paper object in an Android game. It extends LContainer
and provides methods for animation, touch events, and rendering. The paper can be created with different backgrounds, animations, and sizes, and it responds to user input such as clicks and touches.
This Java class, LPaper
, represents a graphical paper object in an Android game. It extends LContainer
and provides methods for animation, touch events, and rendering. The paper can be created with different backgrounds, animations, and sizes, and it responds to user input such as clicks and touches.
SpriteMake.java
(http://loon-simple.googlecode.com/svn/trunk/)
Java · 107 lines
✨ Summary
This Java class, SpriteMake
, is used to create a sprite object with multiple images. It takes a file name and dimensions as input, loads the images, and stores them in a 2D array. The class provides methods to access individual images, create a shadow image, and get the dimensions of the sprite. It can be used to create moveable sprites in a game or animation.
This Java class, SpriteMake
, is used to create a sprite object with multiple images. It takes a file name and dimensions as input, loads the images, and stores them in a 2D array. The class provides methods to access individual images, create a shadow image, and get the dimensions of the sprite. It can be used to create moveable sprites in a game or animation.
AssemblerX86X64.cpp
(http://hadesmem.googlecode.com/svn/trunk/)
C++ · 3106 lines
✨ Summary
This C++ code is a part of an x86 instruction emulator, specifically handling instructions related to memory and register operations. It processes various instruction types such as MMU
(Memory Management Unit) instructions, which manage data transfer between registers and memory, and MOV
instructions, which move data between registers or from/to memory. The code generates the necessary assembly code for these instructions based on their operands and operation codes.
This C++ code is a part of an x86 instruction emulator, specifically handling instructions related to memory and register operations. It processes various instruction types such as MMU
(Memory Management Unit) instructions, which manage data transfer between registers and memory, and MOV
instructions, which move data between registers or from/to memory. The code generates the necessary assembly code for these instructions based on their operands and operation codes.
htaccess.xml (https://jedit.svn.sourceforge.net/svnroot/jedit) XML · 564 lines
45 <KEYWORD1>Anonymous</KEYWORD1>
46 <KEYWORD1>Anonymous_Authoritative</KEYWORD1>
47 <KEYWORD1>Anonymous_LogEmail</KEYWORD1>
48 <KEYWORD1>Anonymous_MustGiveEmail</KEYWORD1>
49 <KEYWORD1>Anonymous_NoUserID</KEYWORD1>
50 <KEYWORD1>Anonymous_VerifyEmail</KEYWORD1>
51 <KEYWORD1>AuthAuthoritative</KEYWORD1>
52 <KEYWORD1>AuthDBMAuthoritative</KEYWORD1>
228 <KEYWORD2>Anonymous</KEYWORD2>
229 <KEYWORD2>Anonymous_Authoritative</KEYWORD2>
230 <KEYWORD2>Anonymous_LogEmail</KEYWORD2>
231 <KEYWORD2>Anonymous_MustGiveEmail</KEYWORD2>
232 <KEYWORD2>Anonymous_NoUserID</KEYWORD2>
233 <KEYWORD2>Anonymous_VerifyEmail</KEYWORD2>
234 <KEYWORD2>AuthAuthoritative</KEYWORD2>
235 <KEYWORD2>AuthDBMAuthoritative</KEYWORD2>
facade-and-adaptor.html
(http://hadesmem.googlecode.com/svn/trunk/)
HTML · 0 lines
✨ Summary
This HTML code outputs a documentation page for a C++ library, specifically the function_output_iterator
class. It provides detailed information about the class’s constructors, operators, and behavior, written in reStructuredText format. The output includes explanations of technical terms and concepts, making it suitable as a reference manual or API documentation.
This HTML code outputs a documentation page for a C++ library, specifically the function_output_iterator
class. It provides detailed information about the class’s constructors, operators, and behavior, written in reStructuredText format. The output includes explanations of technical terms and concepts, making it suitable as a reference manual or API documentation.
21 <td>David Abrahams, Jeremy Siek, Thomas Witt</td></tr>
22 <tr><th class="docinfo-name">Contact:</th>
23 <td><a class="first reference external" href="mailto:dave@boost-consulting.com">dave@boost-consulting.com</a>, <a class="reference external" href="mailto:jsiek@osl.iu.edu">jsiek@osl.iu.edu</a>, <a class="last reference external" href="mailto:witt@styleadvisor.com">witt@styleadvisor.com</a></td></tr>
24 <tr><th class="docinfo-name">Organization:</th>
25 <td><a class="first reference external" href="http://www.boost-consulting.com">Boost Consulting</a>, Indiana University <a class="reference external" href="http://www.osl.iu.edu">Open Systems
get_all_ad_group_criteria.rb
(https://code.google.com/p/google-api-ads-ruby/)
Ruby · 99 lines
✨ Summary
This Ruby script retrieves all criteria for a specified ad group using the Google AdWords API. It connects to the API, authenticates, and executes a SOAP request to retrieve the criteria. The response is then printed to the console, displaying the number of criteria found and their details. If an error occurs, it catches the exception and prints an error message with details about the issue.
This Ruby script retrieves all criteria for a specified ad group using the Google AdWords API. It connects to the API, authenticates, and executes a SOAP request to retrieve the criteria. The response is then printed to the console, displaying the number of criteria found and their details. If an error occurs, it catches the exception and prints an error message with details about the issue.
frame_9.svg (https://bitbucket.org/atchariya/nokia.git) SVG · 3078 lines
105 cd7plK/3PXdF+HEX/lky5nnif+4DX+sDazEOvCqdHJitNqFrnCMxLgR+t+/Z9co1L7ySCp9x45mS
106 Ghyceb0EXo0Lvh6cb6mywREpiMEfdJHjnPhicQwjuIMpOSZyXCAC62nHy75i1y3AnHU7gy9VSOog
107 9d+LVSXtwgrBUv2eR0wqpyMuCEpSp58mohQj6Yx7qEoqNcgFD5GxGFsH7wLPhp5rrqQ8MZeCSGDd
108 r1mlpspSw01AAyaKiSGe+bIbbxfhonOGUsfIYxKvEVnlwkeufHeh3BVl17D0ocFJjkMOTRUizEq9
109 MUV4EDp+RZVRhS9NueK/JaEaySaIGtGVqcxYKKzCkpwzOzNcCrigqrVj9qqeQpUsRpR6LCRrr0GE
262 T4tSOxOpqqOnevsAvJwjn8M4TjOf4Pwfg3A/RNScTirEIW607T6IOE4ieGxB3okR4Q808uYy8nfn
263 zGsl4V55gG+IsLMdX7FAXq745jzxgRiHKG+Kcm0p/MhYc3M6d6JncuNk+uwQ4qebDlOpLs6o7QFR
264 Z2EjV2dlNay5rxOTJwarphpXIZvSDT1y+ybTlUOOvv09oDq283CALdYV700TW9vxSdkxW2alwtaF
265 Dc5PhTX/2Aa2+ZTvCdCtebVbsO+ZL6RMCZF/s+i4s+j5QYQuFWLJf6PJWRlnwvkW3VuxXHbkxRrW
266 E2F7Ua9jCOTYkYe6C0JjoFusWHRdk2smbmYDCSxjxZ77YuzMWMTInb7nqlQMus/VEPoaMKtyzYRy
556 d1ozopWgoIVYLcSK5IR4SdlkUWx3D65cIx4ecen4hHz7fbI5lralOVIDU2m5QuJlG/g68EPJvBYa
557 vpgj/4X17IjwHs7faFr+JAd8zuBJ2nI2DKzHnicSGGoX+nNhwlwCpVNOWbqxIfPQRh7iRIl8Tju+
558 4WtUI/+6TPhpn/PusOZv64YvascfzsrcjNRpCT57QxxLeLWftNxXY7ldMfNarVylT3UnLBO2XOBj
559 wadsY8vBMJClxBMepBX5HPZnM5pYYJxNdm5N9rigkdPtkseeuS/CrheTy8oyUZVJrkSIWrUwTcKr
560 lOdkquV5QoxszqBK0oBX2vW1pmHtzn1PtWtIyChDKGReCYFrlST9Xq3PGCSQRWuGysGNA0JdvyMx
rr-address-090304.php (https://bitbucket.org/shuangxinyu/emacspack.git) PHP · 4 lines
1 <div class="addresscontainer" title="Hot Love Fan Mail">
3 <a target="_self" href="/Site/Content/Exhibitors/exhibitors-welcome.aspx"><img height="100" border="0" width="170" vspace="7" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image21','','/site/images/intro_button_exhib_over.jpg',1)" id="Image21" name="Image21" alt="Exhibitors button" src="http://www.farnborough.com/site/images/intro_button_exhib_static.jpg"/></a>
request.hpp
(http://hadesmem.googlecode.com/svn/trunk/)
C++ Header · 0 lines
✨ Summary
This C++ header file defines a class request
for non-blocking communication in MPI (Message Passing Interface). It provides methods to wait, test, and cancel pending communications, as well as handle serialized receive operations. The class is designed to be used with the Boost MPI library and includes internal implementation details such as request handling and data storage.
This C++ header file defines a class request
for non-blocking communication in MPI (Message Passing Interface). It provides methods to wait, test, and cancel pending communications, as well as handle serialized receive operations. The class is designed to be used with the Boost MPI library and includes internal implementation details such as request handling and data storage.
constants.h
(http://omnia2droid.googlecode.com/svn/trunk/)
C++ Header · 446 lines
✨ Summary
This C++ header file defines constants and enumerations for the SCTP (Stream Control Transmission Protocol) protocol, including transport layer parameters, address scopes, retransmit reasons, lower cwnd reasons, and authentication-related constants. It provides a set of values that can be used throughout an application or library implementing SCTP functionality.
This C++ header file defines constants and enumerations for the SCTP (Stream Control Transmission Protocol) protocol, including transport layer parameters, address scopes, retransmit reasons, lower cwnd reasons, and authentication-related constants. It provides a set of values that can be used throughout an application or library implementing SCTP functionality.
SM-2Arg.cpp (http://hadesmem.googlecode.com/svn/trunk/) text · 0 lines
DefaultPluginResolverTest.java
(http://mycila.googlecode.com/svn/)
Java · 255 lines
✨ Summary
This Java code tests a plugin resolver class, DefaultPluginResolver
, which resolves plugins based on a configuration file. It creates a test environment with multiple plugins and their dependencies, then exercises various scenarios to ensure correct behavior, including resolving plugins, handling cyclic dependencies, and verifying the order of plugin resolution.
This Java code tests a plugin resolver class, DefaultPluginResolver
, which resolves plugins based on a configuration file. It creates a test environment with multiple plugins and their dependencies, then exercises various scenarios to ensure correct behavior, including resolving plugins, handling cyclic dependencies, and verifying the order of plugin resolution.
WordWrap.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 65 lines
✨ Summary
This Java code defines a custom action for a text editor, specifically Log Viewer. When triggered, it toggles word wrapping (line wrapping) on or off in the currently selected log file. It uses a separate class to handle the action and interacts with the main application’s GUI components. The action is part of a larger plugin for the jEdit text editor.
This Java code defines a custom action for a text editor, specifically Log Viewer. When triggered, it toggles word wrapping (line wrapping) on or off in the currently selected log file. It uses a separate class to handle the action and interacts with the main application’s GUI components. The action is part of a larger plugin for the jEdit text editor.
int_float_mixture.hpp
(http://hadesmem.googlecode.com/svn/trunk/)
C++ Header · 0 lines
✨ Summary
This C++ header file provides a set of metafunctions for working with integer and floating-point types, specifically designed for use with Boost’s numeric conversion library. It defines various integral constants and metafunctions to select the appropriate type based on the combination of input types. The code is part of the Boost library and is used to perform conversions between integers and floats.
This C++ header file provides a set of metafunctions for working with integer and floating-point types, specifically designed for use with Boost’s numeric conversion library. It defines various integral constants and metafunctions to select the appropriate type based on the combination of input types. The code is part of the Boost library and is used to perform conversions between integers and floats.
InvalidHeaderException.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 43 lines
✨ Summary
This Java code defines a custom exception class InvalidHeaderException
that extends the built-in IOException
. It provides two constructors: one with no message and another with a specified error message, both of which call the superclass constructor to set the error message. This exception is intended to be used when there’s an issue with a TAR archive header.
This Java code defines a custom exception class InvalidHeaderException
that extends the built-in IOException
. It provides two constructors: one with no message and another with a specified error message, both of which call the superclass constructor to set the error message. This exception is intended to be used when there’s an issue with a TAR archive header.
MycilaJunit3Test.java
(http://mycila.googlecode.com/svn/)
Java · 93 lines
✨ Summary
This Java code defines a custom JUnit 3 test class, MycilaJunit3Test
, which extends the standard TestCase
class. It provides a way to run tests with additional features such as logging and shutdown hooks, allowing for more control over the testing process. The class uses reflection to find the test method and execute it within a try-catch block to handle any exceptions that may occur during testing.
This Java code defines a custom JUnit 3 test class, MycilaJunit3Test
, which extends the standard TestCase
class. It provides a way to run tests with additional features such as logging and shutdown hooks, allowing for more control over the testing process. The class uses reflection to find the test method and execute it within a try-catch block to handle any exceptions that may occur during testing.
mpi_raid.h
(http://omnia2droid.googlecode.com/svn/trunk/)
C++ Header · 260 lines
✨ Summary
This C++ header file defines various structures and types for a storage system, including:
- SCSI IO RAID passthrough requests and replies
- Mailbox requests and replies
- RAID volume indicators
- SCSI command buffers
- Mailbox status codes
These definitions are likely used in a storage system or device driver to manage data transfer and communication with the storage system.
This C++ header file defines various structures and types for a storage system, including:
- SCSI IO RAID passthrough requests and replies
- Mailbox requests and replies
- RAID volume indicators
- SCSI command buffers
- Mailbox status codes
These definitions are likely used in a storage system or device driver to manage data transfer and communication with the storage system.
25 * MPI_RAID_ACTION_INACTIVATE_VOLUME, and
26 * MPI_RAID_ACTION_ADATA_INACTIVATE_ALL.
27 * 07-12-02 01.02.07 Added structures for Mailbox request and reply.
28 * 11-15-02 01.02.08 Added missing MsgContext field to MSG_MAILBOX_REQUEST.
219 /****************************************************************************/
220 /* Mailbox reqeust structure */
221 /****************************************************************************/
233 U16 Reserved4;
234 SGE_IO_UNION SGL;
235 } MSG_MAILBOX_REQUEST, MPI_POINTER PTR_MSG_MAILBOX_REQUEST,
236 MailboxRequest_t, MPI_POINTER pMailboxRequest_t;
251 U32 IOCLogInfo; /* 10h */
252 U32 Reserved4; /* 14h */
253 } MSG_MAILBOX_REPLY, MPI_POINTER PTR_MSG_MAILBOX_REPLY,
254 MailboxReply_t, MPI_POINTER pMailboxReply_t;
LICENSE-2.0.txt (https://bitbucket.org/nbargnesi/idea.git) Plain Text · 202 lines
55 means any form of electronic, verbal, or written communication sent
56 to the Licensor or its representatives, including but not limited to
57 communication on electronic mailing lists, source code control systems,
58 and issue tracking systems that are managed by, or on behalf of, the
59 Licensor for the purpose of discussing and improving the Work, but
BufferList.html
(https://jedit.svn.sourceforge.net/svnroot/jedit)
HTML · 432 lines
✨ Summary
This HTML code outputs a changelog for a plugin called “BufferList” for the text editor jEdit. It displays version history, changes made in each release, and requirements for compatible versions of jEdit. The output is presented in a table format with detailed information about each version, including bug fixes and new features.
This HTML code outputs a changelog for a plugin called “BufferList” for the text editor jEdit. It displays version history, changes made in each release, and requirements for compatible versions of jEdit. The output is presented in a table format with detailed information about each version, including bug fixes and new features.
15 <TD ALIGN="right">
16 <SMALL>By Dirk Möbius<BR>
17 <A HREF="mailto:dmoebius@gmx.net"><EM>dmoebius@gmx.net</EM></A>
18 </SMALL>
19 </TD>
170 <LI>Dirk Möbius <a href="mailto:dmoebius@gmx.net"><EM><dmoebius@gmx.net></EM></a>, or</LI>
171 <LI>jEdit-users mailing-list <a href="mailto:jedit-users@lists.sourceforge.net"><EM><jedit-users@lists.sourceforge.net></EM></a>, or</LI>
172 <LI>jEdit-devel mailing-list <a href="mailto:jedit-devel@lists.sourceforge.net"><EM><jedit-devel@lists.sourceforge.net></EM></a>.</LI>
tst_qdesktopservices.cpp (https://bitbucket.org/ultra_iter/qt-vtl.git) C++ · 388 lines
143 // RFC Valid e-mail addresses
144 QTest::newRow("Wiki valid email 1") << QUrl("mailto:abc@example.com") << true;
145 QTest::newRow("Wiki valid email 2") << QUrl("mailto:Abc@example.com") << true;
149 QTest::newRow("Wiki valid email 6") << QUrl("mailto:_______@example.com") << true;
150 QTest::newRow("Wiki valid email 7") << QUrl("mailto:abc+mailbox/department=shipping@example.com") << true;
151 // S60 email client considers the next URL invalid, even ity should be valid
157 // These return true even though they are invalid, but check that user is notified about invalid URL in mail application
158 QTest::newRow("Wiki invalid email 1") << QUrl("mailto:Abc.example.com") << true; // character @ is missing
159 QTest::newRow("Wiki invalid email 2") << QUrl("mailto:Abc.@example.com") << true; // character dot(.) is last in local part
161 QTest::newRow("Wiki invalid email 4") << QUrl("mailto:A@b@c@example.com") << true; // only one @ is allowed outside quotations marks
162 QTest::newRow("Wiki invalid email 5") << QUrl("mailto:()[]\\;:,<>@example.com") << true; // none of the characters before the @ is allowed outside quotation marks
164 QTest::newRow("Basic") << QUrl("mailto:test@nokia.com") << true;
170 QTest::newRow("BasicAndBcc") << QUrl("mailto:test@nokia.com?bcc=mybcc@address.com") << true;
171 QTest::newRow("BasicAndBody") << QUrl("mailto:test@nokia.com?body=Test email message body") << true;
173 // RFC examples, these are actually invalid because there is not host defined
AUTHORS.txt (https://jedit.svn.sourceforge.net/svnroot/jedit) Plain Text · 5 lines
catalog (https://jedit.svn.sourceforge.net/svnroot/jedit) Unknown · 546 lines
LButton.java
(http://loon-simple.googlecode.com/svn/trunk/)
Java · 250 lines
✨ Summary
This Java class represents a graphical button component for an Android application. It handles touch events, displays images, and updates its state based on user interactions. The button can be created with various image configurations and text labels, and it responds to touch events such as clicks, presses, and releases.
This Java class represents a graphical button component for an Android application. It handles touch events, displays images, and updates its state based on user interactions. The button can be created with various image configurations and text labels, and it responds to touch events such as clicks, presses, and releases.
ff-memless.c
(http://omnia2droid.googlecode.com/svn/trunk/)
C · 517 lines
✨ Summary
This C code implements a memoryless force-feedback device for Linux input devices. It creates a custom driver that supports multiple effects, such as rumble and periodic sounds, and allows users to upload their own effects. The driver uses a timer to schedule the playback of effects and provides methods for playing back, uploading, and destroying effects.
This C code implements a memoryless force-feedback device for Linux input devices. It creates a custom driver that supports multiple effects, such as rumble and periodic sounds, and allows users to upload their own effects. The driver uses a timer to schedule the playback of effects and provides methods for playing back, uploading, and destroying effects.
2 * Force feedback support for memoryless devices
3 *
4 * Copyright (c) 2006 Anssi Hannula <anssi.hannula@gmail.com>
5 * Copyright (c) 2006 Dmitry Torokhov <dtor@mail.ru>
36 MODULE_LICENSE("GPL");
37 MODULE_AUTHOR("Anssi Hannula <anssi.hannula@gmail.com>");
38 MODULE_DESCRIPTION("Force feedback support for memoryless devices");
README.txt (https://jedit.svn.sourceforge.net/svnroot/jedit) Plain Text · 126 lines
59 When writing a bug report, please try to be as specific as possible. You
60 should specify your jEdit version, Java version, operating system, any
61 relevant output from the activity log, and an e-mail address, in case we
62 need further information from you to fix the bug.
68 If you would like to discuss jEdit and be informed when new versions are
69 released, you should subscribe to the mailing lists; see
70 <http://www.jedit.org/?page=feedback> for details.
72 If you would like to discuss the BeanShell scripting language, subscribe
73 to one of the BeanShell mailing lists by visiting
74 <http://www.beanshell.org/contact.html>.
d.vim (https://bitbucket.org/ultra_iter/vim-qt.git) Vim Script · 22 lines
RE.java
(https://jedit.svn.sourceforge.net/svnroot/jedit)
Java · 1357 lines
✨ Summary
This Java code is part of a regular expression compiler, responsible for parsing and compiling regular expressions into an internal representation. It handles various input types, including strings, character arrays, and streams, and provides methods for debugging and human-readable output. The compiled regular expression can be used to match patterns in text data.
This Java code is part of a regular expression compiler, responsible for parsing and compiling regular expressions into an internal representation. It handles various input types, including strings, character arrays, and streams, and provides methods for debugging and human-readable output. The compiled regular expression can be used to match patterns in text data.
LexErlang.cxx
(https://code.google.com/p/pnotepad/)
C++ · 0 lines
✨ Summary
This C++ code defines a lexer module for Erlang programming language, specifically designed to work with the Emacs editor. It provides functionality for classifying and folding text in Erlang source code, including syntax highlighting, keyword detection, and comment handling. The ColouriseErlangDoc
function is used to format documentation comments, while FoldErlangDoc
folds sections of code based on keywords and comments.
This C++ code defines a lexer module for Erlang programming language, specifically designed to work with the Emacs editor. It provides functionality for classifying and folding text in Erlang source code, including syntax highlighting, keyword detection, and comment handling. The ColouriseErlangDoc
function is used to format documentation comments, while FoldErlangDoc
folds sections of code based on keywords and comments.
JetspeedDBSecurityService.java (http://aipo.googlecode.com/svn/) Java · 509 lines
PsmlManagerService.java (http://aipo.googlecode.com/svn/) Java · 149 lines
bucket.py
(git://github.com/linkedin/indextank-service.git)
Python · 495 lines
✨ Summary
This is a Python class that represents an Amazon S3 bucket. It has various methods for interacting with the bucket, such as listing its contents, setting its permissions, and deleting it.
This is a Python class that represents an Amazon S3 bucket. It has various methods for interacting with the bucket, such as listing its contents, setting its permissions, and deleting it.
339 self.set_canned_acl('public-read', key.name, headers=headers)
341 def add_email_grant(self, permission, email_address, recursive=False, headers=None):
342 """
343 Convenience method that provides a quick way to add an email grant to a bucket.
349 :type permission: string
351 :param email_address: The email address associated with the AWS account your are granting
352 the permission to.
353 :type email_address: string
363 raise S3PermissionsError('Unknown Permission: %s' % permission)
364 policy = self.get_acl(headers=headers)
365 policy.acl.add_email_grant(permission, email_address)
366 self.set_acl(policy, headers=headers)
367 if recursive:
component.lisp
(git://github.com/fukamachi/clack.git)
Lisp · 71 lines
✨ Summary
This Lisp code defines a base class component
for Clack, a web framework. It provides a designator for components that can be called using clack.component:call
, and defines a generic function call
that must be implemented by subclasses. The class also includes documentation for the component, including its purpose, synopsis, description, author, and related classes.
This Lisp code defines a base class component
for Clack, a web framework. It provides a designator for components that can be called using clack.component:call
, and defines a generic function call
that must be implemented by subclasses. The class also includes documentation for the component, including its purpose, synopsis, description, author, and related classes.
HTMLLinkElement.cpp
(git://github.com/CyanogenMod/android_external_webkit.git)
C++ · 503 lines
✨ Summary
This C++ code defines a class HTMLLinkElement
that represents an HTML link element. It handles attributes such as href, charset, media, rel, and target, and provides methods for setting and getting these values. The class also tracks the loading state of a linked stylesheet and notifies the document when it is loaded. Additionally, it provides functionality for adding subresources to the stylesheet.
This C++ code defines a class HTMLLinkElement
that represents an HTML link element. It handles attributes such as href, charset, media, rel, and target, and provides methods for setting and getting these values. The class also tracks the loading state of a linked stylesheet and notifies the document when it is loaded. Additionally, it provides functionality for adding subresources to the stylesheet.
view_repository.mako
(https://bitbucket.org/cistrome/cistrome-harvard/)
Mako · 270 lines
✨ Summary
This Mako code outputs a table of ratings for a repository on Galaxy. It displays the number of times the repository has been rated, the average rating, and a list of reviews with their corresponding ratings, comments, review dates, and user names. The code also includes a link to display or hide reviews based on whether they are displayed or not.
This Mako code outputs a table of ratings for a repository on Galaxy. It displays the number of times the repository has been rated, the average rating, and a list of reviews with their corresponding ratings, comments, review dates, and user names. The code also includes a link to display or hide reviews based on whether they are displayed or not.
197 <div class="toolFormTitle">Notification on update</div>
198 <div class="toolFormBody">
199 <form name="receive_email_alerts" id="receive_email_alerts" action="${h.url_for( controller='repository', action='view_repository', id=trans.security.encode_id( repository.id ) )}" method="post" >
200 <div class="form-row">
201 <label>Receive email alerts:</label>
202 ${alerts_check_box.get_html()}
203 <div class="toolParamHelp" style="clear: both;">
204 Check the box and click <b>Save</b> to receive email alerts when updates to this repository occur.
205 </div>
206 </div>
207 <div class="form-row">
208 <input type="submit" name="receive_email_alerts_button" value="Save"/>
209 </div>
210 </form>
Dispatchers.java
(http://mycila.googlecode.com/svn/)
Java · 280 lines
✨ Summary
This Java code defines a utility class Dispatchers
that provides various implementations of event dispatching, including synchronous and asynchronous modes with different thread pools and error handling configurations. It offers customizable options for publishing and subscribing to events, allowing developers to choose the best approach for their specific use cases.
This Java code defines a utility class Dispatchers
that provides various implementations of event dispatching, including synchronous and asynchronous modes with different thread pools and error handling configurations. It offers customizable options for publishing and subscribing to events, allowing developers to choose the best approach for their specific use cases.
pom.xml (http://mycila.googlecode.com/svn/) XML · 261 lines
44 <id>mathieu.carbou</id>
45 <name>Mathieu Carbou</name>
46 <email>mathieu.carbou@gmail.com</email>
47 <url>http://mathieu.carbou.free.fr/</url>
48 <organization>Mycila</organization>
63 <ciManagement/>
65 <mailingLists>
66 <mailingList>
69 <unsubscribe>mycila-unsubscribe@googlegroups.com</unsubscribe>
70 <archive>http://groups.google.com/group/mycila/</archive>
71 </mailingList>
72 </mailingLists>
186 <owner>Mathieu Carbou</owner>
187 <year>${project.inceptionYear}</year>
188 <email>mathieu.carbou@gmail.com</email>
189 </properties>
190 <excludes>
gfxGDIFont.h
(git://github.com/zpao/v8monkey.git)
C Header · 120 lines
✨ Summary
This C++ header file defines a class gfxGDIFont
that represents a font used for rendering text on Windows platforms. It provides methods for accessing font metrics, Cairo fonts, and glyph widths, as well as handling antialiasing and shaping text using Uniscribe or GDI shapers. The class is designed to work with the Mozilla Foundation’s graphics library.
This C++ header file defines a class gfxGDIFont
that represents a font used for rendering text on Windows platforms. It provides methods for accessing font metrics, Cairo fonts, and glyph widths, as well as handling antialiasing and shaping text using Uniscribe or GDI shapers. The class is designed to work with the Mozilla Foundation’s graphics library.
pom.xml (http://mycila.googlecode.com/svn/) XML · 340 lines
matreshka-internals-strings-configuration__x86_64.ads
(git://github.com/landgraf/matreshka.git)
Ada · 61 lines
✨ Summary
This Ada code defines a configuration package for handling strings on an x86_64 platform. It specifies a string handler to be used, which is platform-dependent, and provides an initialization procedure that sets up this handler. The package is designed to work with the Matreshka project, which focuses on localization, internationalization, and globalization.
This Ada code defines a configuration package for handling strings on an x86_64 platform. It specifies a string handler to be used, which is platform-dependent, and provides an initialization procedure that sets up this handler. The package is designed to work with the Matreshka project, which focuses on localization, internationalization, and globalization.
zhenhua.c
(http://photon-android.googlecode.com/svn/)
C · 244 lines
✨ Summary
This C code implements a Linux kernel module that converts data from a Zhen Hua 5-byte protocol RC transmitter into joystick input for Linux applications. It uses the serio driver to receive and process serial data, and registers itself as an input device with the Linux kernel. The module provides a way to use the RC transmitter as a joystick under Linux.
This C code implements a Linux kernel module that converts data from a Zhen Hua 5-byte protocol RC transmitter into joystick input for Linux applications. It uses the serio driver to receive and process serial data, and registers itself as an input device with the Linux kernel. The module provides a way to use the RC transmitter as a joystick under Linux.
FLWORArranger.java
(http://xbird.googlecode.com/svn/trunk/)
Java · 1011 lines
✨ Summary
This Java code is part of an XQuery processor, specifically a dependency checker and optimizer. It analyzes an XQuery expression to identify dependencies between variables and clauses, allowing for optimization and simplification of the query. The code uses visitor patterns to traverse the abstract syntax tree of the XQuery expression and detect dependencies, which are then used to optimize the query.
This Java code is part of an XQuery processor, specifically a dependency checker and optimizer. It analyzes an XQuery expression to identify dependencies between variables and clauses, allowing for optimization and simplification of the query. The code uses visitor patterns to traverse the abstract syntax tree of the XQuery expression and detect dependencies, which are then used to optimize the query.
lis3lv02d (http://omnia2droid.googlecode.com/svn/trunk/) Unknown · 72 lines
8 Authors:
9 Yan Burman <burman.yan@gmail.com>
10 Eric Piel <eric.piel@tremplin-utc.net>
57 If your laptop model is not recognized (cf "dmesg"), you can send an
58 email to the authors to add it to the database. When reporting a new
59 laptop, please include the output of "dmidecode" plus the value of
60 /sys/devices/platform/lis3lv02d/position in these four cases.
ContainerAwareEventDispatcher.php
(git://github.com/symfony/symfony.git)
PHP · 176 lines
✨ Summary
This PHP class, ContainerAwareEventDispatcher
, extends Symfony’s built-in EventDispatcher
and provides a way to lazily load event listeners and subscribers from a dependency injection container. It allows for dynamic registration of event listeners and subscribers using service IDs and method names, enabling flexible event handling in Symfony applications.
This PHP class, ContainerAwareEventDispatcher
, extends Symfony’s built-in EventDispatcher
and provides a way to lazily load event listeners and subscribers from a dependency injection container. It allows for dynamic registration of event listeners and subscribers using service IDs and method names, enabling flexible event handling in Symfony applications.
Empty.php
(http://sewebar-cms.googlecode.com/svn/trunk/)
PHP · 139 lines
✨ Summary
This PHP class, Zend_Search_Lucene_Search_Query_Empty
, represents an empty search query for a Lucene index. It provides methods to rewrite and optimize the query, create a weight implementation, execute the query, retrieve matched document IDs, score documents, and highlight matches. The class is designed to be used as a placeholder or default query when no actual query terms are provided.
This PHP class, Zend_Search_Lucene_Search_Query_Empty
, represents an empty search query for a Lucene index. It provides methods to rewrite and optimize the query, create a weight implementation, execute the query, retrieve matched document IDs, score documents, and highlight matches. The class is designed to be used as a placeholder or default query when no actual query terms are provided.
1 <?php
2 /**
3 * Zend Framework
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
14 *
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
20 * @version $Id: Empty.php 20096 2010-01-06 02:05:09Z bkarwin $
21 */
24 /** Zend_Search_Lucene_Search_Query */
25 require_once 'Zend/Search/Lucene/Search/Query.php';
AclProviderInterface.php
(git://github.com/symfony/symfony.git)
PHP · 50 lines
✨ Summary
This PHP interface defines a contract for retrieving and managing Access Control Lists (ACLs) in a Symfony application. It provides methods to find child object identities, retrieve ACLs for specific object identities, and map multiple object identities to their corresponding ACLs. The interface is designed to be implemented by classes that handle ACL-related operations.
This PHP interface defines a contract for retrieving and managing Access Control Lists (ACLs) in a Symfony application. It provides methods to find child object identities, retrieve ACLs for specific object identities, and map multiple object identities to their corresponding ACLs. The interface is designed to be implemented by classes that handle ACL-related operations.
related_tools.dox (git://github.com/dladd/cm.git) Unknown · 49 lines
6 - To view openCMISS tracker items, go to https://tracker.physiomeproject.org/buglist.cgi?query_format=advanced&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=openCMISS-cm
7 - To add a tracker item: https://tracker.physiomeproject.org/enter_bug.cgi?classification=openCMISS-cm
8 - Set preferences in the tracker to shadow/watch the opencmiss@physiomeproject.org user. It is a default CC on openCMISS items, and that way you can set your preferences as to which bugmail you get, and have all new openCMISS tracker items.
9 - There is an RSS feed link for any search result, so if you do a search for openCMISS (Advanced search, then choose openCMISS from "Classification"), you can use the RSS feed, and CC yourself to tracker items of interest.
24 -# Make sure that all build dependencies are met
25 -# Accept the ssl certificate permanently: in terminal, use \code svn list https://svn.physiomeproject.org/svn/opencmissextras/cm/trunk/external/ \endcode and select p.
26 -# Send an email to opencmiss-developers@lists.sourceforge.net with the following information
27 - Name (e.g. Joe Bloggs)
28 - OS - Name, Version & Architecture ( CentOS 5 64bit)
33 buildbot create-slave [slave dir] autotest.bioeng.auckland.ac.nz:9999 [slavename] [password]
34 cd [slave dir]/info
35 echo "Put Your Name Here < and some cryptic email text> > admin
36 echo OpenCMISS - Name Version & Architecture `uname -a` > host
37 cat admin host
nsUniscribeBreaker.cpp
(git://github.com/zpao/v8monkey.git)
C++ · 92 lines
✨ Summary
This C++ code extracts complex line breaks from a given text and stores them in an array. It uses the ScriptItemize function to break down the text into individual items, then checks each item for a soft break using the ScriptBreak function. The results are stored in an array of boolean values indicating whether each character is a soft break or not.
This C++ code extracts complex line breaks from a given text and stores them in an array. It uses the ScriptItemize function to break down the text into individual items, then checks each item for a soft break using the ScriptBreak function. The results are stored in an array of boolean values indicating whether each character is a soft break or not.
if_cs.c
(http://photon-android.googlecode.com/svn/)
C · 1053 lines
✨ Summary
This C code implements a Linux module for a wireless networking card, specifically the Libertas chip. It provides a driver that interacts with the card’s firmware and hardware, allowing it to be used in Linux systems. The code handles device detection, initialization, and shutdown, as well as interrupt handling and firmware loading.
This C code implements a Linux module for a wireless networking card, specifically the Libertas chip. It provides a driver that interacts with the card’s firmware and hardware, allowing it to be used in Linux systems. The code handles device detection, initialization, and shutdown, as well as interrupt handling and firmware loading.
3 Driver for the Marvell 8385 based compact flash WLAN cards.
5 (C) 2007 by Holger Schurig <hs4233@mail.mn-solutions.de>
7 This program is free software; you can redistribute it and/or modify
46 /********************************************************************/
48 MODULE_AUTHOR("Holger Schurig <hs4233@mail.mn-solutions.de>");
49 MODULE_DESCRIPTION("Driver for Marvell 83xx compact flash WLAN cards");
50 MODULE_LICENSE("GPL");
get_related_placements.rb
(https://code.google.com/p/google-api-ads-ruby/)
Ruby · 0 lines
✨ Summary
This Ruby script retrieves URLs with content keywords related to a given website using the AdWords API. It performs a search for “related placements” and displays the results, including the URL and the keyword found at that location. The script also handles HTTP and API errors that may occur during the process.
This Ruby script retrieves URLs with content keywords related to a given website using the AdWords API. It performs a search for “related placements” and displays the results, including the URL and the keyword found at that location. The script also handles HTTP and API errors that may occur during the process.