betajs/betajs-media-components

View on GitHub

Showing 10,517 of 10,517 total issues

File capture.js has 524 lines of code (exceeds 250 allowed). Consider refactoring.
Open

Scoped.define("module:ImageCapture.Dynamics.Recorder", [
    "dynamics:Dynamic",
    "module:Assets",
    "browser:Info",
    "browser:Dom",
Severity: Major
Found in src/dynamics/image_capture/capture/capture.js - About 1 day to fix

    Function create has 200 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

                    create: function() {
                        if (this.get("autoplaywhenvisible")) {
                            this.set("autoplay", true);
                            Dom.onScrollIntoView(this.activeElement(), this.get("visibilityfraction"), function() {
                                if (this.destroyed()) return;
    Severity: Major
    Found in src/dynamics/video_player/player/player.js - About 1 day to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

                  if (this.dyn.get("localplayback") && this.dyn.isFormatSupported()) {
                      if (this.dyn.recorder && this.dyn.recorder.supportsLocalPlayback())
                          this.dyn.set("playbacksource", this.dyn.recorder.localPlaybackSource());
                      else
                          this.dyn.set("playbacksource", (window.URL || window.webkitURL).createObjectURL(this.dyn._imageFile));
      Severity: Major
      Found in src/dynamics/image_capture/capture/states.js and 1 other location - About 7 hrs to fix
      src/dynamics/audio_recorder/recorder/states.js on lines 669..677

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 189.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

                  if (this.dyn.get("localplayback") && this.dyn.isFormatSupported()) {
                      if (this.dyn.recorder && this.dyn.recorder.supportsLocalPlayback())
                          this.dyn.set("playbacksource", this.dyn.recorder.localPlaybackSource());
                      else
                          this.dyn.set("playbacksource", (window.URL || window.webkitURL).createObjectURL(this.dyn._audioFile));
      Severity: Major
      Found in src/dynamics/audio_recorder/recorder/states.js and 1 other location - About 7 hrs to fix
      src/dynamics/image_capture/capture/states.js on lines 573..581

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 189.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      File Gruntfile.js has 485 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      module.exports = function(grunt) {
      
          var pkg = grunt.file.readJSON('package.json');
          var gruntHelper = require('betajs-compile');
          var dist = 'betajs-media-components';
      Severity: Minor
      Found in Gruntfile.js - About 7 hrs to fix

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

        Scoped.define("module:ImageCapture.Dynamics.RecorderStates.FatalError", [
            "module:ImageCapture.Dynamics.RecorderStates.State",
            "browser:Info",
            "base:Timers.Timer"
        ], function(State, Info, Timer, scoped) {
        Severity: Major
        Found in src/dynamics/image_capture/capture/states.js and 1 other location - About 7 hrs to fix
        src/dynamics/audio_recorder/recorder/states.js on lines 56..78

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 187.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 2 locations. Consider refactoring.
        Open

        Scoped.define("module:AudioRecorder.Dynamics.RecorderStates.FatalError", [
            "module:AudioRecorder.Dynamics.RecorderStates.State",
            "browser:Info",
            "base:Timers.Timer"
        ], function(State, Info, Timer, scoped) {
        Severity: Major
        Found in src/dynamics/audio_recorder/recorder/states.js and 1 other location - About 7 hrs to fix
        src/dynamics/image_capture/capture/states.js on lines 46..68

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 187.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 3 locations. Consider refactoring.
        Open

                    if (this.dyn) {
                        this.dyn.on("message-link-click", function(link) {
                            link.execute();
                            this.next("RequiredSoftwareWait");
                        }, this);
        Severity: Major
        Found in src/dynamics/image_capture/capture/states.js and 2 other locations - About 7 hrs to fix
        src/dynamics/audio_recorder/recorder/states.js on lines 286..299
        src/dynamics/video_recorder/recorder/states.js on lines 642..655

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 185.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 3 locations. Consider refactoring.
        Open

                    if (this.dyn) {
                        this.dyn.on("message-link-click", function(link) {
                            link.execute();
                            this.next("RequiredSoftwareWait");
                        }, this);
        Severity: Major
        Found in src/dynamics/video_recorder/recorder/states.js and 2 other locations - About 7 hrs to fix
        src/dynamics/audio_recorder/recorder/states.js on lines 286..299
        src/dynamics/image_capture/capture/states.js on lines 268..281

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 185.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 3 locations. Consider refactoring.
        Open

                    if (this.dyn) {
                        this.dyn.on("message-link-click", function(link) {
                            link.execute();
                            this.next("RequiredSoftwareWait");
                        }, this);
        Severity: Major
        Found in src/dynamics/audio_recorder/recorder/states.js and 2 other locations - About 7 hrs to fix
        src/dynamics/image_capture/capture/states.js on lines 268..281
        src/dynamics/video_recorder/recorder/states.js on lines 642..655

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 185.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        File sidebar.js has 475 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        Scoped.define("module:VideoPlayer.Dynamics.Sidebar", [
            "dynamics:Dynamic",
            "base:Objs",
            "base:Async",
            "base:Types",
        Severity: Minor
        Found in src/dynamics/video_player/sidebar/sidebar.js - About 7 hrs to fix

          Identical blocks of code found in 3 locations. Consider refactoring.
          Open

                      this.listenOn(uploader, "error", function(e) {
                          var bestError = this.dyn.string("uploading-failed");
                          try {
                              e.forEach(function(ee) {
                                  for (var key in ee)
          Severity: Major
          Found in src/dynamics/image_capture/capture/states.js and 2 other locations - About 7 hrs to fix
          src/dynamics/audio_recorder/recorder/states.js on lines 644..658
          src/dynamics/video_recorder/recorder/states.js on lines 1415..1429

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 179.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Identical blocks of code found in 3 locations. Consider refactoring.
          Open

                      this.listenOn(uploader, "error", function(e) {
                          var bestError = this.dyn.string("uploading-failed");
                          try {
                              e.forEach(function(ee) {
                                  for (var key in ee)
          Severity: Major
          Found in src/dynamics/video_recorder/recorder/states.js and 2 other locations - About 7 hrs to fix
          src/dynamics/audio_recorder/recorder/states.js on lines 644..658
          src/dynamics/image_capture/capture/states.js on lines 548..562

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 179.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Identical blocks of code found in 3 locations. Consider refactoring.
          Open

                      this.listenOn(uploader, "error", function(e) {
                          var bestError = this.dyn.string("uploading-failed");
                          try {
                              e.forEach(function(ee) {
                                  for (var key in ee)
          Severity: Major
          Found in src/dynamics/audio_recorder/recorder/states.js and 2 other locations - About 7 hrs to fix
          src/dynamics/image_capture/capture/states.js on lines 548..562
          src/dynamics/video_recorder/recorder/states.js on lines 1415..1429

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 179.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 3 locations. Consider refactoring.
          Open

                      this.listenOn(uploader, "progress", function(uploaded, total) {
                          this.dyn.trigger("upload_progress", uploaded, total);
                          if (total !== 0 && total > 0 && uploaded >= 0) {
                              var up = Math.min(100, Math.round(uploaded / total * 100));
                              if (!isNaN(up)) {
          Severity: Major
          Found in src/dynamics/video_recorder/recorder/states.js and 2 other locations - About 7 hrs to fix
          src/dynamics/audio_recorder/recorder/states.js on lines 659..668
          src/dynamics/image_capture/capture/states.js on lines 563..572

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 177.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 3 locations. Consider refactoring.
          Open

                      this.listenOn(uploader, "progress", function(uploaded, total) {
                          this.dyn.trigger("upload_progress", uploaded, total);
                          if (total !== 0 && total > 0 && uploaded >= 0) {
                              var up = Math.min(100, Math.round(uploaded / total * 100));
                              if (!isNaN(up)) {
          Severity: Major
          Found in src/dynamics/audio_recorder/recorder/states.js and 2 other locations - About 7 hrs to fix
          src/dynamics/image_capture/capture/states.js on lines 563..572
          src/dynamics/video_recorder/recorder/states.js on lines 1430..1439

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 177.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 3 locations. Consider refactoring.
          Open

                      this.listenOn(uploader, "progress", function(uploaded, total) {
                          this.dyn.trigger("upload_progress", uploaded, total);
                          if (total !== 0 && total > 0 && uploaded >= 0) {
                              var up = Math.min(100, Math.round(uploaded / total * 100));
                              if (!isNaN(up)) {
          Severity: Major
          Found in src/dynamics/image_capture/capture/states.js and 2 other locations - About 7 hrs to fix
          src/dynamics/audio_recorder/recorder/states.js on lines 659..668
          src/dynamics/video_recorder/recorder/states.js on lines 1430..1439

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 177.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          File image_viewer.js has 451 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          Scoped.define("module:ImageViewer.Dynamics.ImageViewer", [
              "dynamics:Dynamic",
              "module:Assets",
              "browser:Info",
              "browser:Dom",
          Severity: Minor
          Found in src/dynamics/image_viewer/viewer/image_viewer.js - About 6 hrs to fix

            Identical blocks of code found in 2 locations. Consider refactoring.
            Open

                    _started: function() {
                        this.listenOn(this.dyn, "change:orientation change:currentorientation", function() {
                            var orientation = this.dyn.get("orientation");
                            var currentorientation = this.dyn.get("currentorientation");
                            var result = orientation && orientation !== currentorientation;
            Severity: Major
            Found in src/dynamics/image_capture/capture/states.js and 1 other location - About 6 hrs to fix
            src/dynamics/video_recorder/recorder/states.js on lines 234..246

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 167.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Identical blocks of code found in 2 locations. Consider refactoring.
            Open

                    _started: function() {
                        this.listenOn(this.dyn, "change:orientation change:currentorientation", function() {
                            var orientation = this.dyn.get("orientation");
                            var currentorientation = this.dyn.get("currentorientation");
                            var result = orientation && orientation !== currentorientation;
            Severity: Major
            Found in src/dynamics/video_recorder/recorder/states.js and 1 other location - About 6 hrs to fix
            src/dynamics/image_capture/capture/states.js on lines 144..156

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 167.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Severity
            Category
            Status
            Source
            Language