chiark / gitweb /
Add proper copyright statements.
authordaid303 <daid303@gmail.com>
Fri, 17 May 2013 07:16:37 +0000 (09:16 +0200)
committerdaid303 <daid303@gmail.com>
Fri, 17 May 2013 07:16:37 +0000 (09:16 +0200)
52 files changed:
Cura/avr_isp/chipDB.py
Cura/avr_isp/intelHex.py
Cura/avr_isp/ispBase.py
Cura/avr_isp/stk500v2.py
Cura/cura.py
Cura/gui/alterationPanel.py
Cura/gui/app.py
Cura/gui/configBase.py
Cura/gui/configWizard.py
Cura/gui/expertConfig.py
Cura/gui/firmwareInstall.py
Cura/gui/mainWindow.py
Cura/gui/pluginPanel.py
Cura/gui/preferencesDialog.py
Cura/gui/printWindow.py
Cura/gui/sceneView.py
Cura/gui/simpleMode.py
Cura/gui/splashScreen.py
Cura/gui/tools/batchRun.py
Cura/gui/tools/minecraftImport.py
Cura/gui/tools/superformula.py
Cura/gui/util/dropTarget.py
Cura/gui/util/gcodeTextArea.py
Cura/gui/util/opengl.py
Cura/gui/util/openglGui.py
Cura/gui/util/previewTools.py
Cura/gui/util/taskbar.py
Cura/gui/util/toolbarUtil.py
Cura/gui/util/webcam.py
Cura/plugins/pauseAtZ.py
Cura/resources/Attribution.txt
Cura/util/explorer.py
Cura/util/gcodeGenerator.py
Cura/util/gcodeInterpreter.py
Cura/util/machineCom.py
Cura/util/mesh.py
Cura/util/meshLoader.py
Cura/util/meshLoaders/amf.py
Cura/util/meshLoaders/dae.py
Cura/util/meshLoaders/obj.py
Cura/util/meshLoaders/stl.py
Cura/util/objectScene.py
Cura/util/profile.py
Cura/util/removableStorage.py
Cura/util/resources.py
Cura/util/settings.py
Cura/util/sliceEngine.py
Cura/util/svg.py
Cura/util/util3d.py
Cura/util/validators.py
Cura/util/version.py
README.md

