Commit Graph

97 Commits

Author SHA1 Message Date
Louis DeJardin
06868e412a Adding SpecFlow bindings for integration testing user's permissions
Enables automated testing of urls and redirects with querystring
Adds bindings for:
-Creating account with a fixed set of permissions
-Login of a user
-Success criteria for seeing text on a page
-Success criteria for being denied access to a page

--HG--
branch : dev
extra : rebase_source : 66e7b33cf7a596050d27eda6351605ed86420af2
2010-12-14 17:50:47 -08:00
Renaud Paquay
517725b5ce Moving scripting engine to Orchard.Scripting
--HG--
branch : dev
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Ast/AbstractSyntaxTree.cs => src/Orchard.Web/Modules/Orchard.Scripting/Ast/AbstractSyntaxTree.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Ast/AstNode.cs => src/Orchard.Web/Modules/Orchard.Scripting/Ast/AstNode.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Ast/AstVisitor.cs => src/Orchard.Web/Modules/Orchard.Scripting/Ast/AstVisitor.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Ast/BinaryAstNode.cs => src/Orchard.Web/Modules/Orchard.Scripting/Ast/BinaryAstNode.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Ast/ConstantAstNode.cs => src/Orchard.Web/Modules/Orchard.Scripting/Ast/ConstantAstNode.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Ast/ErrorAstNode.cs => src/Orchard.Web/Modules/Orchard.Scripting/Ast/ErrorAstNode.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Ast/IAstNodeWithToken.cs => src/Orchard.Web/Modules/Orchard.Scripting/Ast/IAstNodeWithToken.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Ast/MethodCallAstNode.cs => src/Orchard.Web/Modules/Orchard.Scripting/Ast/MethodCallAstNode.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Ast/UnaryAstNode.cs => src/Orchard.Web/Modules/Orchard.Scripting/Ast/UnaryAstNode.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Compiler/Interpreter.cs => src/Orchard.Web/Modules/Orchard.Scripting/Compiler/Interpreter.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Compiler/InterpreterVisitor.cs => src/Orchard.Web/Modules/Orchard.Scripting/Compiler/InterpreterVisitor.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Compiler/Lexer.cs => src/Orchard.Web/Modules/Orchard.Scripting/Compiler/Lexer.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Compiler/Parser.cs => src/Orchard.Web/Modules/Orchard.Scripting/Compiler/Parser.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Compiler/Token.cs => src/Orchard.Web/Modules/Orchard.Scripting/Compiler/Token.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Compiler/TokenKind.cs => src/Orchard.Web/Modules/Orchard.Scripting/Compiler/TokenKind.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/Compiler/Tokenizer.cs => src/Orchard.Web/Modules/Orchard.Scripting/Compiler/Tokenizer.cs
rename : src/Orchard.Web/Modules/Orchard.Widgets/SimpleScripting/ScriptingManager.cs => src/Orchard.Web/Modules/Orchard.Scripting/ScriptingManager.cs
2010-11-28 10:54:21 -08:00
Renaud Paquay
5cdb528d2b Step 2 in renaming Orchard.Scripting to Orchard.Scripting.Dlr
--HG--
branch : dev
rename : src/Orchard.Tests.Modules/Scripting/ScriptingTests.cs => src/Orchard.Tests.Modules/Scripting.Dlr/ScriptingTests.cs
rename : src/Orchard.Tests.Modules/SimpleScripting/EvaluatorTests.cs => src/Orchard.Tests.Modules/Scripting/EvaluatorTests.cs
rename : src/Orchard.Tests.Modules/SimpleScripting/ParserTests.cs => src/Orchard.Tests.Modules/Scripting/ParserTests.cs
rename : src/Orchard.Tests.Modules/SimpleScripting/SimpleScriptingTests.cs => src/Orchard.Tests.Modules/Scripting/SimpleScriptingTests.cs
rename : src/Orchard.Tests.Modules/SimpleScripting/TokenizerTests.cs => src/Orchard.Tests.Modules/Scripting/TokenizerTests.cs
rename : src/Orchard.Web/Modules/Orchard.Scripting.Dlr/Orchard.Scripting.csproj => src/Orchard.Web/Modules/Orchard.Scripting.Dlr/Orchard.Scripting.Dlr.csproj
2010-11-28 10:01:59 -08:00
Andre Rodrigues
d6d6dcf138 #16767: Delete "PackageReferenceImplementation" project
--HG--
branch : dev
2010-11-21 07:44:39 -08:00
andrerod
b911cbb13b Moving scripting outside of framework.
--HG--
branch : dev
2010-11-18 23:50:28 -08:00
Sebastien Ros
75d3c5b13c Reorganizing modules for new build process
--HG--
branch : dev
2010-11-18 16:01:09 -08:00
Nathan Heskew
12eccd479a Adding Orchard.Pages and removing base Page type configuratino to said module
--HG--
branch : dev
2010-11-14 14:34:01 -08:00
Louis DeJardin
63bfc96e82 Removing ContentQueries placeholder
This approach may return in the future, but is out of scope for v1

