Redesigned the CMS_BLOCK system,
- added condition attribute. It can be set via configuration file
with
[blocks]
{blockid}.region={region_name}
{blockid}.conditions[]=is_front
{blockid}.conditions[]=path:location-path/foo/bar
- For backward compatibility, the CMS will check only conditions for block name prefixed by "?".
Improved the configuration library to support list and table properties.
Updated theme for now, to include the feed examples.
Added "cache" classes, to ease caching of html output for instance. (TODO: improve by providing a cache manager).
61 lines
1.1 KiB
Plaintext
61 lines
1.1 KiB
Plaintext
note
|
|
description: "Condition for block to be displayed."
|
|
date: "$Date$"
|
|
revision: "$Revision$"
|
|
|
|
class
|
|
CMS_BLOCK_EXPRESSION_CONDITION
|
|
|
|
inherit
|
|
CMS_BLOCK_CONDITION
|
|
|
|
create
|
|
make,
|
|
make_none
|
|
|
|
feature {NONE} -- Initialization
|
|
|
|
make (a_exp: READABLE_STRING_8)
|
|
do
|
|
expression := a_exp
|
|
end
|
|
|
|
make_none
|
|
do
|
|
make ("<none>")
|
|
end
|
|
|
|
feature -- Access
|
|
|
|
description: STRING_32
|
|
do
|
|
create Result.make_from_string_general ("Expression: %"")
|
|
Result.append_string_general (expression)
|
|
Result.append_character ('%"')
|
|
end
|
|
|
|
expression: STRING
|
|
|
|
feature -- Evaluation
|
|
|
|
satisfied_for_response (res: CMS_RESPONSE): BOOLEAN
|
|
local
|
|
exp: like expression
|
|
do
|
|
exp := expression
|
|
if exp.same_string ("is_front") then
|
|
Result := res.is_front
|
|
elseif exp.same_string ("*") then
|
|
Result := True
|
|
elseif exp.same_string ("<none>") then
|
|
Result := False
|
|
elseif exp.starts_with ("path:") then
|
|
Result := res.location.same_string (exp.substring (6, exp.count))
|
|
end
|
|
end
|
|
|
|
note
|
|
copyright: "2011-2015, Jocelyn Fiat, Javier Velilla, Eiffel Software and others"
|
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
|
end
|