Skip to content

Commit

Permalink
Updated to SS3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seyDoggy committed Nov 19, 2011
1 parent eb712a6 commit 59e5060
Show file tree
Hide file tree
Showing 49 changed files with 789 additions and 368 deletions.
42 changes: 42 additions & 0 deletions .gitignore
@@ -0,0 +1,42 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db

# TextMate Project #
####################
*.tmproj

# shell script #
################
*.command
4 changes: 2 additions & 2 deletions SeydoggySlideshow 3.rwtheme/Contents/Info.plist
Expand Up @@ -7,9 +7,9 @@
<key>CFBundleIdentifier</key>
<string>com.seydoggy.rwthemes.seydoggyslideshow3</string>
<key>CFBundleVersion</key>
<string>5.000</string>
<string>6.000</string>
<key>CFBundleShortVersionString</key>
<string>5</string>
<string>6</string>
<key>NSHumanReadableCopyright</key>
<string>© 2005-2011 seyDoggy. All rights reserved.</string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions SeydoggySlideshow 3.rwtheme/Contents/Theme.plist
Expand Up @@ -124,7 +124,7 @@
<false/>
<key>Files</key>
<array>
<string>css/headerheight/headerHeightVariable.js</string>
<string>scripts/slideshow/headerHeightVariable.js</string>
</array>
<key>Name</key>
<string>Variable</string>
Expand Down Expand Up @@ -1775,6 +1775,6 @@
<key>RWThemeShortName</key>
<string>ss3</string>
<key>RWVersion</key>
<integer>5</integer>
<integer>6</integer>
</dict>
</plist>
46 changes: 29 additions & 17 deletions SeydoggySlideshow 3.rwtheme/Contents/index.html
Expand Up @@ -5,6 +5,8 @@
<title>%title%</title>
<script>RwSet = {pathto: "%pathto(javascript.js)%",baseurl: "%base_url%"};</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.cycle/2.99/jquery.cycle.all.min.js"></script>
<script src="%pathto(scripts/slideshow/seydoggy.slideshow.js)%"></script>

<link rel="stylesheet" type="text/css" media="screen" href="%pathto(styles.css)%" />
<link rel="stylesheet" type="text/css" media="print" href="%pathto(css/print.css)%" />
Expand All @@ -28,45 +30,55 @@
<hgroup class="title">
<h1 class="site_title">%site_title%</h1>
<h2 class="site_slogan">%site_slogan%</h2>
</hgroup><!-- .title -->
</hgroup>
<div class="clear"></div>
</header><!-- .siteHeader -->
</header>
<div class="wrapperTBH">
<nav id="toolbar_horizontal">%toolbar%</nav><!-- #toolbar_horizontal -->
</div><!-- .wrapperTBH -->
<nav id="toolbar_horizontal">%toolbar%</nav>
</div>
<div class="clear"></div>

<!--
THIS IS THE START OF THE SLIDESHOW CONTAINER
-->
<div class="headerContainer">
<div id="extraContainer1" class="preContent">
<!--extra user content renders here-->
</div><!-- #extraContainer1 .preContent -->
</div>
<div class="seydoggySlideshow">
<div class="pageHeader"></div><!-- .pageHeader -->
</div><!-- .seydoggySlideshow -->
<div class="pageHeader">
<!--slideshow images/content renders here-->
</div>
</div>
<div class="clear"></div>
</div><!-- .headerContainer -->
</div>

<!--
THIS IS THE END OF THE SLIDESHOW CONTAINER
-->

<div class="wrapperContent">
<section class="mainContent">
%content%
</section><!-- .mainContent -->
</section>
<aside class="sidebarContent">
<nav id="toolbar_vertical"></nav><!-- #toolbar_vertical -->
<section class="sidebar">
<div class="sidebar_title">
%sidebar_title%
</div><!-- .sidebar_title -->
</div>
%sidebar%
</section><!-- .sidebar -->
</section>
<section class="plugin_sidebar">
%plugin_sidebar%
</section><!-- .plugin_sidebar -->
</aside><!-- .sidebarContent -->
</section>
</aside>
<div class="clear"></div>
</div><!-- .wrapperContent -->
</div>
<footer>
<section class="footer">%footer%</section><!-- .footer -->
<section class="footer">%footer%</section>
%breadcrumb%
<div class="clear"></div>
</footer>
</div><!-- .wrapper -->
</div>
</body>
</html>

0 comments on commit 59e5060

Please sign in to comment.