index int64 | repo_name string | branch_name string | path string | content string | import_graph string |
|---|---|---|---|---|---|
11,503 | inzaghian/anzhu | refs/heads/master | /testform.py | #coding:utf-8
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5.QtCore import pyqtSignal,QTimer,Qt
from PyQt5.QtGui import QIcon,QImage,QPixmap
from ui.test import Ui_TestForm
import cv2
from MyQR import myqr
import numpy as np
class Testwindow(QtWidgets.QWidget):
_signal = pyqtSignal(bytes)
def __init__... | {"/testform.py": ["/uartform.py"], "/main.py": ["/uartform.py"], "/comsetform.py": ["/ui/comset.py", "/uartform.py"], "/pinsetform.py": ["/uartform.py"], "/uartform.py": ["/ui/uart.py", "/comsetform.py", "/pinsetform.py", "/testform.py", "/com.py", "/xmlreadandwrite.py"]} |
11,504 | inzaghian/anzhu | refs/heads/master | /com.py | #coding:utf-8
import serial
import serial.tools.list_ports
#this is modify by any one
class opencom():
def __init__(self):
self.com=serial.Serial()
def initcom(self,comname,bsp=115200,bs=8,s=1,p=serial.PARITY_NONE):
try:
self.com.port = comname
self.com.baudrate = bsp
... | {"/testform.py": ["/uartform.py"], "/main.py": ["/uartform.py"], "/comsetform.py": ["/ui/comset.py", "/uartform.py"], "/pinsetform.py": ["/uartform.py"], "/uartform.py": ["/ui/uart.py", "/comsetform.py", "/pinsetform.py", "/testform.py", "/com.py", "/xmlreadandwrite.py"]} |
11,505 | inzaghian/anzhu | refs/heads/master | /main.py | #coding:utf-8
from PyQt5 import QtWidgets
from uartform import Uartwindow
import sys
def main():
app = QtWidgets.QApplication(sys.argv)
uf = Uartwindow()
uf.show()
sys.exit(app.exec_())
if __name__ == '__main__':
main() | {"/testform.py": ["/uartform.py"], "/main.py": ["/uartform.py"], "/comsetform.py": ["/ui/comset.py", "/uartform.py"], "/pinsetform.py": ["/uartform.py"], "/uartform.py": ["/ui/uart.py", "/comsetform.py", "/pinsetform.py", "/testform.py", "/com.py", "/xmlreadandwrite.py"]} |
11,506 | inzaghian/anzhu | refs/heads/master | /comsetform.py | #coding:utf-8
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5.QtCore import pyqtSignal
from PyQt5.QtGui import QIcon
from ui.comset import Ui_comsetform
class Comsetwindow(QtWidgets.QWidget):
_signal = pyqtSignal(dict)
def __init__(self):
super(Comsetwindow, self).__init__()
self.new = ... | {"/testform.py": ["/uartform.py"], "/main.py": ["/uartform.py"], "/comsetform.py": ["/ui/comset.py", "/uartform.py"], "/pinsetform.py": ["/uartform.py"], "/uartform.py": ["/ui/uart.py", "/comsetform.py", "/pinsetform.py", "/testform.py", "/com.py", "/xmlreadandwrite.py"]} |
11,507 | inzaghian/anzhu | refs/heads/master | /pinsetform.py | #coding:utf-8
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5.QtCore import pyqtSignal
from PyQt5.QtGui import QIcon
from ui.pinset import Ui_PinSetForm
class Pinsetwindow(QtWidgets.QWidget):
_signal = pyqtSignal(bytes)
def __init__(self):
super(Pinsetwindow,self).__init__()
self.new=Ui... | {"/testform.py": ["/uartform.py"], "/main.py": ["/uartform.py"], "/comsetform.py": ["/ui/comset.py", "/uartform.py"], "/pinsetform.py": ["/uartform.py"], "/uartform.py": ["/ui/uart.py", "/comsetform.py", "/pinsetform.py", "/testform.py", "/com.py", "/xmlreadandwrite.py"]} |
11,508 | inzaghian/anzhu | refs/heads/master | /uartform.py | #coding:utf-8
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5.QtCore import pyqtSignal,QThread,QTimer,Qt
from PyQt5.QtWidgets import QMessageBox
from PyQt5.QtGui import QIcon
from ui.uart import Ui_uartform
from comsetform import Comsetwindow
from pinsetform import Pinsetwindow
from testform import Testwindow
fro... | {"/testform.py": ["/uartform.py"], "/main.py": ["/uartform.py"], "/comsetform.py": ["/ui/comset.py", "/uartform.py"], "/pinsetform.py": ["/uartform.py"], "/uartform.py": ["/ui/uart.py", "/comsetform.py", "/pinsetform.py", "/testform.py", "/com.py", "/xmlreadandwrite.py"]} |
11,509 | inzaghian/anzhu | refs/heads/master | /ui/uart.py | # -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'uart.ui'
#
# Created by: PyQt5 UI code generator 5.11.3
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_uartform(object):
def setupUi(self, uartform):
uartform.setObj... | {"/testform.py": ["/uartform.py"], "/main.py": ["/uartform.py"], "/comsetform.py": ["/ui/comset.py", "/uartform.py"], "/pinsetform.py": ["/uartform.py"], "/uartform.py": ["/ui/uart.py", "/comsetform.py", "/pinsetform.py", "/testform.py", "/com.py", "/xmlreadandwrite.py"]} |
11,510 | inzaghian/anzhu | refs/heads/master | /gps.py | #coding:utf-8
class gps():
def __init__(self):
self.realdata=b''
self.fb=False
def Get_gps_data(self,sdata):
sl=[]
for e in sdata:
if e==0x24 and self.fb==False:
self.fb=True
self.realdata+=bytes([e])
if self.fb and e==0x0a... | {"/testform.py": ["/uartform.py"], "/main.py": ["/uartform.py"], "/comsetform.py": ["/ui/comset.py", "/uartform.py"], "/pinsetform.py": ["/uartform.py"], "/uartform.py": ["/ui/uart.py", "/comsetform.py", "/pinsetform.py", "/testform.py", "/com.py", "/xmlreadandwrite.py"]} |
11,516 | wannaphong/SkyPython | refs/heads/master | /src/renderer/OverlayManager.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,517 | wannaphong/SkyPython | refs/heads/master | /src/renderer/RendererControllerBase.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,518 | wannaphong/SkyPython | refs/heads/master | /src/layers/Layer.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,519 | wannaphong/SkyPython | refs/heads/master | /src/testing/UtilsTesting.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,520 | wannaphong/SkyPython | refs/heads/master | /src/utils/Geometry.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,521 | wannaphong/SkyPython | refs/heads/master | /src/renderer/PointObjectManager.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,522 | wannaphong/SkyPython | refs/heads/master | /src/layers/NewConstellationsLayer.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,523 | wannaphong/SkyPython | refs/heads/master | /src/utils/VectorUtil.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,524 | wannaphong/SkyPython | refs/heads/master | /src/control/ZoomController.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,525 | wannaphong/SkyPython | refs/heads/master | /src/control/ControllerGroup.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,526 | wannaphong/SkyPython | refs/heads/master | /src/layers/SourceLayer.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,527 | wannaphong/SkyPython | refs/heads/master | /src/source/ImageSource.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,528 | wannaphong/SkyPython | refs/heads/master | /src/rendererUtil/SkyRegionMap.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,529 | wannaphong/SkyPython | refs/heads/master | /src/units/LatLong.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,530 | wannaphong/SkyPython | refs/heads/master | /src/renderer/LabelOverlayManager.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,531 | wannaphong/SkyPython | refs/heads/master | /src/renderer/PolyLineObjectManager.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,532 | wannaphong/SkyPython | refs/heads/master | /src/source/TextSource.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,533 | wannaphong/SkyPython | refs/heads/master | /src/base/Preconditions.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,534 | wannaphong/SkyPython | refs/heads/master | /src/base/TimeConstants.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,535 | wannaphong/SkyPython | refs/heads/master | /src/layers/GridLayer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,536 | wannaphong/SkyPython | refs/heads/master | /src/units/RaDec.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,537 | wannaphong/SkyPython | refs/heads/master | /src/units/Matrix33.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,538 | wannaphong/SkyPython | refs/heads/master | /src/units/Vector3.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,539 | wannaphong/SkyPython | refs/heads/master | /src/provider/PlanetSource.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,540 | wannaphong/SkyPython | refs/heads/master | /src/rendererUtil/ColoredQuad.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,541 | wannaphong/SkyPython | refs/heads/master | /src/source/LineSource.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,542 | wannaphong/SkyPython | refs/heads/master | /src/skypython/SkyPython.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,543 | wannaphong/SkyPython | refs/heads/master | /src/renderer/ImageObjectManager.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,544 | wannaphong/SkyPython | refs/heads/master | /src/utils/DebugOptions.py | '''
Copyright 2013 Neil Borle and Paul Lu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable la... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,545 | wannaphong/SkyPython | refs/heads/master | /src/testing/ProviderTests.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in ... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,546 | wannaphong/SkyPython | refs/heads/master | /src/utils/Matrix4x4.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,547 | wannaphong/SkyPython | refs/heads/master | /src/touch/MapMover.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,548 | wannaphong/SkyPython | refs/heads/master | /src/utils/Runnable.py | '''
Copyright 2013 Neil Borle and Paul Lu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable la... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,549 | wannaphong/SkyPython | refs/heads/master | /src/source/PointSource.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,550 | wannaphong/SkyPython | refs/heads/master | /src/renderer/RenderState.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,551 | wannaphong/SkyPython | refs/heads/master | /src/source/Source.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,552 | wannaphong/SkyPython | refs/heads/master | /src/rendererUtil/VertexBuffer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,553 | wannaphong/SkyPython | refs/heads/master | /src/layers/LayerManager.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,554 | wannaphong/SkyPython | refs/heads/master | /src/rendererUtil/NightVisionColorBuffer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,555 | wannaphong/SkyPython | refs/heads/master | /src/renderer/RendererController.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,556 | wannaphong/SkyPython | refs/heads/master | /src/testing/BaseTests.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,557 | wannaphong/SkyPython | refs/heads/master | /src/layers/HorizonLayer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,558 | wannaphong/SkyPython | refs/heads/master | /src/layers/EclipticLayer.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,559 | wannaphong/SkyPython | refs/heads/master | /src/testing/ControlTests.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,560 | wannaphong/SkyPython | refs/heads/master | /src/provider/OrbitalElements.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,561 | wannaphong/SkyPython | refs/heads/master | /src/layers/PlanetsLayer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,562 | wannaphong/SkyPython | refs/heads/master | /src/units/GeocentricCoordinates.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,563 | wannaphong/SkyPython | refs/heads/master | /src/utils/ColorParser.py | '''
Copyright 2013 Neil Borle and Paul Lu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable la... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,564 | wannaphong/SkyPython | refs/heads/master | /src/renderer/SkyRenderer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,565 | wannaphong/SkyPython | refs/heads/master | /src/rendererUtil/GLBuffer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,566 | wannaphong/SkyPython | refs/heads/master | /src/source/AstronomicalSource.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,567 | wannaphong/SkyPython | refs/heads/master | /src/units/HeliocentricCoordinates.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,568 | wannaphong/SkyPython | refs/heads/master | /src/rendererUtil/LabelMaker.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,569 | wannaphong/SkyPython | refs/heads/master | /src/skypython/SharedPreferences.py | '''
Copyright 2013 Neil Borle and Paul Lu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable la... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,570 | wannaphong/SkyPython | refs/heads/master | /src/control/Controller.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,571 | wannaphong/SkyPython | refs/heads/master | /src/rendererUtil/TextureManager.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,572 | wannaphong/SkyPython | refs/heads/master | /src/provider/Planet.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,573 | wannaphong/SkyPython | refs/heads/master | /src/sourceProto/ProtobufAstronomicalSource.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,574 | wannaphong/SkyPython | refs/heads/master | /src/renderer/LabelObjectManager.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,575 | wannaphong/SkyPython | refs/heads/master | /src/provider/SolarPositionCalculator.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,576 | wannaphong/SkyPython | refs/heads/master | /src/layers/NewStarsLayer.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,577 | wannaphong/SkyPython | refs/heads/master | /src/renderer/SkyBox.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,578 | wannaphong/SkyPython | refs/heads/master | /src/layers/MeteorShowerLayer.py | '''
// Copyright 2011 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,579 | wannaphong/SkyPython | refs/heads/master | /src/control/LocationController.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,580 | wannaphong/SkyPython | refs/heads/master | /src/utils/Colors.py | '''
Copyright 2013 Neil Borle and Paul Lu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable la... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,581 | wannaphong/SkyPython | refs/heads/master | /src/layers/FileBasedLayer.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,582 | wannaphong/SkyPython | refs/heads/master | /src/layers/SkyGradientLayer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,583 | wannaphong/SkyPython | refs/heads/master | /src/control/AstronomerModel.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,584 | wannaphong/SkyPython | refs/heads/master | /src/rendererUtil/TextCoordBuffer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,585 | wannaphong/SkyPython | refs/heads/master | /main.py | '''
Copyright 2013 Neil Borle and Paul Lu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable la... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,586 | wannaphong/SkyPython | refs/heads/master | /src/testing/UnitsTesting.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,587 | wannaphong/SkyPython | refs/heads/master | /src/rendererUtil/ColorBuffer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,588 | wannaphong/SkyPython | refs/heads/master | /src/control/ManualOrientationController.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,589 | wannaphong/SkyPython | refs/heads/master | /src/views/createdMenu.py | # -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'widget.ui'
#
# Created: Thu Aug 08 09:33:25 2013
# by: pyside-uic 0.2.14 running on PySide 1.2.0
#
# WARNING! All changes made in this file will be lost!
import images_rc
from PySide import QtCore, QtGui
class Ui_menuBackg... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,590 | wannaphong/SkyPython | refs/heads/master | /src/renderer/RendererObjectManager.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,591 | wannaphong/SkyPython | refs/heads/master | /src/rendererUtil/IndexBuffer.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,592 | wannaphong/SkyPython | refs/heads/master | /src/skypython/__init__.py | '''
Created on 2013-05-15
@author: Neil
'''
| {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,593 | wannaphong/SkyPython | refs/heads/master | /src/views/ZoomWidget.py | # -*- coding: utf-8 -*-
# Form implementation generated from reading ui file '.\widget.ui'
#
# Created: Sun Aug 18 14:42:15 2013
# by: pyside-uic 0.2.14 running on PySide 1.1.2
#
# WARNING! All changes made in this file will be lost!
from PySide import QtCore, QtGui
class Ui_ZoomBar(object):
def... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,594 | wannaphong/SkyPython | refs/heads/master | /src/control/MagneticDeclinationCalculatorSwitcher.py | '''
// Copyright 2009 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,595 | wannaphong/SkyPython | refs/heads/master | /src/views/WidgetFader.py | '''
Copyright 2013 Neil Borle and Paul Lu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable la... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,596 | wannaphong/SkyPython | refs/heads/master | /src/touch/DragRotateZoomGestureDetector.py | '''
// Copyright 2010 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,597 | wannaphong/SkyPython | refs/heads/master | /src/views/ZoomButton.py | '''
Copyright 2013 Neil Borle and Paul Lu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable la... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,598 | wannaphong/SkyPython | refs/heads/master | /src/utils/TimeUtil.py | '''
// Copyright 2008 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,599 | wannaphong/SkyPython | refs/heads/master | /src/views/PreferencesButton.py | '''
Copyright 2013 Neil Borle and Paul Lu
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable la... | {"/src/renderer/OverlayManager.py": ["/src/rendererUtil/ColoredQuad.py", "/src/units/Vector3.py", "/src/utils/VectorUtil.py", "/src/utils/Matrix4x4.py"], "/src/renderer/RendererControllerBase.py": ["/src/utils/Runnable.py"], "/src/layers/Layer.py": ["/src/source/PointSource.py", "/src/source/LineSource.py", "/src/sourc... |
11,615 | santander-syngenta/rc | refs/heads/master | /api/models.py | from django.db import models
from django.conf import settings
from django.template.defaultfilters import date
# Create your models here.
class FormTags(models.Model):
name = models.CharField(max_length = 300)
def __str__(self):
return self.name
class Form(models.Model):
title = models.CharField(max_length = 3... | {"/api/admin.py": ["/api/models.py"], "/api/forms.py": ["/api/models.py"], "/blog/views.py": ["/blog/models.py", "/api/models.py", "/api/serializers.py"], "/api/serializers.py": ["/api/models.py"], "/api/views.py": ["/api/serializers.py", "/api/models.py", "/api/forms.py"]} |
11,616 | santander-syngenta/rc | refs/heads/master | /api/migrations/0010_auto_20201210_0809.py | # Generated by Django 3.1 on 2020-12-10 16:09
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('api', '0009_form2'),
]
operations = [
migrations.AlterField(
model_name='form2',
name='file',
field=models... | {"/api/admin.py": ["/api/models.py"], "/api/forms.py": ["/api/models.py"], "/blog/views.py": ["/blog/models.py", "/api/models.py", "/api/serializers.py"], "/api/serializers.py": ["/api/models.py"], "/api/views.py": ["/api/serializers.py", "/api/models.py", "/api/forms.py"]} |
11,617 | santander-syngenta/rc | refs/heads/master | /blog/urls.py | from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name = 'home'),
path('blog/', views.blog, name = 'blog'),
path('files/', views.files, name='files'),
path('train/', views.training, name = 'training'),
path('methods/', views.methods, name= 'methods'),
path('display/<str:pk>/'... | {"/api/admin.py": ["/api/models.py"], "/api/forms.py": ["/api/models.py"], "/blog/views.py": ["/blog/models.py", "/api/models.py", "/api/serializers.py"], "/api/serializers.py": ["/api/models.py"], "/api/views.py": ["/api/serializers.py", "/api/models.py", "/api/forms.py"]} |
11,618 | santander-syngenta/rc | refs/heads/master | /api/migrations/0015_remove_contact_date.py | # Generated by Django 3.1 on 2021-01-12 17:46
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('api', '0014_contact_number'),
]
operations = [
migrations.RemoveField(
model_name='contact',
name='date',
),
]
| {"/api/admin.py": ["/api/models.py"], "/api/forms.py": ["/api/models.py"], "/blog/views.py": ["/blog/models.py", "/api/models.py", "/api/serializers.py"], "/api/serializers.py": ["/api/models.py"], "/api/views.py": ["/api/serializers.py", "/api/models.py", "/api/forms.py"]} |
11,619 | santander-syngenta/rc | refs/heads/master | /api/migrations/0008_auto_20201202_0823.py | # Generated by Django 3.1 on 2020-12-02 16:23
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('api', '0007_content'),
]
operations = [
migrations.CreateModel(
name='Subject',
fields=[
('id', models... | {"/api/admin.py": ["/api/models.py"], "/api/forms.py": ["/api/models.py"], "/blog/views.py": ["/blog/models.py", "/api/models.py", "/api/serializers.py"], "/api/serializers.py": ["/api/models.py"], "/api/views.py": ["/api/serializers.py", "/api/models.py", "/api/forms.py"]} |
11,620 | santander-syngenta/rc | refs/heads/master | /api/admin.py | from django.contrib import admin
from .models import *
# Register your models here.
admin.site.register(Form)
admin.site.register(FormTags)
admin.site.register(Link)
admin.site.register(Content)
admin.site.register(Subject)
admin.site.register(Form2)
admin.site.register(Contact) | {"/api/admin.py": ["/api/models.py"], "/api/forms.py": ["/api/models.py"], "/blog/views.py": ["/blog/models.py", "/api/models.py", "/api/serializers.py"], "/api/serializers.py": ["/api/models.py"], "/api/views.py": ["/api/serializers.py", "/api/models.py", "/api/forms.py"]} |
11,621 | santander-syngenta/rc | refs/heads/master | /api/forms.py | from django.forms import ModelForm
from .models import *
from django.contrib.auth.forms import UserCreationForm
from django import forms
class upload(ModelForm):
class Meta:
model = Form
fields = '__all__'
exclude = ['date']
class uploadTrainingContent(ModelForm):
class Meta:
model = Content
fields = '_... | {"/api/admin.py": ["/api/models.py"], "/api/forms.py": ["/api/models.py"], "/blog/views.py": ["/blog/models.py", "/api/models.py", "/api/serializers.py"], "/api/serializers.py": ["/api/models.py"], "/api/views.py": ["/api/serializers.py", "/api/models.py", "/api/forms.py"]} |
11,622 | santander-syngenta/rc | refs/heads/master | /api/migrations/0005_auto_20201012_1519.py | # Generated by Django 3.0.8 on 2020-10-12 19:19
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('api', '0004_auto_20201008_1155'),
]
operations = [
migrations.DeleteModel(
name='Link',
),
migrations.DeleteModel(
... | {"/api/admin.py": ["/api/models.py"], "/api/forms.py": ["/api/models.py"], "/blog/views.py": ["/blog/models.py", "/api/models.py", "/api/serializers.py"], "/api/serializers.py": ["/api/models.py"], "/api/views.py": ["/api/serializers.py", "/api/models.py", "/api/forms.py"]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.