--HG--
branch : dev
2010-11-08 15:39:23 -08:00
Louis DeJardin
2993f015a5 Adding Orchard.Lists module
Creates generic List content type as an out-of-box container
Will hold ListWidget when written

--HG--
branch : dev
2010-11-08 15:36:24 -08:00
Nathan Heskew
9a5239e777 Starting the new queried content list module.
Everything for the new part, content type and widget are there except for what makes them useful (back-end logic & data and complete shape templates)

--HG--
branch : dev
2010-10-28 15:30:14 -07:00
Sebastien Ros
8ef266dc13 Moving PublishLater from Core
--HG--
branch : dev
2010-10-25 18:21:19 -07:00
Nathan Heskew
5328042f8a Updating the Shapes info file and adding a little Zone info
--HG--
branch : dev
2010-10-18 22:15:28 -07:00
Sébastien Ros
4d1f82ced6 Trying to correct the tests on CI by renaming the new Themes project
--HG--
branch : dev
2010-10-16 14:54:43 -07:00
Nathan Heskew
262f4a4559 Getting Orchard.Blogs on the new UI composition model (for display)
--HG--
branch : dev
2010-10-15 14:40:35 -07:00
Renaud Paquay
21f391b143 Move themes out of Orchard.Web
--HG--
branch : dev
2010-10-14 15:50:16 -07:00
Sebastien Ros
8cc9daeff6 Adding static root files to Azure solution
--HG--
branch : dev
2010-10-13 11:46:42 -07:00
Andre Rodrigues
788ca7d69f Created migration module and moved controller and view from experimental.
--HG--
branch : dev
2010-09-30 16:29:29 -07:00
Andre Rodrigues
b49f3b82ce Adding experimental project to the solution after merge.
--HG--
branch : dev
2010-09-29 16:19:51 -07:00
Andre Rodrigues
6888b3f81a Merge
--HG--
branch : dev
2010-09-29 16:18:26 -07:00
Andre Rodrigues
d0d60f2c1f Added the codegeneration module.
--HG--
branch : dev
2010-09-29 15:56:18 -07:00
Suha Can
19313b887f - Obsoleting Futures.Widgets in favor of Orchard.Widgets.
--HG--
branch : dev
2010-09-29 13:35:57 -07:00
Dave Reed
714ec54d0d - Converted ResourceManifests to provider/builder pattern.
- Removed ability to require a minimum version

--HG--
branch : dev
2010-09-27 13:56:05 -07:00
Nathan Heskew
6f59fbabc9 Merge
--HG--
branch : dev
2010-09-17 01:09:37 -07:00
Nathan Heskew
f6d4d05c22 Migrating Orchard.Blogs
--HG--
branch : dev
2010-09-17 01:00:24 -07:00
Dave Reed
c83b91e5c5 Added new ResourceManager and converted modules to use it. See sln notes ResourceManager.txt for open items.
--HG--
branch : dev
2010-09-16 17:35:01 -07:00
Louis DeJardin
e736fd6a83 Adding Lucene module
--HG--
branch : dev
2010-09-15 19:55:44 -07:00
Louis DeJardin
8fdcd25254 Converting Futures.Widgets module
--HG--
branch : dev
2010-09-15 19:50:58 -07:00
Suha Can
a0175b5129 - Readding Orchard.Search
--HG--
branch : dev
2010-09-15 15:31:24 -07:00
Suha Can
69bcab3550 - Orchard.Indexing...
--HG--
branch : dev
2010-09-15 14:06:34 -07:00
Suha Can
e854a5e39e - Bringing ArchiveLater back
- Fixing a couple issues in Comments views.

