remove Request::post_tab and add Request::http_status
Instead of Reqest::post_tab we use now Request::post_in (pt::Space). Request::http_status will be used instead Request::status, but at the moment is not changed in all places. Request::status has been marked as depracated. While here: - Check for root dir in App and not in FunctionParser, let FunctionParser only log the root dir. - Read post variables after parsing url parameters, this allows winix functions to set limits for post input. - Set limits when parsing input json format, new options added to config: post_max_object_items, post_max_table_items, post_max_all_items, post_max_nested_objects. There are similar options in each winix function (they are in FunctionBase). - Some refactoring in App. - Add config option: log_whole_http_post if true then the whole parsed post input is logged. - Add config option: post_json_max - max length of input stream for parsing json. - Add config option: templates_request_status, default request_status.html this is an ezc template used as [content] when the request status is not 200_ok. - Fix: Sort winix function didn't show items to sort (fix and do some refactoring as well) - Properly sort items in: ImgCrop, Ls, Sort, Upload - Remove ezc templates: err_404.html, err_per_denied.html - now request_status.html is used.
This commit is contained in:
@@ -67,18 +67,31 @@ added_by = Added by
|
||||
last_modified = Last modified
|
||||
by = by
|
||||
|
||||
error_404 = Error 404
|
||||
error_404_msg = We are sory but there is no such a page in our service.
|
||||
http_error_200_title = "OK"
|
||||
http_error_200_msg = ""
|
||||
|
||||
http_error_400_title = Error 400 - Bad Request
|
||||
http_error_400_msg = We are sorry, but your browser sent an invalid query.
|
||||
|
||||
http_error_403_title = Error 403 - Permission Denied
|
||||
http_error_403_msg = We are sorry, but you don't have access to the page.
|
||||
|
||||
http_error_404_title = Error 404 - Not Found
|
||||
http_error_404_msg = We are sorry, but there is no such a page in our service.
|
||||
|
||||
http_error_414_title = Error 414 - URI Too Long
|
||||
http_error_414_msg = We are sorry, but your browser sent an invalid query.
|
||||
|
||||
http_error_500_title = Error 500 - Internal Error
|
||||
http_error_500_msg = We are sorry, but an unknown internal error has occurred.
|
||||
|
||||
|
||||
internal_error = Internal error, check system log for more details
|
||||
|
||||
|
||||
was_errors = We are sory but there were some problems with the operation.
|
||||
was_errors = We are sorry, but there were some problems with the operation.
|
||||
error_code = Error code
|
||||
|
||||
access_denied = Permission denied
|
||||
access_denied_msg = We are sory but you don't have access to the page.
|
||||
|
||||
download = download
|
||||
|
||||
cat_image_url = Image url
|
||||
|
||||
@@ -70,8 +70,23 @@ added_by = Dodane przez
|
||||
last_modified = ostatnio modyfikowany
|
||||
by = przez
|
||||
|
||||
error_404 = Błąd 404
|
||||
error_404_msg = Przykro nam ale podanej strony nie ma w naszym serwisie.
|
||||
http_error_200_title = "OK"
|
||||
http_error_200_msg = ""
|
||||
|
||||
http_error_400_title = Błąd 400 - złe zapytanie
|
||||
http_error_400_msg = Przykro nam ale twoja przeglądarka wysłała nieprawidłowe zapytanie.
|
||||
|
||||
http_error_403_title = Brak dostępu
|
||||
http_error_403_msg = Przykro nam ale nie masz dostępu do tej części serwisu.
|
||||
|
||||
http_error_404_title = Błąd 404 - nie znaleziono
|
||||
http_error_404_msg = Przykro nam ale podanej strony nie ma w naszym serwisie.
|
||||
|
||||
http_error_414_title = Błąd 414 - zbyt długi URI
|
||||
http_error_414_msg = Przykro nam ale twoja przeglądarka wysłała nieprawidłowe zapytanie.
|
||||
|
||||
http_error_500_title = Błąd 500 - błąd wewnętrzny
|
||||
http_error_500_msg = Przykro nam ale wystąpił nieznany błąd wewnętrzny.
|
||||
|
||||
|
||||
internal_error = Błąd wewnętrzny, po więcej szczegółów sprawdź dziennik systemowy
|
||||
@@ -80,8 +95,6 @@ internal_error = Błąd wewnętrzny, po więcej szczegółów sprawdź dziennik
|
||||
was_errors = Przepraszamy ale wystąpiły problemy z wykonaniem tej operacji.
|
||||
error_code = Kod błędu
|
||||
|
||||
access_denied = Brak dostępu
|
||||
access_denied_msg = Przykro nam ale nie masz dostępu do tej części serwisu.
|
||||
|
||||
download = Ściągnij plik
|
||||
|
||||
|
||||
Reference in New Issue
Block a user