pict-section-form 1.0.16 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +17 -1
- package/debug/Harness.js +0 -0
- package/debug/ParseCSV.js +114 -0
- package/debug/TabularManifestCSV.csv +89 -0
- package/example_applications/complex_table/Complex-Tabular-Application.js +16 -7
- package/example_applications/manyfest_editor/.quackage.json +9 -0
- package/example_applications/manyfest_editor/node_modules/.package-lock.json +18 -8
- package/example_applications/manyfest_editor/node_modules/crossroads/.jshintrc +69 -0
- package/example_applications/manyfest_editor/node_modules/crossroads/CHANGELOG.md +212 -0
- package/example_applications/manyfest_editor/node_modules/crossroads/README.md +105 -0
- package/example_applications/manyfest_editor/node_modules/crossroads/build.js +99 -0
- package/example_applications/manyfest_editor/node_modules/crossroads/package.json +37 -0
- package/example_applications/manyfest_editor/node_modules/crossroads/testacular.conf.js +69 -0
- package/example_applications/manyfest_editor/node_modules/navigo/.babelrc.es +19 -0
- package/example_applications/manyfest_editor/node_modules/navigo/.editorconfig +12 -0
- package/example_applications/manyfest_editor/node_modules/navigo/CHANGELOG.md +422 -0
- package/example_applications/manyfest_editor/node_modules/navigo/DOCUMENTATION.md +799 -0
- package/example_applications/manyfest_editor/node_modules/{@capitec/omni-router → navigo}/LICENSE +3 -2
- package/example_applications/manyfest_editor/node_modules/navigo/README.md +109 -0
- package/example_applications/manyfest_editor/node_modules/navigo/README_v7.md +342 -0
- package/example_applications/manyfest_editor/node_modules/navigo/index.d.ts +112 -0
- package/example_applications/manyfest_editor/node_modules/navigo/jsconfig.json +1 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/Q.js +36 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/constants.js +8 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/index.js +434 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/lifecycles.js +15 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/callHandler.js +9 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForAfterHook.js +10 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForAlreadyHook.js +20 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForBeforeHook.js +22 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForDeprecationMethods.js +13 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForForceOp.js +9 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForLeaveHook.js +54 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/checkForNotFoundHandler.js +27 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/errorOut.js +4 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/flushCurrent.js +5 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/matchPathToRegisteredRoutes.js +19 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/processMatches.js +25 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/setLocationPath.js +9 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/updateBrowserURL.js +32 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/updateState.js +8 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/middlewares/waitingList.js +3 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/es/utils.js +180 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.amd.js +1339 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.amd.js.map +1 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.amd.min.js +2 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.amd.min.js.map +1 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.js +1350 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.js.map +1 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.min.js +2 -0
- package/example_applications/manyfest_editor/node_modules/navigo/lib/navigo.min.js.map +1 -0
- package/example_applications/manyfest_editor/node_modules/navigo/package.json +61 -0
- package/example_applications/manyfest_editor/node_modules/signals/.jshintrc +12 -0
- package/example_applications/manyfest_editor/node_modules/signals/.project +17 -0
- package/example_applications/manyfest_editor/node_modules/signals/CHANGELOG.markdown +294 -0
- package/example_applications/manyfest_editor/node_modules/signals/README.markdown +83 -0
- package/example_applications/manyfest_editor/node_modules/signals/package.json +28 -0
- package/example_applications/manyfest_editor/node_modules/signals/updateDocs.sh +12 -0
- package/example_applications/manyfest_editor/package.json +3 -2
- package/example_applications/manyfest_editor/providers/Manyfest-Router.js +14 -32
- package/example_applications/manyfest_editor/source/Manyfest-Editor.js +0 -2
- package/example_applications/simple_form/Simple-Form_Default_Manifest.json +2 -2
- package/package.json +3 -2
- package/source/providers/Pict-Provider-DynamicSolver.js +8 -1
- package/source/providers/Pict-Provider-DynamicTemplates-DefaultFormTemplates-ReadOnly.js +311 -0
- package/source/providers/Pict-Provider-DynamicTemplates-DefaultFormTemplates.js +44 -5
- package/source/providers/Pict-Provider-MetaLists.js +1 -1
- package/source/providers/inputs/Pict-Provider-Input-DateTime.js +113 -0
- package/source/services/ManifestFactory.js +287 -0
- package/source/views/Pict-View-DynamicForm.js +7 -0
- package/types/Pict-Section-Form.d.ts +6 -0
- package/types/providers/Pict-Provider-DynamicSolver.d.ts.map +1 -1
- package/types/providers/Pict-Provider-DynamicTemplates-DefaultFormTemplates-ReadOnly.d.ts +5 -0
- package/types/providers/Pict-Provider-DynamicTemplates-DefaultFormTemplates-ReadOnly.d.ts.map +1 -0
- package/types/providers/Pict-Provider-Informary.d.ts +3 -1
- package/types/providers/Pict-Provider-Informary.d.ts.map +1 -1
- package/types/providers/Pict-Provider-InputExtension.d.ts +117 -0
- package/types/providers/Pict-Provider-InputExtension.d.ts.map +1 -0
- package/types/providers/Pict-Provider-MetaLists.d.ts +29 -0
- package/types/providers/Pict-Provider-MetaLists.d.ts.map +1 -0
- package/types/providers/Pict-Provider-MetatemplateGenerator.d.ts +3 -3
- package/types/providers/Pict-Provider-MetatemplateMacros.d.ts +14 -0
- package/types/providers/Pict-Provider-MetatemplateMacros.d.ts.map +1 -0
- package/types/providers/inputs/Pict-Provider-Input-DateTime.d.ts +13 -0
- package/types/providers/inputs/Pict-Provider-Input-DateTime.d.ts.map +1 -0
- package/types/providers/inputs/Pict-Provider-Input-Select.d.ts +17 -0
- package/types/providers/inputs/Pict-Provider-Input-Select.d.ts.map +1 -0
- package/types/services/ManifestFactory.d.ts +48 -0
- package/types/services/ManifestFactory.d.ts.map +1 -0
- package/types/views/Pict-View-DynamicForm.d.ts +8 -2
- package/types/views/Pict-View-DynamicForm.d.ts.map +1 -1
- package/types/views/Pict-View-Form-Metacontroller.d.ts.map +1 -1
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/README.md +0 -397
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/package.json +0 -59
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/Router.ts +0 -849
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/RouterOutlet.ts +0 -472
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/index.ts +0 -4
- package/example_applications/manyfest_editor/node_modules/@capitec/omni-router/src/types.ts +0 -101
- package/example_applications/manyfest_editor/views/Manyfest-Summary-View.js +0 -41
package/.vscode/settings.json
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"workbench.colorTheme": "FreshCut"
|
|
2
|
+
"workbench.colorTheme": "FreshCut",
|
|
3
|
+
"sqltools.connections": [
|
|
4
|
+
{
|
|
5
|
+
"mysqlOptions": {
|
|
6
|
+
"authProtocol": "default",
|
|
7
|
+
"enableSsl": "Disabled"
|
|
8
|
+
},
|
|
9
|
+
"previewLimit": 50,
|
|
10
|
+
"server": "mysql.qa.headlight.com",
|
|
11
|
+
"port": 3306,
|
|
12
|
+
"driver": "MySQL",
|
|
13
|
+
"name": "Headlight QA",
|
|
14
|
+
"group": "Headlight",
|
|
15
|
+
"database": "mpi",
|
|
16
|
+
"username": "steven.velozo"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
3
19
|
}
|
package/debug/Harness.js
ADDED
|
File without changes
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
let libPictCommandLineUtility = require('pict-service-commandlineutility');
|
|
3
|
+
|
|
4
|
+
const libFS = require('fs');
|
|
5
|
+
const libPath = require('path');
|
|
6
|
+
const libReadline = require('readline');
|
|
7
|
+
|
|
8
|
+
class ImportCSVCommand extends libPictCommandLineUtility.ServiceCommandLineCommand
|
|
9
|
+
{
|
|
10
|
+
constructor(pFable, pSettings, pServiceHash)
|
|
11
|
+
{
|
|
12
|
+
super(pFable, pSettings, pServiceHash);
|
|
13
|
+
|
|
14
|
+
this.options.CommandKeyword = 'import';
|
|
15
|
+
this.options.Description = 'Importing the data.';
|
|
16
|
+
|
|
17
|
+
this.options.CommandOptions.push({ Name: '-f, --filename [filename]', Description: 'The tabular csv file to import.', Default: './TabularManifestCSV.csv'});
|
|
18
|
+
this.options.CommandOptions.push({ Name: '-o, --output [filename]', Description: 'The output file to write the manifest to.', Default: './PICTSection-TabularManifests.json'});
|
|
19
|
+
this.options.CommandOptions.push({ Name: '-d, --directory [directory]', Description: 'The manifest directory to output the manifests to individually.', Default: './data/'});
|
|
20
|
+
|
|
21
|
+
this.addCommand();
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
onRunAsync(fCallback)
|
|
25
|
+
{
|
|
26
|
+
let tmpFileName = this.CommandOptions.filename;
|
|
27
|
+
if ((!tmpFileName) || (typeof(tmpFileName) != 'string') || (tmpFileName.length === 0))
|
|
28
|
+
{
|
|
29
|
+
this.log.error('No valid filename provided.');
|
|
30
|
+
return fCallback();
|
|
31
|
+
}
|
|
32
|
+
let tmpOutputFileName = this.CommandOptions.output;
|
|
33
|
+
if ((!tmpOutputFileName) || (typeof(tmpOutputFileName) != 'string') || (tmpOutputFileName.length === 0))
|
|
34
|
+
{
|
|
35
|
+
this.log.error('No valid output filename provided.');
|
|
36
|
+
return fCallback();
|
|
37
|
+
}
|
|
38
|
+
let tmpManifestDirectory = this.CommandOptions.directory;
|
|
39
|
+
if ((!tmpManifestDirectory) || (typeof(tmpManifestDirectory) != 'string') || (tmpManifestDirectory.length === 0))
|
|
40
|
+
{
|
|
41
|
+
this.log.error('No valid manifest directory provided.');
|
|
42
|
+
return fCallback();
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// The ManifestFactory gives us a programmatic way to manage Manifest config consistently
|
|
46
|
+
this.fable.addAndInstantiateServiceType('ManifestFactory', require('../source/services/ManifestFactory.js'));
|
|
47
|
+
// Initialize the CSV parser
|
|
48
|
+
this.fable.instantiateServiceProvider('CSVParser');
|
|
49
|
+
// Setup the formatter to clean nonalpha characters to underscores
|
|
50
|
+
this.fable.DataFormat._Value_Clean_formatterCleanNonAlpha = '_';
|
|
51
|
+
|
|
52
|
+
///////////////////////////////////////////////////////////////////////////////
|
|
53
|
+
// Parse the CSV file
|
|
54
|
+
const tmpRecords = [];
|
|
55
|
+
this.fable.log.info(`Parsing CSV file [${tmpFileName}]...`);
|
|
56
|
+
|
|
57
|
+
const tmpReadline = libReadline.createInterface(
|
|
58
|
+
{
|
|
59
|
+
input: libFS.createReadStream(tmpFileName),
|
|
60
|
+
crlfDelay: Infinity,
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
tmpReadline.on('line',
|
|
64
|
+
(pLine) =>
|
|
65
|
+
{
|
|
66
|
+
const tmpRecord = this.fable.CSVParser.parseCSVLine(pLine);
|
|
67
|
+
if (tmpRecord)
|
|
68
|
+
{
|
|
69
|
+
tmpRecords.push(tmpRecord);
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
tmpReadline.on('close',
|
|
74
|
+
() =>
|
|
75
|
+
{
|
|
76
|
+
this.fable.log.info(`...CSV parser completed, pulled ${tmpRecords.length} rows.`);
|
|
77
|
+
|
|
78
|
+
const tmpManifests = this.fable.ManifestFactory.createManifestsFromTabularArray(tmpRecords);
|
|
79
|
+
libFS.writeFileSync(tmpOutputFileName, JSON.stringify(tmpManifests, null, 4), 'utf8');
|
|
80
|
+
|
|
81
|
+
const tmpManifestKeys = Object.keys(tmpManifests);
|
|
82
|
+
for (let i = 0; i < tmpManifestKeys.length; i++)
|
|
83
|
+
{
|
|
84
|
+
const tmpManifest = tmpManifests[tmpManifestKeys[i]];
|
|
85
|
+
this.fable.log.info(`Manifest: ${tmpManifestKeys[i]} has ${Object.keys(tmpManifest.Descriptors).length} descriptors.. writing it to ${tmpManifestKeys[i]}.json and to ${tmpManifestKeys[i]}.sql`);
|
|
86
|
+
libFS.writeFileSync(libPath.join(tmpManifestDirectory,`${tmpManifestKeys[i]}.json`), JSON.stringify(tmpManifest, null, 4), 'utf8');
|
|
87
|
+
}
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
return fCallback();
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
const _ProgramConfiguration = (
|
|
95
|
+
{
|
|
96
|
+
Product: 'PictSection-TabularCSV-Input',
|
|
97
|
+
Version: '0.0.2',
|
|
98
|
+
|
|
99
|
+
// The command is very similar to PTSD
|
|
100
|
+
Command: 'pstcsvi',
|
|
101
|
+
Description: 'Pict Section Tabular CSV Input',
|
|
102
|
+
|
|
103
|
+
ProgramConfigurationFileName: '.pict-cli-debugharness-config.json',
|
|
104
|
+
|
|
105
|
+
DefaultProgramConfiguration: { },
|
|
106
|
+
|
|
107
|
+
AutoGatherProgramConfiguration: true,
|
|
108
|
+
AutoAddConfigurationExplanationCommand: true
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
let _Program = new libPictCommandLineUtility(_ProgramConfiguration, [ ImportCSVCommand ]);
|
|
112
|
+
_Program.LogNoisiness = 4;
|
|
113
|
+
|
|
114
|
+
module.exports = _Program.run();
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
Form,Form Name,SubManifest,Section Name,Group Name,Row,Width,Input Address,Input Address Clean,Input Name,Input Hash,SelectOptions,Input Extra,Units,DataType,InputType,Equation,Default,Description,Tooltiup,Input Notes
|
|
2
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Report Identification,,,,,,,,,,,,,,,,,
|
|
3
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,Phase 1 Findings,,,ScourEvaluation.Phase2Analysis,ScourEvaluation.Phase2Analysis,Phase 2 Analysis,ScourEvaluationPhase2Analysis,"Yes,No","Yes,No",,String,SelectFixed,,No,,,
|
|
4
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,,,,ScourEvaluation.Remarks,ScourEvaluation.Remarks,Remarks,ScourEvaluationRemarks,,,,String,,,,,,Alphanumeric entry
|
|
5
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,,,,ScourEvaluation.Summary of Findings,ScourEvaluation.Summary of Findings,Summary of Findings,ScourEvaluationSummary of Findings,,,,String,,,,,,Alphanumeric entry
|
|
6
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,,,,ScourEvaluation.Recommendations,ScourEvaluation.Recommendations,Recommendations,ScourEvaluationRecommendations,,,,String,,,,,,Alphanumeric entry
|
|
7
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,,,,ScourEvaluation.Basis for Evaluation,ScourEvaluation.Basis for Evaluation,Basis for Evaluation,ScourEvaluationBasis for Evaluation,,,,String,,,,,,Alphanumeric entry
|
|
8
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability,,,,ScourEvaluation.Material and Documentation,ScourEvaluation.Material and Documentation,Material and Documentation,ScourEvaluationMaterial and Documentation,,,,String,,,,,,Alphanumeric entry
|
|
9
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability Rating (Per FHWA),,,,ScourEvaluation.Scour Mode,ScourEvaluation.Scour Mode,Scour Mode,ScourEvaluationScour Mode,"Riverine,Tidal,Both","Riverine,Tidal,Both",,String,SelectFixed,,,,,
|
|
10
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability Rating (Per FHWA),,,,ScourEvaluation.Scour Critical,ScourEvaluation.Scour Critical,Scour Critical,ScourEvaluationScour Critical,"Yes,No,TBD","Yes,No,TBD",,String,SelectFixed,,,,,
|
|
11
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability Rating (Per FHWA),,,,ScourEvaluation.Scour Susceptible,ScourEvaluation.Scour Susceptible,Scour Susceptible,ScourEvaluationScour Susceptible,"Yes,No,Unknown","Yes,No,Unknown",,String,SelectFixed,,,,,
|
|
12
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability Rating (Per FHWA),,,,ScourEvaluation.Foundation,ScourEvaluation.Foundation,Foundation,ScourEvaluationFoundation,"Known,Unknown","Known,Unknown",,String,SelectFixed,,,,,
|
|
13
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Scour Vulnerability Rating (Per FHWA),,,,ScourEvaluation.Reasons for Rating,ScourEvaluation.Reasons for Rating,Reasons for Rating,ScourEvaluationReasons for Rating,,,,String,,,,,,Alphanumeric entry
|
|
14
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,HDOT 113 Scour Critical Code,,,,ScourEvaluation.Last Recorded Value,ScourEvaluation.Last Recorded Value,Last Recorded Value,ScourEvaluationLast Recorded Value,,,,Number,,,,,,Mix Selector
|
|
15
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,HDOT 113 Scour Critical Code,,,,ScourEvaluation.Date,ScourEvaluation.Date,Date,ScourEvaluationDate,,,,DateTime,Date,,,,,
|
|
16
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,HDOT 113 Scour Critical Code,,,,ScourEvaluation.Recommended Value,ScourEvaluation.Recommended Value,Recommended Value,ScourEvaluationRecommended Value,,,,,,,,,,
|
|
17
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Recommendations,,,,ScourEvaluation.Phase 2 Analysis Recommendation,ScourEvaluation.Phase 2 Analysis Recommendation,Phase 2 Analysis Recommendation,ScourEvaluationPhase 2 Analysis Recommendation,"Yes,No","Yes,No",,String,SelectFixed,,No,,,
|
|
18
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Recommendations,,,,ScourEvaluation.Phase 2 Priority,ScourEvaluation.Phase 2 Priority,Phase 2 Priority,ScourEvaluationPhase 2 Priority,"High,Medium,Low","High,Medium,Low",,String,SelectFixed,,,,,
|
|
19
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Recommendations,,,,ScourEvaluation.Remarks,ScourEvaluation.Remarks,Remarks,ScourEvaluationRemarks,,,,,,,,,,
|
|
20
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Type,ScourEvaluation.Type,Type,ScourEvaluationType,"Bridge,Bridge Culvert","Bridge,Bridge Culvert",,,,,,,,
|
|
21
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Type,ScourEvaluation.Type,Type,ScourEvaluationType,"Vertical Walls Left,Vertical Walls Right,Sheet Piles Left,Sheet Piles Right,Spill Through Left,Spill Through Right,Wing Walls Left,Wing Walls Right","Vertical Walls Left,Vertical Walls Right,Sheet Piles Left,Sheet Piles Right,Spill Through Left,Spill Through Right,Wing Walls Left,Wing Walls Right",,String,SelectFixed,,,,,
|
|
22
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Foundation,ScourEvaluation.Foundation,Foundation,ScourEvaluationFoundation,,,,,,,,,,
|
|
23
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Spread Footing,ScourEvaluation.Spread Footing,Spread Footing,ScourEvaluationSpread Footing,"Left,Right","Left,Right",,,,,,,,
|
|
24
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Length,ScourEvaluation.Length,Length,ScourEvaluationLength,,,FT,Number,,,,,,
|
|
25
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Width,ScourEvaluation.Width,Width,ScourEvaluationWidth,,,FT,Number,,,,,,
|
|
26
|
+
ScourEvaluation,Phase 1 Scour Evaluation Report,,Abutments,,,,ScourEvaluation.Depth,ScourEvaluation.Depth,Depth,ScourEvaluationDepth,,,FT,Number,,,,,,
|
|
27
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Identification,Identification,,,DataItemsNBI.Bridge Number,DataItemsNBI.Bridge Number,Bridge Number,DataItemsNBIBridge Number,,,,String,,,,,,Alphanumeric entry
|
|
28
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Identification,Location,,,DataItemsNBI.Metropolitan Planning Organization,DataItemsNBI.Metropolitan Planning Organization,Metropolitan Planning Organization,DataItemsNBIMetropolitan Planning Organization,"Maui MPO,Oahu MPO,Not Applicable","Maui MPO,Oahu MPO,Not Applicable",,String,Select Fixed,,,,,B.L.12
|
|
29
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Identification,Classification,,,DataItemsNBI.Emergency Evacuation Designation,DataItemsNBI.Emergency Evacuation Designation,Emergency Evacuation Designation,DataItemsNBIEmergency Evacuation Designation,"No - Not an Emergency evacuation route,Yes - Emergency evacuation route","No - Not an Emergency evacuation route,Yes - Emergency evacuation route",,,,,,,,B.CL.06
|
|
30
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Span Material and Type,,,DataItemsNBI.Number of Beam Lines,DataItemsNBI.Number of Beam Lines,Number of Beam Lines,DataItemsNBINumber of Beam Lines,"Max=999,Precision=1","Max=999,Precision=1",FT,Float,,,,,,
|
|
31
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Span Material and Type,,,DataItemsNBI.Span Protective System,DataItemsNBI.Span Protective System,Span Protective System,DataItemsNBISpan Protective System,"0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – hot dip galvanizing,C04 Coating – metalizing/thermal spray,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,M01 Membrane – built-up,M02 Membrane – sheet,M03 Membrane – liquid applied,MU Membrane – unknown,MX Membrane – other,P01 Patina – uncoated weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,U Unknown,X Other","0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – hot dip galvanizing,C04 Coating – metalizing/thermal spray,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,M01 Membrane – built-up,M02 Membrane – sheet,M03 Membrane – liquid applied,MU Membrane – unknown,MX Membrane – other,P01 Patina – uncoated weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,U Unknown,X Other",,String,SelectFixed,,,,,
|
|
32
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Span Material and Type,,,DataItemsNBI.Deck Interaction,DataItemsNBI.Deck Interaction,Deck Interaction,DataItemsNBIDeck Interaction,"CS Composite – shored construction,CU Composite – unshored construction,IM Integral or monolithic,NC Non-composite","CS Composite – shored construction,CU Composite – unshored construction,IM Integral or monolithic,NC Non-composite",,String,SelectFixed,,,,,
|
|
33
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Span Material and Type,,,DataItemsNBI.Deck Stay-In-Place Forms,DataItemsNBI.Deck Stay-In-Place Forms,Deck Stay-In-Place Forms,DataItemsNBIDeck Stay-In-Place Forms,"0 None,C01 Concrete – reinforced,C02 Concrete – prestressed,F01 FRP composite,M01 Metal,T01 Timber,X Other","0 None,C01 Concrete – reinforced,C02 Concrete – prestressed,F01 FRP composite,M01 Metal,T01 Timber,X Other",,String,SelectFixed,,,,,
|
|
34
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Substructure Configuration Designation,DataItemsNBI.Substructure Configuration Designation,Substructure Configuration Designation,DataItemsNBISubstructure Configuration Designation,,,,String,,,,,,
|
|
35
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Number of Substructure Units,DataItemsNBI.Number of Substructure Units,Number of Substructure Units,DataItemsNBINumber of Substructure Units,,,,String,,,,,,
|
|
36
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Substructure Material,DataItemsNBI.Substructure Material,Substructure Material,DataItemsNBISubstructure Material,"0 None,A01 Aluminum,C01 Reinforced concrete – cast-in-place,C02 Reinforced concrete – precast,C03 Prestressed concrete – pre-tensioned,C04,Prestressed concrete – cast-in-place post-tensioned,C05 Prestressed concrete – precast post tensioned,CX Concrete – other,E01 Earth – reinforced soil,F01 FRP composite – aramid fiber,F02 FRP composite – carbon fiber,F03 FRP composite – glass fiber,FX FRP composite – other,I02 Iron – cast,I01 Iron – wrought,M01 Masonry – block,M02 Masonry – stone,P01 Plastic – Polyethylene,PX Plastic – other,S01 Steel – rolled shapes,S02 Steel – welded shapes,S03 Steel – bolted shapes,S04 Steel – riveted shapes,S05 Steel – bolted and riveted shapes,S06 Steel – pipe,SX Steel – other,T01 Timber – glue laminated,T02 Timber – nail laminated,T03 Timber – solid sawn,T04 Timber – stress laminated,TX Timber – other,X Other","0 None,A01 Aluminum,C01 Reinforced concrete – cast-in-place,C02 Reinforced concrete – precast,C03 Prestressed concrete – pre-tensioned,C04,Prestressed concrete – cast-in-place post-tensioned,C05 Prestressed concrete – precast post tensioned,CX Concrete – other,E01 Earth – reinforced soil,F01 FRP composite – aramid fiber,F02 FRP composite – carbon fiber,F03 FRP composite – glass fiber,FX FRP composite – other,I02 Iron – cast,I01 Iron – wrought,M01 Masonry – block,M02 Masonry – stone,P01 Plastic – Polyethylene,PX Plastic – other,S01 Steel – rolled shapes,S02 Steel – welded shapes,S03 Steel – bolted shapes,S04 Steel – riveted shapes,S05 Steel – bolted and riveted shapes,S06 Steel – pipe,SX Steel – other,T01 Timber – glue laminated,T02 Timber – nail laminated,T03 Timber – solid sawn,T04 Timber – stress laminated,TX Timber – other,X Other",,String,SelectFixed,,,,,
|
|
37
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Substructure Type,DataItemsNBI.Substructure Type,Substructure Type,DataItemsNBISubstructure Type,"0 None,A01 Abutment – cantilever/wall,A02 Abutment – stub,A03 Abutment – open/spill through,A04 Abutment – integral,A05 Abutment – semi-integral,A06 Abutment – gravity,A07 Abutment – counterfort,A08 Abutment – pile bent with lagging,A09 Abutment – crib,A10 Abutment – cellular/vaulted,A11 Abutment – reinforced soil,A12 Abutment – footing only,AX Abutment – other,B01 Bent – column or open,B02 Bent – column with web wall,B03 Bent – pile,B04 Bent – straddle or c-shaped,BX Bent – other,P01 Pier – wall,P02 Pier – single column,P03 Pier – multiple column,P04 Pier – multiple column with web wall,P05 Pier – straddle or c-shaped,P06 Pier – movable bridge,P07 Pier – tower,P08 Pier – footing only,PX Pier – other,U Unknown,X Other","0 None,A01 Abutment – cantilever/wall,A02 Abutment – stub,A03 Abutment – open/spill through,A04 Abutment – integral,A05 Abutment – semi-integral,A06 Abutment – gravity,A07 Abutment – counterfort,A08 Abutment – pile bent with lagging,A09 Abutment – crib,A10 Abutment – cellular/vaulted,A11 Abutment – reinforced soil,A12 Abutment – footing only,AX Abutment – other,B01 Bent – column or open,B02 Bent – column with web wall,B03 Bent – pile,B04 Bent – straddle or c-shaped,BX Bent – other,P01 Pier – wall,P02 Pier – single column,P03 Pier – multiple column,P04 Pier – multiple column with web wall,P05 Pier – straddle or c-shaped,P06 Pier – movable bridge,P07 Pier – tower,P08 Pier – footing only,PX Pier – other,U Unknown,X Other",,String,SelectFixed,,,,,
|
|
38
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Substructure Protective System,DataItemsNBI.Substructure Protective System,Substructure Protective System,DataItemsNBISubstructure Protective System,"0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – galvanizing/metalizing,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,P01 Patina – weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,X Other","0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – galvanizing/metalizing,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,P01 Patina – weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,X Other",,String,SelectFixed,,,,,
|
|
39
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Foundation Type,DataItemsNBI.Foundation Type,Foundation Type,DataItemsNBIFoundation Type,"E01 Earth – reinforced soil,F01 Footing – not on rock,F02 Footing – on rock,F03 Footing – on reinforced soil,P01 Pile – steel H-shape,P02 Pile – steel pipe,P03 Pile – concrete, cast-in-place,P04 Pile – prestressed concrete,P05 Pile – timber,P06 Pile – auger cast,P07 Pile – micropile,P08 Pile – composite,P09 Pile – FRP composite,PX Pile – other,S01 Drilled shaft – single,S02 Drilled shafts – multiple,S03 Caisson,U Unknown,X Other","E01 Earth – reinforced soil,F01 Footing – not on rock,F02 Footing – on rock,F03 Footing – on reinforced soil,P01 Pile – steel H-shape,P02 Pile – steel pipe,P03 Pile – concrete, cast-in-place,P04 Pile – prestressed concrete,P05 Pile – timber,P06 Pile – auger cast,P07 Pile – micropile,P08 Pile – composite,P09 Pile – FRP composite,PX Pile – other,S01 Drilled shaft – single,S02 Drilled shafts – multiple,S03 Caisson,U Unknown,X Other",,String,SelectFixed,,,,,
|
|
40
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Material and Type,Substructure Material and Type,,,DataItemsNBI.Foundation Protective System,DataItemsNBI.Foundation Protective System,Foundation Protective System,DataItemsNBIFoundation Protective System,"0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – galvanizing/metalizing,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,P01 Patina – weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,U Unknown,X Other","0 None,A01 Admixture – internally sealed,A02 Admixture – low permeability,A03 Admixture – polymer impregnated,A04 Admixture – corrosion inhibitor,A05 Admixture – ASR inhibitor,AX Admixture – other,C01 Coating – paint,C02 Coating – sealer,C03 Coating – galvanizing/metalizing,CX Coating – other,E01 Encasement – concrete,EX Encasement – other,P01 Patina – weathering steel,S01 Sacrificial – cathodic, passive,S02 Sacrificial – cathodic, active,SX Sacrificial – other,T01 Treated – timber preservative,U Unknown,X Other",,String,SelectFixed,,,,,
|
|
41
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Geometry,,,,DataItemsNBI.Curved Bridge,DataItemsNBI.Curved Bridge,Curved Bridge,DataItemsNBICurved Bridge,"CU Curved girder(s),CP Piecewise straight girders,CK Kinked girder(s),N Not curved",,,String,SelectFixed,,,,,
|
|
42
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Geometry,,,,DataItemsNBI.Maximum Bridge Height,DataItemsNBI.Maximum Bridge Height,Maximum Bridge Height,DataItemsNBIMaximum Bridge Height,,ft and inches,,Number,,,,,,
|
|
43
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Geometry,,,,DataItemsNBI.Sidehill Bridge,DataItemsNBI.Sidehill Bridge,Sidehill Bridge,DataItemsNBISidehill Bridge,"N Not a sidehill bridge,Y Is a sidehill bridge",,,,,,,,,
|
|
44
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Geometry,,,,DataItemsNBI.Irregular Deck Area,DataItemsNBI.Irregular Deck Area,Irregular Deck Area,DataItemsNBIIrregular Deck Area,,"Floating point entry, 2 decimals",SQFT,Number,,,,,,
|
|
45
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Features,Highways,,,DataItemsNBI.Crossing Bridge Number,DataItemsNBI.Crossing Bridge Number,Crossing Bridge Number,DataItemsNBICrossing Bridge Number,,Alphanumeric entry,,,,,,,,Alphanumeric entry or user can search from bridge inventory list by bridge number and add bridge number from there
|
|
46
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Features,Railroads,,,DataItemsNBI.Railroad Service Type,DataItemsNBI.Railroad Service Type,Railroad Service Type,DataItemsNBIRailroad Service Type,"F Freight,FE Freight - electrified,P Passenger,PE Passenger - electrified,M Multiple services - not electrified,ME Multiple services - electrified,I Inactive
|
|
47
|
+
",,,String,,,,,,"Single choice
|
|
48
|
+
"
|
|
49
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Features,Navigable Waterways,,,DataItemsNBI.Navigation Channel Minimum Horizontal Clearance,DataItemsNBI.Navigation Channel Minimum Horizontal Clearance,Navigation Channel Minimum Horizontal Clearance,DataItemsNBINavigation Channel Minimum Horizontal Clearance,,,,Float,,,,,,"Only available to be completed when item B.N.01 (Navigable Waterway) is Y
|
|
50
|
+
Floating point entry, 1 decimal"
|
|
51
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Loads and Load Rating,,,DataItemsNBI.Design Method,DataItemsNBI.Design Method,Design Method,DataItemsNBIDesign Method,"ASD Allowable Stress Design,LFD Load Factor Design,LRFD Load and Resistance Factor Design,U Unknown,X Other",,,DateTime,Date,,,,,
|
|
52
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Loads and Load Rating,,,DataItemsNBI.Load Rating Date,DataItemsNBI.Load Rating Date,Load Rating Date,DataItemsNBILoad Rating Date,,,,,,,,,,
|
|
53
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Loads and Load Rating,,,DataItemsNBI.Controlling Legal Load Rating Factor,DataItemsNBI.Controlling Legal Load Rating Factor,Controlling Legal Load Rating Factor,DataItemsNBIControlling Legal Load Rating Factor,,,,Number,,,,,,
|
|
54
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Loads and Load Rating,,,DataItemsNBI.Routine Permit Loads,DataItemsNBI.Routine Permit Loads,Routine Permit Loads,DataItemsNBIRoutine Permit Loads,"A Bridge carries routine permit loads. Load capacity is adequate for all routine permit loads; no routine permit loads are restricted.,B Bridge carries routine permit loads. Load capacity is adequate for some routine permit loads but some routine permit loads are restricted.,C Bridge does not carry routine permit loads. Routine permit loads are restricted from the bridge.,N Bridge does not carry routine permit loads. Agency does not issue routine permits",,,,,,,,,
|
|
55
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Load Posting Status,,,DataItemsNBI.Posting Status Change Date,DataItemsNBI.Posting Status Change Date,Posting Status Change Date,DataItemsNBIPosting Status Change Date,,,,DateTime,Date,,,,,
|
|
56
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Load Evaluation and Posting,,,DataItemsNBI.Legal Load Configuration,DataItemsNBI.Legal Load Configuration,Legal Load Configuration,DataItemsNBILegal Load Configuration,"3 Type 3,3S2 Type 3S2,3-3 Type 3-3,SU4 SU4 truck,SU5 SU5 truck,SU6 SU6 truck,SU7 SU7 truck,NRL Notional Rating Load,EV2 Type EV2 emergency vehicle,EV3 Type EV3 emergency vehicle",,,,,,,,,
|
|
57
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Load Evaluation and Posting,,,DataItemsNBI.Legal Load Rating Factor,DataItemsNBI.Legal Load Rating Factor,Legal Load Rating Factor,DataItemsNBILegal Load Rating Factor,,,,Number,,,,,,
|
|
58
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Load Evaluation and Posting,,,DataItemsNBI.Posting Type,DataItemsNBI.Posting Type,Posting Type,DataItemsNBIPosting Type,"G Gross Load,A Single Axle Load,D Tandem Axle Load,T Truck Load,C No commercial vehicles,S Speed reduction,L Number of lanes restricted,V Number of vehicles restricted,X Other",,,,,,,,,
|
|
59
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,"Loads, Load Rating and Posting",Load Evaluation and Posting,,,DataItemsNBI.Posting Value,DataItemsNBI.Posting Value,Posting Value,DataItemsNBIPosting Value,,,,Number,,,,,,
|
|
60
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Requirements,,,DataItemsNBI.Fatigue Details,DataItemsNBI.Fatigue Details,Fatigue Details,DataItemsNBIFatigue Details,"N No E/E’ details,Y E/E’ details are present",,,String,SelectFixed,,,,,"Do not report this item for bridges that do not
|
|
61
|
+
have steel members as indicated in Items
|
|
62
|
+
B.SP.04 (Span Material) and B.SB.03
|
|
63
|
+
(Substructure Material)."
|
|
64
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Requirements,,,DataItemsNBI.Complex Feature,DataItemsNBI.Complex Feature,Complex Feature,DataItemsNBIComplex Feature,"N Bridge does not have complex feature,Y Bridge has complex feature",,,String,SelectFixed,,,,,
|
|
65
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Completion Date,DataItemsNBI.Inspection Completion Date,Inspection Completion Date,DataItemsNBIInspection Completion Date,,,,DateTime,Date,,,,,Report the last site visit date
|
|
66
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Nationally Certified Bridge Inspector,DataItemsNBI.Nationally Certified Bridge Inspector,Nationally Certified Bridge Inspector,DataItemsNBINationally Certified Bridge Inspector,,Alphanumeric entry,,,,,,,,"Alphanumeric
|
|
67
|
+
This could be an entry in the first release and then change to pulling the unique identifier code of the team leader for the inspection from the list of inspectors and qualifications based on the inspectors name"
|
|
68
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Due Date,DataItemsNBI.Inspection Due Date,Inspection Due Date,DataItemsNBIInspection Due Date,,,,,,,,,,"HIBridge to calculate this and the ability to overwrite if inspection was late
|
|
69
|
+
|
|
70
|
+
This value is calculated by the FHWA based on Item B.IE.03 (Inspection Completion Date) plus the value of Item B.IE.05 (Inspection Interval)"
|
|
71
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Risk-Based Inspection Interval Method,DataItemsNBI.Risk-Based Inspection Interval Method,Risk-Based Inspection Interval Method,DataItemsNBIRisk-Based Inspection Interval Method,"Not applicable,Method 1,Method 2",,,,,,,,,
|
|
72
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Quality Control Date,DataItemsNBI.Inspection Quality Control Date,Inspection Quality Control Date,DataItemsNBIInspection Quality Control Date,,,,DateTime,Date,,,,,The date that the QC review was completed. This should be able to be left blank or select 'No QC review' if one was not perfo
|
|
73
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Quality Assurance Date,DataItemsNBI.Inspection Quality Assurance Date,Inspection Quality Assurance Date,DataItemsNBIInspection Quality Assurance Date,,,,DateTime,Date,,,,,"Date
|
|
74
|
+
The date that the QA review was
|
|
75
|
+
completed.
|
|
76
|
+
This should be able to be left blank or select 'No QC review' if one was not performed"
|
|
77
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Data Update Date,DataItemsNBI.Inspection Data Update Date,Inspection Data Update Date,DataItemsNBIInspection Data Update Date,,,,DateTime,Date,,,,,"Date
|
|
78
|
+
Date that the HDOT database was updated with the NBI inspection data.
|
|
79
|
+
For HIBridge to be confirmed with HDOT that this is the date the information is pushed to BrM"
|
|
80
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Note,DataItemsNBI.Inspection Note,Inspection Note,DataItemsNBIInspection Note,,,,,,,,,,"Alphanumeric
|
|
81
|
+
Limit to 300 characters.
|
|
82
|
+
This field may end up linking and taking data from a different note in the form at a later date"
|
|
83
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Inspections,Inspection Events,,,DataItemsNBI.Inspection Equipment,DataItemsNBI.Inspection Equipment,Inspection Equipment,DataItemsNBIInspection Equipment,"Access,AN No access equipment used,A01 Ladder,A02 Bucket lift vehicle,A03 Under bridge inspection vehicle,A04 Rigging,A05 Waders,A06 Boat,A07 Snorkel,A08 SCUBA,A09 Surface supplied air,A10 Remotely Operated Vehicle (ROV),A11 Video pole,A12 Borescope,A13 Unmanned aerial systems (UAS),A14 Service Traveler,AX Other,Inspection,IN No inspection equipment used,I01 Ultrasonic,I02 Ground-penetrating radar,I03 Infrared thermography,I04 Radiographic testing,I05 Impact echo,I06 Electromagnetic methods,I07 Rebound & penetration methods,I08 Acoustic emissions testing,I09 Dye penetrant,I10 Magnetic particle,I11 Eddy current,I12 Boring or drilling,I13 Underwater imaging,I14 Depth finder/fathometer",,,,,,,,,"Dropdown with the following options, multiple choice: (titles in Bold cannot be selected but separate the lists)"
|
|
84
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Component Condition Ratings,,,DataItemsNBI.Bridge Bearings Condition Rating,DataItemsNBI.Bridge Bearings Condition Rating,Bridge Bearings Condition Rating,DataItemsNBIBridge Bearings Condition Rating,"N Not applicable,9 Excellent,8 Very Good,7 Good,6 Satisfactory,5 Fair,4 Poor,3 Serious,2 Critical,1 Imminent failure,0 Failed",,,,,,,,,
|
|
85
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Component Condition Ratings,,,DataItemsNBI.Bridge Joints Condition Rating,DataItemsNBI.Bridge Joints Condition Rating,Bridge Joints Condition Rating,DataItemsNBIBridge Joints Condition Rating,"N Not applicable,9 Excellent,8 Very Good,7 Good,6 Satisfactory,5 Fair,4 Poor,3 Serious,2 Critical,1 Imminent failure,0 Failed",,,,,,,,,
|
|
86
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Component Condition Ratings,,,DataItemsNBI.Channel Protection Condition Rating,DataItemsNBI.Channel Protection Condition Rating,Channel Protection Condition Rating,DataItemsNBIChannel Protection Condition Rating,"N Not applicable,9 Excellent,8 Very Good,7 Good,6 Satisfactory,5 Fair,4 Poor,3 Serious,2 Critical,1 Imminent failure,0 Failed",,,,,,,,,
|
|
87
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Component Condition Ratings,,,DataItemsNBI.NSTM Inspection Condition,DataItemsNBI.NSTM Inspection Condition,NSTM Inspection Condition,DataItemsNBINSTM Inspection Condition,"N Not applicable,9 Excellent,8 Very Good,7 Good,6 Satisfactory,5 Fair,4 Poor,3 Serious,2 Critical,1 Imminent failure,0 Failed",,,,,,,,,Grey out or show as not applicable when Item B.IR.01 (NSTM Inspection Required) is N
|
|
88
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Component Condition Ratings,,,DataItemsNBI.Underwater Inspection Condition,DataItemsNBI.Underwater Inspection Condition,Underwater Inspection Condition,DataItemsNBIUnderwater Inspection Condition,"N Not applicable,9 Excellent,8 Very Good,7 Good,6 Satisfactory,5 Fair,4 Poor,3 Serious,2 Critical,1 Imminent failure,0 Failed",,,,,,,,,Grey out or show as not applicable when Item B.IR.03 (NSTM Inspection Required) is N
|
|
89
|
+
DataItemsNBI,Data Items for the National Bridge Inventory,,Bridge Condition,Appraisal,,,DataItemsNBI.Seismic Vulnerability,DataItemsNBI.Seismic Vulnerability,Seismic Vulnerability,DataItemsNBISeismic Vulnerability,"0 Seismic evaluation not completed. ,N Bridge does not require seismic evaluation due to low anticipated ground motion or agency prioritization.,A Seismic evaluation completed. Bridge determined to meet the agency’s performance criteria established for the evaluation without need for retrofit.,B Seismic evaluation completed. Satisfactory performance is dependent upon a designed, installed, and functioning retrofit. Retrofit is in place.,C Seismic evaluation completed. Satisfactory performance is dependent upon a designed, installed, and functioning retrofit. Partial retrofit is in place.,D Seismic evaluation completed. Satisfactory performance is dependent upon a designed, installed, and functioning retrofit. Retrofit is not in place.",,,,,,,,,
|
|
@@ -16,7 +16,7 @@ module.exports = ComplexTabularApplication;
|
|
|
16
16
|
|
|
17
17
|
module.exports.default_configuration = libPictSectionForm.PictFormApplication.default_configuration;
|
|
18
18
|
module.exports.default_configuration.pict_configuration = {
|
|
19
|
-
Product: "
|
|
19
|
+
Product: "ComplexTable",
|
|
20
20
|
|
|
21
21
|
DefaultAppData: require("./FruitData.json"),
|
|
22
22
|
|
|
@@ -134,12 +134,7 @@ module.exports.default_configuration.pict_configuration = {
|
|
|
134
134
|
{
|
|
135
135
|
Section:"Recipe",
|
|
136
136
|
Group:"Recipe",
|
|
137
|
-
Row: 1
|
|
138
|
-
"InputType":"Combo",
|
|
139
|
-
"Entries":
|
|
140
|
-
[
|
|
141
|
-
"Smoothie", "Salad", "Dessert", "Main Course", "Side Dish", "Snack"
|
|
142
|
-
]
|
|
137
|
+
Row: 1
|
|
143
138
|
},
|
|
144
139
|
},
|
|
145
140
|
RecipeDescription: {
|
|
@@ -154,12 +149,26 @@ module.exports.default_configuration.pict_configuration = {
|
|
|
154
149
|
DataType: "String",
|
|
155
150
|
PictForm: { Section: "Recipe", Group: "Recipe", Row: 3 },
|
|
156
151
|
},
|
|
152
|
+
Proprietary: {
|
|
153
|
+
Name: "Proprietary",
|
|
154
|
+
Hash: "Proprietary",
|
|
155
|
+
DataType: "Boolean",
|
|
156
|
+
PictForm: { InputType: "Boolean", Section: "Recipe", Group: "Recipe", Row: 3 },
|
|
157
|
+
},
|
|
157
158
|
"MetaFruit.Information.FavoriteGenus": {
|
|
158
159
|
Name: "Favorite Genus",
|
|
159
160
|
Hash: "FavoriteGenus",
|
|
160
161
|
DataType: "String",
|
|
161
162
|
PictForm: { Section: "Recipe", Group: "Recipe", Row: 4 },
|
|
162
163
|
},
|
|
164
|
+
"MetaFruit.Information.LastPrepared": {
|
|
165
|
+
Name: "Last Prepared",
|
|
166
|
+
Hash: "LastPrepared",
|
|
167
|
+
DataType: "DateTime",
|
|
168
|
+
PictForm: { Section: "Recipe", Group: "Recipe", Row: 4,
|
|
169
|
+
"Providers": ["Pict-Input-DateTime"]
|
|
170
|
+
},
|
|
171
|
+
},
|
|
163
172
|
|
|
164
173
|
"Recipe.Feeds": {
|
|
165
174
|
Name: "Feeds",
|
|
@@ -4,14 +4,6 @@
|
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
|
-
"node_modules/@capitec/omni-router": {
|
|
8
|
-
"version": "0.2.4",
|
|
9
|
-
"resolved": "https://registry.npmjs.org/@capitec/omni-router/-/omni-router-0.2.4.tgz",
|
|
10
|
-
"integrity": "sha512-rM3J8EDAImS3ouQPeF31F5WWP5uMfLNb/Q4W+MJB7FLKFjmEU5zG9aM54yoa418e88WBwOobi0k3SnZz+CXY/w==",
|
|
11
|
-
"engines": {
|
|
12
|
-
"node": ">=16.x"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
7
|
"node_modules/@codemirror/autocomplete": {
|
|
16
8
|
"version": "6.16.2",
|
|
17
9
|
"resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.16.2.tgz",
|
|
@@ -133,6 +125,24 @@
|
|
|
133
125
|
"resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz",
|
|
134
126
|
"integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g=="
|
|
135
127
|
},
|
|
128
|
+
"node_modules/crossroads": {
|
|
129
|
+
"version": "0.12.2",
|
|
130
|
+
"resolved": "https://registry.npmjs.org/crossroads/-/crossroads-0.12.2.tgz",
|
|
131
|
+
"integrity": "sha512-2IcFNwej+D4C5w5yTPglfAKGl6HtMlKkOv8ys2JdWHzxOUrPGdm5q5Ll/7kngGevd0KYxI8w+Lqiq4knVWr27g==",
|
|
132
|
+
"dependencies": {
|
|
133
|
+
"signals": "<2.0"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"node_modules/navigo": {
|
|
137
|
+
"version": "8.11.1",
|
|
138
|
+
"resolved": "https://registry.npmjs.org/navigo/-/navigo-8.11.1.tgz",
|
|
139
|
+
"integrity": "sha512-e3sc1UzakF+bWquC8/dbPCgo7LgPEW1ekgwb4pmEcl8tOc/I7lML8r7HBql+b0VRk7tJWTZqtkeObwJAVR1pxg=="
|
|
140
|
+
},
|
|
141
|
+
"node_modules/signals": {
|
|
142
|
+
"version": "1.0.0",
|
|
143
|
+
"resolved": "https://registry.npmjs.org/signals/-/signals-1.0.0.tgz",
|
|
144
|
+
"integrity": "sha512-dE3lBiqgrgIvpGHYBy6/kiYKfh0HXRmbg0ocakBKiOefbal6ZeTtNlQlxsu9ADkNzv5OmRwRKu+IaTPSqJdZDg=="
|
|
145
|
+
},
|
|
136
146
|
"node_modules/style-mod": {
|
|
137
147
|
"version": "4.1.2",
|
|
138
148
|
"resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.1.2.tgz",
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
// Settings
|
|
3
|
+
"passfail" : false, // Stop on first error.
|
|
4
|
+
"maxerr" : 50, // Maximum error before stopping.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
// Predefined globals whom JSHint will ignore.
|
|
8
|
+
"browser" : true, // Standard browser globals e.g. `window`, `document`.
|
|
9
|
+
"couch" : false,
|
|
10
|
+
"dojo" : false,
|
|
11
|
+
"jquery" : false,
|
|
12
|
+
"mootools" : false,
|
|
13
|
+
"node" : false,
|
|
14
|
+
"prototypejs" : false,
|
|
15
|
+
"rhino" : false,
|
|
16
|
+
"wsh" : false,
|
|
17
|
+
|
|
18
|
+
// Custom globals.
|
|
19
|
+
"predef" : [
|
|
20
|
+
"define",
|
|
21
|
+
"require"
|
|
22
|
+
],
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
// Development.
|
|
26
|
+
"debug" : false, // Allow debugger statements e.g. browser breakpoints.
|
|
27
|
+
"devel" : false, // Allow developments statements e.g. `console.log();`.
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
// EcmaScript 5.
|
|
31
|
+
"es5" : false, // Allow EcmaScript 5 syntax.
|
|
32
|
+
"globalstrict" : false, // Allow global "use strict" (also enables 'strict').
|
|
33
|
+
"strict" : false, // Require `use strict` pragma in every file.
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
// The Good Parts.
|
|
37
|
+
"asi" : false, // Tolerate Automatic Semicolon Insertion (no semicolons).
|
|
38
|
+
"bitwise" : false, // Prohibit bitwise operators (&, |, ^, etc.).
|
|
39
|
+
"boss" : true, // Tolerate assignments inside if, for & while. Usually conditions & loops are for comparison, not assignments.
|
|
40
|
+
"curly" : false, // Require {} for every new block or scope.
|
|
41
|
+
"eqeqeq" : true, // Require triple equals i.e. `===`.
|
|
42
|
+
"eqnull" : true, // Tolerate use of `== null`.
|
|
43
|
+
"evil" : false, // Tolerate use of `eval`.
|
|
44
|
+
"expr" : false, // Tolerate `ExpressionStatement` as Programs.
|
|
45
|
+
"forin" : false, // Tolerate `for in` loops without `hasOwnPrototype`.
|
|
46
|
+
"immed" : true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );`
|
|
47
|
+
"latedef" : false, // Prohibit variable use before definition.
|
|
48
|
+
"laxbreak" : false, // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons.
|
|
49
|
+
"loopfunc" : false, // Allow functions to be defined within loops.
|
|
50
|
+
"noarg" : true, // Prohibit use of `arguments.caller` and `arguments.callee`.
|
|
51
|
+
"regexdash" : true, // Tolerate unescaped last dash i.e. `[-...]`.
|
|
52
|
+
"regexp" : false, // Prohibit `.` and `[^...]` in regular expressions.
|
|
53
|
+
"scripturl" : false, // Tolerate script-targeted URLs.
|
|
54
|
+
"shadow" : false, // Allows re-define variables later in code e.g. `var x=1; x=2;`.
|
|
55
|
+
"supernew" : false, // Tolerate `new function () { ... };` and `new Object;`.
|
|
56
|
+
"undef" : false, // Require all non-global variables be declared before they are used.
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
// Personal styling prefrences.
|
|
60
|
+
"newcap" : true, // Require capitalization of all constructor functions e.g. `new F()`.
|
|
61
|
+
"noempty" : true, // Prohipit use of empty blocks.
|
|
62
|
+
"nomen" : false, // Prohibit use of initial or trailing underbars in names.
|
|
63
|
+
"nonew" : true, // Prohibit use of constructors for side-effects.
|
|
64
|
+
"onevar" : false, // Allow only one `var` statement per function.
|
|
65
|
+
"plusplus" : false, // Prohibit use of `++` & `--`.
|
|
66
|
+
"sub" : false, // Tolerate all forms of subscript notation besides dot notation e.g. `dict['key']` instead of `dict.key`.
|
|
67
|
+
"trailing" : true, // Prohibit trailing whitespaces.
|
|
68
|
+
"white" : false // Check against strict whitespace and indentation rules.
|
|
69
|
+
}
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
# Crossroads.js Changelog #
|
|
2
|
+
|
|
3
|
+
## v0.12.1 (2015/07/08) ##
|
|
4
|
+
|
|
5
|
+
- allow multiple query parameters with same name (#128)
|
|
6
|
+
|
|
7
|
+
## v0.12.0 (2013/01/21) ##
|
|
8
|
+
|
|
9
|
+
- improve `Route.interpolate()` to support query strings. (#76)
|
|
10
|
+
- make it possible to have a different patternLexer per router. (#67)
|
|
11
|
+
- add trailing/leading ";" to crossroads.min.js to avoid concat issues. (#73)
|
|
12
|
+
- improve UMD wrapper so crossroads.min.js should also work with r.js.
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## v0.11.0 (2012/10/31) ##
|
|
16
|
+
|
|
17
|
+
### API Changes
|
|
18
|
+
|
|
19
|
+
- add `crossroads.pipe()` and `crossroads.unpipe()` (#70)
|
|
20
|
+
- added way to toggle case sensitivity `crossroads.ignoreCase`, default is
|
|
21
|
+
`true` (#53)
|
|
22
|
+
- add `crossroads.ignoreState`. (#57)
|
|
23
|
+
|
|
24
|
+
### Improvements
|
|
25
|
+
|
|
26
|
+
- `decodeQueryString()` now respects `shouldTypecast` (#71)
|
|
27
|
+
- changed `Route.rules` array validation to be case insensitive if
|
|
28
|
+
`crossroads.ignoreCase = true` (#49)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
## v0.10.0 (2012/08/12) ##
|
|
33
|
+
|
|
34
|
+
### Improvements
|
|
35
|
+
|
|
36
|
+
- Avoid dispatching the routed/bypassed/matched signals if passing same
|
|
37
|
+
request in subsequent calls. (#57)
|
|
38
|
+
- Add `crossroads.resetState()` (#66)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## v0.9.1 (2012/07/29) ##
|
|
43
|
+
|
|
44
|
+
### Fixes
|
|
45
|
+
|
|
46
|
+
- Normalize optional segments behavior on IE 7-8 (#58, #59, #60)
|
|
47
|
+
- Fix `captureVals` on IE 7-8, make sure global flag works properly (#61, #62,
|
|
48
|
+
#63)
|
|
49
|
+
|
|
50
|
+
### Improvements
|
|
51
|
+
|
|
52
|
+
- `Route.interpolate()` accepts Numbers as segments. (#54)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
## v0.9.0 (2012/05/28) ##
|
|
56
|
+
|
|
57
|
+
### API Changes ###
|
|
58
|
+
|
|
59
|
+
- added `crossroads.greedy` (#46)
|
|
60
|
+
- added `crossroads.greedyEnabled` (#46)
|
|
61
|
+
- added `crossroads.patternLexer.strict()` and
|
|
62
|
+
`crossroads.patternLexer.loose()` and
|
|
63
|
+
`crossroads.patternLexer.legacy()` (#35)
|
|
64
|
+
- added `Route.interpolate()` (#34)
|
|
65
|
+
- added query string support (#33)
|
|
66
|
+
|
|
67
|
+
### Fixes
|
|
68
|
+
|
|
69
|
+
- `Route.switched` is only dispatched if matching a different route. (#50)
|
|
70
|
+
|
|
71
|
+
### Other
|
|
72
|
+
|
|
73
|
+
- change default behavior of slashes at begin/end of request (#35)
|
|
74
|
+
- query string support affected old segment rules, now `?` is considered as
|
|
75
|
+
a segment divisor as `/` otherwise optional query string RegExp wouldn't
|
|
76
|
+
match proper segment if following a required segment. (#33)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
## v0.8.0 (2012/03/05) ##
|
|
81
|
+
|
|
82
|
+
### API Changes ###
|
|
83
|
+
|
|
84
|
+
- added `Route.switched` (#37)
|
|
85
|
+
- added `crossroads.NORM_AS_ARRAY`, `crossroads.NORM_AS_OBJECT` (#31)
|
|
86
|
+
- added option to pass default arguments to `crossroads.parse()` (#44)
|
|
87
|
+
- added rest segments support (#43)
|
|
88
|
+
|
|
89
|
+
### Other ###
|
|
90
|
+
|
|
91
|
+
- change build to Node.js
|
|
92
|
+
- change minifier to UglifyJS.
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
## v0.7.1 (2012/01/06) ##
|
|
97
|
+
|
|
98
|
+
### Fixes ###
|
|
99
|
+
|
|
100
|
+
- avoid calling `rules.normalize_` during validation step (#39)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
## v0.7.0 (2011/11/02) ##
|
|
105
|
+
|
|
106
|
+
### API Changes ###
|
|
107
|
+
|
|
108
|
+
- added `crossroads.normalizeFn` (#31)
|
|
109
|
+
- added `vals_` Array to values object passed to `normalize_` and
|
|
110
|
+
`crossroads.normalizeFn` to increase flexibility. (#31)
|
|
111
|
+
- added `Route.greedy` support. (#20)
|
|
112
|
+
- changed parameters dispatched by `crossroads.routed` signal, passes request
|
|
113
|
+
as first param and a data object as second param. (#20)
|
|
114
|
+
|
|
115
|
+
### Other ###
|
|
116
|
+
|
|
117
|
+
- improve parameter typecasting. (#32)
|
|
118
|
+
- refactoring for better code compression and also simplified some logic to
|
|
119
|
+
increase code readability.
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
## v0.6.0 (2011/08/31) ##
|
|
124
|
+
|
|
125
|
+
## API Changes ##
|
|
126
|
+
|
|
127
|
+
- changed `crossroads.shouldTypecast` default value to `false` (#23)
|
|
128
|
+
- added magic rule to normalize route params before dispatch `rules.normalize_`. (#21)
|
|
129
|
+
- added crossroads.VERSION
|
|
130
|
+
|
|
131
|
+
### Fixes ###
|
|
132
|
+
|
|
133
|
+
- fix optional "/" between required params. (#25)
|
|
134
|
+
- only test optional params if value != null. (#26)
|
|
135
|
+
- fix CommonJS wrapper, wasn't exporting crossroads properly (#27)
|
|
136
|
+
|
|
137
|
+
### Other ###
|
|
138
|
+
|
|
139
|
+
- Migrated unit tests from YUI to Jasmine to allow testing on nodejs and also
|
|
140
|
+
because it runs locally and gives better error messages. Increased a lot the
|
|
141
|
+
number of tests that helped to spot a few edge cases. (#5)
|
|
142
|
+
- Changed wrapper to generate a single distribution file that runs on all
|
|
143
|
+
environments. (#27)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
## v0.5.0 (2011/08/17) ##
|
|
148
|
+
|
|
149
|
+
### API Changes ###
|
|
150
|
+
|
|
151
|
+
- added numbered rules for RegExp pattern and alias to segments (#16)
|
|
152
|
+
- added support to optional segments (#17)
|
|
153
|
+
- added property `crossroads.shouldTypecast` to enable/disable typecasting
|
|
154
|
+
segments values. (#18)
|
|
155
|
+
- added support to multiple instances (#19)
|
|
156
|
+
|
|
157
|
+
### Other ###
|
|
158
|
+
|
|
159
|
+
- Refactored `crossroads` core object to make it cleaner.
|
|
160
|
+
|
|
161
|
+
### Fixes ###
|
|
162
|
+
|
|
163
|
+
- fix trailing slash before optional param (#22)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
## v0.4 (2011/06/06) ##
|
|
168
|
+
|
|
169
|
+
### API Changes ###
|
|
170
|
+
|
|
171
|
+
- added magic rule to validate whole request `rules.request_`. (#14)
|
|
172
|
+
|
|
173
|
+
### Other ###
|
|
174
|
+
|
|
175
|
+
- changed behavior of trailing slash at the end of string pattern so it doesn't affect route anymore (#12).
|
|
176
|
+
- added NPM package.
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
## v0.3 (2011/05/03) ##
|
|
181
|
+
|
|
182
|
+
### API Changes ###
|
|
183
|
+
|
|
184
|
+
- added support for RegExp route pattern. (#8)
|
|
185
|
+
- added signal `routed` to crossroads. (#9)
|
|
186
|
+
- added commonjs module wrapper.
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
## v0.2 (2011/04/14) ##
|
|
191
|
+
|
|
192
|
+
### API Changes ###
|
|
193
|
+
|
|
194
|
+
- added priority param to `addRoute`. (#2)
|
|
195
|
+
|
|
196
|
+
### Other ###
|
|
197
|
+
|
|
198
|
+
- added "js-signals" as module dependency on AMD version.
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
## v0.1.1 (2011/04/14) ##
|
|
203
|
+
|
|
204
|
+
### Fixes ###
|
|
205
|
+
|
|
206
|
+
- safe guarded from empty `parse` calls.
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
## v0.1 (2011/04/14) ##
|
|
211
|
+
|
|
212
|
+
- initial release with basic features support.
|