git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12831
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
write gSeparator to inLogFileRef
end if
write gSeparator to inLogFileRef
end if
- tell application "Finder" to set theSubFolders to every folder of inFolder
+ tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data"
repeat with theFolder in theSubFolders
BuildProjects(inLogFileRef, theFolder, inTarget, inRebuild)
end repeat
repeat with theFolder in theSubFolders
BuildProjects(inLogFileRef, theFolder, inTarget, inRebuild)
end repeat
on ExportProjects(inFolder)
global theProjectCount, theProjectSuccessCount
on ExportProjects(inFolder)
global theProjectCount, theProjectSuccessCount
+ tell application "Finder" to update inFolder
+
try
tell application "Finder" to set theProject to ((the first file of inFolder whose name ends with gProjectSuffix) as string)
on error
try
tell application "Finder" to set theProject to ((the first file of inFolder whose name ends with gProjectSuffix) as string)
on error
- tell application "Finder" to set theSubFolders to every folder of inFolder
+ tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data"
repeat with theFolder in theSubFolders
ExportProjects(theFolder)
end repeat
repeat with theFolder in theSubFolders
ExportProjects(theFolder)
end repeat
on ImportProjects(inFolder)
global theXmlCount, theXmlSuccessCount
on ImportProjects(inFolder)
global theXmlCount, theXmlSuccessCount
+ tell application "Finder" to update inFolder
+
try
tell application "Finder" to set theXml to ((the first file of inFolder whose name ends with gXmlSuffix) as string)
on error
try
tell application "Finder" to set theXml to ((the first file of inFolder whose name ends with gXmlSuffix) as string)
on error
- tell application "Finder" to set theSubFolders to every folder of inFolder
+ tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data"
repeat with theFolder in theSubFolders
ImportProjects(theFolder)
end repeat
repeat with theFolder in theSubFolders
ImportProjects(theFolder)
end repeat