Spark 1.1 RC1

0 views
Skip to first unread message

Eric Polerecky

unread,
Feb 27, 2010, 3:34:36 PM2/27/10
to spar...@googlegroups.com
I just pushed the new bits to codeplex that provide support for MVC2 RC2 (and if there are no breaking changes MVC2 RTW)

Please provide feedback and any bugs.

http://sparkviewengine.codeplex.com/releases/view/41143

--
- Eric Polerecky
http://eric.polerecky.com


Louis DeJardin

unread,
Mar 1, 2010, 12:45:32 AM3/1/10
to Spark View Engine Dev
That is excellent news, thank you for getting the ball rolling on
that.

Stephen Vanterpool

unread,
Mar 1, 2010, 11:26:16 PM3/1/10
to Spark View Engine Dev
Hey, does this release properly support areas? I removed my custom fix for
that issue and used this dll, but areas stopped working entirely.


--
You received this message because you are subscribed to the Google Groups
"Spark View Engine Dev" group.
To post to this group, send email to spar...@googlegroups.com.
To unsubscribe from this group, send email to
spark-dev+...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/spark-dev?hl=en.


Louis DeJardin

unread,
Mar 2, 2010, 6:49:53 PM3/2/10
to spar...@googlegroups.com
It's certainly intended to - @nkohari mentioned it was working for him.

Could you send a small repro of the problem?

Stephen Vanterpool

unread,
Mar 2, 2010, 7:16:04 PM3/2/10
to spar...@googlegroups.com
I'll put one together, but quick question, does sparks area implementation differ from base mvc?
 
Sent: Tuesday, March 02, 2010 3:49 PM
Subject: Re: Spark 1.1 RC1

It's certainly intended to - @nkohari mentioned it was working for him.

Could you send a small repro of the problem?


On Mon, Mar 1, 2010 at 8:26 PM, Stephen Vanterpool <ste...@vanterpool.net> wrote:
Hey, does this release properly support areas? I removed my custom fix for that issue and used this dll, but areas stopped working entirely.
-----Original Message----- From: Louis DeJardin
Sent: Monday, March 01, 2010 12:45 AM
To: Spark View Engine Dev
Subject: Re: Spark 1.1 RC1



That is excellent news, thank you for getting the ball rolling on
that.


On Feb 27, 12:34 pm, Eric Polerecky <e...@polerecky.com> wrote:
I just pushed the new bits to codeplex that provide support for MVC2 RC2
(and if there are no breaking changes MVC2 RTW)

Please provide feedback and any bugs.

http://sparkviewengine.codeplex.com/releases/view/41143

--
- Eric Polereckyhttp://eric.polerecky.com


--
You received this message because you are subscribed to the Google Groups "Spark View Engine Dev" group.
To post to this group, send email to spar...@googlegroups.com.
To unsubscribe from this group, send email to mailto:spark-dev%2Bunsu...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/spark-dev?hl=en.


--
You received this message because you are subscribed to the Google Groups "Spark View Engine Dev" group.
To post to this group, send email to spar...@googlegroups.com.
To unsubscribe from this group, send email to mailto:spark-dev%2Bunsu...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/spark-dev?hl=en.

Louis DeJardin

unread,
Mar 2, 2010, 8:19:02 PM3/2/10
to spar...@googlegroups.com
Could be - IIRC the pattern is ~/Views/{area}/{controller}/{viewname}.spark

You can alter that, but it still needs to be in the ~/Views folder. That's something you could call a design flaw - the IViewFolder path is relative to ~/Views/ instead of ~/ so you can't reference files outside of that location at the moment.

That is view-engine specific, really. The pattern is in the WFVE component, not MVC, so Spark also has it's own implementation.

Spark also supported an {area} route value in MVC 1.0, and that was changed to support an {area} route data token to be in line with the MVC 2 implementation.

Stephen Vanterpool

unread,
Mar 2, 2010, 10:34:12 PM3/2/10
to spar...@googlegroups.com
That's the problem. I operated under the assumption (I know, I know) that the area implementation was the same. I split off an areas folder, and in each subfolder I included views/models/controllers. I hacked it up to work with a custom descriptorfilter, but I always thought I was missing something. Now I know!
Sent: Tuesday, March 02, 2010 5:19 PM

Louis DeJardin

unread,
Mar 3, 2010, 8:04:24 PM3/3/10
to Spark View Engine Dev

