Author: keschte
Date: 2006-08-12 14:43:09 +0000 (Sat, 12 Aug 2006)
New Revision: 8394
Modified:
mb_server/branches/RELEASE_20060712-BRANCH/htdocs/scripts/editsuite.js
mb_server/branches/RELEASE_20060712-BRANCH/htdocs/scripts/src/editsuite/module/EsTrackParserModule.js
Log:
default setting of the resize option of the trackparser textarea is off. (see
#2024)
Modified: mb_server/branches/RELEASE_20060712-BRANCH/htdocs/scripts/editsuite.js
===================================================================
--- mb_server/branches/RELEASE_20060712-BRANCH/htdocs/scripts/editsuite.js
2006-08-12 14:36:39 UTC (rev 8393)
+++ mb_server/branches/RELEASE_20060712-BRANCH/htdocs/scripts/editsuite.js
2006-08-12 14:43:09 UTC (rev 8394)
@@ -1800,7 +1800,7 @@
this.CFG_FILLTRACKTIMES=this.getModID()+".filltracktimes";
this.CFG_STRIPBRACKETS=this.getModID()+".stripbrackets";
this.CFG_COLLAPSETEXTAREA=this.getModID()+".collapsetextarea";
-this.CONFIG_LIST=[new EsModuleConfig(this.CFG_RELEASETITLE,false,"Set release
title from first line","The First line is handled as the release title, which
is filled "+"into the release title field. The tracks are expected to start
from line 2."),new EsModuleConfig(this.CFG_TRACKNUMBER,true,"Tracknames start
with a number","This setting attempts to find lines between lines which have a
track "+"number and parses ExtraTitleInformation, which is added to the
previous track."),new EsModuleConfig(this.CFG_VINYLNUMBERS,false,"Enable vinyl
track numbers","Characters which are used for numbering of the tracks may
include "+"alphanummeric characters (0-9, a-z) (A1, A2, ... C, D...)."),new
EsModuleConfig(this.CFG_TRACKTIMES,true,"Detect track times","The line is
inspected for an occurence of numbers separated by a colon. "+"If such a value
is found, the track time is read and stripped from the t
rack "+"title. Round parentheses surrounding the time are removed as
well."),new EsModuleConfig(this.CFG_FILLTRACKTIMES,true,"Fill in track
times","Fill in the track times from the detected values above. If this box is
"+"not activated, the track time fields will not be modified."),new
EsModuleConfig(this.CFG_STRIPBRACKETS,true,"Remove text in brackets [...]","If
this checkbox is activated, text in square brackets "+"(usually links to other
pages) is stripped from the titles."),new
EsModuleConfig(this.CFG_COLLAPSETEXTAREA,true,"Resize textarea
automatically","If this checkbox is activated, the textarea is enlarged "+"if
it has the keyboard focus, and collapsed again when the focus is lost.")];
+this.CONFIG_LIST=[new EsModuleConfig(this.CFG_RELEASETITLE,false,"Set release
title from first line","The First line is handled as the release title, which
is filled "+"into the release title field. The tracks are expected to start
from line 2."),new EsModuleConfig(this.CFG_TRACKNUMBER,true,"Tracknames start
with a number","This setting attempts to find lines between lines which have a
track "+"number and parses ExtraTitleInformation, which is added to the
previous track."),new EsModuleConfig(this.CFG_VINYLNUMBERS,false,"Enable vinyl
track numbers","Characters which are used for numbering of the tracks may
include "+"alphanummeric characters (0-9, a-z) (A1, A2, ... C, D...)."),new
EsModuleConfig(this.CFG_TRACKTIMES,true,"Detect track times","The line is
inspected for an occurence of numbers separated by a colon. "+"If such a value
is found, the track time is read and stripped from the t
rack "+"title. Round parentheses surrounding the time are removed as
well."),new EsModuleConfig(this.CFG_FILLTRACKTIMES,true,"Fill in track
times","Fill in the track times from the detected values above. If this box is
"+"not activated, the track time fields will not be modified."),new
EsModuleConfig(this.CFG_STRIPBRACKETS,true,"Remove text in brackets [...]","If
this checkbox is activated, text in square brackets "+"(usually links to other
pages) is stripped from the titles."),new
EsModuleConfig(this.CFG_COLLAPSETEXTAREA,false,"Resize textarea
automatically","If this checkbox is activated, the textarea is enlarged "+"if
it has the keyboard focus, and collapsed again when the focus is lost.")];
this.TRACKSAREA=this.getModID()+".tracksarea";
this.BTN_SWAP="BTN_TP_SWAP";
this.BTN_PARSE="BTN_TP_PARSE";
Modified:
mb_server/branches/RELEASE_20060712-BRANCH/htdocs/scripts/src/editsuite/module/EsTrackParserModule.js
===================================================================
---
mb_server/branches/RELEASE_20060712-BRANCH/htdocs/scripts/src/editsuite/module/EsTrackParserModule.js
2006-08-12 14:36:39 UTC (rev 8393)
+++
mb_server/branches/RELEASE_20060712-BRANCH/htdocs/scripts/src/editsuite/module/EsTrackParserModule.js
2006-08-12 14:43:09 UTC (rev 8394)
@@ -86,7 +86,7 @@
"If this checkbox is
activated, text in square brackets "+
"(usually links to other
pages) is stripped from the titles."),
new EsModuleConfig(this.CFG_COLLAPSETEXTAREA,
- true,
+ false,
"Resize textarea
automatically",
"If this checkbox is
activated, the textarea is enlarged "+
"if it has the keyboard focus,
and collapsed again when the focus is lost.")
|