Switch to unified view

a/compass/js/routes/mainapplication-route.js b/compass/js/routes/mainapplication-route.js
...
...
613
      // push faq and questions into store
613
      // push faq and questions into store
614
614
615
      this.store.push('faq', {
615
      this.store.push('faq', {
616
      id: 1,
616
      id: 1,
617
      faqQuestion: "What is a Permissive Licence?",
617
      faqQuestion: "What is a Permissive Licence?",
618
      faqAnswer: "A permissive licence allows you to freely licence the code."
618
      faqAnswer: "A permissive licence allows you to freely licence the code you have received and does not require modifications or additions to the code to be under the same licence. It will have some minimum requirements which generally include as a minimum, a disclaimer of liability, an attribution provision and a copyright notice."
619
      });
619
      });
620
620
621
      this.store.push('faq', {
621
      this.store.push('faq', {
622
      id: 2,
622
      id: 2,
623
      faqQuestion: "What is Copyleft?",
623
      faqQuestion: "What is Copyleft?",
624
      faqAnswer: "Copyleft is a term which is a play on the legal term copyright."
624
      faqAnswer: "Copyleft is a term which is a play on the legal term copyright. It means that where code is distributed under a copyleft licence any modifications and additions to the code will generally be required to be licensed under the same licence terms as the original code. The licence terms stick not only to the original code by to the modifications and additions to it"
625
      });
625
      });
626
626
627
      this.store.push('faq', {
627
      this.store.push('faq', {
628
      id: 3,
628
      id: 3,
629
      faqQuestion: "What does sharing the Source Code mean?",
629
      faqQuestion: "What does sharing the Source Code mean?",
630
      faqAnswer: "No Answer"
630
      faqAnswer: "This generally means that a third party who is not the creator of code receives the Source Code from the creator or a distributor of the code under an approved Free or Open Source licence which gives them the right to use the code. This will allow the human readable object code to be shared and to be used in ways that comply with the Free Software Foundations's 4 conditions or the Open Source Initiative's 10. Generally this will allow the recipient to study, to modify and distribute the code."
631
      });
631
      });
632
632
633
      this.store.push('faq', {
633
      this.store.push('faq', {
634
      id: 4,
634
      id: 4,
635
      faqQuestion: "What does it mean to hold Copyright?",
635
      faqQuestion: "What does it mean to hold Copyright?",
636
      faqAnswer: "No Answer"
636
      faqAnswer: "This means that you have the right to the code as its owner and you will be this if you are the creator or someone who has received the rights to the code under an assignment or wide licence. If you have these rights you are able to decide how the code will be shared with third parties and what the terms of an applicable licence will be. "
637
      });
637
      });
638
638
639
      this.store.push('faq', {
639
      this.store.push('faq', {
640
      id: 5,
640
      id: 5,
641
      faqQuestion: "How do I get rights to someone's Copyright?",
641
      faqQuestion: "How do I get rights to someone's Copyright?",
642
      faqAnswer: "No Answer"
642
      faqAnswer: "You have no right to someone else's copyright work including software which is subject to the owner's copyright unless they grant you a licence. Your right to use someone else's copyrighted work will depend on the terms of the licence."
643
      });
643
      });
644
644
645
      this.store.push('faq', {
645
      this.store.push('faq', {
646
      id: 6,
646
      id: 6,
647
      faqQuestion: "What is a FOSS Licence?",
647
      faqQuestion: "What is a FOSS Licence?",
648
      faqAnswer: "No Answer"
648
      faqAnswer: "A licence that is approved  by he Free Software Foundation or the  Open Source Initiative as complying with its conditions.  "
649
      });
649
      });
650
650
651
      this.store.push('faq', {
651
      this.store.push('faq', {
652
      id: 7,
652
      id: 7,
653
      faqQuestion: "What does Jurisdiction mean?",
653
      faqQuestion: "What does Jurisdiction mean?",
654
      faqAnswer: "No Answer"
654
      faqAnswer: "This is the country whose law governs a contract and may also be where any enforcement of rights occurs."
655
      });
655
      });
656
656
657
      this.store.push('faq', {
657
      this.store.push('faq', {
658
      id: 8,
658
      id: 8,
659
      faqQuestion: "What are the differences between GPLv2 and GPLv3?",
659
      faqQuestion: "What are the differences between GPLv2 and GPLv3?",
660
      faqAnswer: "No Answer"
660
      faqAnswer: ""
661
      });
661
      });
662
  
662
  
663
  }
663
  }
664
});
664
});