mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 03:57:21 +00:00
Allow digits in field names
This commit is contained in:
parent
84cd296c58
commit
0ac4c2b554
@ -7,7 +7,7 @@ ConfirmCancelTiddler: Do you wish to discard changes to the tiddler "<$text text
|
|||||||
ConfirmDeleteTiddler: Do you wish to delete the tiddler "<$text text=<<title>>/>"?
|
ConfirmDeleteTiddler: Do you wish to delete the tiddler "<$text text=<<title>>/>"?
|
||||||
ConfirmOverwriteTiddler: Do you wish to overwrite the tiddler "<$text text=<<title>>/>"?
|
ConfirmOverwriteTiddler: Do you wish to overwrite the tiddler "<$text text=<<title>>/>"?
|
||||||
ConfirmEditShadowTiddler: You are about to edit a ShadowTiddler. Any changes will override the default system making future upgrades non-trivial. Are you sure you want to edit "<$text text=<<title>>/>"?
|
ConfirmEditShadowTiddler: You are about to edit a ShadowTiddler. Any changes will override the default system making future upgrades non-trivial. Are you sure you want to edit "<$text text=<<title>>/>"?
|
||||||
InvalidFieldName: Illegal characters in field name "<$text text=<<fieldName>>/>". Fields can only contain lowercase letters and the characters underscore (`_`), hyphen (`-`) and period (`.`)
|
InvalidFieldName: Illegal characters in field name "<$text text=<<fieldName>>/>". Fields can only contain lowercase letters, digits and the characters underscore (`_`), hyphen (`-`) and period (`.`)
|
||||||
MissingTiddler/Hint: Missing tiddler "<$text text=<<currentTiddler>>/>" - click {{$:/core/images/edit-button}} to create
|
MissingTiddler/Hint: Missing tiddler "<$text text=<<currentTiddler>>/>" - click {{$:/core/images/edit-button}} to create
|
||||||
RecentChanges/DateFormat: DDth MMM YYYY
|
RecentChanges/DateFormat: DDth MMM YYYY
|
||||||
RelativeDate/Future/Days: <<period>> days from now
|
RelativeDate/Future/Days: <<period>> days from now
|
||||||
|
@ -413,6 +413,18 @@ exports.parseTextReference = function(textRef) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
Checks whether a string is a valid fieldname
|
||||||
|
*/
|
||||||
|
exports.isValidFieldName = function(name) {
|
||||||
|
if(!name || typeof name !== "string") {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
name = name.toLowerCase().trim();
|
||||||
|
var fieldValidatorRegEx = /^[a-z0-9\-\._]+$/mg;
|
||||||
|
return fieldValidatorRegEx.test(name);
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Extract the version number from the meta tag or from the boot file
|
Extract the version number from the meta tag or from the boot file
|
||||||
*/
|
*/
|
||||||
|
@ -71,12 +71,11 @@ FieldManglerWidget.prototype.handleRemoveFieldEvent = function(event) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
FieldManglerWidget.prototype.handleAddFieldEvent = function(event) {
|
FieldManglerWidget.prototype.handleAddFieldEvent = function(event) {
|
||||||
var tiddler = this.wiki.getTiddler(this.mangleTitle),
|
var tiddler = this.wiki.getTiddler(this.mangleTitle);
|
||||||
fieldValidatorRegEx = /^[a-z\-\._]+$/mg;
|
|
||||||
if(tiddler && typeof event.param === "string") {
|
if(tiddler && typeof event.param === "string") {
|
||||||
var name = event.param.toLowerCase().trim();
|
var name = event.param.toLowerCase().trim();
|
||||||
if(name !== "" && !$tw.utils.hop(tiddler.fields,name)) {
|
if(name !== "" && !$tw.utils.hop(tiddler.fields,name)) {
|
||||||
if(!fieldValidatorRegEx.test(name)) {
|
if(!$tw.utils.isValidFieldName(name)) {
|
||||||
alert($tw.language.getString(
|
alert($tw.language.getString(
|
||||||
"InvalidFieldName",
|
"InvalidFieldName",
|
||||||
{variables:
|
{variables:
|
||||||
|
Loading…
Reference in New Issue
Block a user