X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_cgi.h;h=a14acdbd463a4c95cf6a60cd279b9d660b2ce5e4;hb=daff10f47909eaaf1fe5bc1d4fbcf7fecf46551b;hp=2cd8bc95294f46886fefa3e07ffc2a06257e3af1;hpb=e05de8dc7bc5a2f0fa7da365e2f3c60b2f42ef4a;p=collection4.git diff --git a/src/utils_cgi.h b/src/utils_cgi.h index 2cd8bc9..a14acdb 100644 --- a/src/utils_cgi.h +++ b/src/utils_cgi.h @@ -1,3 +1,26 @@ +/** + * collection4 - utils_cgi.h + * Copyright (C) 2010 Florian octo Forster + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301 USA + * + * Authors: + * Florian octo Forster + **/ + #ifndef UTILS_CGI_H #define UTILS_CGI_H 1 @@ -47,6 +70,10 @@ char *uri_escape (const char *string); char *uri_escape_buffer (char *buffer, size_t buffer_size); char *uri_escape_copy (char *dest, const char *src, size_t n); +char *json_escape (const char *string); +char *json_escape_buffer (char *buffer, size_t buffer_size); +char *json_escape_copy (char *dest, const char *src, size_t n); + const char *script_name (void); int time_to_rfc1123 (time_t t, char *buffer, size_t buffer_size); @@ -58,6 +85,8 @@ char *html_escape_copy (char *dest, const char *src, size_t n); int html_print_page (const char *title, const page_callbacks_t *cb, void *user_data); +int html_print_logo (void *user_data); + int html_print_search_box (void *user_data); /* vim: set sw=2 sts=2 et fdm=marker : */