Commit Graph
438 Commits
Author SHA1 Message Date
Tim Almdal dff53d9e31 Fix for ticket #27
Change the text of the edit button to "close" if the panel is opened.
Reset the original text when the panel is closed.
2009-04-03 19:01:37 +00:00
Chad Kieffer a57d0d93a8 Add quick edit pane to resize images, ticket #189 2009-03-31 05:14:40 +00:00
Bharat Mediratta 921f3a2eee Put csrf token into Admin_View and Theme_View by default, then use it
directly wherever possible instead of access::csrf_token().
2009-03-27 03:43:21 +00:00
Jakob Hilden b909132f54 tag changes in the tag admin should now work as expected 2009-03-25 04:47:25 +00:00
Bharat Mediratta 2067314186 untabify 2009-03-25 01:34:04 +00:00
Jakob Hilden 9a04156e36 background image for the "select photos ..." button in the uploader 2009-03-20 18:25:38 +00:00
Tim Almdal 863e353911 rollback of r20469... see trac #161 2009-03-20 17:20:17 +00:00
Tim Almdal 48c022e8cb Rather than moving the themeroller and all of its associated files
into each theme.  I chose to create methods Theme_View::file($path)
and Admin_View::file($path).  These methods check for a theme override
file in the theme and return a link to it if it exists.  So to
override the themeroller files. just create a lib/themeroller in the
theme and the files will be picked up.
2009-03-20 14:59:55 +00:00
Chad Kieffer 3dbf9e1c82 Remove YUI grids hd and ft ids, we don't need and they're cluttering our HTML. 2009-03-19 16:01:41 +00:00
Chad Kieffer 591403d794 Added rotate cc and ccw icons to themeroller theme and css to default theme, applied to quick pane rotate buttons. Hope that jQuery UI includes rotate icons eventrually so we don't have to maintain this. 2009-03-18 06:15:37 +00:00
Chad Kieffer a20241f9ea Stop header height from collapsing when there's no breadcrumb present, as is the case with tag albums. Thanks to gadulia for reporting: http://gallery.menalto.com/gallery_3.0_alpha_1_released?page=1#comment-302916 2009-03-18 05:16:58 +00:00
Bharat Mediratta 7cf0313e7b Remove the in-place tag editing code from the default theme. It
should be implemented in the tags module for now, and then possibly
generalized out to lib later on.
2009-03-17 20:59:24 +00:00
Bharat Mediratta 0f6e826860 Even out the padding for #gAddPhotosQueue .box 2009-03-17 06:05:46 +00:00
Chad Kieffer 920804bd47 Style breadcrumb in photo upload dialog 2009-03-17 05:57:40 +00:00
Bharat Mediratta c6f03284c4 Make the gAddPhotosCanvas take up the entire dialog, for now. 2009-03-17 05:28:43 +00:00
Bharat Mediratta 0f5ccc9aa3 Switch from using SimpleUploader to using swfUpload as our flash based
uploader.  This is modeled on
http://codex.gallery2.org/Gallery3:Upload_UX but is not yet complete.

Notes:
* Changed #gProgressBar to .gProgressBar to support multiple progress
  bars on the same page
* Added a bunch of CSS to the "needs a home" section in
  themes/default/css/screen.css
2009-03-17 05:20:37 +00:00
Chad Kieffer af83f5d3fc Simplify gError, gWarning, gInfo, gSuccess selectors to allow them to be used within more elements. Updated gError styles in forms. 2009-03-17 05:11:17 +00:00
Tim Almdal 8afefb9be5 Remove mptt warning message hack 2009-03-17 05:07:36 +00:00
Chad Kieffer c377ffc2a5 Ticket #97. Applied button css where missing. Minor form css improvements. 2009-03-16 05:50:05 +00:00
Bharat Mediratta 736d74d05f Clean up the login, maintenance login and required-top-level-login code.
We now have two clear and separate login approaches:
  login/ajax
  login/html

Choose the one that's appropriate.  Totally simplified the maintenance
page to be separate from the theme and dead simple, and use login/html
approach there.  Totally simplified the top level login
(login_page.html.php) to just be a login page, not the rest of the
chrome on the page and use the login/ajax approach there.

Don't use access::required in albums and then catch the exception,
instead use access::can and check the return code.

