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
| *** system/themes/k2/style.css 2010-06-21 22:15:10.587118909 +0800 | |
| --- user/themes/k2/style.css 2010-06-27 21:22:38.248366535 +0800 | |
| *************** | |
| *** 891,895 **** | |
| --- 891,902 ---- | |
| border: 1px solid #999; | |
| } | |
| + /*- | |
| + Github Gists |
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
| DDNS Service: Custom | |
| DYNDNS Server: updates.dnsomatic.com | |
| Username: | |
| Password: | |
| Hostname: all.dnsomatic.com | |
| URL: /nic/update? |
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
| *** system/themes/k2/theme.xml 2010-06-21 22:15:10.587118909 +0800 | |
| --- user/themes/k2/theme.xml 2010-06-21 23:06:11.018366092 +0800 | |
| *************** | |
| *** 1,6 **** | |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <pluggable type="theme"> | |
| ! <name>K2</name> | |
| <license url="http://www.apache.org/licenses/LICENSE-2.0.html">Apache Software License 2.0</license> | |
| <author url="http://getk2.com/">K2 Team</author> |
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
| *** user/plugins/gistextras/gistextras.plugin.php.orig 2010-06-26 22:11:59.777117173 +0800 | |
| --- user/plugins/gistextras/gistextras.plugin.php 2010-06-26 22:11:32.328366681 +0800 | |
| *************** | |
| *** 2,20 **** | |
| class GistExtras extends Plugin | |
| { | |
| - public function info() | |
| - { | |
| - return array( |
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
| <?xml version="1.0" encoding="utf-8" ?> | |
| <pluggable type="plugin"> | |
| <name>Gist Extras</name> | |
| <license url="http://www.apache.org/licenses/LICENSE-2.0.html">Apache Software License 2.0</license> | |
| <url>http://andrewhutchings.com</url> | |
| <author url="http://andrewhutchings.com">Andrew Hutchings</author> | |
| <version>0.0.2</version> | |
| <description><![CDATA[Embeds gists in post content, and allows for the use of custom CSS.]]></description> | |
| <copyright>2009</copyright> | |
| </pluggable> |
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 -cr putty-src-orig/CONFIG.C putty-src/CONFIG.C | |
| *** putty-src-orig/CONFIG.C Sun Feb 18 18:56:16 2007 | |
| --- putty-src/CONFIG.C Fri Apr 23 17:23:14 2010 | |
| *************** | |
| *** 11,16 **** | |
| --- 11,17 ---- | |
| #include "storage.h" | |
| #define PRINTER_DISABLED_STRING "None (printing disabled)" | |
| + #define PRINT_TO_CLIPBOARD_STRING "Windows clipboard" |
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: fluffytag.css | |
| =================================================================== | |
| --- fluffytag.css (revision 3226) | |
| +++ fluffytag.css (working copy) | |
| @@ -7,11 +7,10 @@ | |
| #fluffytag li a { | |
| margin: 0px; | |
| line-height: 34px; | |
| - color: #000; | |
| + color: #CCCCCC; |
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
| *** system/themes/k2/comments.php 2010-06-21 22:15:10.587118909 +0800 | |
| --- user/themes/k2/comments.php 2010-06-21 23:20:23.068368014 +0800 | |
| *************** | |
| *** 22,27 **** | |
| --- 22,28 ---- | |
| ?> | |
| <li id="comment-<?php echo $comment->id; ?>" <?php echo $theme->k2_comment_class( $comment, $post ); ?>> | |
| <a href="#comment-<?php echo $comment->id; ?>" class="counter" title="<?php _e('Permanent Link to this Comment'); ?>"><?php echo $comment->id; ?></a> | |
| + <img src="<? echo $comment->gravatar ?>"> | |
| <span class="commentauthor"><?php echo $comment_url; ?></span> |
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
| *** system/themes/k2/theme.php 2010-06-21 22:15:10.587118909 +0800 | |
| --- user/themes/k2/theme.php 2010-06-23 20:00:35.488368879 +0800 | |
| *************** | |
| *** 46,51 **** | |
| --- 46,70 ---- | |
| * template. So the values here, unless checked, will overwrite any existing | |
| * values. | |
| */ | |
| + | |
| + /** |