This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: ide/src/extension/locale/sv-SE/options.dtd | |
| =================================================================== | |
| --- ide/src/extension/locale/sv-SE/options.dtd (revision 0) | |
| +++ ide/src/extension/locale/sv-SE/options.dtd (revision 0) | |
| @@ -0,0 +1,26 @@ | |
| +<!ENTITY options.encoding.description "Textkodning i testfiler"> | |
| +<!ENTITY options.timeout.description "Standard timeoutvärde i inspelade kommandon"> | |
| +<!ENTITY options.userExtensionsPaths.description "Selenium Core-tillägg (user-extensions.js)"> | |
| +<!ENTITY options.ideExtensionsPaths.description "Selenium IDE-tillägg"> | |
| +<!ENTITY options.extensions.tip "Tips om tillägg: Stäng och öppna Selenium IDE-fönstret för att få ändringarna att slå igenom. Du kan ange flera filer, avdelade med kommatecken."> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! | |
| * Ext JS Library 3.1.0 | |
| * Copyright(c) 2006-2009 Ext JS, LLC | |
| * [email protected] | |
| * http://www.extjs.com/license | |
| * Olle Jonsson added some jQuery abort functionality | |
| */ | |
| // for old browsers | |
| window.undefined = window.undefined; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REM Subversion pre-commit hook for Windows machine | |
| REM put this in your SVN repository folder /hooks/pre-commit.bat | |
| REM we use it with svn version | |
| REM http://stackoverflow.com/questions/869248/windows-pre-commit-hook-for-comment-length-subversion | |
| @echo off | |
| :: Stops commits that have empty log messages. | |
| @echo off | |
| setlocal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/env python | |
| import _winreg as winreg | |
| """ | |
| Regkey to make IE start as IE7. | |
| <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> | |
| HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER) | |
| SOFTWARE | |
| Microsoft |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby -wKU | |
| # | |
| # stitcher: Sends UDP packets of 1024 bytes to the custom-built display. | |
| # | |
| # Sync packet: "synk" is sent before an image. | |
| # 64x48 is the screen size of the custom-built display. | |
| # The @fps setting configures frames per second. | |
| # | |
| # Here's a random invocation of ffmpeg: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| == `fail([msg])` == | |
| Throws a JavaScript Error with given message string. | |
| == `assert([msg], actual)` == | |
| == `assertTrue([msg], actual)` == | |
| Fails if the result isn't truthy. To use a message, add it as the first parameter. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: DB/Sqlite/Tools.php | |
| =================================================================== | |
| --- DB/Sqlite/Tools.php (revision 302149) | |
| +++ DB/Sqlite/Tools.php (working copy) | |
| @@ -371,7 +371,7 @@ | |
| $this->sqliteQuery('PRAGMA default_cache_size'); | |
| } | |
| } else { | |
| - if (!eregi('[[:digit:]]', $pages)) { | |
| + if (!preg_match("/\d/", $pages)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: ldap2.php | |
| =================================================================== | |
| --- ldap2.php (revision 302149) | |
| +++ ldap2.php (working copy) | |
| @@ -936,7 +936,7 @@ | |
| !$this->isManip(isset($query['action']) ? $query['action'] : $this->param['action']) | |
| ) { | |
| $filter = $query[0]; | |
| - $tokens = split("[\&\?\!]", $filter); | |
| + $tokens = preg_split("/[\&\?\!]/", $filter); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: ldap.php | |
| =================================================================== | |
| --- ldap.php (revision 302149) | |
| +++ ldap.php (working copy) | |
| @@ -952,7 +952,7 @@ | |
| function createSequence($seq_name) | |
| { | |
| // Extract $seq_id from DN | |
| - ereg("^([^,]*),", $seq_name, $regs); | |
| + preg_match("/^([^,]*),/", $seq_name, $regs); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: DB/ifx.php | |
| =================================================================== | |
| --- DB/ifx.php (revision 302149) | |
| +++ DB/ifx.php (working copy) | |
| @@ -536,7 +536,7 @@ | |
| */ | |
| function errorCode($nativecode) | |
| { | |
| - if (ereg('SQLCODE=(.*)]', $nativecode, $match)) { | |
| + if (preg_match('/SQLCODE=(.*)]/', $nativecode, $match)) { |