2004-06-13 20:20:40 +00:00
|
|
|
/* vi:set ts=8 sts=4 sw=4:
|
|
|
|
*
|
|
|
|
* VIM - Vi IMproved by Bram Moolenaar
|
|
|
|
*
|
|
|
|
* Do ":help uganda" in Vim to read copying and usage conditions.
|
|
|
|
* Do ":help credits" in Vim to see a list of people who contributed.
|
|
|
|
* See README.txt for an overview of the Vim source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "vim.h"
|
|
|
|
|
|
|
|
#ifdef AMIGA
|
|
|
|
# include <time.h> /* for time() */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Vim originated from Stevie version 3.6 (Fish disk 217) by GRWalter (Fred)
|
|
|
|
* It has been changed beyond recognition since then.
|
|
|
|
*
|
2004-10-07 21:02:47 +00:00
|
|
|
* Differences between version 6.x and 7.x can be found with ":help version7".
|
2004-06-13 20:20:40 +00:00
|
|
|
* Differences between version 5.x and 6.x can be found with ":help version6".
|
|
|
|
* Differences between version 4.x and 5.x can be found with ":help version5".
|
|
|
|
* Differences between version 3.0 and 4.x can be found with ":help version4".
|
|
|
|
* All the remarks about older versions have been removed, they are not very
|
|
|
|
* interesting.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "version.h"
|
|
|
|
|
2005-06-30 22:04:15 +00:00
|
|
|
char *Version = VIM_VERSION_SHORT;
|
|
|
|
static char *mediumVersion = VIM_VERSION_MEDIUM;
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_DATE_TIME) || defined(PROTO)
|
|
|
|
# if (defined(VMS) && defined(VAXC)) || defined(PROTO)
|
|
|
|
char longVersion[sizeof(VIM_VERSION_LONG_DATE) + sizeof(__DATE__)
|
|
|
|
+ sizeof(__TIME__) + 3];
|
2013-02-20 16:47:36 +01:00
|
|
|
|
|
|
|
static void list_features __ARGS((void));
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
void
|
|
|
|
make_version()
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Construct the long version string. Necessary because
|
|
|
|
* VAX C can't catenate strings in the preprocessor.
|
|
|
|
*/
|
|
|
|
strcpy(longVersion, VIM_VERSION_LONG_DATE);
|
|
|
|
strcat(longVersion, __DATE__);
|
|
|
|
strcat(longVersion, " ");
|
|
|
|
strcat(longVersion, __TIME__);
|
|
|
|
strcat(longVersion, ")");
|
|
|
|
}
|
|
|
|
# else
|
|
|
|
char *longVersion = VIM_VERSION_LONG_DATE __DATE__ " " __TIME__ ")";
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
char *longVersion = VIM_VERSION_LONG;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void version_msg __ARGS((char *s));
|
|
|
|
|
|
|
|
static char *(features[]) =
|
|
|
|
{
|
|
|
|
#ifdef AMIGA /* only for Amiga systems */
|
|
|
|
# ifdef FEAT_ARP
|
|
|
|
"+ARP",
|
|
|
|
# else
|
|
|
|
"-ARP",
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_ARABIC
|
|
|
|
"+arabic",
|
|
|
|
#else
|
|
|
|
"-arabic",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_AUTOCMD
|
|
|
|
"+autocmd",
|
|
|
|
#else
|
|
|
|
"-autocmd",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_BEVAL
|
|
|
|
"+balloon_eval",
|
|
|
|
#else
|
|
|
|
"-balloon_eval",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_BROWSE
|
|
|
|
"+browse",
|
|
|
|
#else
|
|
|
|
"-browse",
|
|
|
|
#endif
|
|
|
|
#ifdef NO_BUILTIN_TCAPS
|
|
|
|
"-builtin_terms",
|
|
|
|
#endif
|
|
|
|
#ifdef SOME_BUILTIN_TCAPS
|
|
|
|
"+builtin_terms",
|
|
|
|
#endif
|
|
|
|
#ifdef ALL_BUILTIN_TCAPS
|
|
|
|
"++builtin_terms",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_BYTEOFF
|
|
|
|
"+byte_offset",
|
|
|
|
#else
|
|
|
|
"-byte_offset",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_CINDENT
|
|
|
|
"+cindent",
|
|
|
|
#else
|
|
|
|
"-cindent",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_CLIENTSERVER
|
|
|
|
"+clientserver",
|
|
|
|
#else
|
|
|
|
"-clientserver",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_CLIPBOARD
|
|
|
|
"+clipboard",
|
|
|
|
#else
|
|
|
|
"-clipboard",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_CMDL_COMPL
|
|
|
|
"+cmdline_compl",
|
|
|
|
#else
|
|
|
|
"-cmdline_compl",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_CMDHIST
|
|
|
|
"+cmdline_hist",
|
|
|
|
#else
|
|
|
|
"-cmdline_hist",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_CMDL_INFO
|
|
|
|
"+cmdline_info",
|
|
|
|
#else
|
|
|
|
"-cmdline_info",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_COMMENTS
|
|
|
|
"+comments",
|
|
|
|
#else
|
|
|
|
"-comments",
|
|
|
|
#endif
|
2010-06-05 23:22:07 +02:00
|
|
|
#ifdef FEAT_CONCEAL
|
|
|
|
"+conceal",
|
|
|
|
#else
|
|
|
|
"-conceal",
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_CRYPT
|
|
|
|
"+cryptv",
|
|
|
|
#else
|
|
|
|
"-cryptv",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_CSCOPE
|
|
|
|
"+cscope",
|
|
|
|
#else
|
|
|
|
"-cscope",
|
|
|
|
#endif
|
2010-06-05 23:22:07 +02:00
|
|
|
#ifdef FEAT_CURSORBIND
|
|
|
|
"+cursorbind",
|
|
|
|
#else
|
|
|
|
"-cursorbind",
|
|
|
|
#endif
|
2006-01-26 22:25:15 +00:00
|
|
|
#ifdef CURSOR_SHAPE
|
|
|
|
"+cursorshape",
|
|
|
|
#else
|
|
|
|
"-cursorshape",
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#if defined(FEAT_CON_DIALOG) && defined(FEAT_GUI_DIALOG)
|
|
|
|
"+dialog_con_gui",
|
|
|
|
#else
|
|
|
|
# if defined(FEAT_CON_DIALOG)
|
|
|
|
"+dialog_con",
|
|
|
|
# else
|
|
|
|
# if defined(FEAT_GUI_DIALOG)
|
|
|
|
"+dialog_gui",
|
|
|
|
# else
|
|
|
|
"-dialog",
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_DIFF
|
|
|
|
"+diff",
|
|
|
|
#else
|
|
|
|
"-diff",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_DIGRAPHS
|
|
|
|
"+digraphs",
|
|
|
|
#else
|
|
|
|
"-digraphs",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_DND
|
|
|
|
"+dnd",
|
|
|
|
#else
|
|
|
|
"-dnd",
|
|
|
|
#endif
|
|
|
|
#ifdef EBCDIC
|
|
|
|
"+ebcdic",
|
|
|
|
#else
|
|
|
|
"-ebcdic",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_EMACS_TAGS
|
|
|
|
"+emacs_tags",
|
|
|
|
#else
|
|
|
|
"-emacs_tags",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_EVAL
|
|
|
|
"+eval",
|
|
|
|
#else
|
|
|
|
"-eval",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_EX_EXTRA
|
|
|
|
"+ex_extra",
|
|
|
|
#else
|
|
|
|
"-ex_extra",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_SEARCH_EXTRA
|
|
|
|
"+extra_search",
|
|
|
|
#else
|
|
|
|
"-extra_search",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_FKMAP
|
|
|
|
"+farsi",
|
|
|
|
#else
|
|
|
|
"-farsi",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_SEARCHPATH
|
|
|
|
"+file_in_path",
|
|
|
|
#else
|
|
|
|
"-file_in_path",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_FIND_ID
|
|
|
|
"+find_in_path",
|
|
|
|
#else
|
|
|
|
"-find_in_path",
|
|
|
|
#endif
|
2008-06-24 21:56:24 +00:00
|
|
|
#ifdef FEAT_FLOAT
|
|
|
|
"+float",
|
|
|
|
#else
|
|
|
|
"-float",
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_FOLDING
|
|
|
|
"+folding",
|
|
|
|
#else
|
|
|
|
"-folding",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_FOOTER
|
|
|
|
"+footer",
|
|
|
|
#else
|
|
|
|
"-footer",
|
|
|
|
#endif
|
|
|
|
/* only interesting on Unix systems */
|
|
|
|
#if !defined(USE_SYSTEM) && defined(UNIX)
|
|
|
|
"+fork()",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_GETTEXT
|
|
|
|
# ifdef DYNAMIC_GETTEXT
|
|
|
|
"+gettext/dyn",
|
|
|
|
# else
|
|
|
|
"+gettext",
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
"-gettext",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_HANGULIN
|
|
|
|
"+hangul_input",
|
|
|
|
#else
|
|
|
|
"-hangul_input",
|
|
|
|
#endif
|
|
|
|
#if (defined(HAVE_ICONV_H) && defined(USE_ICONV)) || defined(DYNAMIC_ICONV)
|
|
|
|
# ifdef DYNAMIC_ICONV
|
|
|
|
"+iconv/dyn",
|
|
|
|
# else
|
|
|
|
"+iconv",
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
"-iconv",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_INS_EXPAND
|
|
|
|
"+insert_expand",
|
|
|
|
#else
|
|
|
|
"-insert_expand",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_JUMPLIST
|
|
|
|
"+jumplist",
|
|
|
|
#else
|
|
|
|
"-jumplist",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_KEYMAP
|
|
|
|
"+keymap",
|
|
|
|
#else
|
|
|
|
"-keymap",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_LANGMAP
|
|
|
|
"+langmap",
|
|
|
|
#else
|
|
|
|
"-langmap",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_LIBCALL
|
|
|
|
"+libcall",
|
|
|
|
#else
|
|
|
|
"-libcall",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_LINEBREAK
|
|
|
|
"+linebreak",
|
|
|
|
#else
|
|
|
|
"-linebreak",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_LISP
|
|
|
|
"+lispindent",
|
|
|
|
#else
|
|
|
|
"-lispindent",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_LISTCMDS
|
|
|
|
"+listcmds",
|
|
|
|
#else
|
|
|
|
"-listcmds",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_LOCALMAP
|
|
|
|
"+localmap",
|
|
|
|
#else
|
|
|
|
"-localmap",
|
|
|
|
#endif
|
2010-07-14 23:23:17 +02:00
|
|
|
#ifdef FEAT_LUA
|
|
|
|
# ifdef DYNAMIC_LUA
|
|
|
|
"+lua/dyn",
|
|
|
|
# else
|
|
|
|
"+lua",
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
"-lua",
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_MENU
|
|
|
|
"+menu",
|
|
|
|
#else
|
|
|
|
"-menu",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_SESSION
|
|
|
|
"+mksession",
|
|
|
|
#else
|
|
|
|
"-mksession",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_MODIFY_FNAME
|
|
|
|
"+modify_fname",
|
|
|
|
#else
|
|
|
|
"-modify_fname",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_MOUSE
|
|
|
|
"+mouse",
|
|
|
|
# ifdef FEAT_MOUSESHAPE
|
|
|
|
"+mouseshape",
|
|
|
|
# else
|
|
|
|
"-mouseshape",
|
|
|
|
# endif
|
|
|
|
# else
|
|
|
|
"-mouse",
|
|
|
|
#endif
|
2012-10-21 04:00:07 +02:00
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
#if defined(UNIX) || defined(VMS)
|
|
|
|
# ifdef FEAT_MOUSE_DEC
|
|
|
|
"+mouse_dec",
|
|
|
|
# else
|
|
|
|
"-mouse_dec",
|
|
|
|
# endif
|
|
|
|
# ifdef FEAT_MOUSE_GPM
|
|
|
|
"+mouse_gpm",
|
|
|
|
# else
|
|
|
|
"-mouse_gpm",
|
|
|
|
# endif
|
|
|
|
# ifdef FEAT_MOUSE_JSB
|
|
|
|
"+mouse_jsbterm",
|
|
|
|
# else
|
|
|
|
"-mouse_jsbterm",
|
|
|
|
# endif
|
|
|
|
# ifdef FEAT_MOUSE_NET
|
|
|
|
"+mouse_netterm",
|
|
|
|
# else
|
|
|
|
"-mouse_netterm",
|
|
|
|
# endif
|
2012-10-21 04:00:07 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __QNX__
|
|
|
|
# ifdef FEAT_MOUSE_PTERM
|
|
|
|
"+mouse_pterm",
|
|
|
|
# else
|
|
|
|
"-mouse_pterm",
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(UNIX) || defined(VMS)
|
|
|
|
# ifdef FEAT_MOUSE_SGR
|
|
|
|
"+mouse_sgr",
|
|
|
|
# else
|
|
|
|
"-mouse_sgr",
|
|
|
|
# endif
|
2008-06-24 21:56:24 +00:00
|
|
|
# ifdef FEAT_SYSMOUSE
|
|
|
|
"+mouse_sysmouse",
|
|
|
|
# else
|
|
|
|
"-mouse_sysmouse",
|
|
|
|
# endif
|
2011-10-20 21:09:35 +02:00
|
|
|
# ifdef FEAT_MOUSE_URXVT
|
|
|
|
"+mouse_urxvt",
|
|
|
|
# else
|
|
|
|
"-mouse_urxvt",
|
|
|
|
# endif
|
2012-10-21 04:00:07 +02:00
|
|
|
# ifdef FEAT_MOUSE_XTERM
|
|
|
|
"+mouse_xterm",
|
2004-06-13 20:20:40 +00:00
|
|
|
# else
|
2012-10-21 04:00:07 +02:00
|
|
|
"-mouse_xterm",
|
2004-06-13 20:20:40 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
2012-10-21 04:00:07 +02:00
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_MBYTE_IME
|
|
|
|
# ifdef DYNAMIC_IME
|
|
|
|
"+multi_byte_ime/dyn",
|
|
|
|
# else
|
|
|
|
"+multi_byte_ime",
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# ifdef FEAT_MBYTE
|
|
|
|
"+multi_byte",
|
|
|
|
# else
|
|
|
|
"-multi_byte",
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_MULTI_LANG
|
|
|
|
"+multi_lang",
|
|
|
|
#else
|
|
|
|
"-multi_lang",
|
|
|
|
#endif
|
2004-07-05 15:58:32 +00:00
|
|
|
#ifdef FEAT_MZSCHEME
|
2005-01-25 22:07:05 +00:00
|
|
|
# ifdef DYNAMIC_MZSCHEME
|
|
|
|
"+mzscheme/dyn",
|
|
|
|
# else
|
2004-07-05 15:58:32 +00:00
|
|
|
"+mzscheme",
|
2005-01-25 22:07:05 +00:00
|
|
|
# endif
|
2004-07-05 15:58:32 +00:00
|
|
|
#else
|
|
|
|
"-mzscheme",
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_NETBEANS_INTG
|
|
|
|
"+netbeans_intg",
|
|
|
|
#else
|
|
|
|
"-netbeans_intg",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_GUI_W32
|
|
|
|
# ifdef FEAT_OLE
|
|
|
|
"+ole",
|
|
|
|
# else
|
|
|
|
"-ole",
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_PATH_EXTRA
|
|
|
|
"+path_extra",
|
|
|
|
#else
|
|
|
|
"-path_extra",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_PERL
|
|
|
|
# ifdef DYNAMIC_PERL
|
|
|
|
"+perl/dyn",
|
|
|
|
# else
|
|
|
|
"+perl",
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
"-perl",
|
|
|
|
#endif
|
2010-05-23 23:34:36 +02:00
|
|
|
#ifdef FEAT_PERSISTENT_UNDO
|
|
|
|
"+persistent_undo",
|
|
|
|
#else
|
|
|
|
"-persistent_undo",
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_PRINTER
|
|
|
|
# ifdef FEAT_POSTSCRIPT
|
|
|
|
"+postscript",
|
|
|
|
# else
|
|
|
|
"-postscript",
|
|
|
|
# endif
|
|
|
|
"+printer",
|
|
|
|
#else
|
|
|
|
"-printer",
|
|
|
|
#endif
|
2005-02-26 23:04:13 +00:00
|
|
|
#ifdef FEAT_PROFILE
|
|
|
|
"+profile",
|
|
|
|
#else
|
|
|
|
"-profile",
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_PYTHON
|
|
|
|
# ifdef DYNAMIC_PYTHON
|
|
|
|
"+python/dyn",
|
|
|
|
# else
|
|
|
|
"+python",
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
"-python",
|
|
|
|
#endif
|
2010-07-17 21:19:38 +02:00
|
|
|
#ifdef FEAT_PYTHON3
|
|
|
|
# ifdef DYNAMIC_PYTHON3
|
|
|
|
"+python3/dyn",
|
|
|
|
# else
|
|
|
|
"+python3",
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
"-python3",
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_QUICKFIX
|
|
|
|
"+quickfix",
|
|
|
|
#else
|
|
|
|
"-quickfix",
|
|
|
|
#endif
|
2006-05-02 22:08:30 +00:00
|
|
|
#ifdef FEAT_RELTIME
|
|
|
|
"+reltime",
|
|
|
|
#else
|
|
|
|
"-reltime",
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_RIGHTLEFT
|
|
|
|
"+rightleft",
|
|
|
|
#else
|
|
|
|
"-rightleft",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_RUBY
|
|
|
|
# ifdef DYNAMIC_RUBY
|
|
|
|
"+ruby/dyn",
|
|
|
|
# else
|
|
|
|
"+ruby",
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
"-ruby",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_SCROLLBIND
|
|
|
|
"+scrollbind",
|
|
|
|
#else
|
|
|
|
"-scrollbind",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_SIGNS
|
|
|
|
"+signs",
|
|
|
|
#else
|
|
|
|
"-signs",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_SMARTINDENT
|
|
|
|
"+smartindent",
|
|
|
|
#else
|
|
|
|
"-smartindent",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_SNIFF
|
|
|
|
"+sniff",
|
|
|
|
#else
|
|
|
|
"-sniff",
|
|
|
|
#endif
|
2009-11-11 13:22:11 +00:00
|
|
|
#ifdef STARTUPTIME
|
|
|
|
"+startuptime",
|
|
|
|
#else
|
|
|
|
"-startuptime",
|
|
|
|
#endif
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef FEAT_STL_OPT
|
|
|
|
"+statusline",
|
|
|
|
#else
|
|
|
|
"-statusline",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_SUN_WORKSHOP
|
|
|
|
"+sun_workshop",
|
|
|
|
#else
|
|
|
|
"-sun_workshop",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_SYN_HL
|
|
|
|
"+syntax",
|
|
|
|
#else
|
|
|
|
"-syntax",
|
|
|
|
#endif
|
|
|
|
/* only interesting on Unix systems */
|
|
|
|
#if defined(USE_SYSTEM) && (defined(UNIX) || defined(__EMX__))
|
|
|
|
"+system()",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_TAG_BINS
|
|
|
|
"+tag_binary",
|
|
|
|
#else
|
|
|
|
"-tag_binary",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_TAG_OLDSTATIC
|
|
|
|
"+tag_old_static",
|
|
|
|
#else
|
|
|
|
"-tag_old_static",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_TAG_ANYWHITE
|
|
|
|
"+tag_any_white",
|
|
|
|
#else
|
|
|
|
"-tag_any_white",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_TCL
|
|
|
|
# ifdef DYNAMIC_TCL
|
|
|
|
"+tcl/dyn",
|
|
|
|
# else
|
|
|
|
"+tcl",
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
"-tcl",
|
|
|
|
#endif
|
|
|
|
#if defined(UNIX) || defined(__EMX__)
|
|
|
|
/* only Unix (or OS/2 with EMX!) can have terminfo instead of termcap */
|
|
|
|
# ifdef TERMINFO
|
|
|
|
"+terminfo",
|
|
|
|
# else
|
|
|
|
"-terminfo",
|
|
|
|
# endif
|
|
|
|
#else /* unix always includes termcap support */
|
|
|
|
# ifdef HAVE_TGETENT
|
|
|
|
"+tgetent",
|
|
|
|
# else
|
|
|
|
"-tgetent",
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_TERMRESPONSE
|
|
|
|
"+termresponse",
|
|
|
|
#else
|
|
|
|
"-termresponse",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_TEXTOBJ
|
|
|
|
"+textobjects",
|
|
|
|
#else
|
|
|
|
"-textobjects",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_TITLE
|
|
|
|
"+title",
|
|
|
|
#else
|
|
|
|
"-title",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_TOOLBAR
|
|
|
|
"+toolbar",
|
|
|
|
#else
|
|
|
|
"-toolbar",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_USR_CMDS
|
|
|
|
"+user_commands",
|
|
|
|
#else
|
|
|
|
"-user_commands",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_VERTSPLIT
|
|
|
|
"+vertsplit",
|
|
|
|
#else
|
|
|
|
"-vertsplit",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_VIRTUALEDIT
|
|
|
|
"+virtualedit",
|
|
|
|
#else
|
|
|
|
"-virtualedit",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_VISUAL
|
|
|
|
"+visual",
|
|
|
|
# ifdef FEAT_VISUALEXTRA
|
|
|
|
"+visualextra",
|
|
|
|
# else
|
|
|
|
"-visualextra",
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
"-visual",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_VIMINFO
|
|
|
|
"+viminfo",
|
|
|
|
#else
|
|
|
|
"-viminfo",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_VREPLACE
|
|
|
|
"+vreplace",
|
|
|
|
#else
|
|
|
|
"-vreplace",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_WILDIGN
|
|
|
|
"+wildignore",
|
|
|
|
#else
|
|
|
|
"-wildignore",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_WILDMENU
|
|
|
|
"+wildmenu",
|
|
|
|
#else
|
|
|
|
"-wildmenu",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_WINDOWS
|
|
|
|
"+windows",
|
|
|
|
#else
|
|
|
|
"-windows",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_WRITEBACKUP
|
|
|
|
"+writebackup",
|
|
|
|
#else
|
|
|
|
"-writebackup",
|
|
|
|
#endif
|
|
|
|
#if defined(UNIX) || defined(VMS)
|
|
|
|
# ifdef FEAT_X11
|
|
|
|
"+X11",
|
|
|
|
# else
|
|
|
|
"-X11",
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_XFONTSET
|
|
|
|
"+xfontset",
|
|
|
|
#else
|
|
|
|
"-xfontset",
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_XIM
|
|
|
|
"+xim",
|
|
|
|
#else
|
|
|
|
"-xim",
|
|
|
|
#endif
|
|
|
|
#if defined(UNIX) || defined(VMS)
|
|
|
|
# ifdef USE_XSMP_INTERACT
|
|
|
|
"+xsmp_interact",
|
|
|
|
# else
|
|
|
|
# ifdef USE_XSMP
|
|
|
|
"+xsmp",
|
|
|
|
# else
|
|
|
|
"-xsmp",
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# ifdef FEAT_XCLIPBOARD
|
|
|
|
"+xterm_clipboard",
|
|
|
|
# else
|
|
|
|
"-xterm_clipboard",
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_XTERM_SAVE
|
|
|
|
"+xterm_save",
|
|
|
|
#else
|
|
|
|
"-xterm_save",
|
|
|
|
#endif
|
|
|
|
#ifdef WIN3264
|
|
|
|
# ifdef FEAT_XPM_W32
|
|
|
|
"+xpm_w32",
|
|
|
|
# else
|
|
|
|
"-xpm_w32",
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int included_patches[] =
|
|
|
|
{ /* Add new patch number below this line */
|
2013-07-04 21:19:33 +02:00
|
|
|
/**/
|
|
|
|
1305,
|
2013-07-04 20:50:46 +02:00
|
|
|
/**/
|
|
|
|
1304,
|
2013-07-04 20:25:41 +02:00
|
|
|
/**/
|
|
|
|
1303,
|
2013-07-03 22:28:36 +02:00
|
|
|
/**/
|
|
|
|
1302,
|
2013-07-03 21:19:07 +02:00
|
|
|
/**/
|
|
|
|
1301,
|
2013-07-03 19:52:53 +02:00
|
|
|
/**/
|
|
|
|
1300,
|
2013-07-03 18:49:17 +02:00
|
|
|
/**/
|
|
|
|
1299,
|
2013-07-03 17:51:17 +02:00
|
|
|
/**/
|
|
|
|
1298,
|
2013-07-03 17:14:00 +02:00
|
|
|
/**/
|
|
|
|
1297,
|
2013-07-03 16:58:44 +02:00
|
|
|
/**/
|
|
|
|
1296,
|
2013-07-03 16:53:03 +02:00
|
|
|
/**/
|
|
|
|
1295,
|
2013-07-03 15:47:03 +02:00
|
|
|
/**/
|
|
|
|
1294,
|
2013-07-03 14:19:54 +02:00
|
|
|
/**/
|
|
|
|
1293,
|
2013-07-03 14:01:56 +02:00
|
|
|
/**/
|
|
|
|
1292,
|
2013-07-03 13:29:58 +02:00
|
|
|
/**/
|
|
|
|
1291,
|
2013-07-03 13:16:23 +02:00
|
|
|
/**/
|
|
|
|
1290,
|
2013-07-03 13:04:27 +02:00
|
|
|
/**/
|
|
|
|
1289,
|
2013-07-03 12:45:31 +02:00
|
|
|
/**/
|
|
|
|
1288,
|
2013-07-01 22:03:04 +02:00
|
|
|
/**/
|
|
|
|
1287,
|
2013-07-01 21:43:08 +02:00
|
|
|
/**/
|
|
|
|
1286,
|
2013-07-01 21:25:25 +02:00
|
|
|
/**/
|
|
|
|
1285,
|
2013-07-01 21:08:48 +02:00
|
|
|
/**/
|
|
|
|
1284,
|
2013-07-01 21:00:35 +02:00
|
|
|
/**/
|
|
|
|
1283,
|
2013-07-01 20:18:33 +02:00
|
|
|
/**/
|
|
|
|
1282,
|
2013-07-01 20:06:19 +02:00
|
|
|
/**/
|
|
|
|
1281,
|
2013-06-30 23:24:08 +02:00
|
|
|
/**/
|
|
|
|
1280,
|
2013-06-30 22:43:27 +02:00
|
|
|
/**/
|
|
|
|
1279,
|
2013-06-30 17:51:51 +02:00
|
|
|
/**/
|
|
|
|
1278,
|
2013-06-30 17:24:16 +02:00
|
|
|
/**/
|
|
|
|
1277,
|
2013-06-30 15:01:22 +02:00
|
|
|
/**/
|
|
|
|
1276,
|
2013-06-30 14:46:53 +02:00
|
|
|
/**/
|
|
|
|
1275,
|
2013-06-30 13:57:45 +02:00
|
|
|
/**/
|
|
|
|
1274,
|
2013-06-30 13:33:58 +02:00
|
|
|
/**/
|
|
|
|
1273,
|
2013-06-30 13:17:24 +02:00
|
|
|
/**/
|
|
|
|
1272,
|
2013-06-30 12:21:24 +02:00
|
|
|
/**/
|
|
|
|
1271,
|
2013-06-29 17:19:28 +02:00
|
|
|
/**/
|
|
|
|
1270,
|
2013-06-29 16:21:58 +02:00
|
|
|
/**/
|
|
|
|
1269,
|
2013-06-29 15:40:04 +02:00
|
|
|
/**/
|
|
|
|
1268,
|
2013-06-29 15:36:26 +02:00
|
|
|
/**/
|
|
|
|
1267,
|
2013-06-29 15:19:21 +02:00
|
|
|
/**/
|
|
|
|
1266,
|
2013-06-29 15:07:22 +02:00
|
|
|
/**/
|
|
|
|
1265,
|
2013-06-29 14:47:22 +02:00
|
|
|
/**/
|
|
|
|
1264,
|
2013-06-29 14:42:26 +02:00
|
|
|
/**/
|
|
|
|
1263,
|
2013-06-29 14:17:02 +02:00
|
|
|
/**/
|
|
|
|
1262,
|
2013-06-29 13:58:31 +02:00
|
|
|
/**/
|
|
|
|
1261,
|
2013-06-29 12:58:33 +02:00
|
|
|
/**/
|
|
|
|
1260,
|
2013-06-29 12:10:26 +02:00
|
|
|
/**/
|
|
|
|
1259,
|
2013-06-28 23:04:42 +02:00
|
|
|
/**/
|
|
|
|
1258,
|
2013-06-28 20:36:30 +02:00
|
|
|
/**/
|
|
|
|
1257,
|
2013-06-28 20:16:55 +02:00
|
|
|
/**/
|
|
|
|
1256,
|
2013-06-27 22:36:03 +02:00
|
|
|
/**/
|
|
|
|
1255,
|
2013-06-27 22:29:38 +02:00
|
|
|
/**/
|
|
|
|
1254,
|
2013-06-27 22:21:24 +02:00
|
|
|
/**/
|
|
|
|
1253,
|
2013-06-27 22:02:02 +02:00
|
|
|
/**/
|
|
|
|
1252,
|
2013-06-26 21:56:36 +02:00
|
|
|
/**/
|
|
|
|
1251,
|
2013-06-26 21:49:51 +02:00
|
|
|
/**/
|
|
|
|
1250,
|
2013-06-26 20:04:35 +02:00
|
|
|
/**/
|
|
|
|
1249,
|
2013-06-26 19:18:05 +02:00
|
|
|
/**/
|
|
|
|
1248,
|
2013-06-26 18:16:58 +02:00
|
|
|
/**/
|
|
|
|
1247,
|
2013-06-26 14:04:47 +02:00
|
|
|
/**/
|
|
|
|
1246,
|
2013-06-26 13:16:20 +02:00
|
|
|
/**/
|
|
|
|
1245,
|
2013-06-26 12:58:32 +02:00
|
|
|
/**/
|
|
|
|
1244,
|
2013-06-26 12:42:44 +02:00
|
|
|
/**/
|
|
|
|
1243,
|
2013-06-24 22:33:30 +02:00
|
|
|
/**/
|
|
|
|
1242,
|
2013-06-24 22:23:55 +02:00
|
|
|
/**/
|
|
|
|
1241,
|
2013-06-24 22:17:32 +02:00
|
|
|
/**/
|
|
|
|
1240,
|
2013-06-24 21:21:58 +02:00
|
|
|
/**/
|
|
|
|
1239,
|
2013-06-24 20:32:57 +02:00
|
|
|
/**/
|
|
|
|
1238,
|
2013-06-23 16:40:39 +02:00
|
|
|
/**/
|
|
|
|
1237,
|
2013-06-23 16:35:47 +02:00
|
|
|
/**/
|
|
|
|
1236,
|
2013-06-23 16:16:19 +02:00
|
|
|
/**/
|
|
|
|
1235,
|
2013-06-23 16:04:08 +02:00
|
|
|
/**/
|
|
|
|
1234,
|
2013-06-23 14:37:07 +02:00
|
|
|
/**/
|
|
|
|
1233,
|
2013-06-23 14:30:47 +02:00
|
|
|
/**/
|
|
|
|
1232,
|
2013-06-23 14:16:57 +02:00
|
|
|
/**/
|
|
|
|
1231,
|
2013-06-23 13:46:40 +02:00
|
|
|
/**/
|
|
|
|
1230,
|
2013-06-23 13:28:17 +02:00
|
|
|
/**/
|
|
|
|
1229,
|
2013-06-23 13:11:18 +02:00
|
|
|
/**/
|
|
|
|
1228,
|
2013-06-23 13:00:44 +02:00
|
|
|
/**/
|
|
|
|
1227,
|
2013-06-23 12:51:32 +02:00
|
|
|
/**/
|
|
|
|
1226,
|
2013-06-22 13:00:16 +02:00
|
|
|
/**/
|
|
|
|
1225,
|
2013-06-21 18:31:23 +02:00
|
|
|
/**/
|
|
|
|
1224,
|
2013-06-19 21:17:31 +02:00
|
|
|
/**/
|
|
|
|
1223,
|
2013-06-19 20:11:50 +02:00
|
|
|
/**/
|
|
|
|
1222,
|
2013-06-18 23:31:55 +02:00
|
|
|
/**/
|
|
|
|
1221,
|
2013-06-17 22:43:25 +02:00
|
|
|
/**/
|
|
|
|
1220,
|
2013-06-17 22:04:38 +02:00
|
|
|
/**/
|
|
|
|
1219,
|
2013-06-17 21:53:37 +02:00
|
|
|
/**/
|
|
|
|
1218,
|
2013-06-17 21:33:41 +02:00
|
|
|
/**/
|
|
|
|
1217,
|
2013-06-17 20:27:18 +02:00
|
|
|
/**/
|
|
|
|
1216,
|
2013-06-17 19:26:36 +02:00
|
|
|
/**/
|
|
|
|
1215,
|
2013-06-16 22:49:14 +02:00
|
|
|
/**/
|
|
|
|
1214,
|
2013-06-16 17:32:40 +02:00
|
|
|
/**/
|
|
|
|
1213,
|
2013-06-16 16:57:46 +02:00
|
|
|
/**/
|
|
|
|
1212,
|
2013-06-16 16:41:47 +02:00
|
|
|
/**/
|
|
|
|
1211,
|
2013-06-16 16:34:56 +02:00
|
|
|
/**/
|
|
|
|
1210,
|
2013-06-16 16:14:03 +02:00
|
|
|
/**/
|
|
|
|
1209,
|
2013-06-16 16:01:25 +02:00
|
|
|
/**/
|
|
|
|
1208,
|
2013-06-16 15:43:50 +02:00
|
|
|
/**/
|
|
|
|
1207,
|
2013-06-16 14:25:57 +02:00
|
|
|
/**/
|
|
|
|
1206,
|
2013-06-16 14:20:13 +02:00
|
|
|
/**/
|
|
|
|
1205,
|
2013-06-16 14:18:28 +02:00
|
|
|
/**/
|
|
|
|
1204,
|
2013-06-15 23:00:30 +02:00
|
|
|
/**/
|
|
|
|
1203,
|
2013-06-15 22:26:52 +02:00
|
|
|
/**/
|
|
|
|
1202,
|
2013-06-15 21:54:16 +02:00
|
|
|
/**/
|
|
|
|
1201,
|
2013-06-15 17:54:43 +02:00
|
|
|
/**/
|
|
|
|
1200,
|
2013-06-15 17:06:36 +02:00
|
|
|
/**/
|
|
|
|
1199,
|
2013-06-15 16:47:35 +02:00
|
|
|
/**/
|
|
|
|
1198,
|
2013-06-15 16:31:47 +02:00
|
|
|
/**/
|
|
|
|
1197,
|
2013-06-15 15:09:50 +02:00
|
|
|
/**/
|
|
|
|
1196,
|
2013-06-14 22:48:54 +02:00
|
|
|
/**/
|
|
|
|
1195,
|
2013-06-14 22:33:51 +02:00
|
|
|
/**/
|
|
|
|
1194,
|
2013-06-14 21:22:39 +02:00
|
|
|
/**/
|
|
|
|
1193,
|
2013-06-14 21:15:25 +02:00
|
|
|
/**/
|
|
|
|
1192,
|
2013-06-14 20:31:28 +02:00
|
|
|
/**/
|
|
|
|
1191,
|
2013-06-14 19:15:58 +02:00
|
|
|
/**/
|
|
|
|
1190,
|
2013-06-13 22:59:30 +02:00
|
|
|
/**/
|
|
|
|
1189,
|
2013-06-13 21:57:20 +02:00
|
|
|
/**/
|
|
|
|
1188,
|
2013-06-13 21:24:06 +02:00
|
|
|
/**/
|
|
|
|
1187,
|
2013-06-13 20:57:50 +02:00
|
|
|
/**/
|
|
|
|
1186,
|
2013-06-13 20:19:40 +02:00
|
|
|
/**/
|
|
|
|
1185,
|
2013-06-13 19:47:07 +02:00
|
|
|
/**/
|
|
|
|
1184,
|
2013-06-13 19:27:18 +02:00
|
|
|
/**/
|
|
|
|
1183,
|
2013-06-12 22:41:37 +02:00
|
|
|
/**/
|
|
|
|
1182,
|
2013-06-12 22:08:58 +02:00
|
|
|
/**/
|
|
|
|
1181,
|
2013-06-12 21:25:23 +02:00
|
|
|
/**/
|
|
|
|
1180,
|
2013-06-12 21:00:26 +02:00
|
|
|
/**/
|
|
|
|
1179,
|
2013-06-12 20:35:58 +02:00
|
|
|
/**/
|
|
|
|
1178,
|
2013-06-12 19:52:15 +02:00
|
|
|
/**/
|
|
|
|
1177,
|
2013-06-12 18:13:38 +02:00
|
|
|
/**/
|
|
|
|
1176,
|
2013-06-12 17:12:24 +02:00
|
|
|
/**/
|
|
|
|
1175,
|
2013-06-12 14:41:04 +02:00
|
|
|
/**/
|
|
|
|
1174,
|
2013-06-12 14:26:26 +02:00
|
|
|
/**/
|
|
|
|
1173,
|
2013-06-12 14:20:36 +02:00
|
|
|
/**/
|
|
|
|
1172,
|
2013-06-12 14:10:26 +02:00
|
|
|
/**/
|
|
|
|
1171,
|
2013-06-12 13:37:43 +02:00
|
|
|
/**/
|
|
|
|
1170,
|
2013-06-11 22:44:09 +02:00
|
|
|
/**/
|
|
|
|
1169,
|
2013-06-11 20:53:28 +02:00
|
|
|
/**/
|
|
|
|
1168,
|
2013-06-11 19:53:45 +02:00
|
|
|
/**/
|
|
|
|
1167,
|
2013-06-11 18:48:21 +02:00
|
|
|
/**/
|
|
|
|
1166,
|
2013-06-11 18:42:36 +02:00
|
|
|
/**/
|
|
|
|
1165,
|
2013-06-11 18:40:13 +02:00
|
|
|
/**/
|
|
|
|
1164,
|
2013-06-10 21:27:29 +02:00
|
|
|
/**/
|
|
|
|
1163,
|
2013-06-10 20:47:36 +02:00
|
|
|
/**/
|
|
|
|
1162,
|
2013-06-10 20:39:03 +02:00
|
|
|
/**/
|
|
|
|
1161,
|
2013-06-10 20:25:10 +02:00
|
|
|
/**/
|
|
|
|
1160,
|
2013-06-10 20:10:44 +02:00
|
|
|
/**/
|
|
|
|
1159,
|
2013-06-10 18:36:24 +02:00
|
|
|
/**/
|
|
|
|
1158,
|
2013-06-10 16:35:18 +02:00
|
|
|
/**/
|
|
|
|
1157,
|
2013-06-09 20:51:00 +02:00
|
|
|
/**/
|
|
|
|
1156,
|
2013-06-09 17:52:46 +02:00
|
|
|
/**/
|
|
|
|
1155,
|
2013-06-09 17:25:34 +02:00
|
|
|
/**/
|
|
|
|
1154,
|
2013-06-09 16:24:45 +02:00
|
|
|
/**/
|
|
|
|
1153,
|
2013-06-08 23:30:04 +02:00
|
|
|
/**/
|
|
|
|
1152,
|
2013-06-08 23:26:27 +02:00
|
|
|
/**/
|
|
|
|
1151,
|
2013-06-08 22:30:03 +02:00
|
|
|
/**/
|
|
|
|
1150,
|
2013-06-08 18:19:48 +02:00
|
|
|
/**/
|
|
|
|
1149,
|
2013-06-08 15:24:48 +02:00
|
|
|
/**/
|
|
|
|
1148,
|
2013-06-08 14:38:27 +02:00
|
|
|
/**/
|
|
|
|
1147,
|
2013-06-08 13:33:37 +02:00
|
|
|
/**/
|
|
|
|
1146,
|
2013-06-07 22:39:40 +02:00
|
|
|
/**/
|
|
|
|
1145,
|
2013-06-07 20:17:11 +02:00
|
|
|
/**/
|
|
|
|
1144,
|
2013-06-07 19:53:10 +02:00
|
|
|
/**/
|
|
|
|
1143,
|
2013-06-07 19:48:39 +02:00
|
|
|
/**/
|
|
|
|
1142,
|
2013-06-07 19:17:14 +02:00
|
|
|
/**/
|
|
|
|
1141,
|
2013-06-07 17:31:29 +02:00
|
|
|
/**/
|
|
|
|
1140,
|
2013-06-07 16:31:50 +02:00
|
|
|
/**/
|
|
|
|
1139,
|
2013-06-07 14:59:18 +02:00
|
|
|
/**/
|
|
|
|
1138,
|
2013-06-07 14:08:30 +02:00
|
|
|
/**/
|
|
|
|
1137,
|
2013-06-06 21:31:06 +02:00
|
|
|
/**/
|
|
|
|
1136,
|
2013-06-06 21:19:51 +02:00
|
|
|
/**/
|
|
|
|
1135,
|
2013-06-06 18:55:49 +02:00
|
|
|
/**/
|
|
|
|
1134,
|
2013-06-06 18:46:06 +02:00
|
|
|
/**/
|
|
|
|
1133,
|
2013-06-06 18:04:51 +02:00
|
|
|
/**/
|
|
|
|
1132,
|
2013-06-06 16:22:06 +02:00
|
|
|
/**/
|
|
|
|
1131,
|
2013-06-06 14:55:19 +02:00
|
|
|
/**/
|
|
|
|
1130,
|
2013-06-06 14:01:46 +02:00
|
|
|
/**/
|
|
|
|
1129,
|
2013-06-05 21:42:53 +02:00
|
|
|
/**/
|
|
|
|
1128,
|
2013-06-05 21:30:37 +02:00
|
|
|
/**/
|
|
|
|
1127,
|
2013-06-05 21:23:39 +02:00
|
|
|
/**/
|
|
|
|
1126,
|
2013-06-05 21:10:59 +02:00
|
|
|
/**/
|
|
|
|
1125,
|
2013-06-05 20:34:15 +02:00
|
|
|
/**/
|
|
|
|
1124,
|
2013-06-05 19:35:38 +02:00
|
|
|
/**/
|
|
|
|
1123,
|
2013-06-05 18:52:40 +02:00
|
|
|
/**/
|
|
|
|
1122,
|
2013-06-05 16:51:57 +02:00
|
|
|
/**/
|
|
|
|
1121,
|
2013-06-05 16:33:10 +02:00
|
|
|
/**/
|
|
|
|
1120,
|
2013-06-05 12:43:09 +02:00
|
|
|
/**/
|
|
|
|
1119,
|
2013-06-05 11:46:25 +02:00
|
|
|
/**/
|
|
|
|
1118,
|
2013-06-05 11:05:17 +02:00
|
|
|
/**/
|
|
|
|
1117,
|
2013-06-05 11:02:05 +02:00
|
|
|
/**/
|
|
|
|
1116,
|
2013-06-04 22:13:50 +02:00
|
|
|
/**/
|
|
|
|
1115,
|
2013-06-04 21:42:22 +02:00
|
|
|
/**/
|
|
|
|
1114,
|
2013-06-04 21:27:38 +02:00
|
|
|
/**/
|
|
|
|
1113,
|
2013-06-04 18:28:48 +02:00
|
|
|
/**/
|
|
|
|
1112,
|
2013-06-04 17:47:05 +02:00
|
|
|
/**/
|
|
|
|
1111,
|
2013-06-04 14:23:05 +02:00
|
|
|
/**/
|
|
|
|
1110,
|
2013-06-03 20:12:51 +02:00
|
|
|
/**/
|
|
|
|
1109,
|
2013-06-03 20:04:48 +02:00
|
|
|
/**/
|
|
|
|
1108,
|
2013-06-03 19:41:06 +02:00
|
|
|
/**/
|
|
|
|
1107,
|
2013-06-03 12:17:04 +02:00
|
|
|
/**/
|
|
|
|
1106,
|
2013-06-02 22:37:42 +02:00
|
|
|
/**/
|
|
|
|
1105,
|
2013-06-02 22:08:03 +02:00
|
|
|
/**/
|
|
|
|
1104,
|
2013-06-02 21:30:04 +02:00
|
|
|
/**/
|
|
|
|
1103,
|
2013-06-02 19:22:13 +02:00
|
|
|
/**/
|
|
|
|
1102,
|
2013-06-02 19:14:17 +02:00
|
|
|
/**/
|
|
|
|
1101,
|
2013-06-02 18:54:21 +02:00
|
|
|
/**/
|
|
|
|
1100,
|
2013-06-02 18:20:17 +02:00
|
|
|
/**/
|
|
|
|
1099,
|
2013-06-02 18:07:37 +02:00
|
|
|
/**/
|
|
|
|
1098,
|
2013-06-02 17:46:40 +02:00
|
|
|
/**/
|
|
|
|
1097,
|
2013-06-02 17:41:54 +02:00
|
|
|
/**/
|
|
|
|
1096,
|
2013-06-02 16:40:55 +02:00
|
|
|
/**/
|
|
|
|
1095,
|
2013-06-02 16:34:21 +02:00
|
|
|
/**/
|
|
|
|
1094,
|
2013-06-02 16:07:10 +02:00
|
|
|
/**/
|
|
|
|
1093,
|
2013-06-02 15:55:55 +02:00
|
|
|
/**/
|
|
|
|
1092,
|
2013-06-02 15:01:57 +02:00
|
|
|
/**/
|
|
|
|
1091,
|
2013-06-01 23:02:54 +02:00
|
|
|
/**/
|
|
|
|
1090,
|
2013-06-01 20:32:12 +02:00
|
|
|
/**/
|
|
|
|
1089,
|
2013-06-01 19:54:43 +02:00
|
|
|
/**/
|
|
|
|
1088,
|
2013-06-01 14:42:56 +02:00
|
|
|
/**/
|
|
|
|
1087,
|
2013-06-01 13:24:24 +02:00
|
|
|
/**/
|
|
|
|
1086,
|
2013-06-01 12:40:20 +02:00
|
|
|
/**/
|
|
|
|
1085,
|
2013-05-31 23:18:00 +02:00
|
|
|
/**/
|
|
|
|
1084,
|
2013-05-31 22:14:52 +02:00
|
|
|
/**/
|
|
|
|
1083,
|
2013-05-31 21:45:09 +02:00
|
|
|
/**/
|
|
|
|
1082,
|
2013-05-31 20:49:31 +02:00
|
|
|
/**/
|
|
|
|
1081,
|
2013-05-31 19:01:16 +02:00
|
|
|
/**/
|
|
|
|
1080,
|
2013-05-31 18:46:11 +02:00
|
|
|
/**/
|
|
|
|
1079,
|
2013-05-30 22:44:02 +02:00
|
|
|
/**/
|
|
|
|
1078,
|
2013-05-30 22:06:33 +02:00
|
|
|
/**/
|
|
|
|
1077,
|
2013-05-30 21:42:13 +02:00
|
|
|
/**/
|
|
|
|
1076,
|
2013-05-30 19:18:31 +02:00
|
|
|
/**/
|
|
|
|
1075,
|
2013-05-30 19:01:24 +02:00
|
|
|
/**/
|
|
|
|
1074,
|
2013-05-30 18:45:23 +02:00
|
|
|
/**/
|
|
|
|
1073,
|
2013-05-30 17:49:24 +02:00
|
|
|
/**/
|
|
|
|
1072,
|
2013-05-30 17:05:39 +02:00
|
|
|
/**/
|
|
|
|
1071,
|
2013-05-30 15:38:24 +02:00
|
|
|
/**/
|
|
|
|
1070,
|
2013-05-30 14:52:37 +02:00
|
|
|
/**/
|
|
|
|
1069,
|
2013-05-30 13:37:28 +02:00
|
|
|
/**/
|
|
|
|
1068,
|
2013-05-30 13:32:30 +02:00
|
|
|
/**/
|
|
|
|
1067,
|
2013-05-30 13:28:41 +02:00
|
|
|
/**/
|
|
|
|
1066,
|
2013-05-30 13:22:13 +02:00
|
|
|
/**/
|
|
|
|
1065,
|
2013-05-30 13:17:17 +02:00
|
|
|
/**/
|
|
|
|
1064,
|
2013-05-30 13:14:13 +02:00
|
|
|
/**/
|
|
|
|
1063,
|
2013-05-30 13:05:58 +02:00
|
|
|
/**/
|
|
|
|
1062,
|
2013-05-30 13:01:18 +02:00
|
|
|
/**/
|
|
|
|
1061,
|
2013-05-30 12:43:54 +02:00
|
|
|
/**/
|
|
|
|
1060,
|
2013-05-30 12:40:39 +02:00
|
|
|
/**/
|
|
|
|
1059,
|
2013-05-30 12:35:52 +02:00
|
|
|
/**/
|
|
|
|
1058,
|
2013-05-30 12:26:58 +02:00
|
|
|
/**/
|
|
|
|
1057,
|
2013-05-30 12:14:49 +02:00
|
|
|
/**/
|
|
|
|
1056,
|
2013-05-30 11:51:08 +02:00
|
|
|
/**/
|
|
|
|
1055,
|
2013-05-30 11:43:15 +02:00
|
|
|
/**/
|
|
|
|
1054,
|
2013-05-29 22:58:32 +02:00
|
|
|
/**/
|
|
|
|
1053,
|
2013-05-29 22:52:32 +02:00
|
|
|
/**/
|
|
|
|
1052,
|
2013-05-29 22:49:26 +02:00
|
|
|
/**/
|
|
|
|
1051,
|
2013-05-29 22:46:26 +02:00
|
|
|
/**/
|
|
|
|
1050,
|
2013-05-29 22:43:37 +02:00
|
|
|
/**/
|
|
|
|
1049,
|
2013-05-29 22:39:52 +02:00
|
|
|
/**/
|
|
|
|
1048,
|
2013-05-29 22:36:10 +02:00
|
|
|
/**/
|
|
|
|
1047,
|
2013-05-29 22:26:18 +02:00
|
|
|
/**/
|
|
|
|
1046,
|
2013-05-29 22:20:01 +02:00
|
|
|
/**/
|
|
|
|
1045,
|
2013-05-29 22:15:30 +02:00
|
|
|
/**/
|
|
|
|
1044,
|
2013-05-29 22:05:55 +02:00
|
|
|
/**/
|
|
|
|
1043,
|
2013-05-29 22:02:22 +02:00
|
|
|
/**/
|
|
|
|
1042,
|
2013-05-29 21:37:35 +02:00
|
|
|
/**/
|
|
|
|
1041,
|
2013-05-29 21:33:39 +02:00
|
|
|
/**/
|
|
|
|
1040,
|
2013-05-29 21:14:42 +02:00
|
|
|
/**/
|
|
|
|
1039,
|
2013-05-29 19:18:00 +02:00
|
|
|
/**/
|
|
|
|
1038,
|
2013-05-29 18:45:11 +02:00
|
|
|
/**/
|
|
|
|
1037,
|
2013-05-28 22:52:16 +02:00
|
|
|
/**/
|
|
|
|
1036,
|
2013-05-28 22:31:46 +02:00
|
|
|
/**/
|
|
|
|
1035,
|
2013-05-28 22:30:35 +02:00
|
|
|
/**/
|
|
|
|
1034,
|
2013-05-28 22:03:20 +02:00
|
|
|
/**/
|
|
|
|
1033,
|
2013-05-27 20:10:50 +02:00
|
|
|
/**/
|
|
|
|
1032,
|
2013-05-27 11:22:04 +02:00
|
|
|
/**/
|
|
|
|
1031,
|
2013-05-26 23:13:07 +02:00
|
|
|
/**/
|
|
|
|
1030,
|
2013-05-26 22:56:19 +02:00
|
|
|
/**/
|
|
|
|
1029,
|
2013-05-26 21:47:28 +02:00
|
|
|
/**/
|
|
|
|
1028,
|
2013-05-26 19:19:52 +02:00
|
|
|
/**/
|
|
|
|
1027,
|
2013-05-26 18:40:14 +02:00
|
|
|
/**/
|
|
|
|
1026,
|
2013-05-26 17:45:49 +02:00
|
|
|
/**/
|
|
|
|
1025,
|
2013-05-26 16:57:28 +02:00
|
|
|
/**/
|
|
|
|
1024,
|
2013-05-26 15:14:55 +02:00
|
|
|
/**/
|
|
|
|
1023,
|
2013-05-26 14:54:12 +02:00
|
|
|
/**/
|
|
|
|
1022,
|
2013-05-26 14:32:05 +02:00
|
|
|
/**/
|
|
|
|
1021,
|
2013-05-25 23:15:27 +02:00
|
|
|
/**/
|
|
|
|
1020,
|
2013-05-25 22:04:23 +02:00
|
|
|
/**/
|
|
|
|
1019,
|
2013-05-25 21:18:34 +02:00
|
|
|
/**/
|
|
|
|
1018,
|
2013-05-25 20:19:50 +02:00
|
|
|
/**/
|
|
|
|
1017,
|
2013-05-25 15:31:05 +02:00
|
|
|
/**/
|
|
|
|
1016,
|
2013-05-25 14:42:03 +02:00
|
|
|
/**/
|
|
|
|
1015,
|
2013-05-25 12:28:11 +02:00
|
|
|
/**/
|
|
|
|
1014,
|
2013-05-25 12:18:39 +02:00
|
|
|
/**/
|
|
|
|
1013,
|
2013-05-24 23:10:50 +02:00
|
|
|
/**/
|
|
|
|
1012,
|
2013-05-24 21:59:54 +02:00
|
|
|
/**/
|
|
|
|
1011,
|
2013-05-24 20:25:33 +02:00
|
|
|
/**/
|
|
|
|
1010,
|
2013-05-24 18:58:43 +02:00
|
|
|
/**/
|
|
|
|
1009,
|
2013-05-23 22:43:08 +02:00
|
|
|
/**/
|
|
|
|
1008,
|
2013-05-23 22:27:03 +02:00
|
|
|
/**/
|
|
|
|
1007,
|
2013-05-23 22:25:15 +02:00
|
|
|
/**/
|
|
|
|
1006,
|
2013-05-22 23:00:40 +02:00
|
|
|
/**/
|
|
|
|
1005,
|
2013-05-21 22:38:18 +02:00
|
|
|
/**/
|
|
|
|
1004,
|
2013-05-21 22:23:56 +02:00
|
|
|
/**/
|
|
|
|
1003,
|
2013-05-21 22:13:41 +02:00
|
|
|
/**/
|
|
|
|
1002,
|
2013-05-21 22:00:51 +02:00
|
|
|
/**/
|
|
|
|
1001,
|
2013-05-21 21:37:20 +02:00
|
|
|
/**/
|
|
|
|
1000,
|
2013-05-21 21:20:20 +02:00
|
|
|
/**/
|
|
|
|
999,
|
2013-05-21 20:51:59 +02:00
|
|
|
/**/
|
|
|
|
998,
|
2013-05-21 20:40:40 +02:00
|
|
|
/**/
|
|
|
|
997,
|
2013-05-21 19:50:34 +02:00
|
|
|
/**/
|
|
|
|
996,
|
2013-05-21 19:11:01 +02:00
|
|
|
/**/
|
|
|
|
995,
|
2013-05-21 19:01:55 +02:00
|
|
|
/**/
|
|
|
|
994,
|
2013-05-21 18:47:21 +02:00
|
|
|
/**/
|
|
|
|
993,
|
2013-05-21 18:30:34 +02:00
|
|
|
/**/
|
|
|
|
992,
|
2013-05-21 18:19:38 +02:00
|
|
|
/**/
|
|
|
|
991,
|
2013-05-21 16:28:11 +02:00
|
|
|
/**/
|
|
|
|
990,
|
2013-05-21 15:33:41 +02:00
|
|
|
/**/
|
|
|
|
989,
|
2013-05-21 14:03:00 +02:00
|
|
|
/**/
|
|
|
|
988,
|
2013-05-21 13:30:21 +02:00
|
|
|
/**/
|
|
|
|
987,
|
2013-05-21 13:05:15 +02:00
|
|
|
/**/
|
|
|
|
986,
|
2013-05-21 12:52:04 +02:00
|
|
|
/**/
|
|
|
|
985,
|
2013-05-21 12:46:02 +02:00
|
|
|
/**/
|
|
|
|
984,
|
2013-05-21 12:43:56 +02:00
|
|
|
/**/
|
|
|
|
983,
|
2013-05-21 12:34:17 +02:00
|
|
|
/**/
|
|
|
|
982,
|
2013-05-21 00:03:02 +02:00
|
|
|
/**/
|
|
|
|
981,
|
2013-05-20 22:20:02 +02:00
|
|
|
/**/
|
|
|
|
980,
|
2013-05-20 21:57:03 +02:00
|
|
|
/**/
|
|
|
|
979,
|
2013-05-20 21:49:13 +02:00
|
|
|
/**/
|
|
|
|
978,
|
2013-05-20 21:26:33 +02:00
|
|
|
/**/
|
|
|
|
977,
|
2013-05-20 13:55:21 +02:00
|
|
|
/**/
|
|
|
|
976,
|
2013-05-20 13:44:29 +02:00
|
|
|
/**/
|
|
|
|
975,
|
2013-05-20 12:52:29 +02:00
|
|
|
/**/
|
|
|
|
974,
|
2013-05-19 22:31:18 +02:00
|
|
|
/**/
|
|
|
|
973,
|
2013-05-19 21:15:15 +02:00
|
|
|
/**/
|
|
|
|
972,
|
2013-05-19 21:03:54 +02:00
|
|
|
/**/
|
|
|
|
971,
|
2013-05-19 19:40:29 +02:00
|
|
|
/**/
|
|
|
|
970,
|
2013-05-18 20:55:35 +02:00
|
|
|
/**/
|
|
|
|
969,
|
2013-05-18 20:45:59 +02:00
|
|
|
/**/
|
|
|
|
968,
|
2013-05-17 21:20:17 +02:00
|
|
|
/**/
|
|
|
|
967,
|
2013-05-17 16:40:06 +02:00
|
|
|
/**/
|
|
|
|
966,
|
2013-05-17 16:24:32 +02:00
|
|
|
/**/
|
|
|
|
965,
|
2013-05-17 16:18:33 +02:00
|
|
|
/**/
|
|
|
|
964,
|
2013-05-17 16:03:57 +02:00
|
|
|
/**/
|
|
|
|
963,
|
2013-05-17 13:38:04 +02:00
|
|
|
/**/
|
|
|
|
962,
|
2013-05-16 20:47:56 +02:00
|
|
|
/**/
|
|
|
|
961,
|
2013-05-15 23:13:10 +02:00
|
|
|
/**/
|
|
|
|
960,
|
2013-05-15 19:44:39 +02:00
|
|
|
/**/
|
|
|
|
959,
|
2013-05-15 19:07:47 +02:00
|
|
|
/**/
|
|
|
|
958,
|
2013-05-15 18:28:13 +02:00
|
|
|
/**/
|
|
|
|
957,
|
2013-05-15 17:49:05 +02:00
|
|
|
/**/
|
|
|
|
956,
|
2013-05-15 16:27:37 +02:00
|
|
|
/**/
|
|
|
|
955,
|
2013-05-15 16:11:50 +02:00
|
|
|
/**/
|
|
|
|
954,
|
2013-05-15 16:04:40 +02:00
|
|
|
/**/
|
|
|
|
953,
|
2013-05-15 15:51:08 +02:00
|
|
|
/**/
|
|
|
|
952,
|
2013-05-15 15:44:28 +02:00
|
|
|
/**/
|
|
|
|
951,
|
2013-05-15 15:35:09 +02:00
|
|
|
/**/
|
|
|
|
950,
|
2013-05-15 15:12:29 +02:00
|
|
|
/**/
|
|
|
|
949,
|
2013-05-15 14:51:35 +02:00
|
|
|
/**/
|
|
|
|
948,
|
2013-05-15 14:39:52 +02:00
|
|
|
/**/
|
|
|
|
947,
|
2013-05-15 14:22:41 +02:00
|
|
|
/**/
|
|
|
|
946,
|
2013-05-15 13:38:47 +02:00
|
|
|
/**/
|
|
|
|
945,
|
2013-05-13 20:26:53 +02:00
|
|
|
/**/
|
|
|
|
944,
|
2013-05-12 21:16:23 +02:00
|
|
|
/**/
|
|
|
|
943,
|
2013-05-12 20:36:14 +02:00
|
|
|
/**/
|
|
|
|
942,
|
2013-05-12 19:45:35 +02:00
|
|
|
/**/
|
|
|
|
941,
|
2013-05-12 19:30:31 +02:00
|
|
|
/**/
|
|
|
|
940,
|
2013-05-12 19:09:51 +02:00
|
|
|
/**/
|
|
|
|
939,
|
2013-05-12 19:00:41 +02:00
|
|
|
/**/
|
|
|
|
938,
|
2013-05-12 18:44:48 +02:00
|
|
|
/**/
|
|
|
|
937,
|
2013-05-12 14:11:17 +02:00
|
|
|
/**/
|
|
|
|
936,
|
2013-05-11 17:45:48 +02:00
|
|
|
/**/
|
|
|
|
935,
|
2013-05-11 15:50:33 +02:00
|
|
|
/**/
|
|
|
|
934,
|
2013-05-11 13:56:18 +02:00
|
|
|
/**/
|
|
|
|
933,
|
2013-05-11 13:45:05 +02:00
|
|
|
/**/
|
|
|
|
932,
|
2013-05-07 05:18:20 +02:00
|
|
|
/**/
|
|
|
|
931,
|
2013-05-07 05:11:17 +02:00
|
|
|
/**/
|
|
|
|
930,
|
2013-05-06 06:45:47 +02:00
|
|
|
/**/
|
|
|
|
929,
|
2013-05-06 06:26:15 +02:00
|
|
|
/**/
|
|
|
|
928,
|
2013-05-06 05:50:28 +02:00
|
|
|
/**/
|
|
|
|
927,
|
2013-05-06 04:50:35 +02:00
|
|
|
/**/
|
|
|
|
926,
|
2013-05-06 04:24:17 +02:00
|
|
|
/**/
|
|
|
|
925,
|
2013-05-06 03:52:55 +02:00
|
|
|
/**/
|
|
|
|
924,
|
2013-05-04 04:40:15 +02:00
|
|
|
/**/
|
|
|
|
923,
|
2013-05-04 04:11:07 +02:00
|
|
|
/**/
|
|
|
|
922,
|
2013-05-04 03:42:34 +02:00
|
|
|
/**/
|
|
|
|
921,
|
2013-05-04 03:40:27 +02:00
|
|
|
/**/
|
|
|
|
920,
|
2013-05-04 03:37:10 +02:00
|
|
|
/**/
|
|
|
|
919,
|
2013-04-24 18:34:45 +02:00
|
|
|
/**/
|
|
|
|
918,
|
2013-04-24 17:34:20 +02:00
|
|
|
/**/
|
|
|
|
917,
|
2013-04-24 16:52:36 +02:00
|
|
|
/**/
|
|
|
|
916,
|
2013-04-24 16:34:02 +02:00
|
|
|
/**/
|
|
|
|
915,
|
2013-04-24 15:47:15 +02:00
|
|
|
/**/
|
|
|
|
914,
|
2013-04-24 15:39:11 +02:00
|
|
|
/**/
|
|
|
|
913,
|
2013-04-24 15:12:32 +02:00
|
|
|
/**/
|
|
|
|
912,
|
2013-04-24 14:07:45 +02:00
|
|
|
/**/
|
|
|
|
911,
|
2013-04-24 13:47:45 +02:00
|
|
|
/**/
|
|
|
|
910,
|
2013-04-24 13:39:15 +02:00
|
|
|
/**/
|
|
|
|
909,
|
2013-04-24 13:10:41 +02:00
|
|
|
/**/
|
|
|
|
908,
|
2013-04-24 13:04:26 +02:00
|
|
|
/**/
|
|
|
|
907,
|
2013-04-24 12:56:19 +02:00
|
|
|
/**/
|
|
|
|
906,
|
2013-04-15 22:22:57 +02:00
|
|
|
/**/
|
|
|
|
905,
|
2013-04-15 18:25:59 +02:00
|
|
|
/**/
|
|
|
|
904,
|
2013-04-15 16:14:22 +02:00
|
|
|
/**/
|
|
|
|
903,
|
2013-04-15 15:55:19 +02:00
|
|
|
/**/
|
|
|
|
902,
|
2013-04-15 15:47:12 +02:00
|
|
|
/**/
|
|
|
|
901,
|
2013-04-15 15:40:33 +02:00
|
|
|
/**/
|
|
|
|
900,
|
2013-04-15 15:32:25 +02:00
|
|
|
/**/
|
|
|
|
899,
|
2013-04-15 15:15:35 +02:00
|
|
|
/**/
|
|
|
|
898,
|
2013-04-15 14:44:57 +02:00
|
|
|
/**/
|
|
|
|
897,
|
2013-04-15 13:49:21 +02:00
|
|
|
/**/
|
|
|
|
896,
|
2013-04-15 13:06:21 +02:00
|
|
|
/**/
|
|
|
|
895,
|
2013-04-15 12:36:18 +02:00
|
|
|
/**/
|
|
|
|
894,
|
2013-04-15 12:27:36 +02:00
|
|
|
/**/
|
|
|
|
893,
|
2013-04-14 23:19:36 +02:00
|
|
|
/**/
|
|
|
|
892,
|
2013-04-14 16:26:15 +02:00
|
|
|
/**/
|
|
|
|
891,
|
2013-04-14 16:21:41 +02:00
|
|
|
/**/
|
|
|
|
890,
|
2013-04-14 16:19:03 +02:00
|
|
|
/**/
|
|
|
|
889,
|
2013-04-12 14:42:39 +02:00
|
|
|
/**/
|
|
|
|
888,
|
2013-04-12 13:45:02 +02:00
|
|
|
/**/
|
|
|
|
887,
|
2013-04-12 12:27:30 +02:00
|
|
|
/**/
|
|
|
|
886,
|
2013-04-12 12:18:49 +02:00
|
|
|
/**/
|
|
|
|
885,
|
2013-04-06 14:30:40 +02:00
|
|
|
/**/
|
|
|
|
884,
|
2013-04-06 14:29:00 +02:00
|
|
|
/**/
|
|
|
|
883,
|
2013-04-05 19:50:17 +02:00
|
|
|
/**/
|
|
|
|
882,
|
2013-04-05 19:32:36 +02:00
|
|
|
/**/
|
|
|
|
881,
|
2013-04-05 18:58:47 +02:00
|
|
|
/**/
|
|
|
|
880,
|
2013-04-05 17:43:14 +02:00
|
|
|
/**/
|
|
|
|
879,
|
2013-04-05 15:41:05 +02:00
|
|
|
/**/
|
|
|
|
878,
|
2013-04-03 21:14:29 +02:00
|
|
|
/**/
|
|
|
|
877,
|
2013-04-03 21:11:39 +02:00
|
|
|
/**/
|
|
|
|
876,
|
2013-03-21 22:53:50 +01:00
|
|
|
/**/
|
|
|
|
875,
|
2013-03-19 18:31:49 +01:00
|
|
|
/**/
|
|
|
|
874,
|
2013-03-19 17:42:15 +01:00
|
|
|
/**/
|
|
|
|
873,
|
2013-03-19 16:49:16 +01:00
|
|
|
/**/
|
|
|
|
872,
|
2013-03-19 15:27:48 +01:00
|
|
|
/**/
|
|
|
|
871,
|
2013-03-19 14:48:29 +01:00
|
|
|
/**/
|
|
|
|
870,
|
2013-03-19 14:25:54 +01:00
|
|
|
/**/
|
|
|
|
869,
|
2013-03-19 13:56:08 +01:00
|
|
|
/**/
|
|
|
|
868,
|
2013-03-19 13:33:23 +01:00
|
|
|
/**/
|
|
|
|
867,
|
2013-03-19 12:35:42 +01:00
|
|
|
/**/
|
|
|
|
866,
|
2013-03-16 21:42:16 +01:00
|
|
|
/**/
|
|
|
|
865,
|
2013-03-16 21:35:33 +01:00
|
|
|
/**/
|
|
|
|
864,
|
2013-03-16 14:33:36 +01:00
|
|
|
/**/
|
|
|
|
863,
|
2013-03-16 14:20:51 +01:00
|
|
|
/**/
|
|
|
|
862,
|
2013-03-13 20:42:32 +01:00
|
|
|
/**/
|
|
|
|
861,
|
2013-03-13 20:23:22 +01:00
|
|
|
/**/
|
|
|
|
860,
|
2013-03-13 19:29:28 +01:00
|
|
|
/**/
|
|
|
|
859,
|
2013-03-13 19:02:41 +01:00
|
|
|
/**/
|
|
|
|
858,
|
2013-03-13 18:30:43 +01:00
|
|
|
/**/
|
|
|
|
857,
|
2013-03-13 17:50:25 +01:00
|
|
|
/**/
|
|
|
|
856,
|
2013-03-13 17:01:52 +01:00
|
|
|
/**/
|
|
|
|
855,
|
2013-03-07 19:38:54 +01:00
|
|
|
/**/
|
|
|
|
854,
|
2013-03-07 18:50:57 +01:00
|
|
|
/**/
|
|
|
|
853,
|
2013-03-07 18:02:30 +01:00
|
|
|
/**/
|
|
|
|
852,
|
2013-03-07 16:41:30 +01:00
|
|
|
/**/
|
|
|
|
851,
|
2013-03-07 16:32:54 +01:00
|
|
|
/**/
|
|
|
|
850,
|
2013-03-07 16:08:35 +01:00
|
|
|
/**/
|
|
|
|
849,
|
2013-03-07 15:16:21 +01:00
|
|
|
/**/
|
|
|
|
848,
|
2013-03-07 14:50:34 +01:00
|
|
|
/**/
|
|
|
|
847,
|
2013-03-07 13:32:36 +01:00
|
|
|
/**/
|
|
|
|
846,
|
2013-03-07 13:21:32 +01:00
|
|
|
/**/
|
|
|
|
845,
|
2013-03-07 13:13:52 +01:00
|
|
|
/**/
|
|
|
|
844,
|
2013-02-26 22:54:11 +01:00
|
|
|
/**/
|
|
|
|
843,
|
2013-02-26 21:43:32 +01:00
|
|
|
/**/
|
|
|
|
842,
|
2013-02-26 19:36:15 +01:00
|
|
|
/**/
|
|
|
|
841,
|
2013-02-26 18:46:01 +01:00
|
|
|
/**/
|
|
|
|
840,
|
2013-02-26 17:59:43 +01:00
|
|
|
/**/
|
|
|
|
839,
|
2013-02-26 17:21:29 +01:00
|
|
|
/**/
|
|
|
|
838,
|
2013-02-26 15:27:23 +01:00
|
|
|
/**/
|
|
|
|
837,
|
2013-02-26 14:56:42 +01:00
|
|
|
/**/
|
|
|
|
836,
|
2013-02-26 14:14:07 +01:00
|
|
|
/**/
|
|
|
|
835,
|
2013-02-26 13:41:35 +01:00
|
|
|
/**/
|
|
|
|
834,
|
2013-02-26 13:30:32 +01:00
|
|
|
/**/
|
|
|
|
833,
|
2013-02-26 11:25:33 +01:00
|
|
|
/**/
|
|
|
|
832,
|
2013-02-20 21:12:10 +01:00
|
|
|
/**/
|
|
|
|
831,
|
2013-02-20 19:26:29 +01:00
|
|
|
/**/
|
|
|
|
830,
|
2013-02-20 18:39:13 +01:00
|
|
|
/**/
|
|
|
|
829,
|
2013-02-20 17:59:11 +01:00
|
|
|
/**/
|
|
|
|
828,
|
2013-02-20 16:54:27 +01:00
|
|
|
/**/
|
|
|
|
827,
|
2013-02-20 16:47:36 +01:00
|
|
|
/**/
|
|
|
|
826,
|
2013-02-20 16:09:43 +01:00
|
|
|
/**/
|
|
|
|
825,
|
2013-02-20 15:19:43 +01:00
|
|
|
/**/
|
|
|
|
824,
|
2013-02-20 13:34:19 +01:00
|
|
|
/**/
|
|
|
|
823,
|
2013-02-17 15:45:37 +01:00
|
|
|
/**/
|
|
|
|
822,
|
2013-02-16 18:16:15 +01:00
|
|
|
/**/
|
|
|
|
821,
|
2013-02-14 22:19:51 +01:00
|
|
|
/**/
|
|
|
|
820,
|
2013-02-14 22:11:39 +01:00
|
|
|
/**/
|
|
|
|
819,
|
2013-02-14 20:58:35 +01:00
|
|
|
/**/
|
|
|
|
818,
|
2013-02-14 20:10:33 +01:00
|
|
|
/**/
|
|
|
|
817,
|
2013-02-13 17:35:04 +01:00
|
|
|
/**/
|
|
|
|
816,
|
2013-02-13 17:06:11 +01:00
|
|
|
/**/
|
|
|
|
815,
|
2013-02-13 16:49:58 +01:00
|
|
|
/**/
|
|
|
|
814,
|
2013-02-13 16:30:21 +01:00
|
|
|
/**/
|
|
|
|
813,
|
2013-02-13 16:10:17 +01:00
|
|
|
/**/
|
|
|
|
812,
|
2013-02-13 15:53:19 +01:00
|
|
|
/**/
|
|
|
|
811,
|
2013-02-13 15:44:26 +01:00
|
|
|
/**/
|
|
|
|
810,
|
2013-02-13 14:36:44 +01:00
|
|
|
/**/
|
|
|
|
809,
|
2013-02-13 14:17:08 +01:00
|
|
|
/**/
|
|
|
|
808,
|
2013-02-13 12:16:05 +01:00
|
|
|
/**/
|
|
|
|
807,
|
2013-02-06 19:58:43 +01:00
|
|
|
/**/
|
|
|
|
806,
|
2013-02-06 19:49:43 +01:00
|
|
|
/**/
|
|
|
|
805,
|
2013-02-06 18:45:01 +01:00
|
|
|
/**/
|
|
|
|
804,
|
2013-02-06 18:24:02 +01:00
|
|
|
/**/
|
|
|
|
803,
|
2013-02-06 16:26:26 +01:00
|
|
|
/**/
|
|
|
|
802,
|
2013-02-06 13:38:02 +01:00
|
|
|
/**/
|
|
|
|
801,
|
2013-02-06 12:33:21 +01:00
|
|
|
/**/
|
|
|
|
800,
|
2013-02-06 12:14:48 +01:00
|
|
|
/**/
|
|
|
|
799,
|
2013-01-31 21:09:15 +01:00
|
|
|
/**/
|
|
|
|
798,
|
2013-01-30 21:56:21 +01:00
|
|
|
/**/
|
|
|
|
797,
|
2013-01-30 18:21:51 +01:00
|
|
|
/**/
|
|
|
|
796,
|
2013-01-30 17:41:50 +01:00
|
|
|
/**/
|
|
|
|
795,
|
2013-01-30 17:30:17 +01:00
|
|
|
/**/
|
|
|
|
794,
|
2013-01-30 17:03:30 +01:00
|
|
|
/**/
|
|
|
|
793,
|
2013-01-30 16:30:26 +01:00
|
|
|
/**/
|
|
|
|
792,
|
2013-01-30 14:55:42 +01:00
|
|
|
/**/
|
|
|
|
791,
|
2013-01-30 14:13:56 +01:00
|
|
|
/**/
|
|
|
|
790,
|
2013-01-30 13:59:37 +01:00
|
|
|
/**/
|
|
|
|
789,
|
2013-01-30 12:50:56 +01:00
|
|
|
/**/
|
|
|
|
788,
|
2013-01-30 12:31:36 +01:00
|
|
|
/**/
|
|
|
|
787,
|
2013-01-30 11:44:39 +01:00
|
|
|
/**/
|
|
|
|
786,
|
2013-01-25 20:11:01 +01:00
|
|
|
/**/
|
|
|
|
785,
|
2013-01-25 19:28:38 +01:00
|
|
|
/**/
|
|
|
|
784,
|
2013-01-24 21:00:20 +01:00
|
|
|
/**/
|
|
|
|
783,
|
2013-01-23 18:37:40 +01:00
|
|
|
/**/
|
|
|
|
782,
|
2013-01-23 17:43:57 +01:00
|
|
|
/**/
|
|
|
|
781,
|
2013-01-23 17:17:10 +01:00
|
|
|
/**/
|
|
|
|
780,
|
2013-01-23 16:43:11 +01:00
|
|
|
/**/
|
|
|
|
779,
|
2013-01-23 16:19:23 +01:00
|
|
|
/**/
|
|
|
|
778,
|
2013-01-23 16:00:11 +01:00
|
|
|
/**/
|
|
|
|
777,
|
2013-01-23 15:53:15 +01:00
|
|
|
/**/
|
|
|
|
776,
|
2013-01-23 13:55:20 +01:00
|
|
|
/**/
|
|
|
|
775,
|
2013-01-23 13:41:00 +01:00
|
|
|
/**/
|
|
|
|
774,
|
2013-01-19 14:02:02 +01:00
|
|
|
/**/
|
|
|
|
773,
|
2013-01-17 18:34:05 +01:00
|
|
|
/**/
|
|
|
|
772,
|
2013-01-17 17:37:35 +01:00
|
|
|
/**/
|
|
|
|
771,
|
2013-01-17 17:17:26 +01:00
|
|
|
/**/
|
|
|
|
770,
|
2013-01-17 17:02:05 +01:00
|
|
|
/**/
|
|
|
|
769,
|
2013-01-17 15:37:01 +01:00
|
|
|
/**/
|
|
|
|
768,
|
2013-01-17 14:39:47 +01:00
|
|
|
/**/
|
|
|
|
767,
|
2013-01-17 14:09:44 +01:00
|
|
|
/**/
|
|
|
|
766,
|
2013-01-17 14:00:11 +01:00
|
|
|
/**/
|
|
|
|
765,
|
2013-01-17 13:37:32 +01:00
|
|
|
/**/
|
|
|
|
764,
|
2013-01-17 13:24:08 +01:00
|
|
|
/**/
|
|
|
|
763,
|
2012-12-16 12:50:39 +01:00
|
|
|
/**/
|
|
|
|
762,
|
2012-12-12 18:20:32 +01:00
|
|
|
/**/
|
|
|
|
761,
|
2012-12-12 17:33:32 +01:00
|
|
|
/**/
|
|
|
|
760,
|
2012-12-12 17:12:25 +01:00
|
|
|
/**/
|
|
|
|
759,
|
2012-12-12 16:43:58 +01:00
|
|
|
/**/
|
|
|
|
758,
|
2012-12-12 16:11:36 +01:00
|
|
|
/**/
|
|
|
|
757,
|
2012-12-12 15:55:20 +01:00
|
|
|
/**/
|
|
|
|
756,
|
2012-12-12 14:25:05 +01:00
|
|
|
/**/
|
|
|
|
755,
|
2012-12-06 21:30:29 +01:00
|
|
|
/**/
|
|
|
|
754,
|
2012-12-05 19:13:18 +01:00
|
|
|
/**/
|
|
|
|
753,
|
2012-12-05 19:00:06 +01:00
|
|
|
/**/
|
|
|
|
752,
|
2012-12-05 18:21:32 +01:00
|
|
|
/**/
|
|
|
|
751,
|
2012-12-05 17:03:22 +01:00
|
|
|
/**/
|
|
|
|
750,
|
2012-12-05 16:30:07 +01:00
|
|
|
/**/
|
|
|
|
749,
|
2012-12-05 16:10:42 +01:00
|
|
|
/**/
|
|
|
|
748,
|
2012-12-05 15:32:30 +01:00
|
|
|
/**/
|
|
|
|
747,
|
2012-12-05 15:16:47 +01:00
|
|
|
/**/
|
|
|
|
746,
|
2012-12-05 14:43:02 +01:00
|
|
|
/**/
|
|
|
|
745,
|
2012-11-29 20:10:00 +01:00
|
|
|
/**/
|
|
|
|
744,
|
2012-11-28 23:03:07 +01:00
|
|
|
/**/
|
|
|
|
743,
|
2012-11-28 22:12:44 +01:00
|
|
|
/**/
|
|
|
|
742,
|
2012-11-28 19:10:54 +01:00
|
|
|
/**/
|
|
|
|
741,
|
2012-11-28 18:31:54 +01:00
|
|
|
/**/
|
|
|
|
740,
|
2012-11-28 18:22:11 +01:00
|
|
|
/**/
|
|
|
|
739,
|
2012-11-28 17:41:59 +01:00
|
|
|
/**/
|
|
|
|
738,
|
2012-11-28 17:34:48 +01:00
|
|
|
/**/
|
|
|
|
737,
|
2012-11-28 16:49:58 +01:00
|
|
|
/**/
|
|
|
|
736,
|
2012-11-28 16:18:29 +01:00
|
|
|
/**/
|
|
|
|
735,
|
2012-11-28 16:06:22 +01:00
|
|
|
/**/
|
|
|
|
734,
|
2012-11-28 15:55:42 +01:00
|
|
|
/**/
|
|
|
|
733,
|
2012-11-28 15:37:51 +01:00
|
|
|
/**/
|
|
|
|
732,
|
2012-11-28 15:33:14 +01:00
|
|
|
/**/
|
|
|
|
731,
|
2012-11-28 15:25:34 +01:00
|
|
|
/**/
|
|
|
|
730,
|
2012-11-24 13:39:00 +01:00
|
|
|
/**/
|
|
|
|
729,
|
2012-11-23 21:54:48 +01:00
|
|
|
/**/
|
|
|
|
728,
|
2012-11-23 21:47:22 +01:00
|
|
|
/**/
|
|
|
|
727,
|
2012-11-23 21:45:25 +01:00
|
|
|
/**/
|
|
|
|
726,
|
2012-11-20 17:55:10 +01:00
|
|
|
/**/
|
|
|
|
725,
|
2012-11-20 17:21:52 +01:00
|
|
|
/**/
|
|
|
|
724,
|
2012-11-20 17:19:01 +01:00
|
|
|
/**/
|
|
|
|
723,
|
2012-11-20 17:03:27 +01:00
|
|
|
/**/
|
|
|
|
722,
|
2012-11-20 16:59:14 +01:00
|
|
|
/**/
|
|
|
|
721,
|
2012-11-20 16:56:54 +01:00
|
|
|
/**/
|
|
|
|
720,
|
2012-11-20 16:53:39 +01:00
|
|
|
/**/
|
|
|
|
719,
|
2012-11-20 12:16:58 +01:00
|
|
|
/**/
|
|
|
|
718,
|
2012-11-20 12:03:06 +01:00
|
|
|
/**/
|
|
|
|
717,
|
2012-11-20 11:04:35 +01:00
|
|
|
/**/
|
|
|
|
716,
|
2012-11-14 22:38:08 +01:00
|
|
|
/**/
|
|
|
|
715,
|
2012-11-14 20:52:28 +01:00
|
|
|
/**/
|
|
|
|
714,
|
2012-11-14 18:10:56 +01:00
|
|
|
/**/
|
|
|
|
713,
|
2012-10-23 05:35:34 +02:00
|
|
|
/**/
|
|
|
|
712,
|
2012-10-23 05:17:37 +02:00
|
|
|
/**/
|
|
|
|
711,
|
2012-10-23 05:08:53 +02:00
|
|
|
/**/
|
|
|
|
710,
|
2012-10-21 23:56:05 +02:00
|
|
|
/**/
|
|
|
|
709,
|
2012-10-21 22:18:21 +02:00
|
|
|
/**/
|
|
|
|
708,
|
2012-10-21 21:38:45 +02:00
|
|
|
/**/
|
|
|
|
707,
|
2012-10-21 21:25:22 +02:00
|
|
|
/**/
|
|
|
|
706,
|
2012-10-21 04:00:07 +02:00
|
|
|
/**/
|
|
|
|
705,
|
2012-10-21 03:54:33 +02:00
|
|
|
/**/
|
|
|
|
704,
|
2012-10-21 03:46:05 +02:00
|
|
|
/**/
|
|
|
|
703,
|
2012-10-21 02:41:08 +02:00
|
|
|
/**/
|
|
|
|
702,
|
2012-10-21 02:37:10 +02:00
|
|
|
/**/
|
|
|
|
701,
|
2012-10-21 02:17:45 +02:00
|
|
|
/**/
|
|
|
|
700,
|
2012-10-21 02:10:24 +02:00
|
|
|
/**/
|
|
|
|
699,
|
2012-10-21 01:47:00 +02:00
|
|
|
/**/
|
|
|
|
698,
|
2012-10-21 01:40:30 +02:00
|
|
|
/**/
|
|
|
|
697,
|
2012-10-21 01:21:59 +02:00
|
|
|
/**/
|
|
|
|
696,
|
2012-10-21 00:58:39 +02:00
|
|
|
/**/
|
|
|
|
695,
|
2012-10-21 00:45:18 +02:00
|
|
|
/**/
|
|
|
|
694,
|
2012-10-21 00:10:39 +02:00
|
|
|
/**/
|
|
|
|
693,
|
2012-10-18 05:18:32 +02:00
|
|
|
/**/
|
|
|
|
692,
|
2012-10-14 05:20:12 +02:00
|
|
|
/**/
|
|
|
|
691,
|
2012-10-14 04:35:45 +02:00
|
|
|
/**/
|
|
|
|
690,
|
2012-10-14 03:41:59 +02:00
|
|
|
/**/
|
|
|
|
689,
|
2012-10-14 03:22:56 +02:00
|
|
|
/**/
|
|
|
|
688,
|
2012-10-11 04:44:33 +02:00
|
|
|
/**/
|
|
|
|
687,
|
2012-10-11 04:04:37 +02:00
|
|
|
/**/
|
|
|
|
686,
|
2012-10-11 03:35:45 +02:00
|
|
|
/**/
|
|
|
|
685,
|
2012-10-06 19:10:35 +02:00
|
|
|
/**/
|
|
|
|
684,
|
2012-10-05 21:30:07 +02:00
|
|
|
/**/
|
|
|
|
683,
|
2012-10-04 22:38:37 +02:00
|
|
|
/**/
|
|
|
|
682,
|
2012-10-03 21:48:43 +02:00
|
|
|
/**/
|
|
|
|
681,
|
2012-10-03 21:33:41 +02:00
|
|
|
/**/
|
|
|
|
680,
|
2012-10-03 21:09:35 +02:00
|
|
|
/**/
|
|
|
|
679,
|
2012-10-03 18:50:00 +02:00
|
|
|
/**/
|
|
|
|
678,
|
2012-10-03 18:25:00 +02:00
|
|
|
/**/
|
|
|
|
677,
|
2012-10-03 18:06:59 +02:00
|
|
|
/**/
|
|
|
|
676,
|
2012-10-03 17:12:47 +02:00
|
|
|
/**/
|
|
|
|
675,
|
2012-10-03 14:48:08 +02:00
|
|
|
/**/
|
|
|
|
674,
|
2012-10-03 13:35:51 +02:00
|
|
|
/**/
|
|
|
|
673,
|
2012-09-21 14:00:35 +02:00
|
|
|
/**/
|
|
|
|
672,
|
2012-09-21 13:46:06 +02:00
|
|
|
/**/
|
|
|
|
671,
|
2012-09-21 13:43:14 +02:00
|
|
|
/**/
|
|
|
|
670,
|
2012-09-21 13:26:49 +02:00
|
|
|
/**/
|
|
|
|
669,
|
2012-09-21 12:50:51 +02:00
|
|
|
/**/
|
|
|
|
668,
|
2012-09-21 12:42:44 +02:00
|
|
|
/**/
|
|
|
|
667,
|
2012-09-18 22:00:08 +02:00
|
|
|
/**/
|
|
|
|
666,
|
2012-09-18 18:27:12 +02:00
|
|
|
/**/
|
|
|
|
665,
|
2012-09-18 18:03:37 +02:00
|
|
|
/**/
|
|
|
|
664,
|
2012-09-18 16:47:07 +02:00
|
|
|
/**/
|
|
|
|
663,
|
2012-09-18 16:36:32 +02:00
|
|
|
/**/
|
|
|
|
662,
|
2012-09-12 20:21:43 +02:00
|
|
|
/**/
|
|
|
|
661,
|
2012-09-12 18:19:46 +02:00
|
|
|
/**/
|
|
|
|
660,
|
2012-09-05 19:17:42 +02:00
|
|
|
/**/
|
|
|
|
659,
|
2012-09-05 19:09:11 +02:00
|
|
|
/**/
|
|
|
|
658,
|
2012-09-05 19:03:56 +02:00
|
|
|
/**/
|
|
|
|
657,
|
2012-09-05 18:54:48 +02:00
|
|
|
/**/
|
|
|
|
656,
|
2012-09-05 18:49:24 +02:00
|
|
|
/**/
|
|
|
|
655,
|
2012-09-05 18:45:28 +02:00
|
|
|
/**/
|
|
|
|
654,
|
2012-09-05 17:57:39 +02:00
|
|
|
/**/
|
|
|
|
653,
|
2012-09-05 17:28:21 +02:00
|
|
|
/**/
|
|
|
|
652,
|
2012-09-05 15:15:07 +02:00
|
|
|
/**/
|
|
|
|
651,
|
2012-09-05 15:03:30 +02:00
|
|
|
/**/
|
|
|
|
650,
|
2012-09-05 14:18:45 +02:00
|
|
|
/**/
|
|
|
|
649,
|
2012-09-05 13:30:40 +02:00
|
|
|
/**/
|
|
|
|
648,
|
2012-09-05 12:16:45 +02:00
|
|
|
/**/
|
|
|
|
647,
|
2012-08-29 18:50:54 +02:00
|
|
|
/**/
|
|
|
|
646,
|
2012-08-29 16:55:13 +02:00
|
|
|
/**/
|
|
|
|
645,
|
2012-08-29 16:34:27 +02:00
|
|
|
/**/
|
|
|
|
644,
|
2012-08-29 16:26:04 +02:00
|
|
|
/**/
|
|
|
|
643,
|
2012-08-29 15:50:26 +02:00
|
|
|
/**/
|
|
|
|
642,
|
2012-08-29 15:22:25 +02:00
|
|
|
/**/
|
|
|
|
641,
|
2012-08-29 14:26:27 +02:00
|
|
|
/**/
|
|
|
|
640,
|
2012-08-29 14:18:33 +02:00
|
|
|
/**/
|
|
|
|
639,
|
2012-08-23 18:58:14 +02:00
|
|
|
/**/
|
|
|
|
638,
|
2012-08-23 18:43:10 +02:00
|
|
|
/**/
|
|
|
|
637,
|
2012-08-23 15:53:05 +02:00
|
|
|
/**/
|
|
|
|
636,
|
2012-08-23 13:28:55 +02:00
|
|
|
/**/
|
|
|
|
635,
|
2012-08-23 12:59:02 +02:00
|
|
|
/**/
|
|
|
|
634,
|
2012-08-15 17:26:57 +02:00
|
|
|
/**/
|
|
|
|
633,
|
2012-08-15 16:21:32 +02:00
|
|
|
/**/
|
|
|
|
632,
|
2012-08-15 14:05:05 +02:00
|
|
|
/**/
|
|
|
|
631,
|
2012-08-15 13:31:00 +02:00
|
|
|
/**/
|
|
|
|
630,
|
2012-08-08 18:01:05 +02:00
|
|
|
/**/
|
|
|
|
629,
|
2012-08-08 17:31:40 +02:00
|
|
|
/**/
|
|
|
|
628,
|
2012-08-08 16:51:15 +02:00
|
|
|
/**/
|
|
|
|
627,
|
2012-08-08 16:05:07 +02:00
|
|
|
/**/
|
|
|
|
626,
|
2012-08-08 15:27:57 +02:00
|
|
|
/**/
|
|
|
|
625,
|
2012-08-08 14:33:21 +02:00
|
|
|
/**/
|
|
|
|
624,
|
2012-08-08 13:17:31 +02:00
|
|
|
/**/
|
|
|
|
623,
|
2012-08-02 21:48:24 +02:00
|
|
|
/**/
|
|
|
|
622,
|
2012-08-02 21:24:42 +02:00
|
|
|
/**/
|
|
|
|
621,
|
2012-08-02 21:21:47 +02:00
|
|
|
/**/
|
|
|
|
620,
|
2012-08-02 12:31:44 +02:00
|
|
|
/**/
|
|
|
|
619,
|
2012-07-29 12:55:32 +02:00
|
|
|
/**/
|
|
|
|
618,
|
2012-07-27 21:12:07 +02:00
|
|
|
/**/
|
|
|
|
617,
|
2012-07-27 21:05:54 +02:00
|
|
|
/**/
|
|
|
|
616,
|
2012-07-25 17:22:23 +02:00
|
|
|
/**/
|
|
|
|
615,
|
2012-07-25 16:47:03 +02:00
|
|
|
/**/
|
|
|
|
614,
|
2012-07-25 16:32:08 +02:00
|
|
|
/**/
|
|
|
|
613,
|
2012-07-25 16:10:03 +02:00
|
|
|
/**/
|
|
|
|
612,
|
2012-07-25 15:36:04 +02:00
|
|
|
/**/
|
|
|
|
611,
|
2012-07-25 15:06:34 +02:00
|
|
|
/**/
|
|
|
|
610,
|
2012-07-25 13:46:30 +02:00
|
|
|
/**/
|
|
|
|
609,
|
2012-07-19 18:05:44 +02:00
|
|
|
/**/
|
|
|
|
608,
|
2012-07-19 17:39:07 +02:00
|
|
|
/**/
|
|
|
|
607,
|
2012-07-19 17:18:26 +02:00
|
|
|
/**/
|
|
|
|
606,
|
2012-07-19 11:37:26 +02:00
|
|
|
/**/
|
|
|
|
605,
|
2012-07-16 19:27:29 +02:00
|
|
|
/**/
|
|
|
|
604,
|
2012-07-16 17:31:53 +02:00
|
|
|
/**/
|
|
|
|
603,
|
2012-07-16 17:28:11 +02:00
|
|
|
/**/
|
|
|
|
602,
|
2012-07-16 17:26:22 +02:00
|
|
|
/**/
|
|
|
|
601,
|
2012-07-10 19:25:10 +02:00
|
|
|
/**/
|
|
|
|
600,
|
2012-07-10 18:31:54 +02:00
|
|
|
/**/
|
|
|
|
599,
|
2012-07-10 17:14:56 +02:00
|
|
|
/**/
|
|
|
|
598,
|
2012-07-10 16:49:23 +02:00
|
|
|
/**/
|
|
|
|
597,
|
2012-07-10 15:18:22 +02:00
|
|
|
/**/
|
|
|
|
596,
|
2012-07-10 14:56:45 +02:00
|
|
|
/**/
|
|
|
|
595,
|
2012-07-10 14:25:04 +02:00
|
|
|
/**/
|
|
|
|
594,
|
2012-07-10 13:41:14 +02:00
|
|
|
/**/
|
|
|
|
593,
|
2012-07-10 13:12:51 +02:00
|
|
|
/**/
|
|
|
|
592,
|
2012-07-06 18:27:39 +02:00
|
|
|
/**/
|
|
|
|
591,
|
2012-07-06 17:51:28 +02:00
|
|
|
/**/
|
|
|
|
590,
|
2012-07-06 16:49:40 +02:00
|
|
|
/**/
|
|
|
|
589,
|
2012-07-06 16:39:47 +02:00
|
|
|
/**/
|
|
|
|
588,
|
2012-07-06 16:22:02 +02:00
|
|
|
/**/
|
|
|
|
587,
|
2012-07-06 13:40:50 +02:00
|
|
|
/**/
|
|
|
|
586,
|
2012-07-06 13:36:48 +02:00
|
|
|
/**/
|
|
|
|
585,
|
2012-06-30 13:34:34 +02:00
|
|
|
/**/
|
|
|
|
584,
|
2012-06-30 13:21:08 +02:00
|
|
|
/**/
|
|
|
|
583,
|
2012-06-29 23:57:54 +02:00
|
|
|
/**/
|
|
|
|
582,
|
2012-06-29 19:14:52 +02:00
|
|
|
/**/
|
|
|
|
581,
|
2012-06-29 17:52:02 +02:00
|
|
|
/**/
|
|
|
|
580,
|
2012-06-29 16:28:28 +02:00
|
|
|
/**/
|
|
|
|
579,
|
2012-06-29 16:19:50 +02:00
|
|
|
/**/
|
|
|
|
578,
|
2012-06-29 15:51:30 +02:00
|
|
|
/**/
|
|
|
|
577,
|
2012-06-29 15:04:49 +02:00
|
|
|
/**/
|
|
|
|
576,
|
2012-06-29 13:56:06 +02:00
|
|
|
/**/
|
|
|
|
575,
|
2012-06-29 13:44:41 +02:00
|
|
|
/**/
|
|
|
|
574,
|
2012-06-29 13:34:19 +02:00
|
|
|
/**/
|
|
|
|
573,
|
2012-06-29 13:19:27 +02:00
|
|
|
/**/
|
|
|
|
572,
|
2012-06-29 13:14:03 +02:00
|
|
|
/**/
|
|
|
|
571,
|
2012-06-29 12:57:06 +02:00
|
|
|
/**/
|
|
|
|
570,
|
2012-06-29 12:54:53 +02:00
|
|
|
/**/
|
|
|
|
569,
|
2012-06-29 12:35:44 +02:00
|
|
|
/**/
|
|
|
|
568,
|
2012-06-29 11:46:33 +02:00
|
|
|
/**/
|
|
|
|
567,
|
2012-06-20 22:56:02 +02:00
|
|
|
/**/
|
|
|
|
566,
|
2012-06-20 18:39:15 +02:00
|
|
|
/**/
|
|
|
|
565,
|
2012-06-20 17:56:09 +02:00
|
|
|
/**/
|
|
|
|
564,
|
2012-06-20 17:54:38 +02:00
|
|
|
/**/
|
|
|
|
563,
|
2012-06-20 15:48:57 +02:00
|
|
|
/**/
|
|
|
|
562,
|
2012-06-20 14:26:35 +02:00
|
|
|
/**/
|
|
|
|
561,
|
2012-06-20 14:13:06 +02:00
|
|
|
/**/
|
|
|
|
560,
|
2012-06-20 14:02:27 +02:00
|
|
|
/**/
|
|
|
|
559,
|
2012-06-20 12:40:08 +02:00
|
|
|
/**/
|
|
|
|
558,
|
2012-06-20 11:55:01 +02:00
|
|
|
/**/
|
|
|
|
557,
|
2012-06-14 20:59:25 +02:00
|
|
|
/**/
|
|
|
|
556,
|
2012-06-13 19:19:41 +02:00
|
|
|
/**/
|
|
|
|
555,
|
2012-06-13 18:15:19 +02:00
|
|
|
/**/
|
|
|
|
554,
|
2012-06-13 18:06:36 +02:00
|
|
|
/**/
|
|
|
|
553,
|
2012-06-13 17:28:55 +02:00
|
|
|
/**/
|
|
|
|
552,
|
2012-06-13 14:28:20 +02:00
|
|
|
/**/
|
|
|
|
551,
|
2012-06-13 14:01:41 +02:00
|
|
|
/**/
|
|
|
|
550,
|
2012-06-13 13:40:48 +02:00
|
|
|
/**/
|
|
|
|
549,
|
2012-06-07 21:09:39 +02:00
|
|
|
/**/
|
|
|
|
548,
|
2012-06-06 23:08:38 +02:00
|
|
|
/**/
|
|
|
|
547,
|
2012-06-06 19:05:50 +02:00
|
|
|
/**/
|
|
|
|
546,
|
2012-06-06 19:02:45 +02:00
|
|
|
/**/
|
|
|
|
545,
|
2012-06-06 18:03:07 +02:00
|
|
|
/**/
|
|
|
|
544,
|
2012-06-06 16:29:10 +02:00
|
|
|
/**/
|
|
|
|
543,
|
2012-06-06 16:14:40 +02:00
|
|
|
/**/
|
|
|
|
542,
|
2012-06-06 16:12:59 +02:00
|
|
|
/**/
|
|
|
|
541,
|
2012-06-06 12:06:15 +02:00
|
|
|
/**/
|
|
|
|
540,
|
2012-06-06 12:03:06 +02:00
|
|
|
/**/
|
|
|
|
539,
|
2012-06-01 18:34:41 +02:00
|
|
|
/**/
|
|
|
|
538,
|
2012-06-01 17:49:55 +02:00
|
|
|
/**/
|
|
|
|
537,
|
2012-06-01 17:46:59 +02:00
|
|
|
/**/
|
|
|
|
536,
|
2012-06-01 15:21:02 +02:00
|
|
|
/**/
|
|
|
|
535,
|
2012-06-01 14:57:51 +02:00
|
|
|
/**/
|
|
|
|
534,
|
2012-06-01 13:46:12 +02:00
|
|
|
/**/
|
|
|
|
533,
|
2012-06-01 13:18:53 +02:00
|
|
|
/**/
|
|
|
|
532,
|
2012-05-27 00:37:51 +02:00
|
|
|
/**/
|
|
|
|
531,
|
2012-05-25 14:06:36 +02:00
|
|
|
/**/
|
|
|
|
530,
|
2012-05-25 13:12:36 +02:00
|
|
|
/**/
|
|
|
|
529,
|
2012-05-25 12:39:00 +02:00
|
|
|
/**/
|
|
|
|
528,
|
2012-05-25 11:56:22 +02:00
|
|
|
/**/
|
|
|
|
527,
|
2012-05-25 11:04:38 +02:00
|
|
|
/**/
|
|
|
|
526,
|
2012-05-25 11:02:41 +02:00
|
|
|
/**/
|
|
|
|
525,
|
2012-05-18 18:47:17 +02:00
|
|
|
/**/
|
2012-05-18 21:54:13 +02:00
|
|
|
524,
|
|
|
|
/**/
|
|
|
|
523,
|
2012-05-18 18:34:19 +02:00
|
|
|
/**/
|
|
|
|
522,
|
2012-05-18 18:08:01 +02:00
|
|
|
/**/
|
|
|
|
521,
|
2012-05-18 17:03:18 +02:00
|
|
|
/**/
|
|
|
|
520,
|
2012-05-18 16:35:21 +02:00
|
|
|
/**/
|
|
|
|
519,
|
2012-05-18 16:24:11 +02:00
|
|
|
/**/
|
|
|
|
518,
|
2012-05-18 12:49:40 +02:00
|
|
|
/**/
|
|
|
|
517,
|
2012-05-18 12:07:05 +02:00
|
|
|
/**/
|
|
|
|
516,
|
2012-04-30 21:09:43 +02:00
|
|
|
/**/
|
|
|
|
515,
|
2012-04-30 18:48:53 +02:00
|
|
|
/**/
|
|
|
|
514,
|
2012-04-30 18:18:47 +02:00
|
|
|
/**/
|
|
|
|
513,
|
2012-04-30 17:35:48 +02:00
|
|
|
/**/
|
|
|
|
512,
|
2012-04-30 17:04:52 +02:00
|
|
|
/**/
|
|
|
|
511,
|
2012-04-30 11:34:28 +02:00
|
|
|
/**/
|
|
|
|
510,
|
2012-04-25 18:57:21 +02:00
|
|
|
/**/
|
|
|
|
509,
|
2012-04-25 18:24:29 +02:00
|
|
|
/**/
|
|
|
|
508,
|
2012-04-25 17:32:18 +02:00
|
|
|
/**/
|
|
|
|
507,
|
2012-04-25 17:10:16 +02:00
|
|
|
/**/
|
|
|
|
506,
|
2012-04-25 16:50:48 +02:00
|
|
|
/**/
|
|
|
|
505,
|
2012-04-25 12:57:28 +02:00
|
|
|
/**/
|
|
|
|
504,
|
2012-04-25 12:28:09 +02:00
|
|
|
/**/
|
|
|
|
503,
|
2012-04-20 19:47:05 +02:00
|
|
|
/**/
|
|
|
|
502,
|
2012-04-20 18:05:47 +02:00
|
|
|
/**/
|
|
|
|
501,
|
2012-04-20 16:13:25 +02:00
|
|
|
/**/
|
|
|
|
500,
|
2012-04-20 15:55:16 +02:00
|
|
|
/**/
|
|
|
|
499,
|
2012-04-20 13:46:08 +02:00
|
|
|
/**/
|
|
|
|
498,
|
2012-04-20 13:31:21 +02:00
|
|
|
/**/
|
|
|
|
497,
|
2012-04-13 19:11:20 +02:00
|
|
|
/**/
|
|
|
|
496,
|
2012-04-09 20:42:26 +02:00
|
|
|
/**/
|
|
|
|
495,
|
2012-04-06 14:31:00 +02:00
|
|
|
/**/
|
|
|
|
494,
|
2012-04-06 13:56:04 +02:00
|
|
|
/**/
|
|
|
|
493,
|
2012-04-05 17:17:42 +02:00
|
|
|
/**/
|
|
|
|
492,
|
2012-04-05 16:56:52 +02:00
|
|
|
/**/
|
|
|
|
491,
|
2012-04-05 16:54:08 +02:00
|
|
|
/**/
|
|
|
|
490,
|
2012-04-05 16:07:06 +02:00
|
|
|
/**/
|
|
|
|
489,
|
2012-04-05 16:05:05 +02:00
|
|
|
/**/
|
|
|
|
488,
|
2012-03-28 19:59:04 +02:00
|
|
|
/**/
|
|
|
|
487,
|
2012-03-28 17:43:11 +02:00
|
|
|
/**/
|
|
|
|
486,
|
2012-03-28 17:17:48 +02:00
|
|
|
/**/
|
|
|
|
485,
|
2012-03-28 17:10:31 +02:00
|
|
|
/**/
|
|
|
|
484,
|
2012-03-28 16:49:29 +02:00
|
|
|
/**/
|
|
|
|
483,
|
2012-03-28 14:19:50 +02:00
|
|
|
/**/
|
|
|
|
482,
|
2012-03-28 12:59:57 +02:00
|
|
|
/**/
|
|
|
|
481,
|
2012-03-23 18:39:18 +01:00
|
|
|
/**/
|
|
|
|
480,
|
2012-03-23 16:25:17 +01:00
|
|
|
/**/
|
|
|
|
479,
|
2012-03-23 15:37:02 +01:00
|
|
|
/**/
|
|
|
|
478,
|
2012-03-23 15:18:24 +01:00
|
|
|
/**/
|
|
|
|
477,
|
2012-03-23 14:16:23 +01:00
|
|
|
/**/
|
|
|
|
476,
|
2012-03-16 20:16:46 +01:00
|
|
|
/**/
|
|
|
|
475,
|
2012-03-16 19:34:47 +01:00
|
|
|
/**/
|
|
|
|
474,
|
2012-03-16 19:24:26 +01:00
|
|
|
/**/
|
|
|
|
473,
|
2012-03-16 19:07:58 +01:00
|
|
|
/**/
|
|
|
|
472,
|
2012-03-16 14:32:15 +01:00
|
|
|
/**/
|
|
|
|
471,
|
2012-03-07 22:55:20 +01:00
|
|
|
/**/
|
|
|
|
470,
|
2012-03-07 22:52:36 +01:00
|
|
|
/**/
|
|
|
|
469,
|
2012-03-07 20:13:49 +01:00
|
|
|
/**/
|
|
|
|
468,
|
2012-03-07 19:38:55 +01:00
|
|
|
/**/
|
|
|
|
467,
|
2012-03-07 19:30:36 +01:00
|
|
|
/**/
|
|
|
|
466,
|
2012-03-07 18:03:10 +01:00
|
|
|
/**/
|
2012-03-07 19:18:23 +01:00
|
|
|
465,
|
2012-03-07 18:03:10 +01:00
|
|
|
/**/
|
|
|
|
464,
|
2012-03-07 14:57:52 +01:00
|
|
|
/**/
|
|
|
|
463,
|
2012-02-29 19:20:02 +01:00
|
|
|
/**/
|
|
|
|
462,
|
2012-02-29 18:22:08 +01:00
|
|
|
/**/
|
|
|
|
461,
|
2012-02-29 16:56:39 +01:00
|
|
|
/**/
|
|
|
|
460,
|
2012-02-29 13:58:47 +01:00
|
|
|
/**/
|
|
|
|
459,
|
2012-02-29 13:51:37 +01:00
|
|
|
/**/
|
|
|
|
458,
|
2012-02-29 13:49:09 +01:00
|
|
|
/**/
|
|
|
|
457,
|
2012-02-22 19:13:08 +01:00
|
|
|
/**/
|
|
|
|
456,
|
2012-02-22 18:29:33 +01:00
|
|
|
/**/
|
|
|
|
455,
|
2012-02-22 18:12:32 +01:00
|
|
|
/**/
|
|
|
|
454,
|
2012-02-22 17:58:04 +01:00
|
|
|
/**/
|
|
|
|
453,
|
2012-02-22 17:38:00 +01:00
|
|
|
/**/
|
|
|
|
452,
|
2012-02-22 16:01:56 +01:00
|
|
|
/**/
|
|
|
|
451,
|
2012-02-22 15:34:08 +01:00
|
|
|
/**/
|
|
|
|
450,
|
2012-02-22 14:58:37 +01:00
|
|
|
/**/
|
|
|
|
449,
|
2012-02-22 13:07:05 +01:00
|
|
|
/**/
|
|
|
|
448,
|
2012-02-21 21:22:44 +01:00
|
|
|
/**/
|
|
|
|
447,
|
2012-02-20 22:18:30 +01:00
|
|
|
/**/
|
|
|
|
446,
|
2012-02-19 18:19:30 +01:00
|
|
|
/**/
|
|
|
|
445,
|
2012-02-13 00:01:43 +01:00
|
|
|
/**/
|
|
|
|
444,
|
2012-02-12 23:23:31 +01:00
|
|
|
/**/
|
|
|
|
443,
|
2012-02-12 20:14:01 +01:00
|
|
|
/**/
|
|
|
|
442,
|
2012-02-12 01:55:55 +01:00
|
|
|
/**/
|
|
|
|
441,
|
2012-02-12 01:35:10 +01:00
|
|
|
/**/
|
|
|
|
440,
|
2012-02-12 00:31:52 +01:00
|
|
|
/**/
|
|
|
|
439,
|
2012-02-12 00:18:58 +01:00
|
|
|
/**/
|
|
|
|
438,
|
2012-02-11 23:45:37 +01:00
|
|
|
/**/
|
|
|
|
437,
|
2012-02-11 20:44:10 +01:00
|
|
|
/**/
|
|
|
|
436,
|
2012-02-11 20:40:55 +01:00
|
|
|
/**/
|
|
|
|
435,
|
2012-02-06 00:13:22 +01:00
|
|
|
/**/
|
|
|
|
434,
|
2012-02-05 23:10:30 +01:00
|
|
|
/**/
|
|
|
|
433,
|
2012-02-05 22:51:33 +01:00
|
|
|
/**/
|
|
|
|
432,
|
2012-02-05 22:05:48 +01:00
|
|
|
/**/
|
|
|
|
431,
|
2012-02-05 20:08:36 +01:00
|
|
|
/**/
|
|
|
|
430,
|
2012-02-05 01:18:48 +01:00
|
|
|
/**/
|
|
|
|
429,
|
2012-02-05 00:48:00 +01:00
|
|
|
/**/
|
|
|
|
428,
|
2012-02-05 00:39:18 +01:00
|
|
|
/**/
|
|
|
|
427,
|
2012-02-04 23:35:00 +01:00
|
|
|
/**/
|
|
|
|
426,
|
2012-02-04 22:44:32 +01:00
|
|
|
/**/
|
|
|
|
425,
|
2012-02-04 22:01:48 +01:00
|
|
|
/**/
|
|
|
|
424,
|
2012-02-04 21:59:01 +01:00
|
|
|
/**/
|
|
|
|
423,
|
2012-02-04 20:17:26 +01:00
|
|
|
/**/
|
|
|
|
422,
|
2012-01-28 18:03:35 +01:00
|
|
|
/**/
|
|
|
|
421,
|
2012-01-26 20:58:26 +01:00
|
|
|
/**/
|
|
|
|
420,
|
2012-01-26 20:41:26 +01:00
|
|
|
/**/
|
|
|
|
419,
|
2012-01-26 18:58:38 +01:00
|
|
|
/**/
|
|
|
|
418,
|
2012-01-26 18:56:47 +01:00
|
|
|
/**/
|
|
|
|
417,
|
2012-01-26 18:52:06 +01:00
|
|
|
/**/
|
|
|
|
416,
|
2012-01-26 14:32:30 +01:00
|
|
|
/**/
|
|
|
|
415,
|
2012-01-26 13:40:08 +01:00
|
|
|
/**/
|
|
|
|
414,
|
2012-01-26 13:01:59 +01:00
|
|
|
/**/
|
|
|
|
413,
|
2012-01-26 11:45:30 +01:00
|
|
|
/**/
|
|
|
|
412,
|
2012-01-26 11:43:09 +01:00
|
|
|
/**/
|
|
|
|
411,
|
2012-01-23 20:48:40 +01:00
|
|
|
/**/
|
|
|
|
410,
|
2012-01-20 21:13:59 +01:00
|
|
|
/**/
|
|
|
|
409,
|
2012-01-20 20:54:19 +01:00
|
|
|
/**/
|
|
|
|
408,
|
2012-01-20 20:44:43 +01:00
|
|
|
/**/
|
|
|
|
407,
|
2012-01-20 17:57:51 +01:00
|
|
|
/**/
|
|
|
|
406,
|
2012-01-20 17:15:51 +01:00
|
|
|
/**/
|
|
|
|
405,
|
2012-01-20 14:32:27 +01:00
|
|
|
/**/
|
|
|
|
404,
|
2012-01-20 13:39:07 +01:00
|
|
|
/**/
|
|
|
|
403,
|
2012-01-20 13:28:34 +01:00
|
|
|
/**/
|
|
|
|
402,
|
2012-01-10 22:31:31 +01:00
|
|
|
/**/
|
|
|
|
401,
|
2012-01-10 22:26:17 +01:00
|
|
|
/**/
|
|
|
|
400,
|
2012-01-10 18:37:58 +01:00
|
|
|
/**/
|
|
|
|
399,
|
2012-01-10 17:13:52 +01:00
|
|
|
/**/
|
|
|
|
398,
|
2012-01-10 16:28:45 +01:00
|
|
|
/**/
|
|
|
|
397,
|
2012-01-10 13:46:22 +01:00
|
|
|
/**/
|
|
|
|
396,
|
2012-01-10 13:44:27 +01:00
|
|
|
/**/
|
|
|
|
395,
|
2012-01-10 12:42:09 +01:00
|
|
|
/**/
|
|
|
|
394,
|
2012-01-04 20:29:22 +01:00
|
|
|
/**/
|
|
|
|
393,
|
2012-01-04 19:34:37 +01:00
|
|
|
/**/
|
|
|
|
392,
|
2012-01-04 14:35:37 +01:00
|
|
|
/**/
|
|
|
|
391,
|
2011-12-30 15:01:59 +01:00
|
|
|
/**/
|
|
|
|
390,
|
2011-12-30 14:14:29 +01:00
|
|
|
/**/
|
|
|
|
389,
|
2011-12-30 13:39:10 +01:00
|
|
|
/**/
|
|
|
|
388,
|
2011-12-30 13:09:21 +01:00
|
|
|
/**/
|
|
|
|
387,
|
2011-12-23 14:56:28 +01:00
|
|
|
/**/
|
|
|
|
386,
|
2011-12-23 14:54:04 +01:00
|
|
|
/**/
|
|
|
|
385,
|
2011-12-23 13:15:03 +01:00
|
|
|
/**/
|
|
|
|
384,
|
2011-12-23 12:47:03 +01:00
|
|
|
/**/
|
|
|
|
383,
|
2011-12-15 21:51:36 +01:00
|
|
|
/**/
|
|
|
|
382,
|
2011-12-14 20:51:25 +01:00
|
|
|
/**/
|
|
|
|
381,
|
2011-12-14 20:21:35 +01:00
|
|
|
/**/
|
|
|
|
380,
|
2011-12-14 20:05:21 +01:00
|
|
|
/**/
|
|
|
|
379,
|
2011-12-14 19:22:34 +01:00
|
|
|
/**/
|
|
|
|
378,
|
2011-12-14 15:32:50 +01:00
|
|
|
/**/
|
|
|
|
377,
|
2011-12-14 15:23:59 +01:00
|
|
|
/**/
|
|
|
|
376,
|
2011-12-14 15:07:29 +01:00
|
|
|
/**/
|
|
|
|
375,
|
2011-12-14 14:49:45 +01:00
|
|
|
/**/
|
|
|
|
374,
|
2011-12-14 14:15:16 +01:00
|
|
|
/**/
|
|
|
|
373,
|
2011-12-08 18:44:51 +01:00
|
|
|
/**/
|
|
|
|
372,
|
2011-12-08 17:49:35 +01:00
|
|
|
/**/
|
|
|
|
371,
|
2011-12-08 16:00:16 +01:00
|
|
|
/**/
|
|
|
|
370,
|
2011-12-08 15:57:59 +01:00
|
|
|
/**/
|
|
|
|
369,
|
2011-12-08 15:17:34 +01:00
|
|
|
/**/
|
|
|
|
368,
|
2011-12-08 15:14:09 +01:00
|
|
|
/**/
|
|
|
|
367,
|
2011-12-08 15:12:11 +01:00
|
|
|
/**/
|
|
|
|
366,
|
2011-12-08 15:09:52 +01:00
|
|
|
/**/
|
|
|
|
365,
|
2011-12-01 20:59:21 +01:00
|
|
|
/**/
|
|
|
|
364,
|
2011-11-30 17:20:23 +01:00
|
|
|
/**/
|
|
|
|
363,
|
2011-11-30 17:01:58 +01:00
|
|
|
/**/
|
|
|
|
362,
|
2011-11-30 15:40:56 +01:00
|
|
|
/**/
|
|
|
|
361,
|
2011-11-30 15:19:28 +01:00
|
|
|
/**/
|
|
|
|
360,
|
2011-11-30 14:57:31 +01:00
|
|
|
/**/
|
|
|
|
359,
|
2011-11-30 14:47:15 +01:00
|
|
|
/**/
|
|
|
|
358,
|
2011-11-30 13:42:44 +01:00
|
|
|
/**/
|
|
|
|
357,
|
2011-11-30 13:03:28 +01:00
|
|
|
/**/
|
|
|
|
356,
|
2011-11-30 11:31:30 +01:00
|
|
|
/**/
|
|
|
|
355,
|
2011-11-30 11:15:47 +01:00
|
|
|
/**/
|
|
|
|
354,
|
2011-10-26 23:48:20 +02:00
|
|
|
/**/
|
|
|
|
353,
|
2011-10-26 22:02:15 +02:00
|
|
|
/**/
|
|
|
|
352,
|
2011-10-26 17:04:29 +02:00
|
|
|
/**/
|
|
|
|
351,
|
2011-10-26 13:19:27 +02:00
|
|
|
/**/
|
|
|
|
350,
|
2011-10-26 11:44:18 +02:00
|
|
|
/**/
|
|
|
|
349,
|
2011-10-26 11:41:00 +02:00
|
|
|
/**/
|
|
|
|
348,
|
2011-10-26 11:36:25 +02:00
|
|
|
/**/
|
|
|
|
347,
|
2011-10-20 21:58:34 +02:00
|
|
|
/**/
|
|
|
|
346,
|
2011-10-20 21:41:09 +02:00
|
|
|
/**/
|
|
|
|
345,
|
2011-10-20 21:28:01 +02:00
|
|
|
/**/
|
|
|
|
344,
|
2011-10-20 21:09:35 +02:00
|
|
|
/**/
|
|
|
|
343,
|
2011-10-20 18:24:22 +02:00
|
|
|
/**/
|
|
|
|
342,
|
2011-10-20 18:17:42 +02:00
|
|
|
/**/
|
|
|
|
341,
|
2011-10-20 18:12:32 +02:00
|
|
|
/**/
|
|
|
|
340,
|
2011-10-20 16:35:35 +02:00
|
|
|
/**/
|
|
|
|
339,
|
2011-10-12 22:02:14 +02:00
|
|
|
/**/
|
|
|
|
338,
|
2011-10-12 21:04:20 +02:00
|
|
|
/**/
|
|
|
|
337,
|
2011-10-12 19:53:52 +02:00
|
|
|
/**/
|
|
|
|
336,
|
2011-10-12 16:57:13 +02:00
|
|
|
/**/
|
|
|
|
335,
|
2011-10-12 14:11:45 +02:00
|
|
|
/**/
|
|
|
|
334,
|
2011-10-04 21:22:44 +02:00
|
|
|
/**/
|
|
|
|
333,
|
2011-10-04 18:03:47 +02:00
|
|
|
/**/
|
|
|
|
332,
|
2011-10-04 17:00:20 +02:00
|
|
|
/**/
|
|
|
|
331,
|
2011-10-04 16:43:53 +02:00
|
|
|
/**/
|
|
|
|
330,
|
2011-09-30 18:35:57 +02:00
|
|
|
/**/
|
|
|
|
329,
|
2011-09-30 17:46:21 +02:00
|
|
|
/**/
|
|
|
|
328,
|
2011-09-30 17:30:31 +02:00
|
|
|
/**/
|
|
|
|
327,
|
2011-09-30 16:56:02 +02:00
|
|
|
/**/
|
|
|
|
326,
|
2011-09-30 16:39:48 +02:00
|
|
|
/**/
|
|
|
|
325,
|
2011-09-30 16:23:32 +02:00
|
|
|
/**/
|
|
|
|
324,
|
2011-09-30 14:44:54 +02:00
|
|
|
/**/
|
|
|
|
323,
|
2011-09-21 20:09:42 +02:00
|
|
|
/**/
|
|
|
|
322,
|
2011-09-21 19:50:05 +02:00
|
|
|
/**/
|
|
|
|
321,
|
2011-09-21 19:10:46 +02:00
|
|
|
/**/
|
|
|
|
320,
|
2011-09-21 18:23:05 +02:00
|
|
|
/**/
|
|
|
|
319,
|
2011-09-21 17:33:53 +02:00
|
|
|
/**/
|
|
|
|
318,
|
2011-09-21 17:15:39 +02:00
|
|
|
/**/
|
|
|
|
317,
|
2011-09-21 13:40:17 +02:00
|
|
|
/**/
|
|
|
|
316,
|
2011-09-14 19:04:39 +02:00
|
|
|
/**/
|
|
|
|
315,
|
2011-09-14 19:01:42 +02:00
|
|
|
/**/
|
|
|
|
314,
|
2011-09-14 18:59:39 +02:00
|
|
|
/**/
|
|
|
|
313,
|
2011-09-14 17:50:14 +02:00
|
|
|
/**/
|
|
|
|
312,
|
2011-09-14 16:52:09 +02:00
|
|
|
/**/
|
|
|
|
311,
|
2011-09-14 16:05:15 +02:00
|
|
|
/**/
|
|
|
|
310,
|
2011-09-14 15:41:58 +02:00
|
|
|
/**/
|
|
|
|
309,
|
2011-09-14 15:39:29 +02:00
|
|
|
/**/
|
|
|
|
308,
|
2011-09-14 15:01:58 +02:00
|
|
|
/**/
|
|
|
|
307,
|
2011-09-14 14:43:25 +02:00
|
|
|
/**/
|
|
|
|
306,
|
2011-09-14 14:33:51 +02:00
|
|
|
/**/
|
|
|
|
305,
|
2011-09-14 10:49:46 +02:00
|
|
|
/**/
|
|
|
|
304,
|
2011-09-08 23:24:14 +02:00
|
|
|
/**/
|
|
|
|
303,
|
2011-09-08 23:22:40 +02:00
|
|
|
/**/
|
|
|
|
302,
|
2011-09-07 19:58:09 +02:00
|
|
|
/**/
|
|
|
|
301,
|
2011-09-07 19:30:21 +02:00
|
|
|
/**/
|
|
|
|
300,
|
2011-09-07 19:09:01 +02:00
|
|
|
/**/
|
|
|
|
299,
|
2011-09-07 18:58:29 +02:00
|
|
|
/**/
|
|
|
|
298,
|
2011-09-07 18:47:23 +02:00
|
|
|
/**/
|
|
|
|
297,
|
2011-09-07 15:04:31 +02:00
|
|
|
/**/
|
|
|
|
296,
|
2011-09-07 14:06:47 +02:00
|
|
|
/**/
|
|
|
|
295,
|
2011-09-05 20:13:42 +02:00
|
|
|
/**/
|
|
|
|
294,
|
2011-09-02 14:18:20 +02:00
|
|
|
/**/
|
|
|
|
293,
|
2011-09-02 14:07:36 +02:00
|
|
|
/**/
|
|
|
|
292,
|
2011-09-02 12:27:25 +02:00
|
|
|
/**/
|
|
|
|
291,
|
2011-09-02 11:56:20 +02:00
|
|
|
/**/
|
|
|
|
290,
|
2011-08-28 16:02:28 +02:00
|
|
|
/**/
|
|
|
|
289,
|
2011-08-28 16:00:19 +02:00
|
|
|
/**/
|
|
|
|
288,
|
2011-08-27 15:10:04 +02:00
|
|
|
/**/
|
|
|
|
287,
|
2011-08-26 16:13:00 +02:00
|
|
|
/**/
|
|
|
|
286,
|
2011-08-19 22:29:02 +02:00
|
|
|
/**/
|
|
|
|
285,
|
2011-08-17 20:33:22 +02:00
|
|
|
/**/
|
|
|
|
284,
|
2011-08-17 17:18:20 +02:00
|
|
|
/**/
|
|
|
|
283,
|
2011-08-17 16:25:48 +02:00
|
|
|
/**/
|
|
|
|
282,
|
2011-08-17 15:23:23 +02:00
|
|
|
/**/
|
|
|
|
281,
|
2011-08-10 18:36:54 +02:00
|
|
|
/**/
|
|
|
|
280,
|
2011-08-10 17:44:45 +02:00
|
|
|
/**/
|
|
|
|
279,
|
2011-08-10 17:25:51 +02:00
|
|
|
/**/
|
|
|
|
278,
|
2011-08-10 17:08:03 +02:00
|
|
|
/**/
|
|
|
|
277,
|
2011-08-10 16:31:23 +02:00
|
|
|
/**/
|
|
|
|
276,
|
2011-08-10 15:56:27 +02:00
|
|
|
/**/
|
|
|
|
275,
|
2011-08-10 14:32:39 +02:00
|
|
|
/**/
|
|
|
|
274,
|
2011-08-10 13:21:46 +02:00
|
|
|
/**/
|
|
|
|
273,
|
2011-08-10 12:38:08 +02:00
|
|
|
/**/
|
|
|
|
272,
|
2011-08-10 12:19:04 +02:00
|
|
|
/**/
|
|
|
|
271,
|
2011-08-10 12:11:01 +02:00
|
|
|
/**/
|
|
|
|
270,
|
2011-08-04 22:59:28 +02:00
|
|
|
/**/
|
|
|
|
269,
|
2011-08-04 19:36:52 +02:00
|
|
|
/**/
|
|
|
|
268,
|
2011-08-04 19:34:59 +02:00
|
|
|
/**/
|
|
|
|
267,
|
2011-07-27 18:25:44 +02:00
|
|
|
/**/
|
|
|
|
266,
|
2011-07-27 17:58:46 +02:00
|
|
|
/**/
|
|
|
|
265,
|
2011-07-27 17:31:47 +02:00
|
|
|
/**/
|
|
|
|
264,
|
2011-07-27 14:15:46 +02:00
|
|
|
/**/
|
|
|
|
263,
|
2011-07-27 14:09:09 +02:00
|
|
|
/**/
|
|
|
|
262,
|
2011-07-27 13:59:21 +02:00
|
|
|
/**/
|
|
|
|
261,
|
2011-07-20 18:29:39 +02:00
|
|
|
/**/
|
|
|
|
260,
|
2011-07-20 17:58:20 +02:00
|
|
|
/**/
|
|
|
|
259,
|
2011-07-20 17:27:25 +02:00
|
|
|
/**/
|
|
|
|
258,
|
2011-07-20 16:37:24 +02:00
|
|
|
/**/
|
|
|
|
257,
|
2011-07-20 15:09:43 +02:00
|
|
|
/**/
|
|
|
|
256,
|
2011-07-20 15:04:58 +02:00
|
|
|
/**/
|
|
|
|
255,
|
2011-07-15 21:24:11 +02:00
|
|
|
/**/
|
|
|
|
254,
|
2011-07-15 21:16:59 +02:00
|
|
|
/**/
|
|
|
|
253,
|
2011-07-15 17:56:16 +02:00
|
|
|
/**/
|
|
|
|
252,
|
2011-07-15 17:51:34 +02:00
|
|
|
/**/
|
|
|
|
251,
|
2011-07-15 15:54:44 +02:00
|
|
|
/**/
|
|
|
|
250,
|
2011-07-15 14:12:30 +02:00
|
|
|
/**/
|
|
|
|
249,
|
2011-07-15 13:52:04 +02:00
|
|
|
/**/
|
|
|
|
248,
|
2011-07-15 13:33:21 +02:00
|
|
|
/**/
|
|
|
|
247,
|
2011-07-15 13:21:30 +02:00
|
|
|
/**/
|
|
|
|
246,
|
2011-07-15 13:09:51 +02:00
|
|
|
/**/
|
|
|
|
245,
|
2011-07-07 17:43:41 +02:00
|
|
|
/**/
|
|
|
|
244,
|
2011-07-07 17:36:56 +02:00
|
|
|
/**/
|
|
|
|
243,
|
2011-07-07 17:15:33 +02:00
|
|
|
/**/
|
|
|
|
242,
|
2011-07-07 16:44:37 +02:00
|
|
|
/**/
|
|
|
|
241,
|
2011-07-07 16:20:52 +02:00
|
|
|
/**/
|
|
|
|
240,
|
2011-07-07 15:08:58 +02:00
|
|
|
/**/
|
|
|
|
239,
|
2011-07-07 15:04:52 +02:00
|
|
|
/**/
|
|
|
|
238,
|
2011-06-26 19:40:23 +02:00
|
|
|
/**/
|
|
|
|
237,
|
2011-06-26 19:13:50 +02:00
|
|
|
/**/
|
|
|
|
236,
|
2011-06-26 05:36:34 +02:00
|
|
|
/**/
|
|
|
|
235,
|
2011-06-26 04:49:00 +02:00
|
|
|
/**/
|
|
|
|
234,
|
2011-06-26 04:25:30 +02:00
|
|
|
/**/
|
|
|
|
233,
|
2011-06-26 04:01:44 +02:00
|
|
|
/**/
|
|
|
|
232,
|
2011-06-26 03:18:52 +02:00
|
|
|
/**/
|
|
|
|
231,
|
2011-06-20 05:02:58 +02:00
|
|
|
/**/
|
|
|
|
230,
|
2011-06-20 00:53:15 +02:00
|
|
|
/**/
|
|
|
|
229,
|
2011-06-20 00:45:58 +02:00
|
|
|
/**/
|
|
|
|
228,
|
2011-06-20 00:25:44 +02:00
|
|
|
/**/
|
|
|
|
227,
|
2011-06-19 04:54:21 +02:00
|
|
|
/**/
|
|
|
|
226,
|
2011-06-19 04:32:15 +02:00
|
|
|
/**/
|
|
|
|
225,
|
2011-06-19 02:55:37 +02:00
|
|
|
/**/
|
|
|
|
224,
|
2011-06-19 01:30:07 +02:00
|
|
|
/**/
|
|
|
|
223,
|
2011-06-19 01:27:34 +02:00
|
|
|
/**/
|
|
|
|
222,
|
2011-06-19 01:14:29 +02:00
|
|
|
/**/
|
|
|
|
221,
|
2011-06-19 00:27:51 +02:00
|
|
|
/**/
|
|
|
|
220,
|
2011-06-13 02:04:00 +02:00
|
|
|
/**/
|
|
|
|
219,
|
2011-06-13 01:32:46 +02:00
|
|
|
/**/
|
|
|
|
218,
|
2011-06-13 01:19:56 +02:00
|
|
|
/**/
|
|
|
|
217,
|
2011-06-13 01:07:27 +02:00
|
|
|
/**/
|
|
|
|
216,
|
2011-06-12 22:13:40 +02:00
|
|
|
/**/
|
|
|
|
215,
|
2011-06-12 22:03:23 +02:00
|
|
|
/**/
|
|
|
|
214,
|
2011-06-12 21:51:08 +02:00
|
|
|
/**/
|
|
|
|
213,
|
2011-06-12 21:37:13 +02:00
|
|
|
/**/
|
|
|
|
212,
|
2011-06-12 21:25:00 +02:00
|
|
|
/**/
|
|
|
|
211,
|
2011-06-12 20:42:22 +02:00
|
|
|
/**/
|
|
|
|
210,
|
2011-06-12 20:36:09 +02:00
|
|
|
/**/
|
|
|
|
209,
|
2011-06-12 20:33:38 +02:00
|
|
|
/**/
|
|
|
|
208,
|
2011-06-12 20:31:31 +02:00
|
|
|
/**/
|
|
|
|
207,
|
2011-05-25 21:18:06 +02:00
|
|
|
/**/
|
|
|
|
206,
|
2011-05-25 17:56:27 +02:00
|
|
|
/**/
|
|
|
|
205,
|
2011-05-25 17:29:44 +02:00
|
|
|
/**/
|
|
|
|
204,
|
2011-05-25 17:06:22 +02:00
|
|
|
/**/
|
|
|
|
203,
|
2011-05-25 15:16:18 +02:00
|
|
|
/**/
|
|
|
|
202,
|
2011-05-25 13:34:04 +02:00
|
|
|
/**/
|
|
|
|
201,
|
2011-05-25 12:51:22 +02:00
|
|
|
/**/
|
|
|
|
200,
|
2011-05-25 12:09:50 +02:00
|
|
|
/**/
|
|
|
|
199,
|
2011-05-19 18:26:40 +02:00
|
|
|
/**/
|
|
|
|
198,
|
2011-05-19 17:42:59 +02:00
|
|
|
/**/
|
|
|
|
197,
|
2011-05-19 17:25:41 +02:00
|
|
|
/**/
|
|
|
|
196,
|
2011-05-19 16:35:09 +02:00
|
|
|
/**/
|
|
|
|
195,
|
2011-05-19 14:59:10 +02:00
|
|
|
/**/
|
|
|
|
194,
|
2011-05-19 14:50:54 +02:00
|
|
|
/**/
|
|
|
|
193,
|
2011-05-19 14:30:16 +02:00
|
|
|
/**/
|
|
|
|
192,
|
2011-05-19 13:41:14 +02:00
|
|
|
/**/
|
|
|
|
191,
|
2011-05-19 12:14:10 +02:00
|
|
|
/**/
|
|
|
|
190,
|
2011-05-10 17:29:33 +02:00
|
|
|
/**/
|
|
|
|
189,
|
2011-05-10 17:21:56 +02:00
|
|
|
/**/
|
|
|
|
188,
|
2011-05-10 16:41:25 +02:00
|
|
|
/**/
|
|
|
|
187,
|
2011-05-10 16:12:45 +02:00
|
|
|
/**/
|
|
|
|
186,
|
2011-05-10 16:00:47 +02:00
|
|
|
/**/
|
|
|
|
185,
|
2011-05-10 15:52:15 +02:00
|
|
|
/**/
|
|
|
|
184,
|
2011-05-10 15:42:03 +02:00
|
|
|
/**/
|
|
|
|
183,
|
2011-05-10 14:44:11 +02:00
|
|
|
/**/
|
|
|
|
182,
|
2011-05-10 14:22:16 +02:00
|
|
|
/**/
|
|
|
|
181,
|
2011-05-10 13:38:27 +02:00
|
|
|
/**/
|
|
|
|
180,
|
2011-05-10 11:56:30 +02:00
|
|
|
/**/
|
|
|
|
179,
|
2011-05-10 11:39:19 +02:00
|
|
|
/**/
|
|
|
|
178,
|
2011-05-05 18:31:59 +02:00
|
|
|
/**/
|
|
|
|
177,
|
2011-05-05 18:10:16 +02:00
|
|
|
/**/
|
|
|
|
176,
|
2011-05-05 17:32:44 +02:00
|
|
|
/**/
|
|
|
|
175,
|
2011-05-05 17:24:27 +02:00
|
|
|
/**/
|
|
|
|
174,
|
2011-05-05 17:14:14 +02:00
|
|
|
/**/
|
|
|
|
173,
|
2011-05-05 16:41:24 +02:00
|
|
|
/**/
|
|
|
|
172,
|
2011-05-05 14:26:41 +02:00
|
|
|
/**/
|
|
|
|
171,
|
2011-04-28 19:05:05 +02:00
|
|
|
/**/
|
|
|
|
170,
|
2011-04-28 17:48:44 +02:00
|
|
|
/**/
|
|
|
|
169,
|
2011-04-28 17:30:09 +02:00
|
|
|
/**/
|
|
|
|
168,
|
2011-04-28 17:27:09 +02:00
|
|
|
/**/
|
|
|
|
167,
|
2011-04-28 17:24:58 +02:00
|
|
|
/**/
|
|
|
|
166,
|
2011-04-28 17:21:53 +02:00
|
|
|
/**/
|
|
|
|
165,
|
2011-04-28 13:02:09 +02:00
|
|
|
/**/
|
|
|
|
164,
|
2011-04-28 12:57:36 +02:00
|
|
|
/**/
|
|
|
|
163,
|
2011-04-21 14:27:28 +02:00
|
|
|
/**/
|
|
|
|
162,
|
2011-04-11 21:35:11 +02:00
|
|
|
/**/
|
|
|
|
161,
|
2011-04-11 16:56:35 +02:00
|
|
|
/**/
|
|
|
|
160,
|
2011-04-11 14:29:17 +02:00
|
|
|
/**/
|
|
|
|
159,
|
2011-04-11 14:27:38 +02:00
|
|
|
/**/
|
|
|
|
158,
|
2011-04-11 14:26:19 +02:00
|
|
|
/**/
|
|
|
|
157,
|
2011-04-11 14:24:37 +02:00
|
|
|
/**/
|
|
|
|
156,
|
2011-04-11 13:46:13 +02:00
|
|
|
/**/
|
|
|
|
155,
|
2011-04-02 15:12:50 +02:00
|
|
|
/**/
|
|
|
|
154,
|
2011-04-02 14:44:55 +02:00
|
|
|
/**/
|
|
|
|
153,
|
2011-04-01 19:14:40 +02:00
|
|
|
/**/
|
|
|
|
152,
|
2011-04-01 16:28:38 +02:00
|
|
|
/**/
|
|
|
|
151,
|
2011-04-01 16:07:46 +02:00
|
|
|
/**/
|
|
|
|
150,
|
2011-04-01 15:33:59 +02:00
|
|
|
/**/
|
|
|
|
149,
|
2011-04-01 14:44:59 +02:00
|
|
|
/**/
|
|
|
|
148,
|
2011-04-01 13:05:45 +02:00
|
|
|
/**/
|
|
|
|
147,
|
2011-03-27 16:03:15 +02:00
|
|
|
/**/
|
|
|
|
146,
|
2011-03-26 18:32:05 +01:00
|
|
|
/**/
|
|
|
|
145,
|
2011-03-26 13:56:48 +01:00
|
|
|
/**/
|
|
|
|
144,
|
2011-03-22 18:10:45 +01:00
|
|
|
/**/
|
|
|
|
143,
|
2011-03-22 15:47:44 +01:00
|
|
|
/**/
|
|
|
|
142,
|
2011-03-22 14:35:05 +01:00
|
|
|
/**/
|
|
|
|
141,
|
2011-03-22 13:29:24 +01:00
|
|
|
/**/
|
|
|
|
140,
|
2011-03-22 13:07:26 +01:00
|
|
|
/**/
|
|
|
|
139,
|
2011-03-03 15:54:50 +01:00
|
|
|
/**/
|
|
|
|
138,
|
2011-03-03 15:04:08 +01:00
|
|
|
/**/
|
|
|
|
137,
|
2011-03-03 15:01:30 +01:00
|
|
|
/**/
|
|
|
|
136,
|
2011-02-25 18:38:36 +01:00
|
|
|
/**/
|
|
|
|
135,
|
2011-02-25 17:10:27 +01:00
|
|
|
/**/
|
|
|
|
134,
|
2011-02-25 16:52:17 +01:00
|
|
|
/**/
|
|
|
|
133,
|
2011-02-25 15:18:50 +01:00
|
|
|
/**/
|
|
|
|
132,
|
2011-02-25 15:17:19 +01:00
|
|
|
/**/
|
|
|
|
131,
|
2011-02-25 15:15:50 +01:00
|
|
|
/**/
|
|
|
|
130,
|
2011-02-25 15:13:48 +01:00
|
|
|
/**/
|
|
|
|
129,
|
2011-02-25 15:11:22 +01:00
|
|
|
/**/
|
|
|
|
128,
|
2011-02-25 14:46:09 +01:00
|
|
|
/**/
|
|
|
|
127,
|
2011-02-25 14:42:45 +01:00
|
|
|
/**/
|
|
|
|
126,
|
2011-02-15 18:06:15 +01:00
|
|
|
/**/
|
|
|
|
125,
|
2011-02-15 17:39:22 +01:00
|
|
|
/**/
|
|
|
|
124,
|
2011-02-15 16:29:59 +01:00
|
|
|
/**/
|
|
|
|
123,
|
2011-02-15 15:28:09 +01:00
|
|
|
/**/
|
|
|
|
122,
|
2011-02-15 14:24:46 +01:00
|
|
|
/**/
|
|
|
|
121,
|
2011-02-15 11:57:04 +01:00
|
|
|
/**/
|
|
|
|
120,
|
2011-02-12 14:00:03 +01:00
|
|
|
/**/
|
|
|
|
119,
|
2011-02-09 18:47:40 +01:00
|
|
|
/**/
|
|
|
|
118,
|
2011-02-09 17:42:57 +01:00
|
|
|
/**/
|
|
|
|
117,
|
2011-02-09 17:09:30 +01:00
|
|
|
/**/
|
|
|
|
116,
|
2011-02-09 16:44:51 +01:00
|
|
|
/**/
|
|
|
|
115,
|
2011-02-09 15:59:37 +01:00
|
|
|
/**/
|
|
|
|
114,
|
2011-02-09 14:47:03 +01:00
|
|
|
/**/
|
|
|
|
113,
|
2011-02-01 21:55:01 +01:00
|
|
|
/**/
|
|
|
|
112,
|
2011-02-01 18:01:11 +01:00
|
|
|
/**/
|
|
|
|
111,
|
2011-02-01 17:12:25 +01:00
|
|
|
/**/
|
|
|
|
110,
|
2011-02-01 13:59:48 +01:00
|
|
|
/**/
|
|
|
|
109,
|
2011-02-01 13:48:53 +01:00
|
|
|
/**/
|
|
|
|
108,
|
2011-01-22 21:25:11 +01:00
|
|
|
/**/
|
|
|
|
107,
|
2011-01-22 21:05:07 +01:00
|
|
|
/**/
|
|
|
|
106,
|
2011-01-22 01:13:39 +01:00
|
|
|
/**/
|
|
|
|
105,
|
2011-01-22 00:58:20 +01:00
|
|
|
/**/
|
|
|
|
104,
|
2011-01-22 00:11:50 +01:00
|
|
|
/**/
|
|
|
|
103,
|
2011-01-17 20:08:11 +01:00
|
|
|
/**/
|
|
|
|
102,
|
2011-01-17 19:53:27 +01:00
|
|
|
/**/
|
|
|
|
101,
|
2011-01-17 19:50:06 +01:00
|
|
|
/**/
|
|
|
|
100,
|
2011-01-08 14:46:03 +01:00
|
|
|
/**/
|
|
|
|
99,
|
2011-01-04 19:25:50 +01:00
|
|
|
/**/
|
|
|
|
98,
|
2011-01-04 19:03:27 +01:00
|
|
|
/**/
|
|
|
|
97,
|
2011-01-04 18:11:43 +01:00
|
|
|
/**/
|
|
|
|
96,
|
2011-01-04 17:49:32 +01:00
|
|
|
/**/
|
|
|
|
95,
|
2010-12-30 14:57:08 +01:00
|
|
|
/**/
|
|
|
|
94,
|
2010-12-30 14:50:52 +01:00
|
|
|
/**/
|
|
|
|
93,
|
2010-12-30 14:47:36 +01:00
|
|
|
/**/
|
|
|
|
92,
|
2010-12-30 12:30:31 +01:00
|
|
|
/**/
|
|
|
|
91,
|
2010-12-30 11:41:09 +01:00
|
|
|
/**/
|
|
|
|
90,
|
2010-12-24 14:00:17 +01:00
|
|
|
/**/
|
|
|
|
89,
|
2010-12-24 13:39:35 +01:00
|
|
|
/**/
|
|
|
|
88,
|
2010-12-17 20:24:01 +01:00
|
|
|
/**/
|
|
|
|
87,
|
2010-12-17 18:53:01 +01:00
|
|
|
/**/
|
|
|
|
86,
|
2010-12-17 18:06:06 +01:00
|
|
|
/**/
|
|
|
|
85,
|
2010-12-17 17:35:10 +01:00
|
|
|
/**/
|
|
|
|
84,
|
2010-12-17 16:27:16 +01:00
|
|
|
/**/
|
|
|
|
83,
|
2010-12-17 12:19:21 +01:00
|
|
|
/**/
|
|
|
|
82,
|
2010-12-08 19:56:58 +01:00
|
|
|
/**/
|
|
|
|
81,
|
2010-12-08 17:09:32 +01:00
|
|
|
/**/
|
|
|
|
80,
|
2010-12-08 14:55:02 +01:00
|
|
|
/**/
|
|
|
|
79,
|
2010-12-08 14:23:15 +01:00
|
|
|
/**/
|
|
|
|
78,
|
2010-12-08 13:17:03 +01:00
|
|
|
/**/
|
|
|
|
77,
|
2010-12-08 13:11:21 +01:00
|
|
|
/**/
|
|
|
|
76,
|
2010-12-02 21:44:40 +01:00
|
|
|
/**/
|
|
|
|
75,
|
2010-12-02 21:43:16 +01:00
|
|
|
/**/
|
|
|
|
74,
|
2010-12-02 17:09:54 +01:00
|
|
|
/**/
|
|
|
|
73,
|
2010-12-02 16:01:29 +01:00
|
|
|
/**/
|
|
|
|
72,
|
2010-12-02 15:33:21 +01:00
|
|
|
/**/
|
|
|
|
71,
|
2010-12-02 14:48:14 +01:00
|
|
|
/**/
|
|
|
|
70,
|
2010-11-24 18:48:12 +01:00
|
|
|
/**/
|
|
|
|
69,
|
2010-11-24 17:59:32 +01:00
|
|
|
/**/
|
|
|
|
68,
|
2010-11-24 17:03:38 +01:00
|
|
|
/**/
|
|
|
|
67,
|
2010-11-24 16:32:05 +01:00
|
|
|
/**/
|
|
|
|
66,
|
2010-11-24 15:50:59 +01:00
|
|
|
/**/
|
|
|
|
65,
|
2010-11-24 14:28:58 +01:00
|
|
|
/**/
|
|
|
|
64,
|
2010-11-24 12:35:21 +01:00
|
|
|
/**/
|
|
|
|
63,
|
2010-11-16 19:26:02 +01:00
|
|
|
/**/
|
|
|
|
62,
|
2010-11-16 16:25:51 +01:00
|
|
|
/**/
|
|
|
|
61,
|
2010-11-16 15:49:02 +01:00
|
|
|
/**/
|
|
|
|
60,
|
2010-11-16 15:04:57 +01:00
|
|
|
/**/
|
|
|
|
59,
|
2010-11-16 14:46:19 +01:00
|
|
|
/**/
|
|
|
|
58,
|
2010-11-16 14:06:08 +01:00
|
|
|
/**/
|
|
|
|
57,
|
2010-11-16 11:32:01 +01:00
|
|
|
/**/
|
|
|
|
56,
|
2010-11-10 20:41:57 +01:00
|
|
|
/**/
|
|
|
|
55,
|
2010-11-10 19:00:01 +01:00
|
|
|
/**/
|
|
|
|
54,
|
2010-11-10 17:11:33 +01:00
|
|
|
/**/
|
|
|
|
53,
|
2010-11-10 16:54:20 +01:00
|
|
|
/**/
|
|
|
|
52,
|
2010-11-10 15:37:05 +01:00
|
|
|
/**/
|
|
|
|
51,
|
2010-11-03 22:32:24 +01:00
|
|
|
/**/
|
|
|
|
50,
|
2010-11-03 21:59:30 +01:00
|
|
|
/**/
|
|
|
|
49,
|
2010-11-03 19:32:42 +01:00
|
|
|
/**/
|
|
|
|
48,
|
2010-10-27 18:36:36 +02:00
|
|
|
/**/
|
|
|
|
47,
|
2010-10-27 17:40:59 +02:00
|
|
|
/**/
|
|
|
|
46,
|
2010-10-27 17:39:05 +02:00
|
|
|
/**/
|
|
|
|
45,
|
2010-10-27 17:11:15 +02:00
|
|
|
/**/
|
|
|
|
44,
|
2010-10-27 16:49:47 +02:00
|
|
|
/**/
|
|
|
|
43,
|
2010-10-27 16:18:00 +02:00
|
|
|
/**/
|
|
|
|
42,
|
2010-10-27 16:01:27 +02:00
|
|
|
/**/
|
|
|
|
41,
|
2010-10-27 13:37:44 +02:00
|
|
|
/**/
|
|
|
|
40,
|
2010-10-27 12:58:23 +02:00
|
|
|
/**/
|
|
|
|
39,
|
2010-10-27 12:33:17 +02:00
|
|
|
/**/
|
|
|
|
38,
|
2010-10-27 12:18:00 +02:00
|
|
|
/**/
|
|
|
|
37,
|
2010-10-27 12:15:33 +02:00
|
|
|
/**/
|
|
|
|
36,
|
2010-10-24 14:33:43 +02:00
|
|
|
/**/
|
|
|
|
35,
|
2010-10-23 14:02:54 +02:00
|
|
|
/**/
|
|
|
|
34,
|
2010-10-22 22:13:52 +02:00
|
|
|
/**/
|
|
|
|
33,
|
2010-10-20 21:23:33 +02:00
|
|
|
/**/
|
|
|
|
32,
|
2010-10-20 19:17:48 +02:00
|
|
|
/**/
|
|
|
|
31,
|
2010-10-20 17:44:42 +02:00
|
|
|
/**/
|
|
|
|
30,
|
2010-10-15 20:20:05 +02:00
|
|
|
/**/
|
|
|
|
29,
|
2010-10-14 21:29:37 +02:00
|
|
|
/**/
|
|
|
|
28,
|
2010-10-13 20:37:41 +02:00
|
|
|
/**/
|
|
|
|
27,
|
2010-10-13 18:06:47 +02:00
|
|
|
/**/
|
|
|
|
26,
|
2010-10-13 17:50:07 +02:00
|
|
|
/**/
|
|
|
|
25,
|
2010-10-13 16:44:23 +02:00
|
|
|
/**/
|
|
|
|
24,
|
2010-10-13 16:22:09 +02:00
|
|
|
/**/
|
|
|
|
23,
|
2010-10-13 14:05:35 +02:00
|
|
|
/**/
|
|
|
|
22,
|
2010-10-10 17:08:43 +02:00
|
|
|
/**/
|
|
|
|
21,
|
2010-10-09 17:23:31 +02:00
|
|
|
/**/
|
|
|
|
20,
|
2010-09-30 21:03:26 +02:00
|
|
|
/**/
|
|
|
|
19,
|
2010-09-29 18:42:28 +02:00
|
|
|
/**/
|
|
|
|
18,
|
2010-09-29 18:32:52 +02:00
|
|
|
/**/
|
|
|
|
17,
|
2010-09-29 17:27:01 +02:00
|
|
|
/**/
|
|
|
|
16,
|
2010-09-29 16:55:49 +02:00
|
|
|
/**/
|
|
|
|
15,
|
2010-09-29 15:50:30 +02:00
|
|
|
/**/
|
|
|
|
14,
|
2010-09-29 13:02:53 +02:00
|
|
|
/**/
|
|
|
|
13,
|
2010-09-29 12:38:00 +02:00
|
|
|
/**/
|
|
|
|
12,
|
2010-09-21 22:09:37 +02:00
|
|
|
/**/
|
|
|
|
11,
|
2010-09-21 17:34:31 +02:00
|
|
|
/**/
|
|
|
|
10,
|
2010-09-21 17:29:23 +02:00
|
|
|
/**/
|
|
|
|
9,
|
2010-09-21 16:56:35 +02:00
|
|
|
/**/
|
|
|
|
8,
|
2010-09-21 16:49:37 +02:00
|
|
|
/**/
|
|
|
|
7,
|
2010-09-18 13:36:49 +02:00
|
|
|
/**/
|
|
|
|
6,
|
2010-09-14 12:47:37 +02:00
|
|
|
/**/
|
|
|
|
5,
|
2010-09-14 10:55:47 +02:00
|
|
|
/**/
|
|
|
|
4,
|
2010-08-17 20:26:59 +02:00
|
|
|
/**/
|
|
|
|
3,
|
2010-08-16 22:34:29 +02:00
|
|
|
/**/
|
|
|
|
2,
|
2010-08-16 21:53:27 +02:00
|
|
|
/**/
|
|
|
|
1,
|
2004-06-13 20:20:40 +00:00
|
|
|
/**/
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2008-11-30 11:15:09 +00:00
|
|
|
/*
|
|
|
|
* Place to put a short description when adding a feature with a patch.
|
|
|
|
* Keep it short, e.g.,: "relative numbers", "persistent undo".
|
|
|
|
* Also add a comment marker to separate the lines.
|
|
|
|
* See the official Vim patches for the diff format: It must use a context of
|
2008-12-24 13:25:14 +00:00
|
|
|
* one line only. Create it by hand or use "diff -C2" and edit the patch.
|
2008-11-30 11:15:09 +00:00
|
|
|
*/
|
|
|
|
static char *(extra_patches[]) =
|
|
|
|
{ /* Add your patch description below this line */
|
|
|
|
/**/
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
int
|
|
|
|
highest_patch()
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int h = 0;
|
|
|
|
|
|
|
|
for (i = 0; included_patches[i] != 0; ++i)
|
|
|
|
if (included_patches[i] > h)
|
|
|
|
h = included_patches[i];
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(FEAT_EVAL) || defined(PROTO)
|
|
|
|
/*
|
|
|
|
* Return TRUE if patch "n" has been included.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
has_patch(n)
|
|
|
|
int n;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; included_patches[i] != 0; ++i)
|
|
|
|
if (included_patches[i] == n)
|
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
|
|
|
ex_version(eap)
|
|
|
|
exarg_T *eap;
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Ignore a ":version 9.99" command.
|
|
|
|
*/
|
|
|
|
if (*eap->arg == NUL)
|
|
|
|
{
|
|
|
|
msg_putchar('\n');
|
|
|
|
list_version();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-20 16:47:36 +01:00
|
|
|
/*
|
|
|
|
* List all features aligned in columns, dictionary style.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
list_features()
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int ncol;
|
|
|
|
int nrow;
|
|
|
|
int nfeat = 0;
|
|
|
|
int width = 0;
|
|
|
|
|
|
|
|
/* Find the length of the longest feature name, use that + 1 as the column
|
|
|
|
* width */
|
|
|
|
for (i = 0; features[i] != NULL; ++i)
|
|
|
|
{
|
2013-02-26 11:25:33 +01:00
|
|
|
int l = (int)STRLEN(features[i]);
|
2013-02-20 16:47:36 +01:00
|
|
|
|
|
|
|
if (l > width)
|
|
|
|
width = l;
|
|
|
|
++nfeat;
|
|
|
|
}
|
|
|
|
width += 1;
|
|
|
|
|
|
|
|
if (Columns < width)
|
|
|
|
{
|
|
|
|
/* Not enough screen columns - show one per line */
|
|
|
|
for (i = 0; features[i] != NULL; ++i)
|
|
|
|
{
|
|
|
|
version_msg(features[i]);
|
|
|
|
if (msg_col > 0)
|
|
|
|
msg_putchar('\n');
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The rightmost column doesn't need a separator.
|
|
|
|
* Sacrifice it to fit in one more column if possible. */
|
2013-02-26 15:27:23 +01:00
|
|
|
ncol = (int) (Columns + 1) / width;
|
2013-02-20 16:47:36 +01:00
|
|
|
nrow = nfeat / ncol + (nfeat % ncol ? 1 : 0);
|
|
|
|
|
2013-02-26 15:27:23 +01:00
|
|
|
/* i counts columns then rows. idx counts rows then columns. */
|
2013-02-20 16:47:36 +01:00
|
|
|
for (i = 0; !got_int && i < nrow * ncol; ++i)
|
|
|
|
{
|
|
|
|
int idx = (i / ncol) + (i % ncol) * nrow;
|
|
|
|
|
|
|
|
if (idx < nfeat)
|
|
|
|
{
|
|
|
|
int last_col = (i + 1) % ncol == 0;
|
|
|
|
|
|
|
|
msg_puts((char_u *)features[idx]);
|
|
|
|
if (last_col)
|
|
|
|
{
|
|
|
|
if (msg_col > 0)
|
|
|
|
msg_putchar('\n');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (msg_col % width)
|
|
|
|
msg_putchar(' ');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2013-02-26 15:27:23 +01:00
|
|
|
{
|
|
|
|
if (msg_col > 0)
|
|
|
|
msg_putchar('\n');
|
|
|
|
}
|
2013-02-20 16:47:36 +01:00
|
|
|
}
|
|
|
|
}
|
2013-02-26 11:25:33 +01:00
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
void
|
|
|
|
list_version()
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int first;
|
|
|
|
char *s = "";
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When adding features here, don't forget to update the list of
|
|
|
|
* internal variables in eval.c!
|
|
|
|
*/
|
|
|
|
MSG(longVersion);
|
|
|
|
#ifdef WIN3264
|
|
|
|
# ifdef FEAT_GUI_W32
|
|
|
|
# if defined(_MSC_VER) && (_MSC_VER <= 1010)
|
|
|
|
/* Only MS VC 4.1 and earlier can do Win32s */
|
2008-06-20 14:32:41 +00:00
|
|
|
MSG_PUTS(_("\nMS-Windows 16/32-bit GUI version"));
|
2004-06-13 20:20:40 +00:00
|
|
|
# else
|
2006-10-03 14:30:41 +00:00
|
|
|
# ifdef _WIN64
|
2008-06-20 14:32:41 +00:00
|
|
|
MSG_PUTS(_("\nMS-Windows 64-bit GUI version"));
|
2006-10-03 14:30:41 +00:00
|
|
|
# else
|
2008-06-20 14:32:41 +00:00
|
|
|
MSG_PUTS(_("\nMS-Windows 32-bit GUI version"));
|
2006-10-03 14:30:41 +00:00
|
|
|
# endif
|
2004-06-13 20:20:40 +00:00
|
|
|
# endif
|
|
|
|
if (gui_is_win32s())
|
|
|
|
MSG_PUTS(_(" in Win32s mode"));
|
|
|
|
# ifdef FEAT_OLE
|
|
|
|
MSG_PUTS(_(" with OLE support"));
|
|
|
|
# endif
|
|
|
|
# else
|
2008-06-20 14:32:41 +00:00
|
|
|
# ifdef _WIN64
|
|
|
|
MSG_PUTS(_("\nMS-Windows 64-bit console version"));
|
|
|
|
# else
|
|
|
|
MSG_PUTS(_("\nMS-Windows 32-bit console version"));
|
|
|
|
# endif
|
2004-06-13 20:20:40 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef WIN16
|
2008-06-20 14:32:41 +00:00
|
|
|
MSG_PUTS(_("\nMS-Windows 16-bit version"));
|
2004-06-13 20:20:40 +00:00
|
|
|
#endif
|
|
|
|
#ifdef MSDOS
|
|
|
|
# ifdef DJGPP
|
2008-06-20 14:32:41 +00:00
|
|
|
MSG_PUTS(_("\n32-bit MS-DOS version"));
|
2004-06-13 20:20:40 +00:00
|
|
|
# else
|
2008-06-20 14:32:41 +00:00
|
|
|
MSG_PUTS(_("\n16-bit MS-DOS version"));
|
2004-06-13 20:20:40 +00:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef MACOS
|
|
|
|
# ifdef MACOS_X
|
|
|
|
# ifdef MACOS_X_UNIX
|
|
|
|
MSG_PUTS(_("\nMacOS X (unix) version"));
|
|
|
|
# else
|
|
|
|
MSG_PUTS(_("\nMacOS X version"));
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
MSG_PUTS(_("\nMacOS version"));
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef VMS
|
2008-08-25 02:14:05 +00:00
|
|
|
MSG_PUTS(_("\nOpenVMS version"));
|
2006-11-28 16:43:58 +00:00
|
|
|
# ifdef HAVE_PATHDEF
|
|
|
|
if (*compiled_arch != NUL)
|
|
|
|
{
|
|
|
|
MSG_PUTS(" - ");
|
|
|
|
MSG_PUTS(compiled_arch);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Print the list of patch numbers if there is at least one. */
|
|
|
|
/* Print a range when patches are consecutive: "1-10, 12, 15-40, 42-45" */
|
|
|
|
if (included_patches[0] != 0)
|
|
|
|
{
|
|
|
|
MSG_PUTS(_("\nIncluded patches: "));
|
|
|
|
first = -1;
|
|
|
|
/* find last one */
|
|
|
|
for (i = 0; included_patches[i] != 0; ++i)
|
|
|
|
;
|
|
|
|
while (--i >= 0)
|
|
|
|
{
|
|
|
|
if (first < 0)
|
|
|
|
first = included_patches[i];
|
|
|
|
if (i == 0 || included_patches[i - 1] != included_patches[i] + 1)
|
|
|
|
{
|
|
|
|
MSG_PUTS(s);
|
|
|
|
s = ", ";
|
|
|
|
msg_outnum((long)first);
|
|
|
|
if (first != included_patches[i])
|
|
|
|
{
|
|
|
|
MSG_PUTS("-");
|
|
|
|
msg_outnum((long)included_patches[i]);
|
|
|
|
}
|
|
|
|
first = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-30 11:15:09 +00:00
|
|
|
/* Print the list of extra patch descriptions if there is at least one. */
|
|
|
|
if (extra_patches[0] != NULL)
|
|
|
|
{
|
|
|
|
MSG_PUTS(_("\nExtra patches: "));
|
|
|
|
s = "";
|
|
|
|
for (i = 0; extra_patches[i] != NULL; ++i)
|
|
|
|
{
|
|
|
|
MSG_PUTS(s);
|
|
|
|
s = ", ";
|
|
|
|
MSG_PUTS(extra_patches[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-06-13 20:20:40 +00:00
|
|
|
#ifdef MODIFIED_BY
|
|
|
|
MSG_PUTS("\n");
|
|
|
|
MSG_PUTS(_("Modified by "));
|
|
|
|
MSG_PUTS(MODIFIED_BY);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_PATHDEF
|
|
|
|
if (*compiled_user != NUL || *compiled_sys != NUL)
|
|
|
|
{
|
|
|
|
MSG_PUTS(_("\nCompiled "));
|
|
|
|
if (*compiled_user != NUL)
|
|
|
|
{
|
|
|
|
MSG_PUTS(_("by "));
|
|
|
|
MSG_PUTS(compiled_user);
|
|
|
|
}
|
|
|
|
if (*compiled_sys != NUL)
|
|
|
|
{
|
|
|
|
MSG_PUTS("@");
|
|
|
|
MSG_PUTS(compiled_sys);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FEAT_HUGE
|
|
|
|
MSG_PUTS(_("\nHuge version "));
|
|
|
|
#else
|
|
|
|
# ifdef FEAT_BIG
|
|
|
|
MSG_PUTS(_("\nBig version "));
|
|
|
|
# else
|
|
|
|
# ifdef FEAT_NORMAL
|
|
|
|
MSG_PUTS(_("\nNormal version "));
|
|
|
|
# else
|
|
|
|
# ifdef FEAT_SMALL
|
|
|
|
MSG_PUTS(_("\nSmall version "));
|
|
|
|
# else
|
|
|
|
MSG_PUTS(_("\nTiny version "));
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifndef FEAT_GUI
|
|
|
|
MSG_PUTS(_("without GUI."));
|
|
|
|
#else
|
|
|
|
# ifdef FEAT_GUI_GTK
|
|
|
|
# ifdef FEAT_GUI_GNOME
|
|
|
|
MSG_PUTS(_("with GTK2-GNOME GUI."));
|
|
|
|
# else
|
|
|
|
MSG_PUTS(_("with GTK2 GUI."));
|
|
|
|
# endif
|
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_MOTIF
|
|
|
|
MSG_PUTS(_("with X11-Motif GUI."));
|
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_ATHENA
|
|
|
|
# ifdef FEAT_GUI_NEXTAW
|
|
|
|
MSG_PUTS(_("with X11-neXtaw GUI."));
|
|
|
|
# else
|
|
|
|
MSG_PUTS(_("with X11-Athena GUI."));
|
|
|
|
# endif
|
|
|
|
# else
|
|
|
|
# ifdef FEAT_GUI_PHOTON
|
|
|
|
MSG_PUTS(_("with Photon GUI."));
|
|
|
|
# else
|
|
|
|
# if defined(MSWIN)
|
|
|
|
MSG_PUTS(_("with GUI."));
|
|
|
|
# else
|
2010-06-05 23:22:07 +02:00
|
|
|
# if defined(TARGET_API_MAC_CARBON) && TARGET_API_MAC_CARBON
|
2004-06-13 20:20:40 +00:00
|
|
|
MSG_PUTS(_("with Carbon GUI."));
|
|
|
|
# else
|
2010-06-05 23:22:07 +02:00
|
|
|
# if defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX
|
2004-06-13 20:20:40 +00:00
|
|
|
MSG_PUTS(_("with Cocoa GUI."));
|
|
|
|
# else
|
2010-06-05 23:22:07 +02:00
|
|
|
# if defined(MACOS)
|
2004-06-13 20:20:40 +00:00
|
|
|
MSG_PUTS(_("with (classic) GUI."));
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
version_msg(_(" Features included (+) or not (-):\n"));
|
|
|
|
|
2013-02-20 16:47:36 +01:00
|
|
|
list_features();
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
#ifdef SYS_VIMRC_FILE
|
|
|
|
version_msg(_(" system vimrc file: \""));
|
|
|
|
version_msg(SYS_VIMRC_FILE);
|
|
|
|
version_msg("\"\n");
|
|
|
|
#endif
|
|
|
|
#ifdef USR_VIMRC_FILE
|
|
|
|
version_msg(_(" user vimrc file: \""));
|
|
|
|
version_msg(USR_VIMRC_FILE);
|
|
|
|
version_msg("\"\n");
|
|
|
|
#endif
|
|
|
|
#ifdef USR_VIMRC_FILE2
|
|
|
|
version_msg(_(" 2nd user vimrc file: \""));
|
|
|
|
version_msg(USR_VIMRC_FILE2);
|
|
|
|
version_msg("\"\n");
|
|
|
|
#endif
|
|
|
|
#ifdef USR_VIMRC_FILE3
|
|
|
|
version_msg(_(" 3rd user vimrc file: \""));
|
|
|
|
version_msg(USR_VIMRC_FILE3);
|
|
|
|
version_msg("\"\n");
|
|
|
|
#endif
|
|
|
|
#ifdef USR_EXRC_FILE
|
|
|
|
version_msg(_(" user exrc file: \""));
|
|
|
|
version_msg(USR_EXRC_FILE);
|
|
|
|
version_msg("\"\n");
|
|
|
|
#endif
|
|
|
|
#ifdef USR_EXRC_FILE2
|
|
|
|
version_msg(_(" 2nd user exrc file: \""));
|
|
|
|
version_msg(USR_EXRC_FILE2);
|
|
|
|
version_msg("\"\n");
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_GUI
|
|
|
|
# ifdef SYS_GVIMRC_FILE
|
|
|
|
version_msg(_(" system gvimrc file: \""));
|
|
|
|
version_msg(SYS_GVIMRC_FILE);
|
|
|
|
version_msg("\"\n");
|
|
|
|
# endif
|
|
|
|
version_msg(_(" user gvimrc file: \""));
|
|
|
|
version_msg(USR_GVIMRC_FILE);
|
|
|
|
version_msg("\"\n");
|
|
|
|
# ifdef USR_GVIMRC_FILE2
|
|
|
|
version_msg(_("2nd user gvimrc file: \""));
|
|
|
|
version_msg(USR_GVIMRC_FILE2);
|
|
|
|
version_msg("\"\n");
|
|
|
|
# endif
|
|
|
|
# ifdef USR_GVIMRC_FILE3
|
|
|
|
version_msg(_("3rd user gvimrc file: \""));
|
|
|
|
version_msg(USR_GVIMRC_FILE3);
|
|
|
|
version_msg("\"\n");
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef FEAT_GUI
|
|
|
|
# ifdef SYS_MENU_FILE
|
|
|
|
version_msg(_(" system menu file: \""));
|
|
|
|
version_msg(SYS_MENU_FILE);
|
|
|
|
version_msg("\"\n");
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_PATHDEF
|
|
|
|
if (*default_vim_dir != NUL)
|
|
|
|
{
|
|
|
|
version_msg(_(" fall-back for $VIM: \""));
|
|
|
|
version_msg((char *)default_vim_dir);
|
|
|
|
version_msg("\"\n");
|
|
|
|
}
|
|
|
|
if (*default_vimruntime_dir != NUL)
|
|
|
|
{
|
|
|
|
version_msg(_(" f-b for $VIMRUNTIME: \""));
|
|
|
|
version_msg((char *)default_vimruntime_dir);
|
|
|
|
version_msg("\"\n");
|
|
|
|
}
|
|
|
|
version_msg(_("Compilation: "));
|
|
|
|
version_msg((char *)all_cflags);
|
|
|
|
version_msg("\n");
|
|
|
|
#ifdef VMS
|
|
|
|
if (*compiler_version != NUL)
|
|
|
|
{
|
|
|
|
version_msg(_("Compiler: "));
|
|
|
|
version_msg((char *)compiler_version);
|
|
|
|
version_msg("\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
version_msg(_("Linking: "));
|
|
|
|
version_msg((char *)all_lflags);
|
|
|
|
#endif
|
|
|
|
#ifdef DEBUG
|
|
|
|
version_msg("\n");
|
|
|
|
version_msg(_(" DEBUG BUILD"));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Output a string for the version message. If it's going to wrap, output a
|
|
|
|
* newline, unless the message is too long to fit on the screen anyway.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
version_msg(s)
|
|
|
|
char *s;
|
|
|
|
{
|
|
|
|
int len = (int)STRLEN(s);
|
|
|
|
|
|
|
|
if (!got_int && len < (int)Columns && msg_col + len >= (int)Columns
|
|
|
|
&& *s != '\n')
|
|
|
|
msg_putchar('\n');
|
|
|
|
if (!got_int)
|
|
|
|
MSG_PUTS(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void do_intro_line __ARGS((int row, char_u *mesg, int add_version, int attr));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Give an introductory message about Vim.
|
|
|
|
* Only used when starting Vim on an empty file, without a file name.
|
|
|
|
* Or with the ":intro" command (for Sven :-).
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
intro_message(colon)
|
|
|
|
int colon; /* TRUE for ":intro" */
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int row;
|
|
|
|
int blanklines;
|
|
|
|
int sponsor;
|
|
|
|
char *p;
|
|
|
|
static char *(lines[]) =
|
|
|
|
{
|
|
|
|
N_("VIM - Vi IMproved"),
|
|
|
|
"",
|
|
|
|
N_("version "),
|
|
|
|
N_("by Bram Moolenaar et al."),
|
|
|
|
#ifdef MODIFIED_BY
|
|
|
|
" ",
|
|
|
|
#endif
|
|
|
|
N_("Vim is open source and freely distributable"),
|
|
|
|
"",
|
|
|
|
N_("Help poor children in Uganda!"),
|
|
|
|
N_("type :help iccf<Enter> for information "),
|
|
|
|
"",
|
|
|
|
N_("type :q<Enter> to exit "),
|
|
|
|
N_("type :help<Enter> or <F1> for on-line help"),
|
2004-10-07 21:02:47 +00:00
|
|
|
N_("type :help version7<Enter> for version info"),
|
2004-06-13 20:20:40 +00:00
|
|
|
NULL,
|
|
|
|
"",
|
|
|
|
N_("Running in Vi compatible mode"),
|
|
|
|
N_("type :set nocp<Enter> for Vim defaults"),
|
|
|
|
N_("type :help cp-default<Enter> for info on this"),
|
|
|
|
};
|
|
|
|
#ifdef FEAT_GUI
|
|
|
|
static char *(gui_lines[]) =
|
|
|
|
{
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
#ifdef MODIFIED_BY
|
|
|
|
NULL,
|
|
|
|
#endif
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
N_("menu Help->Orphans for information "),
|
|
|
|
NULL,
|
|
|
|
N_("Running modeless, typed text is inserted"),
|
|
|
|
N_("menu Edit->Global Settings->Toggle Insert Mode "),
|
|
|
|
N_(" for two modes "),
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
N_("menu Edit->Global Settings->Toggle Vi Compatible"),
|
|
|
|
N_(" for Vim defaults "),
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* blanklines = screen height - # message lines */
|
|
|
|
blanklines = (int)Rows - ((sizeof(lines) / sizeof(char *)) - 1);
|
|
|
|
if (!p_cp)
|
|
|
|
blanklines += 4; /* add 4 for not showing "Vi compatible" message */
|
|
|
|
#if defined(WIN3264) && !defined(FEAT_GUI_W32)
|
|
|
|
if (mch_windows95())
|
|
|
|
blanklines -= 3; /* subtract 3 for showing "Windows 95" message */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FEAT_WINDOWS
|
|
|
|
/* Don't overwrite a statusline. Depends on 'cmdheight'. */
|
|
|
|
if (p_ls > 1)
|
|
|
|
blanklines -= Rows - topframe->fr_height;
|
|
|
|
#endif
|
|
|
|
if (blanklines < 0)
|
|
|
|
blanklines = 0;
|
|
|
|
|
|
|
|
/* Show the sponsor and register message one out of four times, the Uganda
|
|
|
|
* message two out of four times. */
|
2005-12-22 22:47:02 +00:00
|
|
|
sponsor = (int)time(NULL);
|
2004-06-13 20:20:40 +00:00
|
|
|
sponsor = ((sponsor & 2) == 0) - ((sponsor & 4) == 0);
|
|
|
|
|
|
|
|
/* start displaying the message lines after half of the blank lines */
|
|
|
|
row = blanklines / 2;
|
|
|
|
if ((row >= 2 && Columns >= 50) || colon)
|
|
|
|
{
|
|
|
|
for (i = 0; i < (int)(sizeof(lines) / sizeof(char *)); ++i)
|
|
|
|
{
|
|
|
|
p = lines[i];
|
|
|
|
#ifdef FEAT_GUI
|
|
|
|
if (p_im && gui.in_use && gui_lines[i] != NULL)
|
|
|
|
p = gui_lines[i];
|
|
|
|
#endif
|
|
|
|
if (p == NULL)
|
|
|
|
{
|
|
|
|
if (!p_cp)
|
|
|
|
break;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (sponsor != 0)
|
|
|
|
{
|
|
|
|
if (strstr(p, "children") != NULL)
|
|
|
|
p = sponsor < 0
|
|
|
|
? N_("Sponsor Vim development!")
|
|
|
|
: N_("Become a registered Vim user!");
|
|
|
|
else if (strstr(p, "iccf") != NULL)
|
|
|
|
p = sponsor < 0
|
|
|
|
? N_("type :help sponsor<Enter> for information ")
|
|
|
|
: N_("type :help register<Enter> for information ");
|
|
|
|
else if (strstr(p, "Orphans") != NULL)
|
|
|
|
p = N_("menu Help->Sponsor/Register for information ");
|
|
|
|
}
|
|
|
|
if (*p != NUL)
|
|
|
|
do_intro_line(row, (char_u *)_(p), i == 2, 0);
|
|
|
|
++row;
|
|
|
|
}
|
|
|
|
#if defined(WIN3264) && !defined(FEAT_GUI_W32)
|
|
|
|
if (mch_windows95())
|
|
|
|
{
|
|
|
|
do_intro_line(++row,
|
|
|
|
(char_u *)_("WARNING: Windows 95/98/ME detected"),
|
|
|
|
FALSE, hl_attr(HLF_E));
|
|
|
|
do_intro_line(++row,
|
|
|
|
(char_u *)_("type :help windows95<Enter> for info on this"),
|
|
|
|
FALSE, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make the wait-return message appear just below the text. */
|
|
|
|
if (colon)
|
|
|
|
msg_row = row;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_intro_line(row, mesg, add_version, attr)
|
|
|
|
int row;
|
|
|
|
char_u *mesg;
|
|
|
|
int add_version;
|
|
|
|
int attr;
|
|
|
|
{
|
|
|
|
char_u vers[20];
|
|
|
|
int col;
|
|
|
|
char_u *p;
|
|
|
|
int l;
|
|
|
|
int clen;
|
|
|
|
#ifdef MODIFIED_BY
|
|
|
|
# define MODBY_LEN 150
|
|
|
|
char_u modby[MODBY_LEN];
|
|
|
|
|
|
|
|
if (*mesg == ' ')
|
|
|
|
{
|
2008-01-05 12:59:22 +00:00
|
|
|
vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
|
2004-06-13 20:20:40 +00:00
|
|
|
l = STRLEN(modby);
|
2008-01-05 12:59:22 +00:00
|
|
|
vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
|
2004-06-13 20:20:40 +00:00
|
|
|
mesg = modby;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Center the message horizontally. */
|
|
|
|
col = vim_strsize(mesg);
|
|
|
|
if (add_version)
|
|
|
|
{
|
|
|
|
STRCPY(vers, mediumVersion);
|
|
|
|
if (highest_patch())
|
|
|
|
{
|
|
|
|
/* Check for 9.9x or 9.9xx, alpha/beta version */
|
2010-10-27 16:01:27 +02:00
|
|
|
if (isalpha((int)vers[3]))
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
2012-03-07 18:03:10 +01:00
|
|
|
int len = (isalpha((int)vers[4])) ? 5 : 4;
|
|
|
|
sprintf((char *)vers + len, ".%d%s", highest_patch(),
|
|
|
|
mediumVersion + len);
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
sprintf((char *)vers + 3, ".%d", highest_patch());
|
|
|
|
}
|
|
|
|
col += (int)STRLEN(vers);
|
|
|
|
}
|
|
|
|
col = (Columns - col) / 2;
|
|
|
|
if (col < 0)
|
|
|
|
col = 0;
|
|
|
|
|
|
|
|
/* Split up in parts to highlight <> items differently. */
|
|
|
|
for (p = mesg; *p != NUL; p += l)
|
|
|
|
{
|
|
|
|
clen = 0;
|
|
|
|
for (l = 0; p[l] != NUL
|
|
|
|
&& (l == 0 || (p[l] != '<' && p[l - 1] != '>')); ++l)
|
|
|
|
{
|
|
|
|
#ifdef FEAT_MBYTE
|
|
|
|
if (has_mbyte)
|
|
|
|
{
|
|
|
|
clen += ptr2cells(p + l);
|
2005-08-10 21:07:57 +00:00
|
|
|
l += (*mb_ptr2len)(p + l) - 1;
|
2004-06-13 20:20:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
clen += byte2cells(p[l]);
|
|
|
|
}
|
|
|
|
screen_puts_len(p, l, row, col, *p == '<' ? hl_attr(HLF_8) : attr);
|
|
|
|
col += clen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add the version number to the version line. */
|
|
|
|
if (add_version)
|
|
|
|
screen_puts(vers, row, col, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ":intro": clear screen, display intro screen and wait for return.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ex_intro(eap)
|
2009-05-14 20:20:33 +00:00
|
|
|
exarg_T *eap UNUSED;
|
2004-06-13 20:20:40 +00:00
|
|
|
{
|
|
|
|
screenclear();
|
|
|
|
intro_message(TRUE);
|
|
|
|
wait_return(TRUE);
|
|
|
|
}
|