Improve the text for maintenance mode.
2009-03-16 04:33:45 +00:00
Tim Almdal 13a337b6cd Add a new css selector for the high lighting a warning on the MPTT
graphical display screen in the developer module.
2009-03-16 02:58:15 +00:00
Tim Almdal 74768e4cea The first incarnation of the developer tools. This allows the user to
enter a module name, a description and pick the call backs and or
events they want to support and generate the basic module skeleton
with one click.
@todo: clone a module, clone a theme, generate skeleton controller,
view,
2009-03-13 22:15:16 +00:00
Tim Almdal 85f2c6b666 Move the setting of the page title into the controller that is
creating the page.  Provide for a default page title if none is
set. This allows less changes to page.html.php as different modules
want to change the page title.
2009-03-12 16:06:13 +00:00
Tim Almdal b82b60c91a Rename tag.html.php to dynamic.html.php as part of ticket #115
creating Dynamic Albums.  This name change reflects the usage better
and allows multiple dynamic albums (including tags) to use the same
page template.
2009-03-12 15:40:08 +00:00
Chad Kieffer ec195a5721 Lighten color of user name in login menu 2009-03-12 04:46:14 +00:00
Chad Kieffer 5b5893b628 Minor after install message edits, added updated Gallery logo alt description 2009-03-12 04:23:53 +00:00
Tim Almdal 7dae7dc510 Strip down the loin page (not sure if this is what bharat had in mind) 2009-03-12 03:54:17 +00:00
Tim Almdal e58b955d4a Bag the header("Location:", ...);exit() and replace with
url:site(url::abs_file(...))
Create a login_page.html to be used when there is no guest access to
the root album. It doesn't have a sidebar nor breadcrumb.
2009-03-11 21:07:21 +00:00
Tim Almdal a521d9177f Force a login if everybody does not have access to the root
item. ticket #118.
2009-03-11 13:58:38 +00:00
Bharat Mediratta f0be5c7c03 Undo "#gProgressBar { visibility: hidden }", introduced in r20264
which caused the progress bar to be invisible for admin/maintenance
tasks.
2009-03-09 07:48:36 +00:00
Tim Almdal 7786bb09d3 Implement a Maintenance mode as per ticket: #15 2009-03-05 00:32:33 +00:00
Tim Almdal c0e65b2029 move server_add styles into the theme screen.css files 2009-03-04 16:36:41 +00:00
Bharat Mediratta df7b05b40e Move tag CSS into admin theme's screen.css
Use JS to add titles to avoid repeating the same text 10s of times.
2009-02-26 03:38:56 +00:00
Bharat Mediratta 07310c8499 Add slightly more visual feedback when you're hovering over a
draggable user.  Also, drag the icon and name not just the icon.
2009-02-26 03:05:29 +00:00
Bharat Mediratta 4f77e7bdce Support adding custom header/footer text to themes via admin/theme_details 2009-02-26 02:47:38 +00:00
Chad Kieffer 2e06250f9a Restore sidebar_top() 2009-02-25 06:54:41 +00:00
Bharat Mediratta 515c081f79 Add support MP4 movies also. Flowplayer supports them and can stream
them using the h264streaming plugin.  Everything else is a fairly
minor change.
2009-02-25 05:27:29 +00:00
Andy Staudacher e031957354 File structure style fixes 2009-02-24 05:54:19 +00:00
Chad Kieffer cd8d1c6582 Temp fix for photostreamin admin dashboard, other miscellaneous css fixes. Apply jQuery UI button css to submit inputs in the admin theme. 2009-02-23 05:14:05 +00:00
Chad Kieffer 2ab18bbd45 Restored txtright class that I'd deleted and forgotten to restore during debugging 2009-02-23 04:37:16 +00:00
Chad Kieffer 1af62de44c Partial next/last pager fix for IE 6 and 7. Button's width is still foced to 100%. Think this is a jQuery UI CSS issue and I haven't figured out an override for it yet. 2009-02-23 03:39:44 +00:00
Jakob Hilden 7d96448ecb added additional comment link, if no comments have been made yet. 2009-02-23 00:46:25 +00:00
Chad Kieffer 1aa21cb2ab Need to have next/previous in place in a disabled state to maintain pager layout. 2009-02-22 08:20:08 +00:00
Chad Kieffer 9b73213693 Add Cancel link next to submit buttons in dialogs. Apply button style to buttons in dialogs. 2009-02-22 08:05:15 +00:00
Chad Kieffer 9344141231 Minor fixes to gAlbumGrid and gPager 2009-02-22 07:32:38 +00:00
Bharat Mediratta baff63b70b Very basic movie support. You can upload a FLV file, we use ffmpeg to
extract a thumbnail out of it and if you click through we show it
using flowplayer.
2009-02-22 05:21:44 +00:00
Chad Kieffer e6836d8a5e Apply button styles to pager buttons and position in consistent locations. 2009-02-22 02:09:48 +00:00
Tim Almdal 2b047aaca9 Change #Breadcrumbs to a css class. This allows the formatting to be
used multiple times on the same page. (For example in a dialog box
such as in jhilden's upload mockup)
2009-02-20 14:11:33 +00:00
Chad Kieffer 5dcf2794c5 Fixes to comment admin buttons. 2009-02-20 07:10:20 +00:00
Bharat Mediratta bcea2a6228 Hide the menu until we can superfish it so that we don't see the
unstyled list appear which causes the page layout to flicker.
2009-02-15 22:52:01 +00:00