summaryrefslogtreecommitdiff
path: root/themes/default
AgeCommit message (Collapse)Author
2008-11-14Remove class="gInline" and set the css as suggested by thumb in -develTim Almdal
2008-11-14Move logout to its own controllerBharat Mediratta
2008-11-13Progress is being made... you can now logoutTim Almdal
2008-11-13Login is now working, but you can't logoutTim Almdal
2008-11-13Only highlight text, radio, checkbox, select, and textarea elements in forms ↵Chad Kieffer
or list items with gError. Don't highlight submit, reset inputs.
2008-11-13Adds the class gError to gLogin if the username or password is in errorTim Almdal
2008-11-13It's #gLogin, not #gLoginForm. My bad...Chad Kieffer
2008-11-13Removed padding on form text inputs, normalized font size of forms in header ↵Chad Kieffer
and sidebar.
2008-11-13Major updates to form CSS. Now using unordered lists for layouts. Added ↵Chad Kieffer
.gInline for forms like login, search, tags. Updated comment, login, search, and tagging forms. All form styles live in screen.css now. Still a lot to do, but this is a good foundation.
2008-11-12The login processing is starting to take shape. Login_Form is gone. The ↵Tim Almdal
html for the login form is retrieve via an ajax call when the user clicks on login. Can't login with a valid id yet, but you certainly get error messages when things are wrong :-)
2008-11-12Added a legend to the fieldsetTim Almdal
2008-11-12Generate the login view using fieldsets and an un order listTim Almdal
2008-11-12Clean up alignment in the login menu when the login form is displayedTim Almdal
2008-11-12Remove user_password class and move the functionality into the user helper classTim Almdal
2008-11-12More updates for user management. The controllers don't work yet. But the ↵Tim Almdal
login link in the header wil open up a login box like the mockup
2008-11-12Added a generic style .gDisplayNoneTim Almdal
2008-11-11Display comments from the database.Jozef Selesi
2008-11-11Added some functionality to the user helper class (to check if the user is ↵Tim Almdal
logged in) and changed the header to use the helper class
2008-11-11Fix header URLs (no longer hardcoded, avoiding nesting of ↵Andy Staudacher
index.php/index.php/ for some environments)
2008-11-11Change Album and Photo controllers to set the user object as a global ↵Tim Almdal
variable; change the header so it links to the user controllers; and add the user controllers which don't do anything.
2008-11-10Reset the links in the header and update the readmeTim Almdal
2008-11-10Indent fixesBharat Mediratta
2008-11-10Indent fixesChad Kieffer
2008-11-10Convert a few more images to ../imagesBharat Mediratta
2008-11-10Switch image paths to relativeBharat Mediratta
2008-11-10The start of the login functionality. It shows the login popup but doesn't ↵Tim Almdal
do anything else. Just got tire of my changes being clobbered :-)
2008-11-10IE fixes. Default theme now looks roughly the same in IE and Firefox. We ↵Chad Kieffer
need to avoid using absolute and relative positioning for our primary layout containers (i.e. gHeader, gFooter, etc.).
2008-11-10jQuery edit in place is so easy, seems like it oughta be added to the photo ↵Chad Kieffer
view :)
2008-11-09IE fixes, sidebar is now fixed in IE (we were missing a yui-g class). ↵Chad Kieffer
Removed .first class, it's not needed, at least not now. Moved all top-level layout containers to page.html.php so that if themers want to replace YUI grids with something else, like Blueprint, they only really need to edit page.html.php.
2008-11-09CSS cleanup. Alphabetized all CSS attributes. Use short form declaration for ↵Chad Kieffer
background. Don't precede decimal values with 0 (.8em instead of 0.8em). Convert colors to short form, use lower case hex alpha values (easier to read), convert keyword colors to hex values. Quoted url paths. Fixed the order of border attributes (width style color). Don't clear floated elements around #gContent.
2008-11-09change url::base() to url::file()Bharat Mediratta
2008-11-08Add support for in-place editing of data fields.Bharat Mediratta
2008-11-08Create permanent owner_id column in the item table, and use a softBharat Mediratta
relationship to bind the two. To do this, I overrode __get in Item_Model so that $item->owner returns the appropriate User_Model.
2008-11-08Adding user (owner) to items; info moduleFelix Rabinovich
2008-11-07Fix the child url to use the item type.Bharat Mediratta
2008-11-07add gMinimize to the block headerBharat Mediratta
2008-11-07indentation fixesBharat Mediratta
2008-11-07Renamed .minimize to .gMinimizeChad Kieffer
2008-11-07move block.html.php into the default themeBharat Mediratta
2008-11-07Add automatic pagination. All you have to do is add <?= $theme->pagerBharat Mediratta
?> to your theme file and you get a well formed pager. Themes can customize this any way they want. A version that matches the mockup is provided in the default theme.
2008-11-07Updated CSS organization and headings, removed unused styles, added ↵Chad Kieffer
placeholders for a few styles, including gThumbnail. Simplified album grid loop, the thumbnail container markup for albums and items was almost identical, no need to repeat all of it. Switched album grid markup from <div> to <ul>. Updated element nesting in photo template.
2008-11-07convert tabs -> spacesBharat Mediratta
2008-11-07Added YUI 2.6.0 CSS collection to lib (reset-gonts-grids and base) and call ↵Chad Kieffer
these rather than CDN versions, for now. Renamed default theme's style sheet to screen.css, recommend that CSS files be named for the primary media they support. Removed unused YUI JS component calls from the default theme.
2008-11-06Oops, these files got left out of r18525.Bharat Mediratta
2008-11-06Break header/sidebar/footer out into separate templates.Bharat Mediratta
2008-11-06Change the theming module again, per a discussion with Chad and Jakob.Bharat Mediratta
Now we have an overall page layout (page.html.php) which has a $content variable, and that $content will be one of several possible secondary views. Currently, it is either photo.html.php or album.html.php. header, footer, breadcrumb, sidebar, anything common to all pages is in page.html.php.
2008-11-05Adjust gTags style since the <ul> is no longer gBlock, it's on a containing div Bharat Mediratta
2008-11-05* Add thumbnail and resize dimensions to the item table and use themBharat Mediratta
properly in the theme. * Move thumbnail and resize generation down into the model for consistency. * Add a sample thumbnail for albums * Fix a bug in the ORM to clear the cache when we reload an object. * Add Kohana docs to the scaffold.
2008-11-05Add the photo controller, and tie it to the photo page in our theme.Bharat Mediratta
Implement a real breadcrumb.
2008-11-05Change the default theme to actually render what's in the Gallery.Bharat Mediratta
Currently only the album view works, albums have no thumbnails, and there's only 1 image in use. Improved Item_Model to have the following API methods file_path() -- returns the path to the source image or album dir thumbnail_path(), thumbnail_url() -- returns path/url to the thumbnail resize_path(), resize_url() -- returns path/url to the resize All tests updated.