Ignore:
Timestamp:
2021-11-09T09:57:14+13:00 (2 years ago)
Author:
cstephen
Message:

Add support for macronising PowerPoint files

Location:
other-projects/the-macronizer/trunk/src/java/monogram/plugin
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/the-macronizer/trunk/src/java/monogram/plugin/PluginManager.java

    r30062 r35725  
    2525        } else if (fileType.equalsIgnoreCase(".odt")) {
    2626            return runPluginODT(fileView);
     27        } else if (fileType.equalsIgnoreCase(".pptx")) {
     28            return runPluginPPTX(fileView);
    2729        } else {
    2830            throw new UnsupportedOperationException("Not supported yet.");
     
    4446        return plugin.run(fileView);
    4547    }
     48
     49    private File runPluginPPTX(PluginConfiguration fileView)
     50        throws Exception
     51    {
     52        Plugin plugin = new PluginPPTX(tmpdir);
     53        return plugin.run(fileView);
     54    }
    4655}
Note: See TracChangeset for help on using the changeset viewer.