diff --git a/.gitignore b/.gitignore index 28853c5930f01543b5f669a47501b74ed00bcf3f..8f718aea18f8228889f4966d3e05d98422a63c57 100644 --- a/.gitignore +++ b/.gitignore @@ -167,3 +167,12 @@ Desktop.ini .tags_sorted_by_file Code/Mantid/Vates/VatesSimpleGui/ViewWidgets/inc/MantidVatesSimpleGuiViewWidgets/LibHelper.h + + +# Make sure Third_Party doesn't get checked into the main repository +Third_Party/ +# Common out-of-source build directory names. Usually, these should go in your .git/info/exclude +win64/ +dbg/ +rel/ + diff --git a/CMakeLists.txt b/CMakeLists.txt index 38df198a97db1c49acce959a0c1f7df3fa6af9a5..eb0616ea5b0154213add9fd9ca00e1a84f9227e4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -211,13 +211,13 @@ endif () ########################################################################### # N.B. INBUNDLE variable is empty except on Mac (set in DarwinSetup.cmake) -install ( DIRECTORY Installers/colormaps/ DESTINATION ${INBUNDLE}colormaps PATTERN ".svn" EXCLUDE ) +install ( DIRECTORY installers/colormaps/ DESTINATION ${INBUNDLE}colormaps PATTERN ".svn" EXCLUDE ) # Install the files (.desktop and icon) to create a menu item, but only if installing to /opt/Mantid if ( ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" AND CMAKE_INSTALL_PREFIX STREQUAL "/opt/Mantid" ) - install ( FILES ${CMAKE_CURRENT_SOURCE_DIR}/Installers/LinuxInstaller/mantidplot.desktop + install ( FILES ${CMAKE_CURRENT_SOURCE_DIR}/installers/LinuxInstaller/mantidplot.desktop DESTINATION /usr/share/applications ) - install ( FILES ${CMAKE_CURRENT_SOURCE_DIR}/Images/MantidPlot_Icon_32offset.png + install ( FILES ${CMAKE_CURRENT_SOURCE_DIR}/images/MantidPlot_Icon_32offset.png DESTINATION /usr/share/pixmaps RENAME mantidplot.png ) endif() @@ -236,7 +236,7 @@ if ( ENABLE_CPACK ) include ( CPackCommon ) # Mac package settings - set ( CPACK_RESOURCE_FILE_LICENSE ${CMAKE_SOURCE_DIR}/Installers/WinInstaller/License.txt ) + set ( CPACK_RESOURCE_FILE_LICENSE ${CMAKE_SOURCE_DIR}/installers/WinInstaller/License.txt ) IF ( ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" ) include ( CPackLinuxSetup ) diff --git a/Code/.gitignore b/Code/.gitignore deleted file mode 100644 index 3cde1d4d3a193a8d37e3f83586cb55a21506cd07..0000000000000000000000000000000000000000 --- a/Code/.gitignore +++ /dev/null @@ -1,7 +0,0 @@ -# Make sure Third_Party doesn't get checked into the main repository -Third_Party/ -# Common out-of-source build directory names. Usually, these should go in your .git/info/exclude -win64/ -dbg/ -rel/ - diff --git a/Framework/DataHandling/src/DownloadInstrument.cpp b/Framework/DataHandling/src/DownloadInstrument.cpp index 77f6428fce69cd4d8c3fe0ecdd7d0ccb8938459b..608b35f190fae3d94f0a368b871c8e75d7086c4f 100644 --- a/Framework/DataHandling/src/DownloadInstrument.cpp +++ b/Framework/DataHandling/src/DownloadInstrument.cpp @@ -147,8 +147,8 @@ DownloadInstrument::StringToStringMap DownloadInstrument::processRepository() { "this should point to the location of the instrument " "directory in the github API " "e.g. " - "https://api.github.com/repos/mantidproject/mantid/contents/Code/" - "Mantid/instrument."); + "https://api.github.com/repos/mantidproject/mantid/contents/" + "instrument."); } StringToStringMap fileMap; try { diff --git a/Framework/DataHandling/test/DownloadInstrumentTest.h b/Framework/DataHandling/test/DownloadInstrumentTest.h index 1fe7a3e0d7504ad09dc84cb06c81b56959765140..587b9fe1e47fa6d085dcb43ab83413d70280e5bd 100644 --- a/Framework/DataHandling/test/DownloadInstrumentTest.h +++ b/Framework/DataHandling/test/DownloadInstrumentTest.h @@ -43,7 +43,7 @@ private: "[\n" " {\n" " \"name\": \"NewFile.xml\",\n" - " \"path\": \"Code/Mantid/instrument/NewFile.xml\",\n" + " \"path\": \"instrument/NewFile.xml\",\n" " \"sha\": \"Xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\n" " \"size\": 60,\n" " \"url\": \"https://www.mantidproject.org/invalid\",\n" @@ -58,7 +58,7 @@ private: " },\n" " {\n" " \"name\": \"UpdatableFile.xml\",\n" - " \"path\": \"Code/Mantid/instrument/UpdatableFile.xml\",\n" + " \"path\": \"instrument/UpdatableFile.xml\",\n" " \"sha\": \"d66ba0a04290093d83d41901048068d495d41764\",\n" " \"size\": 106141,\n" " \"url\": \"https://www.mantidproject.org/invalid\",\n" diff --git a/Framework/Doxygen/CMakeLists.txt b/Framework/Doxygen/CMakeLists.txt index 5fa5bb562ea196c2058099f79fd43bf5f2d6ae8f..4f2fb3c026c3c1084319fe1e4e5b6022875ece48 100644 --- a/Framework/Doxygen/CMakeLists.txt +++ b/Framework/Doxygen/CMakeLists.txt @@ -40,8 +40,8 @@ if(DOXYGEN_FOUND) # configure doxygen add_custom_command ( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/../../doxygen/html/Mantid_Logo_Transparent.png - COMMAND ${CMAKE_COMMAND} ARGS -E copy_if_different ${CMAKE_SOURCE_DIR}/Images/Mantid_Logo_Transparent.png ${CMAKE_CURRENT_BINARY_DIR}/../../doxygen/html/Mantid_Logo_Transparent.png - DEPENDS ${CMAKE_SOURCE_DIR}/Images/Mantid_Logo_Transparent.png + COMMAND ${CMAKE_COMMAND} ARGS -E copy_if_different ${CMAKE_SOURCE_DIR}/images/Mantid_Logo_Transparent.png ${CMAKE_CURRENT_BINARY_DIR}/../../doxygen/html/Mantid_Logo_Transparent.png + DEPENDS ${CMAKE_SOURCE_DIR}/images/Mantid_Logo_Transparent.png ) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Mantid_template.doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Mantid.doxyfile @ONLY) diff --git a/Framework/Kernel/CMakeLists.txt b/Framework/Kernel/CMakeLists.txt index 9da415f1b2dafc31f30b37aaf8cad02b99f4b8fd..f287fcf5d4723d4133366e3cce6681b96be0ae6e 100644 --- a/Framework/Kernel/CMakeLists.txt +++ b/Framework/Kernel/CMakeLists.txt @@ -489,7 +489,7 @@ set ( CHECK_FOR_NEW_MANTID_VERSION "0" ) set ( ENABLE_USAGE_REPORTS "0" ) set ( PYTHONPLUGIN_DIRS "${MANTID_ROOT}/Framework/PythonInterface/plugins" ) set ( DATADIRS ${ExternalData_BINARY_ROOT}/Testing/Data/UnitTest;${ExternalData_BINARY_ROOT}/Testing/Data/DocTest;${MANTID_ROOT}/instrument ) -set ( COLORMAPS_FOLDER ${MANTID_ROOT}/Installers/colormaps/ ) +set ( COLORMAPS_FOLDER ${MANTID_ROOT}/installers/colormaps/ ) set ( MANTIDPUBLISHER "http://upload.mantidproject.org/scriptrepository?debug=1" ) set ( HTML_ROOT ${DOCS_BUILDDIR}/html ) diff --git a/Framework/Properties/Mantid.properties.template b/Framework/Properties/Mantid.properties.template index e400eaa8e67d6cbea9e41f8b8abf44e097f517d7..27e669d1d7ff7c2297397b120797a006c97aa4b6 100644 --- a/Framework/Properties/Mantid.properties.template +++ b/Framework/Properties/Mantid.properties.template @@ -40,7 +40,7 @@ instrumentDefinition.directory = @MANTID_ROOT@/instrument # Whether to check for updated instrument definitions on startup of Mantid UpdateInstrumentDefinitions.OnStartup = @UPDATE_INSTRUMENT_DEFINTITIONS@ -UpdateInstrumentDefinitions.URL = https://api.github.com/repos/mantidproject/mantid/contents/Code/Mantid/instrument +UpdateInstrumentDefinitions.URL = https://api.github.com/repos/mantidproject/mantid/contents/instrument # Whether to check for newer mantid versions on startup CheckMantidVersion.OnStartup = @CHECK_FOR_NEW_MANTID_VERSION@ diff --git a/MantidPlot/CMakeLists.txt b/MantidPlot/CMakeLists.txt index 394c3e256ef9647711234ad43b8607f3a400a211..2f77fbf6fbff3cfb6f376e8769eceaf5a4fbe96a 100644 --- a/MantidPlot/CMakeLists.txt +++ b/MantidPlot/CMakeLists.txt @@ -762,8 +762,8 @@ include_directories ( ${CMAKE_CURRENT_BINARY_DIR} ) # Internal icon links ########################################################################### -qt4_add_resources ( RES_FILES ${PROJECT_SOURCE_DIR}/Images/images.qrc ) -qt4_add_resources ( RES_FILES ${PROJECT_SOURCE_DIR}/Images//fonts/fonts.qrc ) +qt4_add_resources ( RES_FILES ${PROJECT_SOURCE_DIR}/images/images.qrc ) +qt4_add_resources ( RES_FILES ${PROJECT_SOURCE_DIR}/images//fonts/fonts.qrc ) qt4_add_resources ( RES_FILES ${CMAKE_CURRENT_SOURCE_DIR}/icons/icons.qrc ) qt4_add_resources ( RES_FILES ${PROJECT_SOURCE_DIR}/MantidQt/SliceViewer/icons/SliceViewerIcons.qrc ) qt4_add_resources ( RES_FILES ${PROJECT_SOURCE_DIR}/MantidQt/CustomInterfaces/icons/CustomInterfacesIcons.qrc ) @@ -821,7 +821,7 @@ if( WIN32 ) endif( WIN32 ) if ( APPLE ) - set ( MANTID_RC_FILE ${CMAKE_SOURCE_DIR}/Images/MantidPlot.icns ) + set ( MANTID_RC_FILE ${CMAKE_SOURCE_DIR}/images/MantidPlot.icns ) set_source_files_properties(MANTID_RC_FILE PROPERTIES MACOSX_PACKAGE_LOCATION Resources) endif () @@ -935,7 +935,7 @@ if( APPLE ) set ( MAC_BUNDLE_IDENTIFIER "" ) endif() - configure_file ( ${CMAKE_CURRENT_SOURCE_DIR}/../Installers/MacInstaller/Info.plist.in + configure_file ( ${CMAKE_CURRENT_SOURCE_DIR}/../installers/MacInstaller/Info.plist.in ${CMAKE_CURRENT_BINARY_DIR}/Info.plist @ONLY ) diff --git a/MantidPlot/src/ApplicationWindow.cpp b/MantidPlot/src/ApplicationWindow.cpp index 6e4d19ca956d800095fc2029bfbc2fde73d57cb8..d9455438c81ff03c2f0516cc79f00b0934b5c201 100644 --- a/MantidPlot/src/ApplicationWindow.cpp +++ b/MantidPlot/src/ApplicationWindow.cpp @@ -2627,7 +2627,7 @@ Matrix *ApplicationWindow::importImage(const QString &fileName) { QString fn = fileName; if (fn.isEmpty()) { QList<QByteArray> list = QImageReader::supportedImageFormats(); - QString filter = tr("Images") + " (", aux1, aux2; + QString filter = tr("images") + " (", aux1, aux2; for (int i = 0; i < (int)list.count(); i++) { aux1 = " *." + list[i] + " "; aux2 += " *." + list[i] + ";;"; @@ -2668,7 +2668,7 @@ Matrix *ApplicationWindow::importImage(const QString &fileName) { void ApplicationWindow::loadImage() { QList<QByteArray> list = QImageReader::supportedImageFormats(); - QString filter = tr("Images") + " (", aux1, aux2; + QString filter = tr("images") + " (", aux1, aux2; for (int i = 0; i < (int)list.count(); i++) { aux1 = " *." + list[i] + " "; aux2 += " *." + list[i] + ";;"; @@ -5041,13 +5041,13 @@ void ApplicationWindow::readSettings() { fitPluginsPath = settings.value("/FitPlugins", "fitPlugins").toString(); templatesDir = settings.value("/TemplatesDir", appPath).toString(); asciiDirPath = settings.value("/ASCII", appPath).toString(); - imagesDirPath = settings.value("/Images", appPath).toString(); + imagesDirPath = settings.value("/images", appPath).toString(); #else fitPluginsPath = settings.value("/FitPlugins", "/usr/lib/MantidPlot/plugins").toString(); templatesDir = settings.value("/TemplatesDir", QDir::homePath()).toString(); asciiDirPath = settings.value("/ASCII", QDir::homePath()).toString(); - imagesDirPath = settings.value("/Images", QDir::homePath()).toString(); + imagesDirPath = settings.value("/images", QDir::homePath()).toString(); workingDir = settings.value("/WorkingDir", QDir::homePath()).toString(); #endif scriptsDirPath = settings.value("/ScriptsDir", appPath).toString(); @@ -5552,7 +5552,7 @@ void ApplicationWindow::saveSettings() { settings.setValue("/HelpFile", helpFilePath); settings.setValue("/FitPlugins", fitPluginsPath); settings.setValue("/ASCII", asciiDirPath); - settings.setValue("/Images", imagesDirPath); + settings.setValue("/images", imagesDirPath); settings.setValue("/ScriptsDir", scriptsDirPath); settings.setValue("/FitModelsDir", fitModelsPath); settings.setValue("/CustomActionsDir", customActionsDirPath); @@ -8312,7 +8312,7 @@ void ApplicationWindow::addImage() { return; QList<QByteArray> list = QImageReader::supportedImageFormats(); - QString filter = tr("Images") + " (", aux1, aux2; + QString filter = tr("images") + " (", aux1, aux2; for (int i = 0; i < (int)list.count(); i++) { aux1 = " *." + list[i] + " "; aux2 += " *." + list[i] + ";;"; diff --git a/MantidPlot/src/CustomActionDialog.cpp b/MantidPlot/src/CustomActionDialog.cpp index e6867cfc82653909435c530d2fdc298a43f8c94b..0ffe792247682d974fbf3c6af8338c200fa32c61 100644 --- a/MantidPlot/src/CustomActionDialog.cpp +++ b/MantidPlot/src/CustomActionDialog.cpp @@ -474,7 +474,7 @@ void CustomActionDialog::saveAction(QAction *action) void CustomActionDialog::chooseIcon() { QList<QByteArray> list = QImageReader::supportedImageFormats(); - QString filter = tr("Images") + " (", aux1, aux2; + QString filter = tr("images") + " (", aux1, aux2; for (int i=0; i<(int)list.count(); i++){ aux1 = " *." + list[i] + " "; aux2 += " *." + list[i] + ";;"; diff --git a/MantidPlot/src/Mantid/FirstTimeSetup.ui b/MantidPlot/src/Mantid/FirstTimeSetup.ui index f0f78aa923f7933b9176023d853d04cb6336b183..26598580d2b60a8b66754bd3436dff407cbf22b3 100644 --- a/MantidPlot/src/Mantid/FirstTimeSetup.ui +++ b/MantidPlot/src/Mantid/FirstTimeSetup.ui @@ -149,7 +149,7 @@ font-size: 28px</string> <string>Sample Datasets</string> </property> <property name="icon"> - <iconset resource="../../../Images/images.qrc"> + <iconset resource="../../../images/images.qrc"> <normaloff>:/Icons/download-icon-48x48.png</normaloff>:/Icons/download-icon-48x48.png</iconset> </property> <property name="iconSize"> @@ -187,7 +187,7 @@ font-size: 28px</string> <string>Extending Mantid with Python</string> </property> <property name="icon"> - <iconset resource="../../../Images/images.qrc"> + <iconset resource="../../../images/images.qrc"> <normaloff>:/Icons/Plugin-Python-icon-48x48.png</normaloff>:/Icons/Plugin-Python-icon-48x48.png</iconset> </property> <property name="iconSize"> @@ -222,7 +222,7 @@ font-size: 28px</string> <string>Python in Mantid</string> </property> <property name="icon"> - <iconset resource="../../../Images/images.qrc"> + <iconset resource="../../../images/images.qrc"> <normaloff>:/Icons/Circle_cog_48x48.png</normaloff>:/Icons/Circle_cog_48x48.png</iconset> </property> <property name="iconSize"> @@ -257,7 +257,7 @@ font-size: 28px</string> <string>Introduction to Python</string> </property> <property name="icon"> - <iconset resource="../../../Images/images.qrc"> + <iconset resource="../../../images/images.qrc"> <normaloff>:/Icons/Python-icon-48x48.png</normaloff>:/Icons/Python-icon-48x48.png</iconset> </property> <property name="iconSize"> @@ -292,7 +292,7 @@ font-size: 28px</string> <string>Mantid Introduction</string> </property> <property name="icon"> - <iconset resource="../../../Images/images.qrc"> + <iconset resource="../../../images/images.qrc"> <normaloff>:/Icons/Misc-Tutorial-icon-48x48.png</normaloff>:/Icons/Misc-Tutorial-icon-48x48.png</iconset> </property> <property name="iconSize"> @@ -348,7 +348,7 @@ color: rgb(0, 0, 0);</string> <string>Release Notes</string> </property> <property name="icon"> - <iconset resource="../../../Images/images.qrc"> + <iconset resource="../../../images/images.qrc"> <normaloff>:/Icons/Notepad-Bloc-notes-icon-48x48.png</normaloff>:/Icons/Notepad-Bloc-notes-icon-48x48.png</iconset> </property> <property name="iconSize"> @@ -827,8 +827,8 @@ color: rgb(25,125,25);</string> <tabstop>pbConfirm</tabstop> </tabstops> <resources> - <include location="../../../Images/images.qrc"/> - <include location="../../../Images/fonts/fonts.qrc"/> + <include location="../../../images/images.qrc"/> + <include location="../../../images/fonts/fonts.qrc"/> </resources> <connections/> </ui> diff --git a/MantidPlot/src/Mantid/MantidAbout.ui b/MantidPlot/src/Mantid/MantidAbout.ui index 59a96c393e155adac6e8c241a94fbd38edec9043..377c4bbf0d0aa58d6c2beecb6f6d3b4437b54eae 100644 --- a/MantidPlot/src/Mantid/MantidAbout.ui +++ b/MantidPlot/src/Mantid/MantidAbout.ui @@ -220,7 +220,7 @@ <string/> </property> <property name="pixmap"> - <pixmap>:/Logos/Images/ISIS Logo.gif</pixmap> + <pixmap>:/Logos/images/ISIS Logo.gif</pixmap> </property> <property name="scaledContents"> <bool>true</bool> @@ -245,7 +245,7 @@ <string/> </property> <property name="pixmap"> - <pixmap resource="../../../Images/images.qrc">:/Ornl_hfir_sns_logo_small.png</pixmap> + <pixmap resource="../../../images/images.qrc">:/Ornl_hfir_sns_logo_small.png</pixmap> </property> <property name="scaledContents"> <bool>true</bool> @@ -289,7 +289,7 @@ <string/> </property> <property name="pixmap"> - <pixmap resource="../../../Images/images.qrc">:/ISIS_Logo_Transparent.gif</pixmap> + <pixmap resource="../../../images/images.qrc">:/ISIS_Logo_Transparent.gif</pixmap> </property> <property name="scaledContents"> <bool>false</bool> @@ -320,7 +320,7 @@ <string/> </property> <property name="pixmap"> - <pixmap resource="../../../Images/images.qrc">:/ess_logo_transparent_small.png</pixmap> + <pixmap resource="../../../images/images.qrc">:/ess_logo_transparent_small.png</pixmap> </property> <property name="scaledContents"> <bool>true</bool> @@ -404,7 +404,7 @@ <string/> </property> <property name="pixmap"> - <pixmap resource="../../../Images/images.qrc">:/Tessella_Logo_Transparent.gif</pixmap> + <pixmap resource="../../../images/images.qrc">:/Tessella_Logo_Transparent.gif</pixmap> </property> <property name="scaledContents"> <bool>true</bool> @@ -478,7 +478,7 @@ <string/> </property> <property name="pixmap"> - <pixmap resource="../../../Images/images.qrc">:/Mantid_Logo_Transparent.png</pixmap> + <pixmap resource="../../../images/images.qrc">:/Mantid_Logo_Transparent.png</pixmap> </property> <property name="scaledContents"> <bool>true</bool> @@ -490,7 +490,7 @@ </layout> </widget> <resources> - <include location="../../../Images/images.qrc"/> + <include location="../../../images/images.qrc"/> </resources> <connections> <connection> diff --git a/MantidQt/API/CMakeLists.txt b/MantidQt/API/CMakeLists.txt index b743c10d41d3ab4bb383c2e9216517bf71869a53..10a2e479febf052505ec1cdc6f14c71c563b7cad 100644 --- a/MantidQt/API/CMakeLists.txt +++ b/MantidQt/API/CMakeLists.txt @@ -149,7 +149,7 @@ target_link_libraries ( MantidQtAPI LINK_PRIVATE ${TCMALLOC_LIBRARIES_LINKTIME} # Windows: Generate a qt.conf file so that the dev build finds the qt # plugins in third party. Done in two steps to get it into the build # directory that is selected at build time. -# This file is NOT packaged. See Installers/WinInstaller for the package +# This file is NOT packaged. See installers/WinInstaller for the package # version. ########################################################################### if ( WIN32 ) diff --git a/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MWRunFiles.ui b/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MWRunFiles.ui index 0e1cd0f8cea23a0f671d35458bcc08611748cb07..6edbb9057145dede6af2f9b6857fbfc818a05270 100644 --- a/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MWRunFiles.ui +++ b/MantidQt/MantidWidgets/inc/MantidQtMantidWidgets/MWRunFiles.ui @@ -140,7 +140,7 @@ <string/> </property> <property name="icon"> - <iconset resource="../../../../Images/images.qrc"> + <iconset resource="../../../../images/images.qrc"> <normaloff>:/Icons/LoadFile.png</normaloff>:/Icons/LoadFile.png</iconset> </property> </widget> @@ -180,7 +180,7 @@ </action> </widget> <resources> - <include location="../../../../Images/images.qrc"/> + <include location="../../../../images/images.qrc"/> </resources> <connections> <connection> diff --git a/MantidQt/SliceViewer/inc/MantidQtSliceViewer/PeaksWorkspaceWidget.ui b/MantidQt/SliceViewer/inc/MantidQtSliceViewer/PeaksWorkspaceWidget.ui index 4e96f3d638618b89b9fa4ea98aa132edfb06a3f0..9a05a3076bed568c090efc96f218e787ffaf5c7a 100644 --- a/MantidQt/SliceViewer/inc/MantidQtSliceViewer/PeaksWorkspaceWidget.ui +++ b/MantidQt/SliceViewer/inc/MantidQtSliceViewer/PeaksWorkspaceWidget.ui @@ -186,7 +186,7 @@ <string/> </property> <property name="icon"> - <iconset resource="../../../../Images/images.qrc"> + <iconset resource="../../../../images/images.qrc"> <normaloff>:/PickTools/selection-peaks.png</normaloff>:/PickTools/selection-peaks.png</iconset> </property> <property name="checkable"> @@ -203,7 +203,7 @@ <string/> </property> <property name="icon"> - <iconset resource="../../../../Images/images.qrc"> + <iconset resource="../../../../images/images.qrc"> <normaloff>:/PickTools/eraser.png</normaloff>:/PickTools/eraser.png</iconset> </property> <property name="checkable"> @@ -354,7 +354,7 @@ </layout> </widget> <resources> - <include location="../../../../Images/images.qrc"/> + <include location="../../../../images/images.qrc"/> </resources> <connections/> </ui> diff --git a/buildconfig/CMake/DarwinSetup.cmake b/buildconfig/CMake/DarwinSetup.cmake index be401f1f73519712edb72677a1a6ccc0048d6220..66c0ff0bbd473b1130cb0d5b74b1193d76c177de 100644 --- a/buildconfig/CMake/DarwinSetup.cmake +++ b/buildconfig/CMake/DarwinSetup.cmake @@ -198,13 +198,13 @@ endif () install ( DIRECTORY ${QT_PLUGINS_DIR}/imageformats DESTINATION MantidPlot.app/Contents/Frameworks/plugins ) install ( DIRECTORY ${QT_PLUGINS_DIR}/sqldrivers DESTINATION MantidPlot.app/Contents/Frameworks/plugins ) -install ( FILES ${CMAKE_SOURCE_DIR}/Images/MantidPlot.icns - ${CMAKE_SOURCE_DIR}/Installers/MacInstaller/qt.conf +install ( FILES ${CMAKE_SOURCE_DIR}/images/MantidPlot.icns + ${CMAKE_SOURCE_DIR}/installers/MacInstaller/qt.conf DESTINATION MantidPlot.app/Contents/Resources/ ) -set ( CPACK_DMG_BACKGROUND_IMAGE ${CMAKE_SOURCE_DIR}/Images/osx-bundle-background.png ) -set ( CPACK_DMG_DS_STORE ${CMAKE_SOURCE_DIR}/Installers/MacInstaller/osx_DS_Store) +set ( CPACK_DMG_BACKGROUND_IMAGE ${CMAKE_SOURCE_DIR}/images/osx-bundle-background.png ) +set ( CPACK_DMG_DS_STORE ${CMAKE_SOURCE_DIR}/installers/MacInstaller/osx_DS_Store) set ( MACOSX_BUNDLE_ICON_FILE MantidPlot.icns ) string (REPLACE " " "" CPACK_SYSTEM_NAME ${OSX_CODENAME}) diff --git a/buildconfig/CMake/FindPylint.cmake b/buildconfig/CMake/FindPylint.cmake index dcb4e94b659742f6549694b2e6e938544c98d709..e673732303caf059c3124ff4d677de6831009ca4 100644 --- a/buildconfig/CMake/FindPylint.cmake +++ b/buildconfig/CMake/FindPylint.cmake @@ -29,9 +29,9 @@ if ( PYLINT_EXECUTABLE ) set ( PYLINT_VERSION "unknown" ) endif() # Script to find all .py files and execute pylint - set ( PYLINT_RUNNER_SCRIPT ${CMAKE_SOURCE_DIR}/Tools/Pylint/run_pylint.py ) + set ( PYLINT_RUNNER_SCRIPT ${CMAKE_SOURCE_DIR}/tools/Pylint/run_pylint.py ) # Configuration file - set ( PYLINT_CFG_FILE ${CMAKE_SOURCE_DIR}/Tools/Pylint/pylint.cfg ) + set ( PYLINT_CFG_FILE ${CMAKE_SOURCE_DIR}/tools/Pylint/pylint.cfg ) endif () include(FindPackageHandleStandardArgs) diff --git a/buildconfig/CMake/MPISetup.cmake b/buildconfig/CMake/MPISetup.cmake index bcc8602360efc199896fe176b4367d9726277fe9..66ca25c21acb71c8bc140656cba0fd2a6a5f3be6 100644 --- a/buildconfig/CMake/MPISetup.cmake +++ b/buildconfig/CMake/MPISetup.cmake @@ -42,7 +42,7 @@ set ( INSTALL_ROOT ${CMAKE_INSTALL_PREFIX} CACHE PATH "The location you intend t # Remove old module file execute_process ( COMMAND ${CMAKE_COMMAND} -E remove_directory ${CMAKE_BINARY_DIR}/modulefile ) # Create new module file -configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/../Installers/LinuxInstaller/modulefile.template +configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/../installers/LinuxInstaller/modulefile.template ${CMAKE_BINARY_DIR}/modulefile/${CPACK_PACKAGE_VERSION} ) diff --git a/buildconfig/CMake/WindowsNSIS.cmake b/buildconfig/CMake/WindowsNSIS.cmake index b9a299a2ee61ff18653912072b3b6f0d708ded4a..82743b8031c35f1f6de0b1b11145beffcd71608f 100644 --- a/buildconfig/CMake/WindowsNSIS.cmake +++ b/buildconfig/CMake/WindowsNSIS.cmake @@ -11,9 +11,9 @@ set( CPACK_NSIS_DISPLAY_NAME "Mantid${CPACK_PACKAGE_SUFFIX}") set( CPACK_PACKAGE_NAME "mantid${CPACK_PACKAGE_SUFFIX}" ) set( CPACK_PACKAGE_INSTALL_DIRECTORY "MantidInstall${CPACK_PACKAGE_SUFFIX}") set( CPACK_NSIS_INSTALL_ROOT "C:") -set( CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/Images\\\\MantidPlot_Icon_32offset.png" ) -set( CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}/Images\\\\MantidPlot_Icon_32offset.ico" ) -set( CPACK_NSIS_MUI_UNIICON "${CMAKE_CURRENT_SOURCE_DIR}/Images\\\\MantidPlot_Icon_32offset.ico" ) +set( CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/images\\\\MantidPlot_Icon_32offset.png" ) +set( CPACK_NSIS_MUI_ICON "${CMAKE_CURRENT_SOURCE_DIR}/images\\\\MantidPlot_Icon_32offset.ico" ) +set( CPACK_NSIS_MUI_UNIICON "${CMAKE_CURRENT_SOURCE_DIR}/images\\\\MantidPlot_Icon_32offset.ico" ) ########################################################################### # Deployment type - currently only works for Release! @@ -120,7 +120,7 @@ endforeach() ########################################################################### # Qt Plugins + qt.conf file ########################################################################### -install ( FILES ${CMAKE_CURRENT_SOURCE_DIR}/Installers/WinInstaller/qt.conf DESTINATION bin ) +install ( FILES ${CMAKE_CURRENT_SOURCE_DIR}/installers/WinInstaller/qt.conf DESTINATION bin ) # imageformats set ( QT_PLUGINS_IMAGEFORMAT qgif4.dll qico4.dll qjpeg4.dll qmng4.dll qsvg4.dll qtga4.dll qtiff4.dll ) foreach( DLL ${QT_PLUGINS_IMAGEFORMAT} ) @@ -143,7 +143,7 @@ install ( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Framework/Geometry/inc/MantidGeo install ( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Framework/API/inc/MantidAPI DESTINATION include PATTERN ".svn" EXCLUDE PATTERN ".git" EXCLUDE ) # scons -install ( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Installers/WinInstaller/scons-local/ DESTINATION scons-local +install ( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/installers/WinInstaller/scons-local/ DESTINATION scons-local PATTERN ".svn" EXCLUDE PATTERN ".git" EXCLUDE ) # user algorithms install ( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Framework/UserAlgorithms/ DESTINATION UserAlgorithms FILES_MATCHING PATTERN "*.h" ) diff --git a/docs/conf.py.in b/docs/conf.py.in index d320b5f4d9c4f17c738678ba7046719407db38da..4eb1cac59761bc9ab786ac711173372ca133b79c 100644 --- a/docs/conf.py.in +++ b/docs/conf.py.in @@ -124,7 +124,7 @@ html_title = "" # The name of an image file (relative to this directory) to place at the top # of the sidebar. -html_logo = os.path.relpath('@CMAKE_CURRENT_SOURCE_DIR@/../Images/Mantid_Logo_Transparent.png') +html_logo = os.path.relpath('@CMAKE_CURRENT_SOURCE_DIR@/../images/Mantid_Logo_Transparent.png') # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, diff --git a/docs/source/algorithms/DownloadInstrument-v1.rst b/docs/source/algorithms/DownloadInstrument-v1.rst index 051d20ce1045289b872c0dde2f9ab1479bf50461..04a1c5808d5c5838dbce4eb5eef855c7afd7d6e1 100644 --- a/docs/source/algorithms/DownloadInstrument-v1.rst +++ b/docs/source/algorithms/DownloadInstrument-v1.rst @@ -23,7 +23,7 @@ The code is configured using he following Mantid.Property, or Mantid.User.Proper UpdateInstrumentDefinitions.OnStartup = 1 This controls wether this algorithm is run on startup of Mantid. 1 = Run on startup, 0 = don't. -UpdateInstrumentDefinitions.URL = https://api.github.com/repos/mantidproject/mantid/contents/Code/Mantid/instrument +UpdateInstrumentDefinitions.URL = https://api.github.com/repos/mantidproject/mantid/contents/instrument This stores the url used to access the contents of the Mantid Instrument Definition Repository. Output Messages diff --git a/Images/Circle_cog_48x48.png b/images/Circle_cog_48x48.png similarity index 100% rename from Images/Circle_cog_48x48.png rename to images/Circle_cog_48x48.png diff --git a/Images/First_use_Background.pdn b/images/First_use_Background.pdn similarity index 100% rename from Images/First_use_Background.pdn rename to images/First_use_Background.pdn diff --git a/Images/First_use_Background.png b/images/First_use_Background.png similarity index 100% rename from Images/First_use_Background.png rename to images/First_use_Background.png diff --git a/Images/First_use_Background_black.pdn b/images/First_use_Background_black.pdn similarity index 100% rename from Images/First_use_Background_black.pdn rename to images/First_use_Background_black.pdn diff --git a/Images/First_use_Background_green.pdn b/images/First_use_Background_green.pdn similarity index 100% rename from Images/First_use_Background_green.pdn rename to images/First_use_Background_green.pdn diff --git a/Images/First_use_Background_green_beam.pdn b/images/First_use_Background_green_beam.pdn similarity index 100% rename from Images/First_use_Background_green_beam.pdn rename to images/First_use_Background_green_beam.pdn diff --git a/Images/First_use_Background_green_beam_black_logo.pdn b/images/First_use_Background_green_beam_black_logo.pdn similarity index 100% rename from Images/First_use_Background_green_beam_black_logo.pdn rename to images/First_use_Background_green_beam_black_logo.pdn diff --git a/Images/First_use_Background_mantis.pdn b/images/First_use_Background_mantis.pdn similarity index 100% rename from Images/First_use_Background_mantis.pdn rename to images/First_use_Background_mantis.pdn diff --git a/Images/First_use_Background_mantis_washout.pdn b/images/First_use_Background_mantis_washout.pdn similarity index 100% rename from Images/First_use_Background_mantis_washout.pdn rename to images/First_use_Background_mantis_washout.pdn diff --git a/Images/HFIR_logo_small.png b/images/HFIR_logo_small.png similarity index 100% rename from Images/HFIR_logo_small.png rename to images/HFIR_logo_small.png diff --git a/Images/ICatComboBackground.png b/images/ICatComboBackground.png similarity index 100% rename from Images/ICatComboBackground.png rename to images/ICatComboBackground.png diff --git a/Images/ICatComboVScrollbar.png b/images/ICatComboVScrollbar.png similarity index 100% rename from Images/ICatComboVScrollbar.png rename to images/ICatComboVScrollbar.png diff --git a/Images/ICatSearchBackGround.png b/images/ICatSearchBackGround.png similarity index 100% rename from Images/ICatSearchBackGround.png rename to images/ICatSearchBackGround.png diff --git a/Images/ICatSearchBackGround.qrc b/images/ICatSearchBackGround.qrc similarity index 100% rename from Images/ICatSearchBackGround.qrc rename to images/ICatSearchBackGround.qrc diff --git a/Images/ISIS_Logo_Transparent.gif b/images/ISIS_Logo_Transparent.gif similarity index 100% rename from Images/ISIS_Logo_Transparent.gif rename to images/ISIS_Logo_Transparent.gif diff --git a/Images/LoadFile.png b/images/LoadFile.png similarity index 100% rename from Images/LoadFile.png rename to images/LoadFile.png diff --git a/Images/MantidPlot.icns b/images/MantidPlot.icns similarity index 100% rename from Images/MantidPlot.icns rename to images/MantidPlot.icns diff --git a/Images/MantidPlot_Icon_32offset.ico b/images/MantidPlot_Icon_32offset.ico similarity index 100% rename from Images/MantidPlot_Icon_32offset.ico rename to images/MantidPlot_Icon_32offset.ico diff --git a/Images/MantidPlot_Icon_32offset.png b/images/MantidPlot_Icon_32offset.png similarity index 100% rename from Images/MantidPlot_Icon_32offset.png rename to images/MantidPlot_Icon_32offset.png diff --git a/Images/MantidPlot_Python_Icon_32x32.pdn b/images/MantidPlot_Python_Icon_32x32.pdn similarity index 100% rename from Images/MantidPlot_Python_Icon_32x32.pdn rename to images/MantidPlot_Python_Icon_32x32.pdn diff --git a/Images/MantidPlot_Python_Icon_32x32.png b/images/MantidPlot_Python_Icon_32x32.png similarity index 100% rename from Images/MantidPlot_Python_Icon_32x32.png rename to images/MantidPlot_Python_Icon_32x32.png diff --git a/Images/MantidSplashScreen.png b/images/MantidSplashScreen.png similarity index 100% rename from Images/MantidSplashScreen.png rename to images/MantidSplashScreen.png diff --git a/Images/Mantid_Logo_Forum.pdn b/images/Mantid_Logo_Forum.pdn similarity index 100% rename from Images/Mantid_Logo_Forum.pdn rename to images/Mantid_Logo_Forum.pdn diff --git a/Images/Mantid_Logo_Forum.png b/images/Mantid_Logo_Forum.png similarity index 100% rename from Images/Mantid_Logo_Forum.png rename to images/Mantid_Logo_Forum.png diff --git a/Images/Mantid_Logo_Transparent.png b/images/Mantid_Logo_Transparent.png similarity index 100% rename from Images/Mantid_Logo_Transparent.png rename to images/Mantid_Logo_Transparent.png diff --git a/Images/Mantid_Logo_Transparent_Cropped.png b/images/Mantid_Logo_Transparent_Cropped.png similarity index 100% rename from Images/Mantid_Logo_Transparent_Cropped.png rename to images/Mantid_Logo_Transparent_Cropped.png diff --git a/Images/Mantid_Logo_Transparent_for_dark_backgrounds.png b/images/Mantid_Logo_Transparent_for_dark_backgrounds.png similarity index 100% rename from Images/Mantid_Logo_Transparent_for_dark_backgrounds.png rename to images/Mantid_Logo_Transparent_for_dark_backgrounds.png diff --git a/Images/Misc-Tutorial-icon-32x32.png b/images/Misc-Tutorial-icon-32x32.png similarity index 100% rename from Images/Misc-Tutorial-icon-32x32.png rename to images/Misc-Tutorial-icon-32x32.png diff --git a/Images/Misc-Tutorial-icon-48x48.png b/images/Misc-Tutorial-icon-48x48.png similarity index 100% rename from Images/Misc-Tutorial-icon-48x48.png rename to images/Misc-Tutorial-icon-48x48.png diff --git a/Images/Notepad-Bloc-notes-icon-32x32.png b/images/Notepad-Bloc-notes-icon-32x32.png similarity index 100% rename from Images/Notepad-Bloc-notes-icon-32x32.png rename to images/Notepad-Bloc-notes-icon-32x32.png diff --git a/Images/Notepad-Bloc-notes-icon-48x48.png b/images/Notepad-Bloc-notes-icon-48x48.png similarity index 100% rename from Images/Notepad-Bloc-notes-icon-48x48.png rename to images/Notepad-Bloc-notes-icon-48x48.png diff --git a/Images/Ornl_hfir_sns_logo_small.png b/images/Ornl_hfir_sns_logo_small.png similarity index 100% rename from Images/Ornl_hfir_sns_logo_small.png rename to images/Ornl_hfir_sns_logo_small.png diff --git a/Images/Plugin-Python-icon-32x32.png b/images/Plugin-Python-icon-32x32.png similarity index 100% rename from Images/Plugin-Python-icon-32x32.png rename to images/Plugin-Python-icon-32x32.png diff --git a/Images/Plugin-Python-icon-48x48.png b/images/Plugin-Python-icon-48x48.png similarity index 100% rename from Images/Plugin-Python-icon-48x48.png rename to images/Plugin-Python-icon-48x48.png diff --git a/Images/Plugin-icon-32x32.png b/images/Plugin-icon-32x32.png similarity index 100% rename from Images/Plugin-icon-32x32.png rename to images/Plugin-icon-32x32.png diff --git a/Images/Python-icon-16x16.png b/images/Python-icon-16x16.png similarity index 100% rename from Images/Python-icon-16x16.png rename to images/Python-icon-16x16.png diff --git a/Images/Python-icon-32x32.png b/images/Python-icon-32x32.png similarity index 100% rename from Images/Python-icon-32x32.png rename to images/Python-icon-32x32.png diff --git a/Images/Python-icon-48x48.png b/images/Python-icon-48x48.png similarity index 100% rename from Images/Python-icon-48x48.png rename to images/Python-icon-48x48.png diff --git a/Images/README.txt b/images/README.txt similarity index 100% rename from Images/README.txt rename to images/README.txt diff --git a/Images/SNS_logo_trans_back.gif b/images/SNS_logo_trans_back.gif similarity index 100% rename from Images/SNS_logo_trans_back.gif rename to images/SNS_logo_trans_back.gif diff --git a/Images/Tessella_Logo_Transparent.gif b/images/Tessella_Logo_Transparent.gif similarity index 100% rename from Images/Tessella_Logo_Transparent.gif rename to images/Tessella_Logo_Transparent.gif diff --git a/Images/data_replace.png b/images/data_replace.png similarity index 100% rename from Images/data_replace.png rename to images/data_replace.png diff --git a/Images/dialog-ok.png b/images/dialog-ok.png similarity index 100% rename from Images/dialog-ok.png rename to images/dialog-ok.png diff --git a/Images/document.png b/images/document.png similarity index 100% rename from Images/document.png rename to images/document.png diff --git a/Images/download-icon-32x32.png b/images/download-icon-32x32.png similarity index 100% rename from Images/download-icon-32x32.png rename to images/download-icon-32x32.png diff --git a/Images/download-icon-48x48.png b/images/download-icon-48x48.png similarity index 100% rename from Images/download-icon-48x48.png rename to images/download-icon-48x48.png diff --git a/Images/download.png b/images/download.png similarity index 100% rename from Images/download.png rename to images/download.png diff --git a/Images/emptytrash.png b/images/emptytrash.png similarity index 100% rename from Images/emptytrash.png rename to images/emptytrash.png diff --git a/Images/eraser.png b/images/eraser.png similarity index 100% rename from Images/eraser.png rename to images/eraser.png diff --git a/Images/ess_logo_transparent_small.png b/images/ess_logo_transparent_small.png similarity index 100% rename from Images/ess_logo_transparent_small.png rename to images/ess_logo_transparent_small.png diff --git a/Images/file_pdf.png b/images/file_pdf.png similarity index 100% rename from Images/file_pdf.png rename to images/file_pdf.png diff --git a/Images/folder-remote.png b/images/folder-remote.png similarity index 100% rename from Images/folder-remote.png rename to images/folder-remote.png diff --git a/Images/folder.png b/images/folder.png similarity index 100% rename from Images/folder.png rename to images/folder.png diff --git a/Images/fonts/Apache License.txt b/images/fonts/Apache License.txt similarity index 100% rename from Images/fonts/Apache License.txt rename to images/fonts/Apache License.txt diff --git a/Images/fonts/MontserratAlternates-Bold.ttf b/images/fonts/MontserratAlternates-Bold.ttf similarity index 100% rename from Images/fonts/MontserratAlternates-Bold.ttf rename to images/fonts/MontserratAlternates-Bold.ttf diff --git a/Images/fonts/MontserratAlternates-Regular.ttf b/images/fonts/MontserratAlternates-Regular.ttf similarity index 100% rename from Images/fonts/MontserratAlternates-Regular.ttf rename to images/fonts/MontserratAlternates-Regular.ttf diff --git a/Images/fonts/OFL.txt b/images/fonts/OFL.txt similarity index 100% rename from Images/fonts/OFL.txt rename to images/fonts/OFL.txt diff --git a/Images/fonts/OpenSans-Bold.ttf b/images/fonts/OpenSans-Bold.ttf similarity index 100% rename from Images/fonts/OpenSans-Bold.ttf rename to images/fonts/OpenSans-Bold.ttf diff --git a/Images/fonts/OpenSans-BoldItalic.ttf b/images/fonts/OpenSans-BoldItalic.ttf similarity index 100% rename from Images/fonts/OpenSans-BoldItalic.ttf rename to images/fonts/OpenSans-BoldItalic.ttf diff --git a/Images/fonts/OpenSans-ExtraBold.ttf b/images/fonts/OpenSans-ExtraBold.ttf similarity index 100% rename from Images/fonts/OpenSans-ExtraBold.ttf rename to images/fonts/OpenSans-ExtraBold.ttf diff --git a/Images/fonts/OpenSans-ExtraBoldItalic.ttf b/images/fonts/OpenSans-ExtraBoldItalic.ttf similarity index 100% rename from Images/fonts/OpenSans-ExtraBoldItalic.ttf rename to images/fonts/OpenSans-ExtraBoldItalic.ttf diff --git a/Images/fonts/OpenSans-Italic.ttf b/images/fonts/OpenSans-Italic.ttf similarity index 100% rename from Images/fonts/OpenSans-Italic.ttf rename to images/fonts/OpenSans-Italic.ttf diff --git a/Images/fonts/OpenSans-Light.ttf b/images/fonts/OpenSans-Light.ttf similarity index 100% rename from Images/fonts/OpenSans-Light.ttf rename to images/fonts/OpenSans-Light.ttf diff --git a/Images/fonts/OpenSans-LightItalic.ttf b/images/fonts/OpenSans-LightItalic.ttf similarity index 100% rename from Images/fonts/OpenSans-LightItalic.ttf rename to images/fonts/OpenSans-LightItalic.ttf diff --git a/Images/fonts/OpenSans-Regular.ttf b/images/fonts/OpenSans-Regular.ttf similarity index 100% rename from Images/fonts/OpenSans-Regular.ttf rename to images/fonts/OpenSans-Regular.ttf diff --git a/Images/fonts/OpenSans-Semibold.ttf b/images/fonts/OpenSans-Semibold.ttf similarity index 100% rename from Images/fonts/OpenSans-Semibold.ttf rename to images/fonts/OpenSans-Semibold.ttf diff --git a/Images/fonts/OpenSans-SemiboldItalic.ttf b/images/fonts/OpenSans-SemiboldItalic.ttf similarity index 100% rename from Images/fonts/OpenSans-SemiboldItalic.ttf rename to images/fonts/OpenSans-SemiboldItalic.ttf diff --git a/Images/fonts/fonts.qrc b/images/fonts/fonts.qrc similarity index 100% rename from Images/fonts/fonts.qrc rename to images/fonts/fonts.qrc diff --git a/Images/fonts/pontano-sans.regular.ttf b/images/fonts/pontano-sans.regular.ttf similarity index 100% rename from Images/fonts/pontano-sans.regular.ttf rename to images/fonts/pontano-sans.regular.ttf diff --git a/Images/history.png b/images/history.png similarity index 100% rename from Images/history.png rename to images/history.png diff --git a/Images/history_off.png b/images/history_off.png similarity index 100% rename from Images/history_off.png rename to images/history_off.png diff --git a/Images/images.qrc b/images/images.qrc similarity index 100% rename from Images/images.qrc rename to images/images.qrc diff --git a/Images/invalid.png b/images/invalid.png similarity index 100% rename from Images/invalid.png rename to images/invalid.png diff --git a/Images/mantid.png b/images/mantid.png similarity index 100% rename from Images/mantid.png rename to images/mantid.png diff --git a/Images/office-document.png b/images/office-document.png similarity index 100% rename from Images/office-document.png rename to images/office-document.png diff --git a/Images/osx-bundle-background.png b/images/osx-bundle-background.png similarity index 100% rename from Images/osx-bundle-background.png rename to images/osx-bundle-background.png diff --git a/Images/panning.png b/images/panning.png similarity index 100% rename from Images/panning.png rename to images/panning.png diff --git a/Images/pvIcon.png b/images/pvIcon.png similarity index 100% rename from Images/pvIcon.png rename to images/pvIcon.png diff --git a/Images/replace.png b/images/replace.png similarity index 100% rename from Images/replace.png rename to images/replace.png diff --git a/Images/running_process.png b/images/running_process.png similarity index 100% rename from Images/running_process.png rename to images/running_process.png diff --git a/Images/selection-box-ring.png b/images/selection-box-ring.png similarity index 100% rename from Images/selection-box-ring.png rename to images/selection-box-ring.png diff --git a/Images/selection-box.png b/images/selection-box.png similarity index 100% rename from Images/selection-box.png rename to images/selection-box.png diff --git a/Images/selection-circle-ring.png b/images/selection-circle-ring.png similarity index 100% rename from Images/selection-circle-ring.png rename to images/selection-circle-ring.png diff --git a/Images/selection-circle.png b/images/selection-circle.png similarity index 100% rename from Images/selection-circle.png rename to images/selection-circle.png diff --git a/Images/selection-edit.png b/images/selection-edit.png similarity index 100% rename from Images/selection-edit.png rename to images/selection-edit.png diff --git a/Images/selection-peak.png b/images/selection-peak.png similarity index 100% rename from Images/selection-peak.png rename to images/selection-peak.png diff --git a/Images/selection-peaks.png b/images/selection-peaks.png similarity index 100% rename from Images/selection-peaks.png rename to images/selection-peaks.png diff --git a/Images/selection-pointer.png b/images/selection-pointer.png similarity index 100% rename from Images/selection-pointer.png rename to images/selection-pointer.png diff --git a/Images/selection-text.png b/images/selection-text.png similarity index 100% rename from Images/selection-text.png rename to images/selection-text.png diff --git a/Images/selection-tube.png b/images/selection-tube.png similarity index 100% rename from Images/selection-tube.png rename to images/selection-tube.png diff --git a/Images/system-software-update.png b/images/system-software-update.png similarity index 100% rename from Images/system-software-update.png rename to images/system-software-update.png diff --git a/Images/text-x-python.png b/images/text-x-python.png similarity index 100% rename from Images/text-x-python.png rename to images/text-x-python.png diff --git a/Images/txt_file.png b/images/txt_file.png similarity index 100% rename from Images/txt_file.png rename to images/txt_file.png diff --git a/Images/unknown.png b/images/unknown.png similarity index 100% rename from Images/unknown.png rename to images/unknown.png diff --git a/Images/upload.png b/images/upload.png similarity index 100% rename from Images/upload.png rename to images/upload.png diff --git a/Images/zoom.png b/images/zoom.png similarity index 100% rename from Images/zoom.png rename to images/zoom.png diff --git a/Installers/LinuxInstaller/mantidplot.desktop b/installers/LinuxInstaller/mantidplot.desktop similarity index 100% rename from Installers/LinuxInstaller/mantidplot.desktop rename to installers/LinuxInstaller/mantidplot.desktop diff --git a/Installers/LinuxInstaller/modulefile.template b/installers/LinuxInstaller/modulefile.template similarity index 100% rename from Installers/LinuxInstaller/modulefile.template rename to installers/LinuxInstaller/modulefile.template diff --git a/Installers/MacInstaller/Info.plist.in b/installers/MacInstaller/Info.plist.in similarity index 100% rename from Installers/MacInstaller/Info.plist.in rename to installers/MacInstaller/Info.plist.in diff --git a/Installers/MacInstaller/osx_DS_Store b/installers/MacInstaller/osx_DS_Store similarity index 100% rename from Installers/MacInstaller/osx_DS_Store rename to installers/MacInstaller/osx_DS_Store diff --git a/Installers/MacInstaller/qt.conf b/installers/MacInstaller/qt.conf similarity index 100% rename from Installers/MacInstaller/qt.conf rename to installers/MacInstaller/qt.conf diff --git a/Installers/WinInstaller/.gitignore b/installers/WinInstaller/.gitignore similarity index 100% rename from Installers/WinInstaller/.gitignore rename to installers/WinInstaller/.gitignore diff --git a/Installers/WinInstaller/License.rtf b/installers/WinInstaller/License.rtf similarity index 100% rename from Installers/WinInstaller/License.rtf rename to installers/WinInstaller/License.rtf diff --git a/Installers/WinInstaller/License.txt b/installers/WinInstaller/License.txt similarity index 100% rename from Installers/WinInstaller/License.txt rename to installers/WinInstaller/License.txt diff --git a/Installers/WinInstaller/qt.conf b/installers/WinInstaller/qt.conf similarity index 100% rename from Installers/WinInstaller/qt.conf rename to installers/WinInstaller/qt.conf diff --git a/Installers/WinInstaller/scons-local/scons-LICENSE b/installers/WinInstaller/scons-local/scons-LICENSE similarity index 100% rename from Installers/WinInstaller/scons-local/scons-LICENSE rename to installers/WinInstaller/scons-local/scons-LICENSE diff --git a/Installers/WinInstaller/scons-local/scons-README b/installers/WinInstaller/scons-local/scons-README similarity index 100% rename from Installers/WinInstaller/scons-local/scons-README rename to installers/WinInstaller/scons-local/scons-README diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Action.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Action.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Action.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Action.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Builder.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Builder.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Builder.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Builder.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/CacheDir.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/CacheDir.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/CacheDir.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/CacheDir.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Conftest.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Conftest.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Conftest.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Conftest.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Debug.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Debug.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Debug.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Debug.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Defaults.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Defaults.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Defaults.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Defaults.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Environment.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Environment.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Environment.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Environment.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Errors.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Errors.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Errors.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Errors.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Executor.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Executor.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Executor.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Executor.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Job.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Job.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Job.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Job.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Memoize.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Memoize.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Memoize.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Memoize.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/Alias.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/Alias.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/Alias.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/Alias.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/FS.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/FS.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/FS.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/FS.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/Python.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/Python.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/Python.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/Python.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Node/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/BoolOption.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/BoolOption.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/BoolOption.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/BoolOption.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/EnumOption.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/EnumOption.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/EnumOption.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/EnumOption.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/ListOption.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/ListOption.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/ListOption.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/ListOption.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/PackageOption.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/PackageOption.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/PackageOption.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/PackageOption.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/PathOption.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/PathOption.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/PathOption.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/PathOption.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Options/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/PathList.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/PathList.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/PathList.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/PathList.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/aix.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/aix.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/aix.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/aix.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/cygwin.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/cygwin.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/cygwin.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/cygwin.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/darwin.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/darwin.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/darwin.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/darwin.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/hpux.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/hpux.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/hpux.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/hpux.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/irix.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/irix.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/irix.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/irix.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/os2.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/os2.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/os2.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/os2.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/posix.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/posix.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/posix.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/posix.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/sunos.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/sunos.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/sunos.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/sunos.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/win32.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/win32.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/win32.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Platform/win32.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/SConf.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/SConf.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/SConf.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/SConf.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/SConsign.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/SConsign.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/SConsign.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/SConsign.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/C.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/C.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/C.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/C.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/D.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/D.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/D.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/D.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Dir.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Dir.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Dir.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Dir.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Fortran.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Fortran.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Fortran.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Fortran.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/IDL.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/IDL.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/IDL.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/IDL.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/LaTeX.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/LaTeX.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/LaTeX.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/LaTeX.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Prog.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Prog.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Prog.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/Prog.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/RC.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/RC.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/RC.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/RC.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Scanner/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/Interactive.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/Interactive.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/Interactive.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/Interactive.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/Main.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/Main.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/Main.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/Main.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/SConsOptions.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/SConsOptions.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/SConsOptions.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/SConsOptions.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/SConscript.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/SConscript.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/SConscript.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/SConscript.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Script/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Sig.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Sig.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Sig.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Sig.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Subst.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Subst.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Subst.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Subst.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Taskmaster.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Taskmaster.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Taskmaster.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Taskmaster.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/386asm.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/386asm.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/386asm.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/386asm.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/BitKeeper.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/BitKeeper.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/BitKeeper.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/BitKeeper.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/CVS.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/CVS.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/CVS.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/CVS.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/FortranCommon.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/FortranCommon.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/FortranCommon.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/FortranCommon.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/GettextCommon.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/GettextCommon.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/GettextCommon.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/GettextCommon.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/JavaCommon.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/JavaCommon.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/JavaCommon.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/JavaCommon.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/arch.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/arch.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/arch.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/arch.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/common.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/common.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/common.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/common.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/netframework.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/netframework.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/netframework.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/netframework.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/sdk.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/sdk.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/sdk.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/sdk.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/vc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/vc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/vc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/vc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/vs.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/vs.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/vs.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/MSCommon/vs.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/Perforce.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/Perforce.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/Perforce.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/Perforce.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/PharLapCommon.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/PharLapCommon.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/PharLapCommon.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/PharLapCommon.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/RCS.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/RCS.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/RCS.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/RCS.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/SCCS.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/SCCS.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/SCCS.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/SCCS.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/Subversion.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/Subversion.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/Subversion.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/Subversion.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixc++.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixc++.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixc++.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixc++.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixcc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixcc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixcc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixcc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixf77.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixf77.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixf77.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixf77.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixlink.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixlink.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixlink.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/aixlink.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/applelink.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/applelink.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/applelink.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/applelink.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ar.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ar.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ar.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ar.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/as.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/as.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/as.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/as.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/bcc32.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/bcc32.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/bcc32.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/bcc32.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/c++.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/c++.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/c++.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/c++.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/cc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/cc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/cc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/cc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/cvf.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/cvf.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/cvf.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/cvf.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/default.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/default.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/default.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/default.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dmd.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dmd.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dmd.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dmd.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvi.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvi.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvi.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvi.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvipdf.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvipdf.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvipdf.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvipdf.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvips.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvips.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvips.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/dvips.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f03.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f03.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f03.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f03.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f77.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f77.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f77.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f77.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f90.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f90.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f90.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f90.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f95.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f95.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f95.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/f95.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/filesystem.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/filesystem.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/filesystem.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/filesystem.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/fortran.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/fortran.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/fortran.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/fortran.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/g++.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/g++.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/g++.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/g++.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/g77.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/g77.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/g77.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/g77.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gas.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gas.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gas.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gas.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gcc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gcc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gcc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gcc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gettext.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gettext.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gettext.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gettext.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gfortran.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gfortran.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gfortran.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gfortran.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gnulink.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gnulink.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gnulink.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gnulink.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gs.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gs.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gs.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/gs.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hpc++.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hpc++.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hpc++.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hpc++.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hpcc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hpcc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hpcc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hpcc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hplink.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hplink.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hplink.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/hplink.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/icc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/icc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/icc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/icc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/icl.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/icl.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/icl.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/icl.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ifl.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ifl.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ifl.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ifl.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ifort.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ifort.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ifort.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ifort.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ilink.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ilink.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ilink.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ilink.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ilink32.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ilink32.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ilink32.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ilink32.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/install.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/install.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/install.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/install.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/intelc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/intelc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/intelc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/intelc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ipkg.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ipkg.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ipkg.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/ipkg.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/jar.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/jar.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/jar.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/jar.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/javac.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/javac.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/javac.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/javac.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/javah.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/javah.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/javah.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/javah.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/latex.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/latex.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/latex.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/latex.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/lex.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/lex.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/lex.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/lex.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/link.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/link.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/link.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/link.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/linkloc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/linkloc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/linkloc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/linkloc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/m4.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/m4.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/m4.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/m4.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/masm.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/masm.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/masm.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/masm.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/midl.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/midl.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/midl.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/midl.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mingw.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mingw.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mingw.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mingw.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msgfmt.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msgfmt.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msgfmt.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msgfmt.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msginit.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msginit.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msginit.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msginit.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msgmerge.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msgmerge.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msgmerge.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msgmerge.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mslib.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mslib.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mslib.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mslib.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mslink.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mslink.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mslink.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mslink.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mssdk.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mssdk.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mssdk.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mssdk.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msvc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msvc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msvc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msvc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msvs.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msvs.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msvs.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/msvs.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mwcc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mwcc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mwcc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mwcc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mwld.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mwld.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mwld.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/mwld.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/nasm.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/nasm.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/nasm.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/nasm.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/ipk.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/ipk.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/ipk.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/ipk.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/msi.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/msi.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/msi.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/msi.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/rpm.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/rpm.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/rpm.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/rpm.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_tarbz2.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_tarbz2.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_tarbz2.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_tarbz2.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_targz.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_targz.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_targz.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_targz.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_zip.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_zip.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_zip.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/src_zip.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/tarbz2.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/tarbz2.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/tarbz2.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/tarbz2.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/targz.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/targz.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/targz.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/targz.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/zip.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/zip.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/zip.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/packaging/zip.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdf.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdf.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdf.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdf.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdflatex.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdflatex.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdflatex.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdflatex.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdftex.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdftex.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdftex.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/pdftex.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/qt.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/qt.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/qt.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/qt.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rmic.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rmic.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rmic.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rmic.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rpcgen.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rpcgen.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rpcgen.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rpcgen.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rpm.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rpm.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rpm.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/rpm.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgiar.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgiar.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgiar.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgiar.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgic++.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgic++.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgic++.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgic++.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgicc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgicc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgicc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgicc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgilink.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgilink.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgilink.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sgilink.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunar.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunar.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunar.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunar.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunc++.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunc++.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunc++.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunc++.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/suncc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/suncc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/suncc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/suncc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf77.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf77.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf77.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf77.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf90.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf90.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf90.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf90.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf95.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf95.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf95.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunf95.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunlink.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunlink.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunlink.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/sunlink.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/swig.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/swig.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/swig.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/swig.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tar.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tar.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tar.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tar.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tex.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tex.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tex.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tex.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/textfile.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/textfile.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/textfile.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/textfile.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tlib.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tlib.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tlib.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/tlib.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/wix.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/wix.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/wix.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/wix.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/xgettext.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/xgettext.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/xgettext.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/xgettext.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/yacc.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/yacc.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/yacc.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/yacc.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/zip.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/zip.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/zip.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Tool/zip.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Util.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Util.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Util.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Util.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/BoolVariable.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/BoolVariable.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/BoolVariable.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/BoolVariable.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/EnumVariable.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/EnumVariable.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/EnumVariable.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/EnumVariable.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/ListVariable.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/ListVariable.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/ListVariable.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/ListVariable.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/PackageVariable.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/PackageVariable.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/PackageVariable.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/PackageVariable.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/PathVariable.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/PathVariable.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/PathVariable.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/PathVariable.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Variables/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Warnings.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Warnings.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Warnings.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/Warnings.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/__init__.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/__init__.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/__init__.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/__init__.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_builtins.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_builtins.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_builtins.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_builtins.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_collections.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_collections.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_collections.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_collections.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_dbm.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_dbm.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_dbm.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_dbm.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_hashlib.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_hashlib.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_hashlib.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_hashlib.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_io.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_io.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_io.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_io.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_sets.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_sets.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_sets.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_sets.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_subprocess.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_subprocess.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_subprocess.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/compat/_scons_subprocess.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/cpp.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/cpp.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/cpp.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/cpp.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/dblite.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/dblite.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/dblite.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/dblite.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/exitfuncs.py b/installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/exitfuncs.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/exitfuncs.py rename to installers/WinInstaller/scons-local/scons-local-2.2.0/SCons/exitfuncs.py diff --git a/Installers/WinInstaller/scons-local/scons-local-2.2.0/scons-2.2.0.egg-info b/installers/WinInstaller/scons-local/scons-local-2.2.0/scons-2.2.0.egg-info similarity index 100% rename from Installers/WinInstaller/scons-local/scons-local-2.2.0/scons-2.2.0.egg-info rename to installers/WinInstaller/scons-local/scons-local-2.2.0/scons-2.2.0.egg-info diff --git a/Installers/WinInstaller/scons-local/scons-time.py b/installers/WinInstaller/scons-local/scons-time.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons-time.py rename to installers/WinInstaller/scons-local/scons-time.py diff --git a/Installers/WinInstaller/scons-local/scons.py b/installers/WinInstaller/scons-local/scons.py similarity index 100% rename from Installers/WinInstaller/scons-local/scons.py rename to installers/WinInstaller/scons-local/scons.py diff --git a/Installers/WinInstaller/scons-local/sconsign.py b/installers/WinInstaller/scons-local/sconsign.py similarity index 100% rename from Installers/WinInstaller/scons-local/sconsign.py rename to installers/WinInstaller/scons-local/sconsign.py diff --git a/Installers/colormaps/All_idl_cmaps.xml b/installers/colormaps/All_idl_cmaps.xml similarity index 100% rename from Installers/colormaps/All_idl_cmaps.xml rename to installers/colormaps/All_idl_cmaps.xml diff --git a/Installers/colormaps/All_mpl_cmaps.xml b/installers/colormaps/All_mpl_cmaps.xml similarity index 100% rename from Installers/colormaps/All_mpl_cmaps.xml rename to installers/colormaps/All_mpl_cmaps.xml diff --git a/Installers/colormaps/All_slice_viewer_cmaps_for_vsi.xml b/installers/colormaps/All_slice_viewer_cmaps_for_vsi.xml similarity index 100% rename from Installers/colormaps/All_slice_viewer_cmaps_for_vsi.xml rename to installers/colormaps/All_slice_viewer_cmaps_for_vsi.xml diff --git a/Installers/colormaps/Autumn.map b/installers/colormaps/Autumn.map similarity index 100% rename from Installers/colormaps/Autumn.map rename to installers/colormaps/Autumn.map diff --git a/Installers/colormaps/BP.map b/installers/colormaps/BP.map similarity index 100% rename from Installers/colormaps/BP.map rename to installers/colormaps/BP.map diff --git a/Installers/colormaps/BPG.map b/installers/colormaps/BPG.map similarity index 100% rename from Installers/colormaps/BPG.map rename to installers/colormaps/BPG.map diff --git a/Installers/colormaps/BWB.map b/installers/colormaps/BWB.map similarity index 100% rename from Installers/colormaps/BWB.map rename to installers/colormaps/BWB.map diff --git a/Installers/colormaps/Beach.map b/installers/colormaps/Beach.map similarity index 100% rename from Installers/colormaps/Beach.map rename to installers/colormaps/Beach.map diff --git a/Installers/colormaps/BlackBodyRadiation.map b/installers/colormaps/BlackBodyRadiation.map similarity index 100% rename from Installers/colormaps/BlackBodyRadiation.map rename to installers/colormaps/BlackBodyRadiation.map diff --git a/Installers/colormaps/BlueIn.map b/installers/colormaps/BlueIn.map similarity index 100% rename from Installers/colormaps/BlueIn.map rename to installers/colormaps/BlueIn.map diff --git a/Installers/colormaps/BlueOut.map b/installers/colormaps/BlueOut.map similarity index 100% rename from Installers/colormaps/BlueOut.map rename to installers/colormaps/BlueOut.map diff --git a/Installers/colormaps/BlueRed.map b/installers/colormaps/BlueRed.map similarity index 100% rename from Installers/colormaps/BlueRed.map rename to installers/colormaps/BlueRed.map diff --git a/Installers/colormaps/ColdFire.map b/installers/colormaps/ColdFire.map similarity index 100% rename from Installers/colormaps/ColdFire.map rename to installers/colormaps/ColdFire.map diff --git a/Installers/colormaps/Colors.map b/installers/colormaps/Colors.map similarity index 100% rename from Installers/colormaps/Colors.map rename to installers/colormaps/Colors.map diff --git a/Installers/colormaps/Cool.map b/installers/colormaps/Cool.map similarity index 100% rename from Installers/colormaps/Cool.map rename to installers/colormaps/Cool.map diff --git a/Installers/colormaps/Gamma1.map b/installers/colormaps/Gamma1.map similarity index 100% rename from Installers/colormaps/Gamma1.map rename to installers/colormaps/Gamma1.map diff --git a/Installers/colormaps/Gamma2.map b/installers/colormaps/Gamma2.map similarity index 100% rename from Installers/colormaps/Gamma2.map rename to installers/colormaps/Gamma2.map diff --git a/Installers/colormaps/GreenIn.map b/installers/colormaps/GreenIn.map similarity index 100% rename from Installers/colormaps/GreenIn.map rename to installers/colormaps/GreenIn.map diff --git a/Installers/colormaps/GreenOut.map b/installers/colormaps/GreenOut.map similarity index 100% rename from Installers/colormaps/GreenOut.map rename to installers/colormaps/GreenOut.map diff --git a/Installers/colormaps/GreenToWhite.map b/installers/colormaps/GreenToWhite.map similarity index 100% rename from Installers/colormaps/GreenToWhite.map rename to installers/colormaps/GreenToWhite.map diff --git a/Installers/colormaps/Grey.map b/installers/colormaps/Grey.map similarity index 100% rename from Installers/colormaps/Grey.map rename to installers/colormaps/Grey.map diff --git a/Installers/colormaps/IDL-rainbow.map b/installers/colormaps/IDL-rainbow.map similarity index 100% rename from Installers/colormaps/IDL-rainbow.map rename to installers/colormaps/IDL-rainbow.map diff --git a/Installers/colormaps/Indigo.map b/installers/colormaps/Indigo.map similarity index 100% rename from Installers/colormaps/Indigo.map rename to installers/colormaps/Indigo.map diff --git a/Installers/colormaps/Jet.map b/installers/colormaps/Jet.map similarity index 100% rename from Installers/colormaps/Jet.map rename to installers/colormaps/Jet.map diff --git a/Installers/colormaps/Lace.map b/installers/colormaps/Lace.map similarity index 100% rename from Installers/colormaps/Lace.map rename to installers/colormaps/Lace.map diff --git a/Installers/colormaps/RBY.map b/installers/colormaps/RBY.map similarity index 100% rename from Installers/colormaps/RBY.map rename to installers/colormaps/RBY.map diff --git a/Installers/colormaps/Rainbow.map b/installers/colormaps/Rainbow.map similarity index 100% rename from Installers/colormaps/Rainbow.map rename to installers/colormaps/Rainbow.map diff --git a/Installers/colormaps/RedIn.map b/installers/colormaps/RedIn.map similarity index 100% rename from Installers/colormaps/RedIn.map rename to installers/colormaps/RedIn.map diff --git a/Installers/colormaps/RedOut.map b/installers/colormaps/RedOut.map similarity index 100% rename from Installers/colormaps/RedOut.map rename to installers/colormaps/RedOut.map diff --git a/Installers/colormaps/RosePetals.map b/installers/colormaps/RosePetals.map similarity index 100% rename from Installers/colormaps/RosePetals.map rename to installers/colormaps/RosePetals.map diff --git a/Installers/colormaps/TouchOfBlues.map b/installers/colormaps/TouchOfBlues.map similarity index 100% rename from Installers/colormaps/TouchOfBlues.map rename to installers/colormaps/TouchOfBlues.map diff --git a/Installers/colormaps/Volcano.map b/installers/colormaps/Volcano.map similarity index 100% rename from Installers/colormaps/Volcano.map rename to installers/colormaps/Volcano.map diff --git a/Installers/colormaps/YellowToBlack.map b/installers/colormaps/YellowToBlack.map similarity index 100% rename from Installers/colormaps/YellowToBlack.map rename to installers/colormaps/YellowToBlack.map diff --git a/scripts/Examples/InstrumentView_Example.py b/scripts/Examples/InstrumentView_Example.py index 0571ba5c39c2f81691e0e51ac8224086cf4e7840..8a1ac2bcb3514395e06c29855950c442748f9410 100644 --- a/scripts/Examples/InstrumentView_Example.py +++ b/scripts/Examples/InstrumentView_Example.py @@ -8,7 +8,7 @@ LoadRaw("LOQ48094.raw","LOQTest") insView = getInstrumentView("LOQTest") -#insView.changeColorMap("../../../repo/Code/Mantid/Installers/colormaps/Jet.map") # Change to the correct path +#insView.changeColorMap("../../../repo/installers/colormaps/Jet.map") # Change to the correct path insView.setColorMapRange(0.,195) # Or can set a minimum and maximum separately diff --git a/Tools/ArielToMantidXML/ARIEL/INES/bank.ass b/tools/ArielToMantidXML/ARIEL/INES/bank.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/INES/bank.ass rename to tools/ArielToMantidXML/ARIEL/INES/bank.ass diff --git a/Tools/ArielToMantidXML/ARIEL/INES/bank.dat b/tools/ArielToMantidXML/ARIEL/INES/bank.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/INES/bank.dat rename to tools/ArielToMantidXML/ARIEL/INES/bank.dat diff --git a/Tools/ArielToMantidXML/ARIEL/INES/detector.dat b/tools/ArielToMantidXML/ARIEL/INES/detector.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/INES/detector.dat rename to tools/ArielToMantidXML/ARIEL/INES/detector.dat diff --git a/Tools/ArielToMantidXML/ARIEL/INES/ines.ass b/tools/ArielToMantidXML/ARIEL/INES/ines.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/INES/ines.ass rename to tools/ArielToMantidXML/ARIEL/INES/ines.ass diff --git a/Tools/ArielToMantidXML/ARIEL/INES/ines.dat b/tools/ArielToMantidXML/ARIEL/INES/ines.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/INES/ines.dat rename to tools/ArielToMantidXML/ARIEL/INES/ines.dat diff --git a/Tools/ArielToMantidXML/ARIEL/INES/instrument.dat b/tools/ArielToMantidXML/ARIEL/INES/instrument.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/INES/instrument.dat rename to tools/ArielToMantidXML/ARIEL/INES/instrument.dat diff --git a/Tools/ArielToMantidXML/ARIEL/INES/monitor.dat b/tools/ArielToMantidXML/ARIEL/INES/monitor.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/INES/monitor.dat rename to tools/ArielToMantidXML/ARIEL/INES/monitor.dat diff --git a/Tools/ArielToMantidXML/ARIEL/INES/scintillator.dat b/tools/ArielToMantidXML/ARIEL/INES/scintillator.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/INES/scintillator.dat rename to tools/ArielToMantidXML/ARIEL/INES/scintillator.dat diff --git a/Tools/ArielToMantidXML/ARIEL/INES/tube.dat b/tools/ArielToMantidXML/ARIEL/INES/tube.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/INES/tube.dat rename to tools/ArielToMantidXML/ARIEL/INES/tube.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_90deg.ass b/tools/ArielToMantidXML/ARIEL/POLARIS/Bank_90deg.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_90deg.ass rename to tools/ArielToMantidXML/ARIEL/POLARIS/Bank_90deg.ass diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_90deg.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Bank_90deg.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_90deg.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Bank_90deg.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_back.ass b/tools/ArielToMantidXML/ARIEL/POLARIS/Bank_back.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_back.ass rename to tools/ArielToMantidXML/ARIEL/POLARIS/Bank_back.ass diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_back.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Bank_back.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_back.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Bank_back.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_lowang.ass b/tools/ArielToMantidXML/ARIEL/POLARIS/Bank_lowang.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_lowang.ass rename to tools/ArielToMantidXML/ARIEL/POLARIS/Bank_lowang.ass diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_lowang.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Bank_lowang.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_lowang.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Bank_lowang.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_verylow.ass b/tools/ArielToMantidXML/ARIEL/POLARIS/Bank_verylow.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_verylow.ass rename to tools/ArielToMantidXML/ARIEL/POLARIS/Bank_verylow.ass diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_verylow.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Bank_verylow.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Bank_verylow.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Bank_verylow.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Module_90deg.ass b/tools/ArielToMantidXML/ARIEL/POLARIS/Module_90deg.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Module_90deg.ass rename to tools/ArielToMantidXML/ARIEL/POLARIS/Module_90deg.ass diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Module_90deg.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Module_90deg.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Module_90deg.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Module_90deg.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Module_brick.ass b/tools/ArielToMantidXML/ARIEL/POLARIS/Module_brick.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Module_brick.ass rename to tools/ArielToMantidXML/ARIEL/POLARIS/Module_brick.ass diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Module_brick.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Module_brick.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Module_brick.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Module_brick.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Module_lowang.ass b/tools/ArielToMantidXML/ARIEL/POLARIS/Module_lowang.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Module_lowang.ass rename to tools/ArielToMantidXML/ARIEL/POLARIS/Module_lowang.ass diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Module_verylow.ass b/tools/ArielToMantidXML/ARIEL/POLARIS/Module_verylow.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Module_verylow.ass rename to tools/ArielToMantidXML/ARIEL/POLARIS/Module_verylow.ass diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Module_verylow.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Module_verylow.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Module_verylow.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Module_verylow.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Polaris.ass b/tools/ArielToMantidXML/ARIEL/POLARIS/Polaris.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Polaris.ass rename to tools/ArielToMantidXML/ARIEL/POLARIS/Polaris.ass diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Polaris.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Polaris.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Polaris.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Polaris.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_90deg.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_90deg.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_90deg.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_90deg.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_brick.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_brick.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_brick.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_brick.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_verylow.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_verylow.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_verylow.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Scintillator_verylow.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_140.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_140.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_140.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_140.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_149.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_149.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_149.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_149.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_158.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_158.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_158.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_158.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_167.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_167.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_167.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_167.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_175.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_175.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_175.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_175.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_184.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_184.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_184.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_184.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_193.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_193.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_193.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_193.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_202.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_202.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_202.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_202.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_211.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_211.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_211.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_211.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_220.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_220.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_220.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_220.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_229.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_229.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_229.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_229.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_237.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_237.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_237.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_237.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_246.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_246.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_246.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_246.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_255.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_255.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_255.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_255.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_264.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_264.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_264.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_264.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_273.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_273.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_273.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_273.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_282.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_282.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_282.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_282.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_291.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_291.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_291.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_291.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_300.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_300.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_300.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_300.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_lowang.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/Tube_lowang.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/Tube_lowang.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/Tube_lowang.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/detector.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/detector.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/detector.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/detector.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/instrument.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/instrument.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/instrument.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/instrument.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/module_back.ass b/tools/ArielToMantidXML/ARIEL/POLARIS/module_back.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/module_back.ass rename to tools/ArielToMantidXML/ARIEL/POLARIS/module_back.ass diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/module_back.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/module_back.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/module_back.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/module_back.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/module_lowang.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/module_lowang.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/module_lowang.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/module_lowang.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/monitor.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/monitor.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/monitor.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/monitor.dat diff --git a/Tools/ArielToMantidXML/ARIEL/POLARIS/polaris_table.dat b/tools/ArielToMantidXML/ARIEL/POLARIS/polaris_table.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/POLARIS/polaris_table.dat rename to tools/ArielToMantidXML/ARIEL/POLARIS/polaris_table.dat diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/detector.dat b/tools/ArielToMantidXML/ARIEL/Rotax/detector.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/detector.dat rename to tools/ArielToMantidXML/ARIEL/Rotax/detector.dat diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/instrument.dat b/tools/ArielToMantidXML/ARIEL/Rotax/instrument.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/instrument.dat rename to tools/ArielToMantidXML/ARIEL/Rotax/instrument.dat diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/module_type1.ass b/tools/ArielToMantidXML/ARIEL/Rotax/module_type1.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/module_type1.ass rename to tools/ArielToMantidXML/ARIEL/Rotax/module_type1.ass diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/module_type1.dat b/tools/ArielToMantidXML/ARIEL/Rotax/module_type1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/module_type1.dat rename to tools/ArielToMantidXML/ARIEL/Rotax/module_type1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/module_type2.ass b/tools/ArielToMantidXML/ARIEL/Rotax/module_type2.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/module_type2.ass rename to tools/ArielToMantidXML/ARIEL/Rotax/module_type2.ass diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/module_type2.dat b/tools/ArielToMantidXML/ARIEL/Rotax/module_type2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/module_type2.dat rename to tools/ArielToMantidXML/ARIEL/Rotax/module_type2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/monitor.dat b/tools/ArielToMantidXML/ARIEL/Rotax/monitor.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/monitor.dat rename to tools/ArielToMantidXML/ARIEL/Rotax/monitor.dat diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/rotax.ass b/tools/ArielToMantidXML/ARIEL/Rotax/rotax.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/rotax.ass rename to tools/ArielToMantidXML/ARIEL/Rotax/rotax.ass diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/rotax.dat b/tools/ArielToMantidXML/ARIEL/Rotax/rotax.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/rotax.dat rename to tools/ArielToMantidXML/ARIEL/Rotax/rotax.dat diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/scintillator.dat b/tools/ArielToMantidXML/ARIEL/Rotax/scintillator.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/scintillator.dat rename to tools/ArielToMantidXML/ARIEL/Rotax/scintillator.dat diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/scintillator_B5.dat b/tools/ArielToMantidXML/ARIEL/Rotax/scintillator_B5.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/scintillator_B5.dat rename to tools/ArielToMantidXML/ARIEL/Rotax/scintillator_B5.dat diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/scintillator_type1.dat b/tools/ArielToMantidXML/ARIEL/Rotax/scintillator_type1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/scintillator_type1.dat rename to tools/ArielToMantidXML/ARIEL/Rotax/scintillator_type1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/Rotax/scintillator_type2.dat b/tools/ArielToMantidXML/ARIEL/Rotax/scintillator_type2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/Rotax/scintillator_type2.dat rename to tools/ArielToMantidXML/ARIEL/Rotax/scintillator_type2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_90_1.ass b/tools/ArielToMantidXML/ARIEL/exed/bank_90_1.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_90_1.ass rename to tools/ArielToMantidXML/ARIEL/exed/bank_90_1.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_90_1.dat b/tools/ArielToMantidXML/ARIEL/exed/bank_90_1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_90_1.dat rename to tools/ArielToMantidXML/ARIEL/exed/bank_90_1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_90_2.ass b/tools/ArielToMantidXML/ARIEL/exed/bank_90_2.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_90_2.ass rename to tools/ArielToMantidXML/ARIEL/exed/bank_90_2.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_90_2.dat b/tools/ArielToMantidXML/ARIEL/exed/bank_90_2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_90_2.dat rename to tools/ArielToMantidXML/ARIEL/exed/bank_90_2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_bsk1.ass b/tools/ArielToMantidXML/ARIEL/exed/bank_bsk1.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_bsk1.ass rename to tools/ArielToMantidXML/ARIEL/exed/bank_bsk1.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_bsk1.dat b/tools/ArielToMantidXML/ARIEL/exed/bank_bsk1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_bsk1.dat rename to tools/ArielToMantidXML/ARIEL/exed/bank_bsk1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_bsk1_str.ass b/tools/ArielToMantidXML/ARIEL/exed/bank_bsk1_str.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_bsk1_str.ass rename to tools/ArielToMantidXML/ARIEL/exed/bank_bsk1_str.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_bsk2.ass b/tools/ArielToMantidXML/ARIEL/exed/bank_bsk2.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_bsk2.ass rename to tools/ArielToMantidXML/ARIEL/exed/bank_bsk2.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_bsk2.dat b/tools/ArielToMantidXML/ARIEL/exed/bank_bsk2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_bsk2.dat rename to tools/ArielToMantidXML/ARIEL/exed/bank_bsk2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_fwd1.ass b/tools/ArielToMantidXML/ARIEL/exed/bank_fwd1.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_fwd1.ass rename to tools/ArielToMantidXML/ARIEL/exed/bank_fwd1.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_fwd1.dat b/tools/ArielToMantidXML/ARIEL/exed/bank_fwd1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_fwd1.dat rename to tools/ArielToMantidXML/ARIEL/exed/bank_fwd1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_fwd2.ass b/tools/ArielToMantidXML/ARIEL/exed/bank_fwd2.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_fwd2.ass rename to tools/ArielToMantidXML/ARIEL/exed/bank_fwd2.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/bank_fwd2.dat b/tools/ArielToMantidXML/ARIEL/exed/bank_fwd2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/bank_fwd2.dat rename to tools/ArielToMantidXML/ARIEL/exed/bank_fwd2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/detector.dat b/tools/ArielToMantidXML/ARIEL/exed/detector.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/detector.dat rename to tools/ArielToMantidXML/ARIEL/exed/detector.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/dummy.dat b/tools/ArielToMantidXML/ARIEL/exed/dummy.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/dummy.dat rename to tools/ArielToMantidXML/ARIEL/exed/dummy.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/el_tube.dat b/tools/ArielToMantidXML/ARIEL/exed/el_tube.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/el_tube.dat rename to tools/ArielToMantidXML/ARIEL/exed/el_tube.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/exed.ass b/tools/ArielToMantidXML/ARIEL/exed/exed.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/exed.ass rename to tools/ArielToMantidXML/ARIEL/exed/exed.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/exed.dat b/tools/ArielToMantidXML/ARIEL/exed/exed.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/exed.dat rename to tools/ArielToMantidXML/ARIEL/exed/exed.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/exed_detector.txt b/tools/ArielToMantidXML/ARIEL/exed/exed_detector.txt similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/exed_detector.txt rename to tools/ArielToMantidXML/ARIEL/exed/exed_detector.txt diff --git a/Tools/ArielToMantidXML/ARIEL/exed/instrument.dat b/tools/ArielToMantidXML/ARIEL/exed/instrument.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/instrument.dat rename to tools/ArielToMantidXML/ARIEL/exed/instrument.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/module.ass b/tools/ArielToMantidXML/ARIEL/exed/module.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/module.ass rename to tools/ArielToMantidXML/ARIEL/exed/module.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/module.dat b/tools/ArielToMantidXML/ARIEL/exed/module.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/module.dat rename to tools/ArielToMantidXML/ARIEL/exed/module.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/module1.ass b/tools/ArielToMantidXML/ARIEL/exed/module1.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/module1.ass rename to tools/ArielToMantidXML/ARIEL/exed/module1.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/module1.dat b/tools/ArielToMantidXML/ARIEL/exed/module1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/module1.dat rename to tools/ArielToMantidXML/ARIEL/exed/module1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/monitor.dat b/tools/ArielToMantidXML/ARIEL/exed/monitor.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/monitor.dat rename to tools/ArielToMantidXML/ARIEL/exed/monitor.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/scintillator.dat b/tools/ArielToMantidXML/ARIEL/exed/scintillator.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/scintillator.dat rename to tools/ArielToMantidXML/ARIEL/exed/scintillator.dat diff --git a/Tools/ArielToMantidXML/ARIEL/exed/tube_exed.ass b/tools/ArielToMantidXML/ARIEL/exed/tube_exed.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/tube_exed.ass rename to tools/ArielToMantidXML/ARIEL/exed/tube_exed.ass diff --git a/Tools/ArielToMantidXML/ARIEL/exed/tube_exed.dat b/tools/ArielToMantidXML/ARIEL/exed/tube_exed.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/exed/tube_exed.dat rename to tools/ArielToMantidXML/ARIEL/exed/tube_exed.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank1.ass b/tools/ArielToMantidXML/ARIEL/gem/bank1.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank1.ass rename to tools/ArielToMantidXML/ARIEL/gem/bank1.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank1.dat b/tools/ArielToMantidXML/ARIEL/gem/bank1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank1.dat rename to tools/ArielToMantidXML/ARIEL/gem/bank1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank2.ass b/tools/ArielToMantidXML/ARIEL/gem/bank2.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank2.ass rename to tools/ArielToMantidXML/ARIEL/gem/bank2.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank2.dat b/tools/ArielToMantidXML/ARIEL/gem/bank2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank2.dat rename to tools/ArielToMantidXML/ARIEL/gem/bank2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank3.ass b/tools/ArielToMantidXML/ARIEL/gem/bank3.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank3.ass rename to tools/ArielToMantidXML/ARIEL/gem/bank3.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank3.dat b/tools/ArielToMantidXML/ARIEL/gem/bank3.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank3.dat rename to tools/ArielToMantidXML/ARIEL/gem/bank3.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank4.ass b/tools/ArielToMantidXML/ARIEL/gem/bank4.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank4.ass rename to tools/ArielToMantidXML/ARIEL/gem/bank4.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank4.dat b/tools/ArielToMantidXML/ARIEL/gem/bank4.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank4.dat rename to tools/ArielToMantidXML/ARIEL/gem/bank4.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank5.ass b/tools/ArielToMantidXML/ARIEL/gem/bank5.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank5.ass rename to tools/ArielToMantidXML/ARIEL/gem/bank5.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank5.dat b/tools/ArielToMantidXML/ARIEL/gem/bank5.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank5.dat rename to tools/ArielToMantidXML/ARIEL/gem/bank5.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank6.ass b/tools/ArielToMantidXML/ARIEL/gem/bank6.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank6.ass rename to tools/ArielToMantidXML/ARIEL/gem/bank6.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/bank6.dat b/tools/ArielToMantidXML/ARIEL/gem/bank6.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/bank6.dat rename to tools/ArielToMantidXML/ARIEL/gem/bank6.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/detector.dat b/tools/ArielToMantidXML/ARIEL/gem/detector.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/detector.dat rename to tools/ArielToMantidXML/ARIEL/gem/detector.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/dummy.dat b/tools/ArielToMantidXML/ARIEL/gem/dummy.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/dummy.dat rename to tools/ArielToMantidXML/ARIEL/gem/dummy.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/gem.ass b/tools/ArielToMantidXML/ARIEL/gem/gem.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/gem.ass rename to tools/ArielToMantidXML/ARIEL/gem/gem.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/gem.dat b/tools/ArielToMantidXML/ARIEL/gem/gem.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/gem.dat rename to tools/ArielToMantidXML/ARIEL/gem/gem.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/gem_old.ass b/tools/ArielToMantidXML/ARIEL/gem/gem_old.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/gem_old.ass rename to tools/ArielToMantidXML/ARIEL/gem/gem_old.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/instrument.dat b/tools/ArielToMantidXML/ARIEL/gem/instrument.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/instrument.dat rename to tools/ArielToMantidXML/ARIEL/gem/instrument.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B1l.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B1l.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B1l.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B1l.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B1s.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B1s.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B1s.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B1s.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B2ebottom.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B2ebottom.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B2ebottom.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B2ebottom.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B2etop.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B2etop.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B2etop.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B2etop.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B2wbottom.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B2wbottom.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B2wbottom.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B2wbottom.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B2wtop.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B2wtop.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B2wtop.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B2wtop.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B3.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B3.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B3.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B3.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B4.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B4.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B4.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B4.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B5.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B5.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B5.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B5.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B6a.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B6a.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B6a.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B6a.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_B6b.dat b/tools/ArielToMantidXML/ARIEL/gem/module_B6b.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_B6b.dat rename to tools/ArielToMantidXML/ARIEL/gem/module_B6b.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b1l.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b1l.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b1l.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b1l.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b1s.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b1s.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b1s.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b1s.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b2ebottom.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b2ebottom.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b2ebottom.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b2ebottom.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b2etop.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b2etop.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b2etop.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b2etop.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b2wbottom.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b2wbottom.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b2wbottom.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b2wbottom.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b2wtop.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b2wtop.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b2wtop.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b2wtop.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b3.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b3.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b3.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b3.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b4.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b4.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b4.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b4.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b5.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b5.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b5.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b5.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b6a.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b6a.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b6a.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b6a.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/module_b6b.ass b/tools/ArielToMantidXML/ARIEL/gem/module_b6b.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/module_b6b.ass rename to tools/ArielToMantidXML/ARIEL/gem/module_b6b.ass diff --git a/Tools/ArielToMantidXML/ARIEL/gem/monitor.dat b/tools/ArielToMantidXML/ARIEL/gem/monitor.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/monitor.dat rename to tools/ArielToMantidXML/ARIEL/gem/monitor.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B1.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B1.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG1.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG1.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG2.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG2.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG3.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG3.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG3.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG3.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG4.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG4.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG4.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B2LG4.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG1.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG1.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG2.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG2.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG3.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG3.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG3.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG3.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG4.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG4.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG4.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B2SG4.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B3.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B3.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B3.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B3.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G1.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G1.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G2.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G2.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G3.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G3.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G3.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G3.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G4.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G4.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G4.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G4.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G5.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G5.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G5.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B4G5.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B5.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B5.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B5.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B5.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG1.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG1.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG2.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG2.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG3.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG3.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG3.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG3.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG4.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG4.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG4.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B6aG4.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6bG1.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B6bG1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6bG1.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B6bG1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6bG2.dat b/tools/ArielToMantidXML/ARIEL/gem/scintillator_B6bG2.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/gem/scintillator_B6bG2.dat rename to tools/ArielToMantidXML/ARIEL/gem/scintillator_B6bG2.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_90degnew.ass b/tools/ArielToMantidXML/ARIEL/hrpd_new/bank_90degnew.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_90degnew.ass rename to tools/ArielToMantidXML/ARIEL/hrpd_new/bank_90degnew.ass diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_90degnew.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/bank_90degnew.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_90degnew.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/bank_90degnew.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_bsk.ass b/tools/ArielToMantidXML/ARIEL/hrpd_new/bank_bsk.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_bsk.ass rename to tools/ArielToMantidXML/ARIEL/hrpd_new/bank_bsk.ass diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_bsk.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/bank_bsk.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_bsk.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/bank_bsk.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_la.ass b/tools/ArielToMantidXML/ARIEL/hrpd_new/bank_la.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_la.ass rename to tools/ArielToMantidXML/ARIEL/hrpd_new/bank_la.ass diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_la.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/bank_la.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/bank_la.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/bank_la.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/detector.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/detector.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/detector.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/detector.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/hrpd_new.ass b/tools/ArielToMantidXML/ARIEL/hrpd_new/hrpd_new.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/hrpd_new.ass rename to tools/ArielToMantidXML/ARIEL/hrpd_new/hrpd_new.ass diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/hrpd_new.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/hrpd_new.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/hrpd_new.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/hrpd_new.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/instrument.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/instrument.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/instrument.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/instrument.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/module_90deg.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/module_90deg.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/module_90deg.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/module_90deg.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/module_90degnew.ass b/tools/ArielToMantidXML/ARIEL/hrpd_new/module_90degnew.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/module_90degnew.ass rename to tools/ArielToMantidXML/ARIEL/hrpd_new/module_90degnew.ass diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/module_90degnew.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/module_90degnew.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/module_90degnew.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/module_90degnew.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/module_LA.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/module_LA.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/module_LA.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/module_LA.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/module_bsk.ass b/tools/ArielToMantidXML/ARIEL/hrpd_new/module_bsk.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/module_bsk.ass rename to tools/ArielToMantidXML/ARIEL/hrpd_new/module_bsk.ass diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/module_bsk.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/module_bsk.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/module_bsk.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/module_bsk.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/module_la.ass b/tools/ArielToMantidXML/ARIEL/hrpd_new/module_la.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/module_la.ass rename to tools/ArielToMantidXML/ARIEL/hrpd_new/module_la.ass diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/monitor.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/monitor.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/monitor.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/monitor.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_90deg.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_90deg.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_90deg.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_90deg.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_90degnew.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_90degnew.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_90degnew.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_90degnew.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_bsk.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_bsk.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_bsk.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/scintillator_bsk.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/tube_LA.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/tube_LA.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/tube_LA.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/tube_LA.dat diff --git a/Tools/ArielToMantidXML/ARIEL/hrpd_new/udet.dat b/tools/ArielToMantidXML/ARIEL/hrpd_new/udet.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/hrpd_new/udet.dat rename to tools/ArielToMantidXML/ARIEL/hrpd_new/udet.dat diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/bank.ass b/tools/ArielToMantidXML/ARIEL/osiris/bank.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/bank.ass rename to tools/ArielToMantidXML/ARIEL/osiris/bank.ass diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/bank.dat b/tools/ArielToMantidXML/ARIEL/osiris/bank.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/bank.dat rename to tools/ArielToMantidXML/ARIEL/osiris/bank.dat diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/detector.dat b/tools/ArielToMantidXML/ARIEL/osiris/detector.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/detector.dat rename to tools/ArielToMantidXML/ARIEL/osiris/detector.dat diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/dummy.dat b/tools/ArielToMantidXML/ARIEL/osiris/dummy.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/dummy.dat rename to tools/ArielToMantidXML/ARIEL/osiris/dummy.dat diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/instrument.dat b/tools/ArielToMantidXML/ARIEL/osiris/instrument.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/instrument.dat rename to tools/ArielToMantidXML/ARIEL/osiris/instrument.dat diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/module.ass b/tools/ArielToMantidXML/ARIEL/osiris/module.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/module.ass rename to tools/ArielToMantidXML/ARIEL/osiris/module.ass diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/module.dat b/tools/ArielToMantidXML/ARIEL/osiris/module.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/module.dat rename to tools/ArielToMantidXML/ARIEL/osiris/module.dat diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/monitor.dat b/tools/ArielToMantidXML/ARIEL/osiris/monitor.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/monitor.dat rename to tools/ArielToMantidXML/ARIEL/osiris/monitor.dat diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/osiris.ass b/tools/ArielToMantidXML/ARIEL/osiris/osiris.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/osiris.ass rename to tools/ArielToMantidXML/ARIEL/osiris/osiris.ass diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/osiris.dat b/tools/ArielToMantidXML/ARIEL/osiris/osiris.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/osiris.dat rename to tools/ArielToMantidXML/ARIEL/osiris/osiris.dat diff --git a/Tools/ArielToMantidXML/ARIEL/osiris/scintillator.dat b/tools/ArielToMantidXML/ARIEL/osiris/scintillator.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/osiris/scintillator.dat rename to tools/ArielToMantidXML/ARIEL/osiris/scintillator.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/Module_long.dat b/tools/ArielToMantidXML/ARIEL/pearl/Module_long.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/Module_long.dat rename to tools/ArielToMantidXML/ARIEL/pearl/Module_long.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/bank_90.ass b/tools/ArielToMantidXML/ARIEL/pearl/bank_90.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/bank_90.ass rename to tools/ArielToMantidXML/ARIEL/pearl/bank_90.ass diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/bank_90.dat b/tools/ArielToMantidXML/ARIEL/pearl/bank_90.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/bank_90.dat rename to tools/ArielToMantidXML/ARIEL/pearl/bank_90.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/bank_back1.ass b/tools/ArielToMantidXML/ARIEL/pearl/bank_back1.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/bank_back1.ass rename to tools/ArielToMantidXML/ARIEL/pearl/bank_back1.ass diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/bank_back1.dat b/tools/ArielToMantidXML/ARIEL/pearl/bank_back1.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/bank_back1.dat rename to tools/ArielToMantidXML/ARIEL/pearl/bank_back1.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/bank_back3.ass b/tools/ArielToMantidXML/ARIEL/pearl/bank_back3.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/bank_back3.ass rename to tools/ArielToMantidXML/ARIEL/pearl/bank_back3.ass diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/bank_back3.dat b/tools/ArielToMantidXML/ARIEL/pearl/bank_back3.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/bank_back3.dat rename to tools/ArielToMantidXML/ARIEL/pearl/bank_back3.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/bank_low.ass b/tools/ArielToMantidXML/ARIEL/pearl/bank_low.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/bank_low.ass rename to tools/ArielToMantidXML/ARIEL/pearl/bank_low.ass diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/bank_low.dat b/tools/ArielToMantidXML/ARIEL/pearl/bank_low.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/bank_low.dat rename to tools/ArielToMantidXML/ARIEL/pearl/bank_low.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/detector.dat b/tools/ArielToMantidXML/ARIEL/pearl/detector.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/detector.dat rename to tools/ArielToMantidXML/ARIEL/pearl/detector.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/instrument.dat b/tools/ArielToMantidXML/ARIEL/pearl/instrument.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/instrument.dat rename to tools/ArielToMantidXML/ARIEL/pearl/instrument.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/module_90.ass b/tools/ArielToMantidXML/ARIEL/pearl/module_90.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/module_90.ass rename to tools/ArielToMantidXML/ARIEL/pearl/module_90.ass diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/module_90.dat b/tools/ArielToMantidXML/ARIEL/pearl/module_90.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/module_90.dat rename to tools/ArielToMantidXML/ARIEL/pearl/module_90.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/module_long.ass b/tools/ArielToMantidXML/ARIEL/pearl/module_long.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/module_long.ass rename to tools/ArielToMantidXML/ARIEL/pearl/module_long.ass diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/monitor.dat b/tools/ArielToMantidXML/ARIEL/pearl/monitor.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/monitor.dat rename to tools/ArielToMantidXML/ARIEL/pearl/monitor.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/pearl.ass b/tools/ArielToMantidXML/ARIEL/pearl/pearl.ass similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/pearl.ass rename to tools/ArielToMantidXML/ARIEL/pearl/pearl.ass diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/pearl.dat b/tools/ArielToMantidXML/ARIEL/pearl/pearl.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/pearl.dat rename to tools/ArielToMantidXML/ARIEL/pearl/pearl.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/scintillator.dat b/tools/ArielToMantidXML/ARIEL/pearl/scintillator.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/scintillator.dat rename to tools/ArielToMantidXML/ARIEL/pearl/scintillator.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/scintillator_pearl.dat b/tools/ArielToMantidXML/ARIEL/pearl/scintillator_pearl.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/scintillator_pearl.dat rename to tools/ArielToMantidXML/ARIEL/pearl/scintillator_pearl.dat diff --git a/Tools/ArielToMantidXML/ARIEL/pearl/udet.dat b/tools/ArielToMantidXML/ARIEL/pearl/udet.dat similarity index 100% rename from Tools/ArielToMantidXML/ARIEL/pearl/udet.dat rename to tools/ArielToMantidXML/ARIEL/pearl/udet.dat diff --git a/Tools/ArielToMantidXML/ArielToMantidXML.sln b/tools/ArielToMantidXML/ArielToMantidXML.sln similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML.sln rename to tools/ArielToMantidXML/ArielToMantidXML.sln diff --git a/Tools/ArielToMantidXML/ArielToMantidXML/ArielToMantidXML.vcproj b/tools/ArielToMantidXML/ArielToMantidXML/ArielToMantidXML.vcproj similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML/ArielToMantidXML.vcproj rename to tools/ArielToMantidXML/ArielToMantidXML/ArielToMantidXML.vcproj diff --git a/Tools/ArielToMantidXML/ArielToMantidXML/AssReader.cpp b/tools/ArielToMantidXML/ArielToMantidXML/AssReader.cpp similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML/AssReader.cpp rename to tools/ArielToMantidXML/ArielToMantidXML/AssReader.cpp diff --git a/Tools/ArielToMantidXML/ArielToMantidXML/AssReader.h b/tools/ArielToMantidXML/ArielToMantidXML/AssReader.h similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML/AssReader.h rename to tools/ArielToMantidXML/ArielToMantidXML/AssReader.h diff --git a/Tools/ArielToMantidXML/ArielToMantidXML/Component.cpp b/tools/ArielToMantidXML/ArielToMantidXML/Component.cpp similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML/Component.cpp rename to tools/ArielToMantidXML/ArielToMantidXML/Component.cpp diff --git a/Tools/ArielToMantidXML/ArielToMantidXML/Component.h b/tools/ArielToMantidXML/ArielToMantidXML/Component.h similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML/Component.h rename to tools/ArielToMantidXML/ArielToMantidXML/Component.h diff --git a/Tools/ArielToMantidXML/ArielToMantidXML/DatReader.cpp b/tools/ArielToMantidXML/ArielToMantidXML/DatReader.cpp similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML/DatReader.cpp rename to tools/ArielToMantidXML/ArielToMantidXML/DatReader.cpp diff --git a/Tools/ArielToMantidXML/ArielToMantidXML/DatReader.h b/tools/ArielToMantidXML/ArielToMantidXML/DatReader.h similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML/DatReader.h rename to tools/ArielToMantidXML/ArielToMantidXML/DatReader.h diff --git a/Tools/ArielToMantidXML/ArielToMantidXML/XMLWriter.cpp b/tools/ArielToMantidXML/ArielToMantidXML/XMLWriter.cpp similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML/XMLWriter.cpp rename to tools/ArielToMantidXML/ArielToMantidXML/XMLWriter.cpp diff --git a/Tools/ArielToMantidXML/ArielToMantidXML/XMLWriter.h b/tools/ArielToMantidXML/ArielToMantidXML/XMLWriter.h similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML/XMLWriter.h rename to tools/ArielToMantidXML/ArielToMantidXML/XMLWriter.h diff --git a/Tools/ArielToMantidXML/ArielToMantidXML/main.cpp b/tools/ArielToMantidXML/ArielToMantidXML/main.cpp similarity index 100% rename from Tools/ArielToMantidXML/ArielToMantidXML/main.cpp rename to tools/ArielToMantidXML/ArielToMantidXML/main.cpp diff --git a/Tools/ArielToMantidXML/README.txt b/tools/ArielToMantidXML/README.txt similarity index 100% rename from Tools/ArielToMantidXML/README.txt rename to tools/ArielToMantidXML/README.txt diff --git a/Tools/CodeAnalysis/gcovr b/tools/CodeAnalysis/gcovr similarity index 100% rename from Tools/CodeAnalysis/gcovr rename to tools/CodeAnalysis/gcovr diff --git a/Tools/DAEserv/DAEserv.sln b/tools/DAEserv/DAEserv.sln similarity index 100% rename from Tools/DAEserv/DAEserv.sln rename to tools/DAEserv/DAEserv.sln diff --git a/Tools/DAEserv/DAEserv/AssemblyInfo.cpp b/tools/DAEserv/DAEserv/AssemblyInfo.cpp similarity index 100% rename from Tools/DAEserv/DAEserv/AssemblyInfo.cpp rename to tools/DAEserv/DAEserv/AssemblyInfo.cpp diff --git a/Tools/DAEserv/DAEserv/DAEserv.vcproj b/tools/DAEserv/DAEserv/DAEserv.vcproj similarity index 100% rename from Tools/DAEserv/DAEserv/DAEserv.vcproj rename to tools/DAEserv/DAEserv/DAEserv.vcproj diff --git a/Tools/DAEserv/DAEserv/DAEserv.vcproj.CLRC.hqs74821.user b/tools/DAEserv/DAEserv/DAEserv.vcproj.CLRC.hqs74821.user similarity index 100% rename from Tools/DAEserv/DAEserv/DAEserv.vcproj.CLRC.hqs74821.user rename to tools/DAEserv/DAEserv/DAEserv.vcproj.CLRC.hqs74821.user diff --git a/Tools/DAEserv/DAEserv/DAEservWinService.cpp b/tools/DAEserv/DAEserv/DAEservWinService.cpp similarity index 100% rename from Tools/DAEserv/DAEserv/DAEservWinService.cpp rename to tools/DAEserv/DAEserv/DAEservWinService.cpp diff --git a/Tools/DAEserv/DAEserv/DAEservWinService.h b/tools/DAEserv/DAEserv/DAEservWinService.h similarity index 100% rename from Tools/DAEserv/DAEserv/DAEservWinService.h rename to tools/DAEserv/DAEserv/DAEservWinService.h diff --git a/Tools/DAEserv/DAEserv/DAEservWinService.resX b/tools/DAEserv/DAEserv/DAEservWinService.resX similarity index 100% rename from Tools/DAEserv/DAEserv/DAEservWinService.resX rename to tools/DAEserv/DAEserv/DAEservWinService.resX diff --git a/Tools/DAEserv/DAEserv/ProjectInstaller.cpp b/tools/DAEserv/DAEserv/ProjectInstaller.cpp similarity index 100% rename from Tools/DAEserv/DAEserv/ProjectInstaller.cpp rename to tools/DAEserv/DAEserv/ProjectInstaller.cpp diff --git a/Tools/DAEserv/DAEserv/ProjectInstaller.h b/tools/DAEserv/DAEserv/ProjectInstaller.h similarity index 100% rename from Tools/DAEserv/DAEserv/ProjectInstaller.h rename to tools/DAEserv/DAEserv/ProjectInstaller.h diff --git a/Tools/DAEserv/DAEserv/ProjectInstaller.resx b/tools/DAEserv/DAEserv/ProjectInstaller.resx similarity index 100% rename from Tools/DAEserv/DAEserv/ProjectInstaller.resx rename to tools/DAEserv/DAEserv/ProjectInstaller.resx diff --git a/Tools/DAEserv/DAEserv/ReadMe.txt b/tools/DAEserv/DAEserv/ReadMe.txt similarity index 100% rename from Tools/DAEserv/DAEserv/ReadMe.txt rename to tools/DAEserv/DAEserv/ReadMe.txt diff --git a/Tools/DAEserv/DAEserv/app.ico b/tools/DAEserv/DAEserv/app.ico similarity index 100% rename from Tools/DAEserv/DAEserv/app.ico rename to tools/DAEserv/DAEserv/app.ico diff --git a/Tools/DAEserv/DAEserv/app.rc b/tools/DAEserv/DAEserv/app.rc similarity index 100% rename from Tools/DAEserv/DAEserv/app.rc rename to tools/DAEserv/DAEserv/app.rc diff --git a/Tools/DAEserv/DAEserv/isisds_command.cpp b/tools/DAEserv/DAEserv/isisds_command.cpp similarity index 100% rename from Tools/DAEserv/DAEserv/isisds_command.cpp rename to tools/DAEserv/DAEserv/isisds_command.cpp diff --git a/Tools/DAEserv/DAEserv/isisds_command.h b/tools/DAEserv/DAEserv/isisds_command.h similarity index 100% rename from Tools/DAEserv/DAEserv/isisds_command.h rename to tools/DAEserv/DAEserv/isisds_command.h diff --git a/Tools/DAEserv/DAEserv/resource.h b/tools/DAEserv/DAEserv/resource.h similarity index 100% rename from Tools/DAEserv/DAEserv/resource.h rename to tools/DAEserv/DAEserv/resource.h diff --git a/Tools/DAEserv/DAEserv/stdafx.cpp b/tools/DAEserv/DAEserv/stdafx.cpp similarity index 100% rename from Tools/DAEserv/DAEserv/stdafx.cpp rename to tools/DAEserv/DAEserv/stdafx.cpp diff --git a/Tools/DAEserv/DAEserv/stdafx.h b/tools/DAEserv/DAEserv/stdafx.h similarity index 100% rename from Tools/DAEserv/DAEserv/stdafx.h rename to tools/DAEserv/DAEserv/stdafx.h diff --git a/Tools/DAEserv/DAEserv/work.cpp b/tools/DAEserv/DAEserv/work.cpp similarity index 100% rename from Tools/DAEserv/DAEserv/work.cpp rename to tools/DAEserv/DAEserv/work.cpp diff --git a/Tools/DOI/authors.py b/tools/DOI/authors.py similarity index 100% rename from Tools/DOI/authors.py rename to tools/DOI/authors.py diff --git a/Tools/DOI/doi.py b/tools/DOI/doi.py similarity index 100% rename from Tools/DOI/doi.py rename to tools/DOI/doi.py diff --git a/Tools/DefaultConfigFiles/Mantid.user.properties b/tools/DefaultConfigFiles/Mantid.user.properties similarity index 100% rename from Tools/DefaultConfigFiles/Mantid.user.properties rename to tools/DefaultConfigFiles/Mantid.user.properties diff --git a/Tools/DefaultConfigFiles/configToCpp.py b/tools/DefaultConfigFiles/configToCpp.py similarity index 100% rename from Tools/DefaultConfigFiles/configToCpp.py rename to tools/DefaultConfigFiles/configToCpp.py diff --git a/Tools/Development/git/git-add-test-data b/tools/Development/git/git-add-test-data similarity index 100% rename from Tools/Development/git/git-add-test-data rename to tools/Development/git/git-add-test-data diff --git a/Tools/PeriodicTable/generate_atom_code.py b/tools/PeriodicTable/generate_atom_code.py similarity index 100% rename from Tools/PeriodicTable/generate_atom_code.py rename to tools/PeriodicTable/generate_atom_code.py diff --git a/Tools/Pylint/README.md b/tools/Pylint/README.md similarity index 100% rename from Tools/Pylint/README.md rename to tools/Pylint/README.md diff --git a/Tools/Pylint/pylint.cfg b/tools/Pylint/pylint.cfg similarity index 100% rename from Tools/Pylint/pylint.cfg rename to tools/Pylint/pylint.cfg diff --git a/Tools/Pylint/run_pylint.py b/tools/Pylint/run_pylint.py similarity index 100% rename from Tools/Pylint/run_pylint.py rename to tools/Pylint/run_pylint.py diff --git a/Tools/TestViewer/.project b/tools/TestViewer/.project similarity index 100% rename from Tools/TestViewer/.project rename to tools/TestViewer/.project diff --git a/Tools/TestViewer/.pydevproject b/tools/TestViewer/.pydevproject similarity index 100% rename from Tools/TestViewer/.pydevproject rename to tools/TestViewer/.pydevproject diff --git a/Tools/TestViewer/.settings/org.eclipse.core.resources.prefs b/tools/TestViewer/.settings/org.eclipse.core.resources.prefs similarity index 100% rename from Tools/TestViewer/.settings/org.eclipse.core.resources.prefs rename to tools/TestViewer/.settings/org.eclipse.core.resources.prefs diff --git a/Tools/TestViewer/TestViewer.py b/tools/TestViewer/TestViewer.py similarity index 100% rename from Tools/TestViewer/TestViewer.py rename to tools/TestViewer/TestViewer.py diff --git a/Tools/TestViewer/main_window.py b/tools/TestViewer/main_window.py similarity index 100% rename from Tools/TestViewer/main_window.py rename to tools/TestViewer/main_window.py diff --git a/Tools/TestViewer/main_window.ui b/tools/TestViewer/main_window.ui similarity index 100% rename from Tools/TestViewer/main_window.ui rename to tools/TestViewer/main_window.ui diff --git a/Tools/TestViewer/setup.py b/tools/TestViewer/setup.py similarity index 100% rename from Tools/TestViewer/setup.py rename to tools/TestViewer/setup.py diff --git a/Tools/TestViewer/test_info.py b/tools/TestViewer/test_info.py similarity index 100% rename from Tools/TestViewer/test_info.py rename to tools/TestViewer/test_info.py diff --git a/Tools/TestViewer/test_tree.py b/tools/TestViewer/test_tree.py similarity index 100% rename from Tools/TestViewer/test_tree.py rename to tools/TestViewer/test_tree.py diff --git a/Tools/TestViewer/ui_main_window.py b/tools/TestViewer/ui_main_window.py similarity index 100% rename from Tools/TestViewer/ui_main_window.py rename to tools/TestViewer/ui_main_window.py diff --git a/Tools/VTKConverter/VTKConvert.py b/tools/VTKConverter/VTKConvert.py similarity index 100% rename from Tools/VTKConverter/VTKConvert.py rename to tools/VTKConverter/VTKConvert.py diff --git a/Tools/VTKConverter/processISISData.py b/tools/VTKConverter/processISISData.py similarity index 100% rename from Tools/VTKConverter/processISISData.py rename to tools/VTKConverter/processISISData.py diff --git a/Tools/Valgrind/APITest.supp b/tools/Valgrind/APITest.supp similarity index 100% rename from Tools/Valgrind/APITest.supp rename to tools/Valgrind/APITest.supp diff --git a/Tools/Valgrind/DataObjectsTest.supp b/tools/Valgrind/DataObjectsTest.supp similarity index 100% rename from Tools/Valgrind/DataObjectsTest.supp rename to tools/Valgrind/DataObjectsTest.supp diff --git a/Tools/Valgrind/GeometryTest.supp b/tools/Valgrind/GeometryTest.supp similarity index 100% rename from Tools/Valgrind/GeometryTest.supp rename to tools/Valgrind/GeometryTest.supp diff --git a/Tools/Valgrind/KernelTest.supp b/tools/Valgrind/KernelTest.supp similarity index 100% rename from Tools/Valgrind/KernelTest.supp rename to tools/Valgrind/KernelTest.supp diff --git a/Tools/Visual Leak Detector/vld-2.0-setup.exe b/tools/Visual Leak Detector/vld-2.0-setup.exe similarity index 100% rename from Tools/Visual Leak Detector/vld-2.0-setup.exe rename to tools/Visual Leak Detector/vld-2.0-setup.exe diff --git a/Tools/Workflow/git/.gitignore b/tools/Workflow/git/.gitignore similarity index 100% rename from Tools/Workflow/git/.gitignore rename to tools/Workflow/git/.gitignore diff --git a/Tools/Workflow/git/Makefile b/tools/Workflow/git/Makefile similarity index 100% rename from Tools/Workflow/git/Makefile rename to tools/Workflow/git/Makefile diff --git a/Tools/Workflow/git/README.md b/tools/Workflow/git/README.md similarity index 100% rename from Tools/Workflow/git/README.md rename to tools/Workflow/git/README.md diff --git a/Tools/Workflow/git/git-checkbuild b/tools/Workflow/git/git-checkbuild similarity index 100% rename from Tools/Workflow/git/git-checkbuild rename to tools/Workflow/git/git-checkbuild diff --git a/Tools/Workflow/git/git-finish b/tools/Workflow/git/git-finish similarity index 100% rename from Tools/Workflow/git/git-finish rename to tools/Workflow/git/git-finish diff --git a/Tools/Workflow/git/git-new b/tools/Workflow/git/git-new similarity index 100% rename from Tools/Workflow/git/git-new rename to tools/Workflow/git/git-new diff --git a/Tools/Workflow/git/git-publish b/tools/Workflow/git/git-publish similarity index 100% rename from Tools/Workflow/git/git-publish rename to tools/Workflow/git/git-publish diff --git a/Tools/Workflow/git/git-test b/tools/Workflow/git/git-test similarity index 100% rename from Tools/Workflow/git/git-test rename to tools/Workflow/git/git-test diff --git a/Tools/Workflow/git/gitworkflow-helpers b/tools/Workflow/git/gitworkflow-helpers similarity index 100% rename from Tools/Workflow/git/gitworkflow-helpers rename to tools/Workflow/git/gitworkflow-helpers diff --git a/Tools/Workflow/git/install_git_macros.bat b/tools/Workflow/git/install_git_macros.bat similarity index 100% rename from Tools/Workflow/git/install_git_macros.bat rename to tools/Workflow/git/install_git_macros.bat diff --git a/Tools/reports/facility-code-changes.py b/tools/reports/facility-code-changes.py similarity index 100% rename from Tools/reports/facility-code-changes.py rename to tools/reports/facility-code-changes.py diff --git a/Tools/reports/release-list.py b/tools/reports/release-list.py similarity index 100% rename from Tools/reports/release-list.py rename to tools/reports/release-list.py diff --git a/Tools/scripts/AddAlgorithmWikiLinksToText.py b/tools/scripts/AddAlgorithmWikiLinksToText.py similarity index 100% rename from Tools/scripts/AddAlgorithmWikiLinksToText.py rename to tools/scripts/AddAlgorithmWikiLinksToText.py diff --git a/Tools/scripts/ConvertBadAlgmLinks.py b/tools/scripts/ConvertBadAlgmLinks.py similarity index 100% rename from Tools/scripts/ConvertBadAlgmLinks.py rename to tools/scripts/ConvertBadAlgmLinks.py diff --git a/Tools/scripts/ConvertToRST/ConvertWikiPage.py b/tools/scripts/ConvertToRST/ConvertWikiPage.py similarity index 98% rename from Tools/scripts/ConvertToRST/ConvertWikiPage.py rename to tools/scripts/ConvertToRST/ConvertWikiPage.py index 618c066e923864977aee829330c5b004a296337c..696cb94f8c0c04968d309297b3ee10bea224d892 100644 --- a/Tools/scripts/ConvertToRST/ConvertWikiPage.py +++ b/tools/scripts/ConvertToRST/ConvertWikiPage.py @@ -2,7 +2,7 @@ # Converts mediawiki pages to rst pages for sphinx. # run with -h for command line arguments # -# sample command C:\MantidInstall\bin\python.exe C:/Mantid/Code/Tools/scripts/ConvertToRST/ConvertWikiPage.py +# sample command C:\MantidInstall\bin\python.exe C:/Mantid/tools/scripts/ConvertToRST/ConvertWikiPage.py # -o C:/Mantid/Code/Mantid/docs/source/training/MBC_Displaying_data_Formatting.rst # # pandoc must be installed an in the path diff --git a/Tools/scripts/CorrectConceptLinksinAlgPages.py b/tools/scripts/CorrectConceptLinksinAlgPages.py similarity index 100% rename from Tools/scripts/CorrectConceptLinksinAlgPages.py rename to tools/scripts/CorrectConceptLinksinAlgPages.py diff --git a/Tools/scripts/FindIncompleteAlgRSTPages.py b/tools/scripts/FindIncompleteAlgRSTPages.py similarity index 100% rename from Tools/scripts/FindIncompleteAlgRSTPages.py rename to tools/scripts/FindIncompleteAlgRSTPages.py diff --git a/Tools/scripts/TestWikiPython.py b/tools/scripts/TestWikiPython.py similarity index 100% rename from Tools/scripts/TestWikiPython.py rename to tools/scripts/TestWikiPython.py diff --git a/Tools/scripts/extractAlgorithmNames.py b/tools/scripts/extractAlgorithmNames.py similarity index 100% rename from Tools/scripts/extractAlgorithmNames.py rename to tools/scripts/extractAlgorithmNames.py diff --git a/Tools/scripts/extractAuthorNamesFromGit.py b/tools/scripts/extractAuthorNamesFromGit.py similarity index 100% rename from Tools/scripts/extractAuthorNamesFromGit.py rename to tools/scripts/extractAuthorNamesFromGit.py diff --git a/Tools/skipped_systemtests.py b/tools/skipped_systemtests.py similarity index 100% rename from Tools/skipped_systemtests.py rename to tools/skipped_systemtests.py