Ignore:
Timestamp:
03/17/19 22:29:23 (5 years ago)
Author:
davidb
Message:

After change to have resources-public and resources-private, some changes needed to support running Expeditee for a single user; other main change is to allow FrameDirs to specify relative directory paths, to help with when Expeditee is run on the cloud -- similar work still needs to occurr for ImageDir and AudioDir; some other minor changes also made.

Location:
trunk/src/org/expeditee/agents
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/agents/SearchTree.java

    r919 r1244  
    8888
    8989                String fullPath = null;
    90                 for (String possiblePath : FolderSettings.FrameDirs.get()) {
     90                for (String possiblePath : FolderSettings.FrameDirs.getAbsoluteDirs()) {
    9191                        fullPath = FrameIO.getFrameFullPathName(possiblePath, frameName);
    9292                        if (fullPath != null)
  • trunk/src/org/expeditee/agents/SearchTreeNoResults.java

    r919 r1244  
    7171               
    7272                String fullPath = null;
    73                 for (String possiblePath : FolderSettings.FrameDirs.get()) {
     73                for (String possiblePath : FolderSettings.FrameDirs.getAbsoluteDirs()) {
    7474                        fullPath = FrameIO.getFrameFullPathName(possiblePath, frameName);
    7575                        if (fullPath != null)
Note: See TracChangeset for help on using the changeset viewer.