blog handler optimized, blog user handler created
This commit is contained in:
@@ -21,7 +21,7 @@ feature -- Access
|
||||
deferred
|
||||
end
|
||||
|
||||
blogs_limited (limit:INTEGER_32; offset:INTEGER_32) : LIST[CMS_NODE]
|
||||
blogs_limited (limit:NATURAL_32; offset:NATURAL_32) : LIST[CMS_NODE]
|
||||
-- List of nodes ordered by creation date from limit to limit + offset
|
||||
deferred
|
||||
end
|
||||
|
||||
@@ -28,7 +28,7 @@ feature -- Access
|
||||
create {ARRAYED_LIST [CMS_NODE]} Result.make (0)
|
||||
end
|
||||
|
||||
blogs_limited (limit:INTEGER_32; offset:INTEGER_32) : LIST[CMS_NODE]
|
||||
blogs_limited (limit:NATURAL_32; offset:NATURAL_32) : LIST[CMS_NODE]
|
||||
-- List of nodes ordered by creation date from limit to limit + offset
|
||||
do
|
||||
create {ARRAYED_LIST [CMS_NODE]} Result.make (0)
|
||||
|
||||
@@ -49,7 +49,7 @@ feature -- Access
|
||||
end
|
||||
end
|
||||
|
||||
blogs_limited (a_limit:INTEGER_32; a_offset:INTEGER_32) : LIST[CMS_NODE]
|
||||
blogs_limited (a_limit:NATURAL_32; a_offset:NATURAL_32) : LIST[CMS_NODE]
|
||||
-- List of nodes ordered by creation date from limit to limit + offset
|
||||
local
|
||||
l_parameters: STRING_TABLE [detachable ANY]
|
||||
|
||||
Reference in New Issue
Block a user