Commit Graph

4434 Commits

Author SHA1 Message Date
jowall
b5beb34994 Added "sticky" footer.
--HG--
branch : dev
2011-02-16 12:49:44 -08:00
Dave Reed
2ef3bae5c2 Merge
--HG--
branch : dev
2011-02-16 11:13:36 -08:00
Dave Reed
aefbacd59f Remove upload parameter from mediapicker, it already knows it.
Improve thumbnail centering.

--HG--
branch : dev
2011-02-16 11:12:59 -08:00
Andre Rodrigues
c8d7c8c1c8 Merge
--HG--
branch : dev
2011-02-16 11:05:01 -08:00
Andre Rodrigues
1951b30189 Updating titles to new position.
--HG--
branch : dev
2011-02-16 11:04:36 -08:00
Sebastien Ros
b3d1ac6ae2 Addind a unit test for Search
--HG--
branch : dev
2011-02-16 10:56:04 -08:00
Andre Rodrigues
4bf1b2e389 Updating installed themes page.
--HG--
branch : dev
2011-02-16 10:22:09 -08:00
Nathan Heskew
ec478ec34b Updating the admin layout to not use abs positioning for the fixed-width sidebar w/ a fluid content area.
--HG--
branch : dev
2011-02-16 08:51:47 -08:00
Dave Reed
df39f5a43c Merge
--HG--
branch : dev
2011-02-15 16:25:04 -08:00
Dave Reed
fbf9f79506 Added missing files :)
--HG--
branch : dev
2011-02-15 16:24:34 -08:00
jowall
52e686c172 Added a default icon to the admin menu.
--HG--
branch : dev
2011-02-15 16:20:15 -08:00
Dave Reed
a5dd56f6b9 Merge
--HG--
branch : dev
2011-02-15 16:02:53 -08:00
Dave Reed
a2e177de76 Smoothing over some MediaPicker rough edges.
- Can now upload images to a specific folder
- Can now create folders in gallery tab
- Images are scaled before drawn
- Added throbber on image uploads
- Clicking image ensures Chrome displays the image instead of downloads it
- After uploading image the image is selected

--HG--
branch : dev
2011-02-15 16:02:02 -08:00
jowall
2b3a17e858 Updated primary button.
--HG--
branch : dev
2011-02-15 15:50:01 -08:00
Suha Can
eb24ea67b0 Implementation for the recipe scheduler. It's a work item queue.
The recipe manager queues recipe steps as tasks and the scheduler component schedules/executes them in tasks.

--HG--
branch : recipe
2011-02-15 15:42:21 -08:00
jowall
a38aeb011f Some more updates to the admin CSS.
--HG--
branch : dev
2011-02-15 15:25:20 -08:00
Andre Rodrigues
62ee211557 updating tabs CSS. Moving title to before local navigation.
--HG--
branch : dev
2011-02-15 11:58:26 -08:00
jowall
db7625d137 More updates to the admin menu CSS.
--HG--
branch : dev
2011-02-15 11:45:10 -08:00
jowall
160ba8e138 Merge
--HG--
branch : dev
2011-02-15 11:12:12 -08:00
jowall
2b38e551c7 Initial changes to the admin menu CSS.
--HG--
branch : dev
2011-02-15 11:10:59 -08:00
Andre Rodrigues
54e199ca9b Adding UT.
--HG--
branch : dev
2011-02-15 09:51:52 -08:00
Suha Can
d3e4c2ad68 Hooking up StepExecutor/StepQueue into the recipe manager.
--HG--
branch : recipe
2011-02-14 18:01:37 -08:00
Sebastien Ros
949726c9d9 Improving shape tracing display
--HG--
branch : dev
2011-02-14 17:19:44 -08:00
Sebastien Ros
7957701d99 Addind a unit test on Search
--HG--
branch : dev
2011-02-14 17:06:34 -08:00
Suha Can
8ddb5b55b6 Restyling the recipe dropdown
Roughing in some recipe execution concepts...

