- Switched to NAPI-3.0 with XML support

- Fixed exeman to write files by default into the first directory in batchpath
- Fixed a bug in nxdict which prevented it from handling attributes
  containing :/ properly
- Removed junk files
- Fixed a bug in hklscan.c which made it dump core
- Added XML support to nxscript.c
- Added support for writing NeXus-XML data files to tasub
This commit is contained in:
koennecke
2005-05-27 11:58:05 +00:00
parent 46492ca9bd
commit 1247dcdb82
27 changed files with 1805 additions and 2977 deletions

View File

@ -860,6 +860,10 @@ int ScriptScanCollect(pScanData self, int iPoint){
int ScriptWriteScanPoints(pScanData self, int iPoint){
return StandardScriptInvokeWithPoint(self,"writepoint",iPoint);
}
/*--------------------------------------------------------------------*/
int ScriptScanFinish(pScanData self){
return StandardScriptInvoke(self,"finish");
}
/*---------------------------------------------------------------------*/
void ConfigureScript(pScanData self){
assert(self);
@ -890,7 +894,9 @@ int StandardScanWrapper(SConnection *pCon, SicsInterp *pSics, void *pData,
return WriteHeader(self);
} else if(strcmp(argv[1],"prepare") == 0){
return PrepareScan(self);
}
} else if(strcmp(argv[1],"finish") == 0) {
return 1;
}
/*
from here on we need a scan point