Giter VIP home page Giter VIP logo

libuti's People

Contributors

dependabot[bot] avatar psexton avatar

Watchers

 avatar  avatar

libuti's Issues

Add some missing types

Some commonly used types are missing:

  • Template versions of Microsoft Office documents (both binary and xml flavors)
  • Powerpoint slideshows (both binary and xml flavors)
  • CSS files
  • Windows Media containers (wma, wmv)

Handle uppercase file suffixes

If a file suffix is not all lowercase, UtiBuilder does not recognize it. The following unit test will fail:

String fileSuffix = "DOCX";
UtiBuilder instance = new UtiBuilder();
Uti expResult = new Uti("com.microsoft.word.docx");
Uti result = instance.fromSuffix(fileSuffix);
assertEquals(expResult, result);

Map UTIs to file extensions

Add a way to map a UTI to a file extension. When multiple file extensions map to the same UTI, mark one of them as "preferred" in the XML definitions.

Cannot round-trip to string with a dyn uti

For any Uti object returned by UtiBuilder, calling Uti#toString followed by UtiBuilder#fromString should return a Uti object equal to the original. This is not the case for a dyn.* Uti, as evidenced by this failing test:

String unknownSuffix = "foobar";
UtiBuilder instance = new UtiBuilder();
Uti orig = instance.fromSuffix(unknownSuffix);
Uti copy = instance.fromString(orig.toString());

copy will be null.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.