index be381c2a8ddb3bf37e43dcdc40ef1720d1d254e1..6ce1ddcf0e2c62b7c3763c77612a2ce7471b0c24 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 
 avrChipDB = {
        'ATMega1280': {
index a7150dc774d2fe3c6deee2ec75b97bdfbdefb807..aa64e186b32e6704783f33e8f63bda388544614c 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 import io
 
 def readHex(filename):
index 6c3537216d2244fcee404f9da588d6471039b117..adc5ca9666f42c97654dfb1894d656706cd3b206 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 import os, struct, sys, time
 
 from serial import Serial
index 58dac2f5a361314eaebe5dae82672705d667067c..a87145a81b3f41864527e506cda68b77018fda71 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 import os, struct, sys, time
 
 from serial import Serial
index e796e4b2b11b1d0918387371cdcd99b9bf49d7ca..c208d3d6fdd9d636dff3d11e3ae24636163b0584 100644 (file)
@@ -1,12 +1,11 @@
 #!/usr/bin/python
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 """
 This page is in the table of contents.
 ==Overview==
 ===Introduction===
-Cura is a GPL tool chain to forge a gcode skein for a model. Based on Skeinforge.
-
-The slicing code is the same as Skeinforge. But the UI has been revamped to be... sane.
-
+Cura is a AGPL tool chain to generate a GCode path for 3D printing. Older versions of Cura where based on Skeinforge.
+Versions up from 13.05 are based on a C++ engine called CuraEngine.
 """
 from __future__ import absolute_import
 
@@ -14,34 +13,6 @@ from optparse import OptionParser
 
 from Cura.util import profile
 
-__author__ = 'Daid'
-__credits__ = """
-David Braam (daid303@gmail.com)
-Enrique Perez (perez_enrique@yahoo.com)
-Adrian Bowyer <http://forums.reprap.org/profile.php?12,13>
-Brendan Erwin <http://forums.reprap.org/profile.php?12,217>
-Greenarrow <http://forums.reprap.org/profile.php?12,81>
-Ian England <http://forums.reprap.org/profile.php?12,192>
-John Gilmore <http://forums.reprap.org/profile.php?12,364>
-Jonwise <http://forums.reprap.org/profile.php?12,716>
-Kyle Corbitt <http://forums.reprap.org/profile.php?12,90>
-Michael Duffin <http://forums.reprap.org/profile.php?12,930>
-Marius Kintel <http://reprap.soup.io/>
-Nophead <http://www.blogger.com/profile/12801535866788103677>
-PJR <http://forums.reprap.org/profile.php?12,757>
-Reece.Arnott <http://forums.reprap.org/profile.php?12,152>
-Wade <http://forums.reprap.org/profile.php?12,489>
-Xsainnz <http://forums.reprap.org/profile.php?12,563>
-Zach Hoeken <http://blog.zachhoeken.com/>
-Ilya Kulakov (kulakov.ilya@gmail.com)
-
-Organizations:
-Ultimaker <http://www.ultimaker.com>
-Art of Illusion <http://www.artofillusion.org/>"""
-
-__license__ = 'GNU Affero General Public License http://www.gnu.org/licenses/agpl.html'
-
-
 def main():
        parser = OptionParser(usage="usage: %prog [options] <filename>.stl")
        parser.add_option("-i", "--ini", action="store", type="string", dest="profileini",
index 6989875334b425e7b89e00ce6d0c3e69e504cc87..e57efbdac53cf792b2fbcc789ee7806283097603 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx, wx.stc
index 02e84b712bee7b2b37cbaaf7af254a7a2a9df042..2174c230acb6c964c0c7d20f7faaedae366b958e 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import sys
index f3f3842126ad7faf896c1bae7d884b6dc98966d6..ad7d030e31821c31b5a0c8dd1d3ad3fa3487e44e 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 from __future__ import division
 
index fa653f666795ffd58ac9b6131a680f172441f732..fcf29ca9eee138d2a721809a783a6f242f7b6f1b 100644 (file)
@@ -1,4 +1,4 @@
-# coding=utf-8
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import webbrowser
index 5e9aa4f9736fd98656db70134ca2aeb6c8a3470f..303c94d6ba4d414f182c06b0861ef5ea2c655cdf 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx
index 885a2a478f6244f28c62498eace9c492fe9a8377..b0a7eb087865c957548a727ee3458af9f8d4348f 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import os, wx, threading, sys
index e8dc0e3f2b26118df738863323eeb6dc269e2850..91ca427a544bef8699665d36f99800db5780cc37 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx
index a07c64767f6f905dd3df5ba0bb9f492c52d5000c..8a6f42a915a1e52b4239913862a991811bfa02c5 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx
index 602f32dff6208c796c136253467117793b2d6a95..c9041dbd37bacf7bb5ed7a626db038b336e99d8c 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx
index e7ffcc88321034d0fae763904ca1fbc767e559fc..c2a8c97d78f6b1b45e18df382b452f6aed53404d 100644 (file)
@@ -1,4 +1,4 @@
-# coding=utf-8
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import threading
index e0f6357e15c584a87652b3bb1df4b60a89f788e4..874a3c72bcf97bdddb38ee3729b42873beb2c019 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx
index ac0c762002ebf68957ed3f543dd0585ffea9f23f..9a296e4d26492e40a33bd7223f4c7f69c4eebd29 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx
index 1a70907c3bd7fe64d8f655948ff288f993fba302..83f830033f2c8b526fbf2400c2d294650f122e65 100644 (file)
@@ -1,4 +1,4 @@
-# coding=utf-8
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx._core #We only need the core here, which speeds up the import. As we want to show the splashscreen ASAP.
index c020346828406bd10a3eb8e6f802845798364ac4..2e6705329076ecfc4d99723ccf8ac5376d954d3e 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx, os, multiprocessing, threading, time, shutil
index 3023fba18fb64a40751263d890712a2d745db8f2..fba4d061a011c4cc232d8350518c910a8cf31496 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx
index 3d53b4aef93e35d5a0ea30db37ef660b756a9013..db7019275cecccd6d101b1de3c78d511ec281186 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx
index 8490de9a68f9a031f3465c513adf460b8b222f81..41541e93aa573bc1db2301fd0052cf9d9fed510c 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx
index f6734eca52b3d24e8eeab03c78b47bd548a56939..f4b82cc4d45ea5a76e9cc4ba8266af104e2fbbf7 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import wx
index e5a4a4353c11bfdd0e0d9fba59a150cf6f67d2a3..80ffa9d0f6a78c06b9ffe70119c48a4cc7a6c56f 100644 (file)
@@ -1,4 +1,4 @@
-# coding=utf-8
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import math
index 7c7b34186aa741567285bd4182856a69d22122bf..bde32ff664efec17fee3ffb4ec50d19cbc26f457 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 from __future__ import division
 
index 65d5699ec213be2df9cf6907bcd027796c1d52d0..c7f737c2da031a4e4205d8e4028381c1b537b05f 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import math
index 31df78e368303e6aa5c11d3c89ec14678a0be235..dd67558507db033ca14c9a3d86ddffb4a3879a52 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 try:
index b79a4f652b5a849554a31937a61bf23e3d7cad7e..b4934a4a93a3ba05e36a3522d29ee08651e4ace4 100644 (file)
@@ -1,4 +1,4 @@
-# coding=utf-8
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 from __future__ import division
 
index d90ce6d1d6102500af650baea774e52860d60d8a..98280c64dddb0807715c28daead80659ff55c44d 100644 (file)
@@ -1,4 +1,4 @@
-# coding=utf-8
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import os
index 745ec6e6be0052338b4de46af35785dc2905c4f8..ec13b130af2e137fe53748c01c7766fb365fc4ff 100644 (file)
@@ -7,6 +7,7 @@
 #Param: parkY(float:190) Head park Y (mm)
 #Param: retractAmount(float:5) Retraction amount (mm)
 
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 import re
 
 def getValue(line, key, default = None):
index ebdc03c1b6d82bb3cf76278c7c88948fbed0ffcf..aa9eefd347a5c9eff195e35425962f4488d2e487 100644 (file)
@@ -1 +1 @@
-All files in the Resources directories are GPLv3, unless otherwise specified by the Attribution file.
\ No newline at end of file
+All files in the Resources directories are part of Cura and Copyright David Braam and released under GPLv3, unless otherwise specified by the Attribution file in the same directory.
\ No newline at end of file
index 80b2465d97d13d76a7a34e4f0d661fe371df5884..01f0faaef49e55c6a28fe30c24a4157d9ff85996 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import sys
index 369474173436f03da5956521e0449f6c7a617a04..665f837666374f096a0dfe1a265b985380a6b5a6 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import math
index d6b4922bc36436960cebd0c6e8673eb3587d3a61..0f7b147e6ff8bdd6662f29df70c8e792ec1cf2cd 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import sys
index 0d0e8039314e29f511ad8152d1354ee8877960d8..25e9e824ee33ba37eeae129e4c9bc6dae37fe400 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import os
index 4a8b412c618827c1602e2476341e814593d9fce9..a473f3ed9b8284be151f503d7a696aac743b889f 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import time
index 6f81cf3d1c11d2a92c0efcfb0a00b70ab881f26d..bbc513670f877d19de4b930200c7f8cfa1c87610 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 from Cura.util.meshLoaders import stl
index 03ac5a05e3068c2ac822725610cb29f2a545ed26..5dbd6177b04c3a889c84805f989153f8ecf3e3c4 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import cStringIO as StringIO
index 868a3ffb8e4fb63d1f00cc6c87775e09b5ca11e2..084e81e39dae4929f1124d4548f250a2bc0a0e9d 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 from  xml.parsers.expat import ParserCreate
index dab9ddc253e64d5d4fb01fc3c44b6e7056b54d7c..ef84b513ce827c51214e4699cccc18e9e9c8c9d6 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 from Cura.util import mesh
index de7061677a848b553a8d3763777b7b5de7c46f3f..92904f38454d562adcd964a352ee9d96106eb715 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import sys
index 336a309cffed3ddf75f07508ccc0bd2dff4baa2f..54704eb10d7d1b64ee2968540f84c89e2b8a8433 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 import random
 import numpy
 
index ac6c4d1a74c40f2314144ddf76daa3f0bc40c732..f9e3f251b7c5a1696621c412a2d7e571ffd90860 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 from __future__ import division
 
index 5039503b8c2bb1653d3f10e8633a513eb7d39a13..daf5dbb5e76e69fe7e8ec8a08eafa78365f637d7 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 import platform
 import string
 import glob
index 4eb6e37bc89ef6c68c6cebed6af332eb57f1c611..c918dedd7a002ad664f379d71567d3c62217c293 100644 (file)
@@ -1,4 +1,4 @@
-# coding=utf-8
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 import os
 import sys
index 9e81310dde8bd53228ceb0e80976cc0974de2837..0f123836a2b947e77c1c4144c3f725a336026fa3 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 
 class setting(object):
        def __init__(self, key, name, description):
index 717ae80bf2c743b075b9b45d0b65aad95ff281c7..0cbbb8fc38b6abdcc2946afc4c721ff2422fd689 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 import subprocess
 import time
 import math
index 9f44f37ca9af30f24a0b72529e12b8cd27018cce..c583c1376eed5b2cbc47ef6b77548aaded557157 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import math
index f0d31ac129fe1e56f0be044f254e703f3d3281f2..fa5311f344bd7d0d91be4f8fb2d76fba4693eacc 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import math
index 4decec0b55ab8bae019eea2f6604ff20d4795d5c..e93e8569d2041b09358b7f2d2538501d355123d2 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 from __future__ import division
 
index 5526c53feff6d8bd7891cd47f15e72364c85bb9b..aa50c552d93d0cde06b6f9378dcd3f474594171c 100644 (file)
@@ -1,3 +1,4 @@
+__copyright__ = "Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License"
 from __future__ import absolute_import
 
 import os
index ff7a6c38442a187f71a86413a283f17e9c3d6cf6..a52f5cae598b44ae362cd26a6dffdd0e667a3f9a 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,21 +1,25 @@
 Cura
 ====
 
-If you are reading this, then you are looking at the *development* version of Cura. If you just want to use Cura look at the following location: https://github.com/daid/Cura/wiki
+Read this, it is important!
+===========================
+
+If you are reading this, then you are looking at the *development* version of Cura. If you just want to use Cura look at the following location: https://daid.github.com/Cura
 
 Development
 ===========
 
-Cura is developed in Python. Getting Cura up and running for development is not very difficult. If you copy the python and pypy from a release into your Cura development checkout then you can use Cura right away, just like you would with a release.
-For development with git, check the help on github. Pull requests is the fastest way to get changes into Cura.
-
+Cura is developed in Python with a C++ engine. The part you are looking at right now is the Python GUI.
+The C++ engine is responsible for generating the actual toolpath. For development of the engine check out https://github.com/Ultimaker/CuraEngine
 
 Packaging
 ---------
 
-Cura development comes with a script "package.sh", this script has been designed to run under unix like OSes (Linux, MacOS). Running it from sygwin is not a priority.
+Cura development comes with a script "package.sh", this script has been designed to run under unix like OSes (Linux, MacOS). For windows the package.sh script can be run from the git bash shell.
 The "package.sh" script generates a final release package. You should not need it during development, unless you are changing the release process. If you want to distribute your own version of Cura, then the package.sh script will allow you to do that.
 
+Both MacOS and Linux require some extra instructions for development, as you need to prepare an environment. Look below at the proper section to see what is needed.
+
 Debian and Ubuntu Linux
 --------