Compare commits
9 Commits
8.0.7
...
c6bd63efce
| Author | SHA1 | Date | |
|---|---|---|---|
| c6bd63efce | |||
|
|
f66492ce4b | ||
| 2be3bc40e0 | |||
| 7c10c29c33 | |||
| 4c9b294e2b | |||
| 3efc4e3fd8 | |||
| 763e39d435 | |||
| 155e8f078e | |||
| 865840ec0c |
2
Doxyfile
2
Doxyfile
@@ -38,7 +38,7 @@ PROJECT_NAME = "PVData C++"
|
||||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 8.0.7
|
||||
PROJECT_NUMBER = 8.0.8-dev
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
|
||||
EPICS_PVD_MAJOR_VERSION = 8
|
||||
EPICS_PVD_MINOR_VERSION = 0
|
||||
EPICS_PVD_MAINTENANCE_VERSION = 7
|
||||
EPICS_PVD_MAINTENANCE_VERSION = 8
|
||||
|
||||
# Development flag, set to zero for release versions
|
||||
|
||||
EPICS_PVD_DEVELOPMENT_FLAG = 0
|
||||
EPICS_PVD_DEVELOPMENT_FLAG = 1
|
||||
|
||||
# Immediately after a release the MAINTENANCE_VERSION
|
||||
# will be incremented and the DEVELOPMENT_FLAG set to 1
|
||||
|
||||
@@ -38,7 +38,7 @@ PROJECT_NAME = "PVData C++"
|
||||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 8.0.7
|
||||
PROJECT_NUMBER = 8.0.8-dev
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
||||
@@ -1302,6 +1302,17 @@ void validateFieldName(const std::string& n)
|
||||
msg<<"Field name \""<<n<<"\" must begin with A-Z, a-z, or '_'";
|
||||
throw std::invalid_argument(msg.str());
|
||||
}
|
||||
/*
|
||||
size_t i = n.find_first_of("\"' ./");
|
||||
if (i != std::string::npos)
|
||||
{
|
||||
std::cerr << "Warning: character '" << n[i] << "' ("
|
||||
<< (unsigned int)(unsigned char)n[i]
|
||||
<< ") in field name \"" << n
|
||||
<< "\" may have undesired side effects." << std::endl;
|
||||
}
|
||||
*/
|
||||
/*
|
||||
for(size_t i=0, N=n.size(); i<N; i++)
|
||||
{
|
||||
char c = n[i];
|
||||
@@ -1320,6 +1331,7 @@ void validateFieldName(const std::string& n)
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
void validateFieldNames(const StringArray& l)
|
||||
|
||||
@@ -768,7 +768,7 @@ static void testSubField()
|
||||
|
||||
MAIN(testPVData)
|
||||
{
|
||||
testPlan(271);
|
||||
testPlan(270);
|
||||
try{
|
||||
fieldCreate = getFieldCreate();
|
||||
pvDataCreate = getPVDataCreate();
|
||||
@@ -777,7 +777,7 @@ MAIN(testPVData)
|
||||
convert = getConvert();
|
||||
testSizes();
|
||||
testCreatePVStructure();
|
||||
testCreatePVStructureWithInvalidName();
|
||||
// testCreatePVStructureWithInvalidName();
|
||||
testPVScalar();
|
||||
testScalarArray();
|
||||
testRequest();
|
||||
|
||||
Reference in New Issue
Block a user