Skip to content

Commit

Permalink
Version 0.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Dlesk committed Dec 23, 2011
1 parent a465b26 commit a86dd8a
Show file tree
Hide file tree
Showing 347 changed files with 43,454 additions and 37 deletions.
10 changes: 10 additions & 0 deletions Gamez.App.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[/]
tools.staticdir.root: cpapp.app_path

[/css]
tools.staticdir.on: True
tools.staticdir.dir: 'css'

[/js]
tools.staticdir.on: True
tools.staticdir.dir: 'scripts'
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<Configuration>
<RecentFiles>
<RecentFiles>
<File id="3806C02D-8C19-47FF-A625-9D5594F2BABE/d:css/f:styles.css" caret="0" fromTop="0" />
</RecentFiles>
<RecentEdits />
</RecentFiles>
<NAntValidationSettings>
<NAntPath value="" />
</NAntValidationSettings>
<UnitTestRunner>
<Providers />
</UnitTestRunner>
<UnitTestRunnerNUnit>
<NUnitInstallDir IsNull="False">
</NUnitInstallDir>
<UseAddins>Never</UseAddins>
</UnitTestRunnerNUnit>
<SettingsComponent>
<string />
<integer />
<boolean>
<setting name="SolutionAnalysisEnabled">False</setting>
</boolean>
</SettingsComponent>
<CompletionStatisticsManager>
<ItemStatistics item="CssCodeCompletionContext">
<Item value="input" priority="5" />
<Item value="height" priority="11" />
</ItemStatistics>
</CompletionStatisticsManager>
</Configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -28,29 +28,56 @@
<Compile Include="Program.py" />
</ItemGroup>
<ItemGroup>
<Content Include="css\ellipsis-xbl.xml" />
<Content Include="css\images\item-pointer-mover.gif" />
<Content Include="css\images\item-pointer.gif" />
<Content Include="css\images\lava.gif" />
<Content Include="css\images\lava.png" />
<Content Include="css\images\main-bg.png" />
<Content Include="css\images\main-delimiter.png" />
<Content Include="css\navigation.css" />
<Content Include="css\ui.jqgrid.css" />
<Content Include="Gamez.App.ini" />
<Content Include="Gamez.db" />
<Content Include="Gamez.ini" />
<Content Include="css\navigation.css" />
<Content Include="css\styles.css" />
<Content Include="images\item-pointer-mover.gif" />
<Content Include="images\item-pointer.gif" />
<Content Include="images\lava.gif" />
<Content Include="images\lava.png" />
<Content Include="images\main-bg.png" />
<Content Include="images\main-delimiter.png" />
<Content Include="scripts\jquery.dataTables.js" />
<Content Include="images\ui-bg_flat_0_aaaaaa_40x100.png" />
<Content Include="images\ui-bg_flat_55_fbec88_40x100.png" />
<Content Include="images\ui-bg_glass_75_d0e5f5_1x400.png" />
<Content Include="images\ui-bg_glass_85_dfeffc_1x400.png" />
<Content Include="images\ui-bg_glass_95_fef1ec_1x400.png" />
<Content Include="images\ui-bg_gloss-wave_55_5c9ccc_500x100.png" />
<Content Include="images\ui-bg_inset-hard_100_f5f8f9_1x100.png" />
<Content Include="images\ui-bg_inset-hard_100_fcfdfd_1x100.png" />
<Content Include="images\ui-icons_217bc0_256x240.png" />
<Content Include="images\ui-icons_2e83ff_256x240.png" />
<Content Include="images\ui-icons_469bdd_256x240.png" />
<Content Include="images\ui-icons_6da8d5_256x240.png" />
<Content Include="images\ui-icons_cd0a0a_256x240.png" />
<Content Include="images\ui-icons_d8e7f3_256x240.png" />
<Content Include="images\ui-icons_f9bd01_256x240.png" />
<Content Include="js\jquery-1.6.2.min.js" />
<Content Include="js\jquery-ui-1.8.16.custom.min.js" />
<Content Include="redmond\jquery-ui-1.8.16.custom.css" />
<Content Include="scripts\grid.locale-en.js" />
<Content Include="scripts\jquery-1.5.2.min.js" />
<Content Include="scripts\jquery.jqGrid.min.js" />
<Content Include="scripts\jquery.js" />
<Content Include="scripts\menu.js" />
</ItemGroup>
<ItemGroup>
<Folder Include="css\images\" />
<Folder Include="images" />
<Folder Include="images" />
<Folder Include="lib" />
<Folder Include="js" />
<Folder Include="redmond" />
<Folder Include="scripts" />
<Folder Include="css" />
</ItemGroup>
Expand Down
Binary file not shown.
9 changes: 8 additions & 1 deletion Gamez.Python.Visual.Studio.2010/Program.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,15 @@
css_path = os.path.join(app_path,'css')
css_images_path = os.path.join(css_path,'images')
scripts_path = os.path.join(app_path,'scripts')
js_path = os.path.join(app_path,'js')
theme_path = os.path.join(css_path,'redmond')
theme_images_path = os.path.join(theme_path,'images')
conf = {
'/css': {'tools.staticdir.on':True,'tools.staticdir.dir':css_path},
'/scripts':{'tools.staticdir.on':True,'tools.staticdir.dir':scripts_path},
'/css/images':{'tools.staticdir.on':True,'tools.staticdir.dir':css_images_path}}
'/js':{'tools.staticdir.on':True,'tools.staticdir.dir':js_path},
'/css/images':{'tools.staticdir.on':True,'tools.staticdir.dir':css_images_path},
'/css/redmond':{'tools.staticdir.on':True,'tools.staticdir.dir':theme_path},
'/css/redmond/images':{'tools.staticdir.on':True,'tools.staticdir.dir':theme_images_path}
}
cherrypy.quickstart(WebRoot(),'/',config=conf)
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
�1��
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
\��
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
�N�
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
'�P
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
����
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
13 changes: 13 additions & 0 deletions Gamez.Python.Visual.Studio.2010/css/ellipsis-xbl.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0"?>
<bindings
xmlns="http://www.mozilla.org/xbl"
xmlns:xbl="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<binding id="ellipsis">
<content>
<xul:window><!-- xul:window tag required for FF2 -->
<xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
</xul:window>
</content>
</binding>
</bindings>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a86dd8a

Please sign in to comment.