Show
Ignore:
Timestamp:
08/26/10 20:21:08 (21 months ago)
Author:
Antti-Juhani Kaijanaho <antti-juhani@…>
Children:
6c86e7ccc32f1c99d204262844a52b1b06359145
Parents:
7ccc366e52cc1e51e123b39fccaf56267361ca58
git-committer:
Antti-Juhani Kaijanaho <antti-juhani@…> (08/26/10 20:21:08)
Message:

Add support for paginating thread and article lists.

Signed-off-by: Antti-Juhani Kaijanaho <antti-juhani@…>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • util.cc

    r12f5162 r43f5212  
    3838        bool is_number(std::string s) 
    3939        { 
     40                if (s.empty()) return false; 
    4041                for (size_t i = 0; i < s.length(); i++) { 
    4142                        if (!is_digit(s[i])) return false;