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
| /* the users */ | |
| CREATE TABLE `users` ( | |
| `id` int(10) unsigned NOT NULL AUTO_INCREMENT, | |
| `username` varchar(128) NOT NULL, | |
| `email` varchar(128) NOT NULL, | |
| `password` varchar(128) NOT NULL | |
| ); | |
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
| ScrabbleClub cmv$ git commit -a | |
| # On branch master | |
| # Your branch is ahead of 'origin/master' by 69 commits. | |
| # | |
| # Changes not staged for commit: | |
| # (use "git add <file>..." to update what will be committed) | |
| # (use "git checkout -- <file>..." to discard changes in working directory) | |
| # (commit or discard the untracked or modified content in submodules) | |
| # | |
| # modified: bundles/eloquent (modified content, untracked content) |
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
| String.prototype.reverse = function() { | |
| var str=''; | |
| for (i=this.length-1;i>=0;i--) { | |
| str += this.charAt(i); | |
| } | |
| return str; | |
| } | |
| String.prototype.translate = function(from,to) { | |
| var sl = this.length, |
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
| --- main.py.ORIG 2011-03-22 10:39:57.000000000 -0400 | |
| +++ main.py 2011-03-22 10:40:03.000000000 -0400 | |
| @@ -71,7 +71,11 @@ | |
| raise ValueError("Config value for move_files_destination cannot be None if move_files_enabled is True") | |
| try: | |
| - return cnamer.newPath(destDir, getPathPreview = getPathPreview) | |
| + if Config['copy_instead_of_move']: | |
| + return cnamer.newPath(destDir, getPathPreview = getPathPreview, False, True ) | |
| + else: |
NewerOlder