The ~/Shared path instead of ~/Views/Shared has also come up before
IIRC. Changing from a ~/Views/ base to a ~/ would be a good idea, too.
Especially if it could be done in a non-breaking way.


On Mar 2, 7:34 pm, "Stephen Vanterpool" <step...@vanterpool.net>
wrote:


> That's the problem. I operated under the assumption (I know, I know) that the area implementation was the same. I split off an areas folder, and in each subfolder I included views/models/controllers. I hacked it up to work with a custom descriptorfilter, but I always thought I was missing something. Now I know!
> From: Louis DeJardin
> Sent: Tuesday, March 02, 2010 5:19 PM
> To: spar...@googlegroups.com
> Subject: Re: Spark 1.1 RC1
>
> Could be - IIRC the pattern is ~/Views/{area}/{controller}/{viewname}.spark
>
> You can alter that, but it still needs to be in the ~/Views folder. That's something you could call a design flaw - the IViewFolder path is relative to ~/Views/ instead of ~/ so you can't reference files outside of that location at the moment.
>
> That is view-engine specific, really. The pattern is in the WFVE component, not MVC, so Spark also has it's own implementation.
>
> Spark also supported an {area} route value in MVC 1.0, and that was changed to support an {area} route data token to be in line with the MVC 2 implementation.
>

> On Tue, Mar 2, 2010 at 4:16 PM, Stephen Vanterpool <step...@vanterpool.net> wrote:
>
>   I'll put one together, but quick question, does sparks area implementation differ from base mvc?
>
>   From: Louis DeJardin
>   Sent: Tuesday, March 02, 2010 3:49 PM
>   To: spar...@googlegroups.com
>   Subject: Re: Spark 1.1 RC1
>
>   It's certainly intended to - @nkohari mentioned it was working for him.
>
>   Could you send a small repro of the problem?
>

>   On Mon, Mar 1, 2010 at 8:26 PM, Stephen Vanterpool <step...@vanterpool.net> wrote:
>
>     Hey, does this release properly support areas? I removed my custom fix for that issue and used this dll, but areas stopped working entirely.
>
>     -----Original Message----- From: Louis DeJardin
>     Sent: Monday, March 01, 2010 12:45 AM
>     To: Spark View Engine Dev
>     Subject: Re: Spark 1.1 RC1
>
>     That is excellent news, thank you for getting the ball rolling on
>     that.
>
>     On Feb 27, 12:34 pm, Eric Polerecky <e...@polerecky.com> wrote:
>
>       I just pushed the new bits to codeplex that provide support for MVC2 RC2
>       (and if there are no breaking changes MVC2 RTW)
>
>       Please provide feedback and any bugs.
>
>      http://sparkviewengine.codeplex.com/releases/view/41143
>
>       --
>       - Eric Polereckyhttp://eric.polerecky.com
>
>     --
>     You received this message because you are subscribed to the Google Groups "Spark View Engine Dev" group.
>     To post to this group, send email to spar...@googlegroups.com.
>
>     To unsubscribe from this group, send email to mailto:spark-dev%2Bunsu...@googlegroups.com.
>

>     For more options, visit this group athttp://groups.google.com/group/spark-dev?hl=en.


>
>     --
>     You received this message because you are subscribed to the Google Groups "Spark View Engine Dev" group.
>     To post to this group, send email to spar...@googlegroups.com.
>
>     To unsubscribe from this group, send email to mailto:spark-dev%2Bunsu...@googlegroups.com.
>

>     For more options, visit this group athttp://groups.google.com/group/spark-dev?hl=en.


>
>   --
>   You received this message because you are subscribed to the Google Groups "Spark View Engine Dev" group.
>   To post to this group, send email to spar...@googlegroups.com.
>   To unsubscribe from this group, send email to mailto:spark-dev%2Bunsu...@googlegroups.com.

>   For more options, visit this group athttp://groups.google.com/group/spark-dev?hl=en.


>
>   --
>   You received this message because you are subscribed to the Google Groups "Spark View Engine Dev" group.
>   To post to this group, send email to spar...@googlegroups.com.
>   To unsubscribe from this group, send email to mailto:spark-dev%2Bunsu...@googlegroups.com.

>   For more options, visit this group athttp://groups.google.com/group/spark-dev?hl=en.

Reply all
Reply to author
Forward
0 new messages