Merge latest changes with public repository
This commit is contained in:
parent
8ef30d00eb
commit
9741a93a9f
@ -279,7 +279,6 @@ Clipperz.PM.DataModel.Record.prototype = MochiKit.Base.update(null, {
|
||||
if (this.shouldProcessData()) {
|
||||
var currentVersionParameters;
|
||||
|
||||
console.log("Record.processData", someValues);
|
||||
this.processDataToExtractLegacyValues(someValues['data']);
|
||||
|
||||
if (typeof(someValues['data']['notes']) != 'undefined') {
|
||||
@ -292,16 +291,16 @@ console.log("Record.processData", someValues);
|
||||
this.setCurrentVersionKey(this.key());
|
||||
}
|
||||
|
||||
// community edition doesn't currently pass version
|
||||
// information
|
||||
// community edition doesn't currently pass version information
|
||||
if (someValues['versions'] == null) {
|
||||
currentVersionParameters = someValues['currentVersion'];
|
||||
} else {
|
||||
currentVersionParameters = someValues['versions'][someValues['currentVersion']];
|
||||
}
|
||||
|
||||
console.log("Record.processData - this.currentVersionKey()", this.currentVersionKey());
|
||||
console.log("Record.processData - currentVersionParameters", currentVersionParameters);
|
||||
//- currentVersionParameters = someValues['currentVersion'];
|
||||
// currentVersionParameters = someValues['versions'][someValues['currentVersion']];
|
||||
|
||||
currentVersionParameters['key'] = this.currentVersionKey();
|
||||
this.setCurrentVersion(new Clipperz.PM.DataModel.RecordVersion(this, currentVersionParameters));
|
||||
|
||||
|
@ -508,7 +508,7 @@ Clipperz.PM.Strings.Languages['en-us'] = {
|
||||
<li><p>Get Firefox! Sidebars are only available in Firefox and you need to switch to Firefox in order to enjoy the convenience of Clipperz Compact.</p></li>\
|
||||
<li>\
|
||||
<p>Add the following URL to Firefox bookmarks, or even better, drag it to the bookmark bar.</p>\
|
||||
<div id=\"compactLinkBox\"><a href=\"index.html?compact\" target=\"_search\">Clipperz Compact</a></div>\
|
||||
<div id=\"compactLinkBox\"><a href=\"./index.html?compact\" target=\"_search\">Clipperz Compact</a></div>\
|
||||
</li>\
|
||||
<li><p>Change the properties of the bookmark so that “load this bookmark in the sidebar” is checked.</p></li>\
|
||||
</ol>\
|
||||
|
@ -13,7 +13,6 @@ def repositoryWithPath (path):
|
||||
from git import Repo
|
||||
repo = Repo(path)
|
||||
result = GitRepository(repo, path)
|
||||
|
||||
except ImportError, exception:
|
||||
print "Failed to import git, please install http://gitorious.org/git-python"
|
||||
raise exception
|
||||
@ -89,9 +88,12 @@ class HgRepository(Repository):
|
||||
|
||||
#===================================================================
|
||||
|
||||
|
||||
class SnapshotRepository(Repository):
|
||||
|
||||
def revision (self):
|
||||
return 'SNAPSHOT'
|
||||
|
||||
|
||||
def areTherePendingChanges (self):
|
||||
return False
|
||||
|
Loading…
Reference in New Issue
Block a user