0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: README.txt.tar
home/academiac/www/libraries/simplepie/README.txt 0000644 00000002253 15137264221 0015655 0 ustar 00 SIMPLEPIE http://simplepie.org By Ryan Parman and Geoffrey Sneddon BSD-LICENSED http://www.opensource.org/licenses/bsd-license.php WHAT COMES IN THE PACKAGE? 1) simplepie.inc - The SimplePie library. This is all that's required for your pages. 2) README.txt - This document. 3) LICENSE.txt - A copy of the BSD license. 4) compatibility_test - The SimplePie compatibility test that checks your server for required settings. 5) demo - A basic feed reader demo that shows off some of SimplePie's more noticable features. 6) idn - A third-party library that SimplePie can optionally use to understand Internationalized Domain Names (IDNs). 7) test - SimplePie's unit test suite. This is only available in SVN builds. TO START THE DEMO: 1) Upload this package to your webserver. 2) Make sure that the cache folder inside of the demo folder is server-writable. 3) Navigate your browser to the demo folder. SUPPORT: For further setup and install documentation, function references, etc., visit: http://simplepie.org/wiki/ For bug reports, feature requests and other support, visit: http://simplepie.org/support/ For more insight on SimplePie development, visit: http://simplepie.org/development/ home/academiac/www/templates/atomic/css/blueprint/src/README.txt 0000644 00000010123 15140601641 0020535 0 ustar 00 h1. Blueprint CSS Framework Readme Welcome to Blueprint! This is a CSS framework designed to cut down on your CSS development time. It gives you a solid foundation to build your own CSS on. Here are some of the features BP provides out-of-the-box: * An easily customizable grid * Sensible default typography * A typographic baseline * Perfected browser CSS reset * A stylesheet for printing * Powerful scripts for customization * Absolutely no bloat! h2. Project Info * *Web*: "http://blueprintcss.org":http://blueprintcss.org * *Source*: "http://github.com/joshuaclayton/blueprint-css":http://github.com/joshuaclayton/blueprint-css * *Wiki*: "http://github.com/joshuaclayton/blueprint-css/wikis/home":http://github.com/joshuaclayton/blueprint-css/wikis/home * *Bug/Feature Tracking*: "http://blueprintcss.lighthouseapp.com":http://blueprintcss.lighthouseapp.com h2. Setup Instructions Here's how you set up Blueprint on your site. # Upload the "blueprint" folder in this folder to your server, and place it in whatever folder you'd like. A good choice would be your CSS folder. # Add the following three lines to every @<head/>@ of your site. Make sure the three @href@ paths are correct (here, BP is in my CSS folder): <pre><code> <link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection"> <link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print"> <!--[if lt IE 8]> <link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection"> <![endif]--></code></pre> Remember to include trailing slashes (" />") in these lines if you're using XHTML. # For development, add the .showgrid class to any container or column to see the underlying grid. Check out the @plugins@ directory for more advanced functionality. h2. Tutorials * "How to customize BP with the compressor script":http://jdclayton.com/blueprints_compress_a_walkthrough.html * "How to use a grid in a layout":http://subtraction.com/2007/03/18/oh-yeeaahh * "How to use a baseline in your typography":http://alistapart.com/articles/settingtypeontheweb h2. Files in Blueprint The framework has a few files you should check out. Every file in the @src@ directory contains lots of (hopefully) clarifying comments. Compressed files (these go in the HTML): * @blueprint/screen.css@ * @blueprint/print.css@ * @blueprint/ie.css@ Source files: * @blueprint/src/reset.css@<br/> This file resets CSS values that browsers tend to set for you. * @blueprint/src/grid.css@<br/> This file sets up the grid (it's true). It has a lot of classes you apply to @<div/>@ elements to set up any sort of column-based grid. * @blueprint/lib/blueprint/grid.css.erb@<br/> This file is used by the compressor (see below) when generating grids. All changes to grid.css are mirrored in this file, manually. * @blueprint/src/typography.css@<br/> This file sets some default typography. It also has a few methods for some really fancy stuff to do with your text. * @blueprint/src/forms.css@<br/> Includes some minimal styling of forms. * @blueprint/src/print.css@<br/> This file sets some default print rules, so that printed versions of your site looks better than they usually would. It should be included on every page. * @blueprint/src/ie.css@<br/> Includes every hack for our beloved IE6 and 7. Scripts: * @lib/compress.rb@<br/> A Ruby script for compressing and customizing your CSS. Set a custom namespace, column count, widths, output paths, multiple projects, and semantic class names. See commenting in @compress.rb@ or run @$ruby compress.rb -h@ for more information. * @lib/validate.rb@<br/> Validates the Blueprint core files with the W3C CSS validator. Other: * @blueprint/plugins/@<br/> Contains additional functionality in the form of simple plugins for Blueprint. See individual readme files in the directory of each plugin for further instructions. * @tests/@<br/> Contains html files which tests most aspects of Blueprint. Open @tests/index.html@ for further instructions. h2. Extra Information * For credits and origins, see AUTHORS. * For license instructions, see LICENSE. * For the latest updates, see CHANGELOG. home/academiac/www/templates/atomic/css/blueprint/plugins/tabs/README.txt 0000644 00000002307 15140612373 0022371 0 ustar 00 h1. Blueprint CSS Tabs Plugin Readme This plugin adds a simple and flexible set of horizontal tabs to Blueprint. h2. Usage: # Upload the screen.css file to a new directory on your server (preferably tabsplugin/) # Include the plugin file in the @<head/>@ of your webpage. <link rel="stylesheet" href="tabsplugin/screen.css" type="text/css" media="screen,projection"> # Add the class @"tabs"@ to your list. An example: <pre> <ul class='tabs'> <li><a href='#text1'>Tab 1</a></li> <li><a href='#text2'>Tab 2</a></li> <li><a href='#text3'>Tab 3</a></li> </ul> </pre> h2. More options: You can add a label to your list by adding the class @"label"@ to the first item. This item should not have a link in it. <pre> <ul class='tabs'> <li class='label'>This is a "label":</li> <li><a href='#text1'>Tab 1</a></li> <li><a href='#text2'>Tab 2</a></li> <li><a href='#text3'>Tab 3</a></li> </ul> </pre> You can mark the currently selected item with the class @"selected"@. <pre> <ul class='tabs'> <li><a href='#text1' class='selected'>Tab 1</a></li> <li><a href='#text2'>Tab 2</a></li> <li><a href='#text3'>Tab 3</a></li> </ul> </pre> h2. Demo: View a demo at "blueprintcss.org":http://blueprintcss.org/demos/tabs.html home/academiac/www/templates/atomic/css/blueprint/plugins/silksprite/README.txt 0000644 00000000066 15140612414 0023625 0 ustar 00 README http://www.ajaxbestiary.com/Labs/SilkSprite/
©
2018.