Skip to content

Commit

Permalink
copyright notices
Browse files Browse the repository at this point in the history
  • Loading branch information
dpopowich committed Sep 1, 2010
1 parent 38c37b5 commit 41078c9
Show file tree
Hide file tree
Showing 6 changed files with 63 additions and 3 deletions.
4 changes: 4 additions & 0 deletions copyright
Expand Up @@ -224,6 +224,10 @@ Files: library/pyjamas/ui/InlineLabel.py library/pyjamas/ui/InlineHTML.py
License: Apache
Copyright: 2010, Daniel Popowich <danielpopowich@gmail.com>

Files: library/pyjamas/Timer.py examples/timerdemo/*
License: Apache
Copyright: 2010, Daniel Popowich <danielpopowich@gmail.com>

License: PSF
http://www.python.org/psf/license/
http://www.python.org/download/releases/2.6.2/license/
Expand Down
14 changes: 14 additions & 0 deletions examples/timerdemo/timerdemo.py
@@ -1,3 +1,17 @@
# Copyright (C) 2010, Daniel Popowich <danielpopowich@gmail.com>
#
# 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 writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# for desktop
import pyjd
# ui imports
Expand Down
15 changes: 15 additions & 0 deletions library/__browser__/pyjamas/Timer.py
@@ -1,3 +1,18 @@
# Copyright (C) 2010, Daniel Popowich <danielpopowich@gmail.com>
#
# 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 writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Timer implementation for browswers using standard JS timers

class Timer:

Expand Down
14 changes: 14 additions & 0 deletions library/pyjamas/Timer.py
@@ -1,3 +1,17 @@
# Copyright (C) 2010, Daniel Popowich <danielpopowich@gmail.com>
#
# 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 writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from pyjamas import Window
from __pyjamas__ import JS, get_main_frame
import pyjd
Expand Down
18 changes: 15 additions & 3 deletions library/pyjamas/platform/Timerhulahop.py
@@ -1,7 +1,19 @@
# Implementation for hulahop
# Copyright (C) 2010, Daniel Popowich <danielpopowich@gmail.com>
#
# 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 writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# uses xpcom's nsITimer interface
# see pyjd/hula.py for details
# Implementation of Timer for hulahop using xpcom's nsITimer interface
# see pyjd/hula.py for details.

class Timer:

Expand Down
1 change: 1 addition & 0 deletions pyjd/hula.py
@@ -1,6 +1,7 @@
# Copyright (C) 2006, Red Hat, Inc.
# Copyright (C) 2007, One Laptop Per Child
# Copyright (C) 2009, Luke Kenneth Casson Leighton <lkcl@lkcl.net>
# Copyright (C) 2010, Daniel Popowich <danielpopowich@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down

0 comments on commit 41078c9

Please sign in to comment.