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: languages/swedish.php | |
=================================================================== | |
--- languages/swedish.php (revision 1261) | |
+++ languages/swedish.php (working copy) | |
@@ -44,12 +44,12 @@ | |
$lang["LINENO"] = "Radnr."; | |
$lang["SHOWENTIREFILE"] = "Visa hela filen"; | |
$lang["SHOWCOMPACT"] = "Visa bara områden med skillnader"; | |
-// $lang["IGNOREWHITESPACE"] = "Ignore whitespace"; | |
-// $lang["REGARDWHITESPACE"] = "Regard whitespace"; |
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
83c83 | |
< | |
--- | |
> | |
86c86 | |
< $this->getPathWithoutCommonPart($clone->aFile, $commonPath), | |
--- | |
> str_replace($commonPath, '', $clone->aFile), | |
89c89 | |
< $this->getPathWithoutCommonPart($clone->bFile, $commonPath), |
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
diff --git a/Makefile b/Makefile | |
index eb568b7..d476b7c 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -28,10 +28,10 @@ install: package | |
cp $(DIST_DIR)/$(PACKAGE).ez $(RABBITMQ_HOME)/plugins | |
$(DEPS_DIR): | |
- ./rebar get-deps | |
+ rebar get-deps |
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
export HUDSONURL=http://devbox:8180/hudson | |
function installhudsonplugin { | |
java -jar ~/src/hudson-cli.jar -s $HUDSONURL install-plugin $1 | |
} |
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
ABS ABSOLUTE ACCESS ACQUIRE ACTION ADA ADD ADMIN AFTER AGGREGATE ALIAS | |
ALL ALLOCATE ALLOW ALTER AND ANY ARE ARRAY AS ASC ASENSITIVE ASSERTION | |
ASUTIME ASYMMETRIC AT ATOMIC AUDIT AUTHORIZATION AUX AUXILIARY AVG | |
BACKUP BEFORE BEGIN BETWEEN BIGINT BINARY BIT BIT_LENGTH BLOB BOOLEAN | |
BOTH BREADTH BREAK BROWSE BUFFERPOOL BULK BY | |
CALL CALLED CAPTURE CARDINALITY CASCADE CASCADED CASE CAST CATALOG | |
CCSID CEIL CEILING CHAR CHAR_LENGTH CHARACTER CHARACTER_LENGTH CHECK | |
CHECKPOINT CLASS CLOB CLOSE CLUSTER CLUSTERED COALESCE COLLATE | |
COLLATION COLLECT COLLECTION COLLID COLUMN COMMENT COMMIT COMPLETION |
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
# | |
# This is the output of svn ls http://svn.php.net/repository/pear/packages | |
# ...and some grepping | |
# | |
svn co http://svn.php.net/repository/pear/packages/Archive_Tar/trunk Archive_Tar; sleep 1 | |
svn co http://svn.php.net/repository/pear/packages/Archive_Zip/trunk Archive_Zip; sleep 1 | |
svn co http://svn.php.net/repository/pear/packages/Auth/trunk Auth; sleep 1 | |
svn co http://svn.php.net/repository/pear/packages/Auth_HTTP/trunk Auth_HTTP; sleep 1 | |
svn co http://svn.php.net/repository/pear/packages/Auth_PrefManager/trunk Auth_PrefManager; sleep 1 | |
svn co http://svn.php.net/repository/pear/packages/Auth_PrefManager2/trunk Auth_PrefManager2; sleep 1 |
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: php-rc.js | |
=================================================================== | |
--- php-rc.js (revision 10201) | |
+++ php-rc.js (working copy) | |
@@ -129,15 +129,7 @@ | |
if (options.receiver) { | |
result += options.receiver + '->'; | |
} | |
- result += this.message; | |
- result += '('; |
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
from pyparsley import PyParsley | |
parselet = PyParsley({ | |
"title": "title", | |
"links(a)": [ | |
{ | |
"name": ".", | |
"href": "@href" | |
} | |
] | |
}) |
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
diff --git a/js/jquery.raty.js b/js/jquery.raty.js | |
index cefc128..7b09b81 100755 | |
--- a/js/jquery.raty.js | |
+++ b/js/jquery.raty.js | |
@@ -140,7 +140,7 @@ | |
.live('click', function() { | |
$('input#' + containerId + '-score').val(0); | |
if (onClick) { | |
- onClick(0); | |
+ onClick.apply($this, [0]); |
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: /Users/olle/opensource/php/SphinxSearch/SphinxSearch_body.php | |
=================================================================== | |
--- /Users/olle/opensource/php/SphinxSearch/SphinxSearch_body.php (revision 72895) | |
+++ /Users/olle/opensource/php/SphinxSearch/SphinxSearch_body.php (working copy) | |
@@ -607,17 +607,17 @@ | |
$wgOut->addHTML( "<div style='margin:0.5em 0 0.5em 0;'>" ); | |
if ( $wgSphinxSearch_mode == SPH_MATCH_EXTENDED ) { | |
- $wgOut->addHTML( "<input type='radio' name='match_all' value='0' " . | |
+ $wgOut->addHTML( "<label><input type='radio' name='match_all' value='0' " . |