--HG--
branch : dev
2010-09-15 13:36:56 -07:00
Suha Can
668f356331 - Bringing the Comments module back.
--HG--
branch : dev
2010-09-15 12:13:19 -07:00
Louis DeJardin
2d5adfc0f1 Adding Orchard.MultiTenancy
--HG--
branch : dev
2010-09-14 18:26:06 -07:00
Suha Can
9f68683eb7 - Adding Orchard.Email back
--HG--
branch : dev
2010-09-14 16:02:47 -07:00
Suha Can
cfd3b5fa48 - Bringing Orchard.Media
--HG--
branch : dev
2010-09-14 15:39:11 -07:00
Louis DeJardin
6652ec0ae7 Changing clay to binary dependency
--HG--
branch : dev
extra : rebase_source : 362e2533fa0ce5df0e0b41b7d11f94077c43c013
2010-09-14 14:56:02 -07:00
Suha Can
6a55a20a31 - Bringing Orchard.Tags back
--HG--
branch : dev
2010-09-14 14:49:34 -07:00
Louis DeJardin
3ef83d903d Bringing TinyMce back to life
--HG--
branch : dev
2010-09-14 14:21:35 -07:00
Sebastien Ros
a49555d6ab Migrating Orchard.ContentType
- Needs some more work on displaying children shapres

--HG--
branch : theming
2010-09-13 13:34:51 -07:00
Sebastien Ros
f9de6ec621 Migrating Orchard.Modules and Orchard.Packaging
--HG--
branch : theming
2010-09-10 13:14:07 -07:00
Louis DeJardin
899abcca96 Further shapes work
Adding the ability to bind a method with a TextWriter Output parameter
Bringing over work from UnorderedList
Parameter bound with GetMember instead of array access to be compatible with base class properties

--HG--
branch : theming
2010-09-08 19:30:30 -07:00
Nathan Heskew
69a18e8a53 Pulling references to a bunch of modules not necessary for a minimum configuration
--HG--
branch : dev
2010-09-01 11:31:26 -07:00
Louis DeJardin
a744a3221f Updating display/shape services
--HG--
branch : mvc3p1
2010-08-25 21:42:53 -07:00
Louis DeJardin
d16a0875a0 Adding subrepos
--HG--
branch : mvc3p1
2010-08-25 16:28:02 -07:00
Louis DeJardin
4a84a0d591 Adding mvc3/razor placeholder support
Unofficial bits - do not use.
Integrates with mvc3 CSL hooks
Adds razor view engine to default configuration

--HG--
branch : mvc3p1
2010-08-23 13:10:12 -07:00
Sebastien Ros
1f4b3e2744 Changed namespaces
--HG--
branch : dev
2010-08-04 14:52:18 -07:00
Sebastien Ros
49b06ff644 Orchard.ArchiveLater module
--HG--
branch : dev
2010-08-04 13:42:06 -07:00
Renaud Paquay
89a3186cef Merge OrchardCLI.exe with Orchard.exe
--HG--
branch : dev
2010-07-28 14:11:28 -07:00
Renaud Paquay
f846335852 Fix command line parser to support quotes
--HG--
branch : dev
2010-07-28 13:06:48 -07:00
Renaud Paquay
b61d6fcc63 Interactive orchard command line tool
--HG--
branch : dev
2010-07-24 13:43:38 -07:00
Nathan Heskew
cd6043aeb3 Removing Orchard.Pages (Page type covered by core app features: Contents, Common, PublishLater, Route, Comments, Tags & Localization)
--HG--
branch : dev
2010-07-23 09:46:02 -07:00