Giter Club home page Giter Club logo

harextract's People

Contributors

jc3 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

harextract's Issues

Confirm v0.9.1 working in other browsers

  • Chrome 96-99 (windows)
  • Chrome 100 (windows)
  • Chrome (macos)
  • Chrome (android)
  • Edge (windows)
  • Firefox (windows)
  • Safari (macos)
  • Safari (ios)
  • Opera (windows)
  • Brave (windows)

That'd probably be sufficient; or at least, it's all I feel like doing.

Add the choice to sort by ids

When opening the har file is it possible to keep the original order, i.e. have the html table ordered by id and when zipped be in this order please?

Simplify path stripping code

As per todo:

harextract/harextract.html

Lines 175 to 192 in b9a4dc0

// now make a few passes to strip common path prefixes
// todo: code can be simplified by maintaining common components above then
// doing a single second pass to slice + join.
if (harents.length > 0) {
for (var ncommon = 0, allsame = true; allsame && ncommon < harents[0].pathcomps.length; ++ ncommon) {
allsame = true;
let refpart = harents[0].pathcomps[ncommon];
for (ent of harents) {
if (ent.pathcomps[ncommon] != refpart) {
allsame = false;
break;
}
}
}
for (ent of harents) {
ent.path = (ncommon < 0 ? '' : ent.pathcomps.slice(ncommon - 1).join('/'));
}
}

Update check

Check for updates but only if:

  • It can be done nonintrusively.
  • It causes no issues when offline.
  • It can be displayed without disrupting UX.

Line breaks in embedded JSZip

Try to stick some strategic linebreaks in the embedded minified JSZip.

That long line is super annoying in editors and in the GitHub web interface.

No download link for empty filenames

If a filename is empty, there is nothing to click on to download it.

Make a download link available somewhere for files with no name. Maybe give them a default id-based name or something.

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.