--HG--
branch : recipe
2011-02-14 16:30:14 -08:00
Renaud Paquay
07bdb257d6 Temporary workaround until Azure Unit Test can run in CI server
--HG--
branch : dev
2011-02-14 16:08:57 -08:00
Suha Can
b66b738a24 More work for various recipe handlers.
--HG--
branch : recipe
2011-02-14 14:00:48 -08:00
Renaud Paquay
ba1f5082fa Renaming target for Azure build
--HG--
branch : dev
2011-02-14 12:47:03 -08:00
Renaud Paquay
ae701e587b Merge
--HG--
branch : dev
2011-02-14 12:40:11 -08:00
Renaud Paquay
8a32060aee Changing azure build folder name
--HG--
branch : dev
2011-02-14 12:36:03 -08:00
Renaud Paquay
ec36d17cf8 Temporary fix for compilation errors
--HG--
branch : dev
2011-02-14 12:34:05 -08:00
Sebastien Ros
e961476574 Merge
--HG--
branch : dev
2011-02-14 11:16:16 -08:00
Sebastien Ros
a63f6407c7 Adding unit tests for placement.info Path contraint
--HG--
branch : dev
2011-02-14 11:15:36 -08:00
Suha Can
2a13c106a3 Reach out to the RecipeManager in the tenant shell to execute context.Recipe
Fixing a comment.

--HG--
branch : recipe
2011-02-12 15:10:49 -08:00
Suha Can
e5c821dab3 Injecting RecipeHarvester impl into the safe mode shell
Setup to call the harvester for the recipes list
SetupContext now contains the recipe for the site, which will be executed
Updated minimal,blog and cms recipe files
Added recipe description to the setup view model to keep it between posts in case of errors

--HG--
branch : recipe
2011-02-12 14:57:11 -08:00
Suha Can
578c107da3 Breaking up IRecipeManager in two components: IRecipeHarvester (harvest and parse) and IRecipeManager (execute)
Renaming DiscoverRecipes to HarvestRecipes for consistency with other harvesters we have in Orchard.
Renaming MetaData to Metadata for the recipe step and its handler.
Moving recipe information elements in the recipe to under the Recipe element, renaming root element to Orchard and modifying the parser accordingly.
Using element.Name.LocalName in the parser.
Fixing whitespaces in a couple places, setting the Orchard.Recipes assembly copyright information and making the assembly securitytransparent.
Refactoring code and unit tests as a result of to above.

--HG--
branch : recipe
2011-02-12 13:42:33 -08:00
Sebastien Ros
526aa949bf Fixing ObjectDumper duplicated attributes
--HG--
branch : dev
2011-02-11 18:14:00 -08:00
Suha Can
096e5e1d42 Fixing bug with NOP select option in setup ui for recipes
Calling T() on a couple strings

--HG--
branch : recipe
2011-02-11 16:49:40 -08:00
Sebastien Ros
da189c2427 Fixing Placement.info unit tests (c) loudej
--HG--
branch : dev
2011-02-11 16:43:14 -08:00
Suha Can
b24562ec6b Setting an attribute for a custom recipe handler in the test file.
--HG--
branch : recipe
2011-02-11 16:18:13 -08:00
Suha Can
194796c479 RecipeManager::Execute invokes RecipeHandlers
Added built-in recipehandlers
Unit test for handler invocation.

--HG--
branch : recipe
2011-02-11 16:15:00 -08:00
Sebastien Ros
b7d8e56398 Dumping the model in Shape Tracing
--HG--
branch : dev
2011-02-11 15:33:33 -08:00
Andre Rodrigues
2d890f54a0 Removing codegen warning when solution is not present.
--HG--
branch : dev
2011-02-11 15:03:34 -08:00
Andre Rodrigues
f29a645d48 #17336: Setting codegen command "IncludeInSolution" option default to true.
--HG--
branch : dev
2011-02-11 14:42:23 -08:00
Suha Can
1acd0f0031 Setup UI for recipes
Choose a recipe is shown if there are recipes in the setup module
Added jquery to the setup view
Recipe description gets shown for selected option via jquery

--HG--
branch : recipe
2011-02-11 14:36:35 -08:00
Andre Rodrigues
03eb6ee8ec Updating Modules / Packaging / Themes menus.
--HG--
branch : dev
2011-02-11 14:13:55 -08:00
Andre Rodrigues
14a7ada113 Converting local navs to a new core shape (AKA making louis happy :))
--HG--
branch : dev
2011-02-11 14:13:38 -08:00
Andre Rodrigues
042968453b Adding local nav functionality.
--HG--
branch : dev
2011-02-11 12:45:28 -08:00
Suha Can
fbc3bf0a0c Recipe parser and related unit tests.
Metadata for blog,cms and minimal recipes in Setup.

--HG--
branch : recipe
2011-02-11 12:14:03 -08:00
Renaud Paquay
e796652c0b Adding Azure target to main msbuild file
--HG--
branch : dev
2011-02-11 11:23:14 -08:00