+++ /dev/null
-Plouf's Java IRC Client Applet
-------------------------------
-
-Webmaster's manual
-------------------
-
-Concepts
---------
-
- Thank you for using PJIRC! You'll find in this document all information you
- might need in order to understand what is PJIRC, how it works and how to
- install it. Please read it before asking questions on forums or even
- directly to the author.
-
- PJIRC is an IRC client, just like Opera is a HTTP client. PJIRC is just
- another front-end for the well-known IRC network. You're supposed to be
- familiar with the IRC concepts. If not, you should try to find more
- information about it before going further in this document and trying
- to install and use PJIRC.
-
- PJIRC has two distinct parts : the IRC engine and the GUI. The IRC engine
- handles all the boring and uninteresting stuff such as managing the
- connection, formatting messages and so on. You might think of it as being
- the "kernel". On the other hand, the GUI is responsible for displaying
- the result with a nice layout using plenty of CPU-consuming graphical
- stuff and so on.
-
- There are several PJIRC GUI's, and you can choose the one you prefer. You
- might think of them as "skins", but they are much more than that. The
- standard PJIRC package comes with a default GUI, the "Pixx GUI". You should
- find its specific documentation within this package. This document will
- only describe the IRC engine part.
-
-Files
------
-
- The following files are part of the IRC engine :
- IRCApplet.class : Main Applet class file.
- irc.jar : IRC Engine for non-IE VM, signed mode.
- irc.cab : IRC Engine for IE VM, both mode.
- securedirc.cab : IRC Signed specific part engine for IE VM, signed mode.
- irc-unsigned.jar : IRC Engine for non-IE VM, unsigned mode.
-
- The cab files are only recognized by Internet Explorer. jar files
- are recognized by other Browsers or Java Virtual Machines. The class
- file is some kind of "executable file", think of it as being the
- "file that you execute" when you launch PJIRC.
-
- PJIRC can works in the modes : the "signed" mode and the "unsigned" mode.
- It is recommanded that you use the "signed" mode unless you have
- specific reasons to switch to unsigned mode. The mode PJIRC uses depends
- of the file you will tell it to use in the HTML Applet Fragment (see
- below).
-
-
-Build
------
- The unsigned IRC Engine can be built using the following javac compiler
- commands :
- javac -nowarn -g:none -O -target 1.1 IRCApplet.java
- javac -nowarn -g:none -O -target 1.1 irc\style\*.java
- javac -nowarn -g:none -O -target 1.1 irc\tree\*.java
- javac -nowarn -g:none -O -target 1.1 irc\dcc\prv\*.java
- javac -nowarn -g:none -O -target 1.1 irc\gui\prv\*.java
- javac -nowarn -g:none -O -target 1.1 irc\gui\common\*.java
- javac -nowarn -g:none -O -target 1.1 irc\ident\prv\*.java
- javac -nowarn -g:none -O -target 1.1 irc\gui\prv\*.java
-
-Installation
-------------
- Just upload the files you need, in regard to the mode (signed or unsigned)
- you want. Upload any extra files, such as language files or images and
- sound.
-
-Applet html fragment
---------------------
- Using signed mode and the Pixx GUI, the following minimal applet fragment
- should work just fine :
-
- <applet code=IRCApplet.class archive="irc.jar,pixx.jar" width=640 height=400>
- <param name="CABINETS" value="irc.cab,securedirc.cab,pixx.cab">
- <param name="nick" value="Anonymous">
- <param name="name" value="PJIRC User">
- <param name="host" value="irc.diboo.net">
- <param name="gui" value="pixx">
- </applet>
-
-Test your applet
-----------------
- A test tool is available at http://www.pjirc.com/check.
- This tool will detect common errors and mistakes.
-
-What is a server?
------------------
- A server is any entity the client (PJIRC) connects to. There
- are three types of servers :
- - IRC server : usually referred as "the server", this is
- the server PJIRC was designed to connect to.
-
- - DCC server : a DCC (for Direct Client to Client) is a
- special server for handling direct
- connections to other clients.
-
- - Null server : the Null server is a ghost server,
- physically connected to nothing.
-
-What is a source?
------------------
- The term "source" will be used throughout the remaining of this
- document. In short, a "source" stands for any "window" that can
- receive or send text or data to or from a server. A Channel is a
- Source, bound to an IRC server. A DCCChat is also a source, but
- bound to a DCC server. Here is the list of all known sources :
-
- - Default : not bound to anything (bound to the Null server),
- the Default source is used to handle any
- server-independent operations. This source
- cannot be left. It is only present if multiserver
- support is enabled.
-
- - Status : bound to an IRC server, the Status is used for
- any IRC server-specific operations or notifications.
- Leaving this source will lead to the server
- disconnection and eventually to all any sources
- related to this server. This source is unique and
- cannot be left is multiserver support is disabled.
-
- - Query : bound to an IRC server, the Query is a private
- chat between two clients, via the IRC server. This
- source can be left at any time.
-
- - Channel : bound to an IRC server, the Channel is a
- public room where many clients can chat, via
- the IRC server. This source can be left at
- any time, provided it is not restricted to do
- so by the application configuration. Leaving
- this source may sometimes take several seconds
- since a feedback from the server is required.
-
- - ChanList : bound to an IRC server, the ChanList enumerates
- the listing of all available Channels on the
- IRC server. This source can be left at any time.
-
- - DCCChat : bound to a DCC server, the DCCChat is a private
- chat between two clients, via the DCC server. This
- source can be left at any time. Leaving this
- source will lead to the DCC server disconnection.
-
- - DCCFile : bound to a DCC server, the DCCFile is a special
- source used for transmitting files from a client
- to another, via the DCC server. This source can
- be left at any time. Leaving this source will
- lead to the DCC server disconnection.
-
-Parameters
-----------
- parameters are passed to the applet via the following syntax :
- <param name="name" value="value">
-
-Mandatory parameters
---------------------
-
- nick : default nick to be used. '?' characters will be replaced by random
- numbers.
- Example :
- <param name="nick" value="Guest??"> will tell the applet to use nicks
- such as Guest47
-
- name : "real" user name, sent to IRC server.
- Example :
- <param name="name" value="UserName">
-
- host : IRC server host.
- Example :
- <param name="host" value="irc.server.net">
-
- gui : PJIRC graphical user interface.
- Example :
- <param name="gui" value="pixx">
-
-
-Optional parameters
--------------------
-
- port : IRC server port. By default, the port is 6667.
- ----
-
- Example :
- <param name="port" value="6667">
-
- commandX, with X a figure : Tells the applet to execute this command once
- -------- connected to the server.
-
- The first command MUST be command1, and there can
- be no "gap" in the numbers : the command14 MUST be
- after command13, and NOT after command12.
-
- If the command is not prefixed by /, then the
- string is passed as it to the server. Otherwise,
- it is sent through the status window interpretor.
-
- Example :
- <param name="command1" value="/nickserv identify password">
- <param name="command2" value="/join #channel">
-
- language : sets the langage to be used. The name corresponds to a langage file
- -------- that must be accessible from the applet. For example, if there is
- a file lang/mylang.lng, then you may enter value="lang/mylang".
- By default, the langage is english.
-
- Example :
- <param name="language" value="french">
-
- quitmessage : sets the quit message. By default, this message is empty.
- -----------
-
- Example :
- <param name="quitmessage" value="PJIRC forever!">
-
- asl : enable or disable asl handling. Asl (for age, sex and localtion) is
- --- parsed from the full user name. Other parts of the software may behave
- differently provided the nick is male or female, its age, and so on...
- The full name format is expected to be "age sex localtion", for instance
- "22 m Belgium". By default, asl is disabled.
-
- Example :
- <param name="asl" value="true">
-
- aslmale : set the string corresponding to the male gender in the full name for
- ------- asl parsing. Default value is "m".
-
- Example :
- <param name="aslmale" value="m">
-
- aslfemale : set the string corresponding to the female gender in the full name
- --------- for asl parsing. Default value is "f".
-
- Example :
- <param name="aslfemale" value="f">
-
- aslunknown : set the string corresponding to the unknown gender in the full name
- ---------- for asl parsing. Default value is "x".
-
- Example :
- <param name="aslunknown" value="x">
-
- useinfo : replace the status window by the info window. The info window acts
- ------- exactly as the status window, but only shows motd and welcome
- messages. Since whois etc... results are no more shown, popup
- commands such as whois, finger, etc... are disabled. By default,
- the info window is disabled.
-
- Example :
- <param name="useinfo" value="false">
-
- soundbeep : set the beep sound. The beep sound is the sound played when the
- --------- /beep command is used. The file must be in .au format.
-
- Example :
- <param name="soundbeep" value="snd/bell2.au">
-
- soundquery : set the incoming private sound. The sound is played when a new
- ---------- private source is opened.
-
- Example :
- <param name="soundquery" value="snd/ding.au">
-
- password : set the server password on connection.
- --------
-
- Example :
- <param name="password" value="mysecretpassword">
-
- alternatenick : set the alternate nickname, to be used if primary nickname is
- ------------- already used on the server.
-
- Example :
- <param name="alternatenick" value="someothernick">
-
- languageencoding : set the language file encoding to be used. If not
- ---------------- specified, default encoding will be used.
-
- Example :
- <param name="languageencoding" value="UnicodeLittle">
-
- authorizedjoinlist : set the list of channels the user is authorized to join.
- ------------------ Syntax is "all-#channel1-#channel2-..." or
- "none+#channel1+#channel2+...". By default, authorized
- join list is "all".
-
- Example :
- <param name="authorizedjoinlist" value="none+#mychannel">
-
- authorizedleavelist : set the list of channels the user is authorized to
- ------------------- leave. Syntax is "all-#channel1-#channel2-..." or
- "none+#channel1+#channel2+...". By default, authorized
- leave list is "all".
-
- Example :
- <param name="authorizedleavelist" value="all-#mychannel">
-
- authorizedcommandlist : set the list of command the user is athorized to do.
- --------------------- Syntax is "all-command1-command2-..." or
- "none+command1+command2+...". By default, authorized
- command list is "all". Don't prefix the command with
- the / character.
- Example :
- <param name="authorizedcommandlist" value="none+me">
-
-
- coding : specify what encoding algorithm should be used for sending the text
- ------ to the irc server. By default, encoding 1 is used. Values are :
- 0 : strict ascii, MSB is dropped, shouldn't be used.
- 1 : pjirc unicode to ascii protocol, charcode is sent as it if
- below than \u0x00ff. Should be used if pjirc is used with
- other non UTF-8 compatible clients.
- 2 : UTF-8
- 3 : local charset coding, should be avoided when possible for
- compatibility reasons
-
- Example :
- <param name="coding" value="2">
-
- lngextension : modify the default lng file extension. By default, lng
- ------------ extension is "lng".
-
- Example :
- <param name="lngextension" value="txt">
-
- userid : set the userid. The user id will be used for ident id and for
- ------ user name at connect-time. If the id is empty, then full name
- will be used for id, and nickname will be used as username
- at connect time. By default, userid is empty.
-
- Example :
- <param name="userid" value="myname">
-
- autoconnection : set whether the applet should try to trigger connection
- -------------- as soon at it is launched. By default, the applet will
- try to connect.
-
- Example :
- <param name="autoconnection" value="false">
-
- useidentserver : enable or disable the ident server. By default, the
- -------------- server is enabled.
-
- Example :
- <param name="useidentserver" value="false">
-
- mutliserver : enable or disable the multiserver support. By default,
- ----------- multiserver is disabled.
-
- Example :
- <param name="multiserver" value="true">
-
- alternateserverI : set the Ith alternate server. Syntax is
- ---------------- "host port" or "host port password".
-
- Example :
- <param name="alternateserver1" value="irc.secondhost.com 6667">
-
- serveralias : set the default server alias. By default, server alias
- ----------- is empty string.
-
- Example :
- <param name="serveralias" value="Alias">
-
- noasldisplayprefix : set the "no display asl" full name prefix. If the
- ------------------ user's full name begins with this prefix, then
- the floating asl window won't be displayed. An
- empty string disables this feature. By default,
- prefix is disabled.
- Example :
- <param name="noasldisplayprefix" value="true">
-
- pluginX : set the Xth plugin to be loaded at startup.
- -------
-
- Example :
- <param name="plugin1" value="MyPlugin">
-
- soundwordX : set the Xth sound configuration. Syntax is "word sound". When
- ---------- "word" is detected in a message, then "sound" is played.
-
- Example :
- <param name="soundword1" value="lol snd/lol.au">
-
- fingerreply : set the finger reply.
- -----------
-
- Example :
- <param name="fingerreply" value="A lucky Plouf's IRC user">
-
- userinforeply : set the user info reply.
- -------------
-
- Example :
- <param name="userinforeply" value="A lucky Plouf's IRC user">
-
- fileparameter : URL to the file containing all PJIRC parameters.
- ------------- The configuration file format is the same as the
- pjirc.cfg file. If other parameters are specified
- using the html tags, they will be mixed.
-
- Example :
- <param name="fileparameter" value="pjirc.cfg">
-
- aslseparatorstring : set the asl separator string. When the ASL parser
- ------------------ reach this string, the parsing stops and any text
- being found after this string (including the
- separator) will be ignored.
-
- Example :
- <param name="aslseparatorstring" value="|">
-
- allowdccchat : set whether dcc chat is allowed. By default, this is
- ------------ true.
-
- Example :
- <param name="allowdccchat" value="false">
-
- allowdccfile : set whether dcc file is allowed. By default, this is
- ------------ true.
-
- Example :
- <param name="allowdccfile" value="false">
-
- disablequeries : disable all queries. By default, this is not enabled.
- --------------
-
- Example
- <param name="disablequeries" value="true">
-
-
-Style parameters
-----------------
-
-'Style' is the name of the library used inside PJIRC for text display. Even
-if this display has nothing to do with the actual irc engine, a majority
-of all GUI's are likely to use it. As a consequence, 'Style' is included in
-the engine package. All 'Style' parameters are prefixed by 'style:'.
-
-
- righttoleft : set right-to-left display, instead of left-to-right default
- ----------- display.
-
- Example :
- <param name="style:righttoleft" value="true">
-
- sourcecolorruleN : set the Nth source color rule. Rule syntax is
- ---------------- "type name index1=color1 index2=color2 ...".
-
- Example :
- <param name="style:sourcecolorrule1" value="none+Channel all 0=00ff00">
- <param name="style:sourcecolorrule2" value="none+Query none+some_nick 0=000000 1=ffffff">
-
- sourcefontruleN : set the Nth source font rule. Rule syntax is
- ---------------- "type name fontname fontsize".
-
- Example :
- <param name="style:sourcefontrule1" value="none+Channel all Arial 12">
-
-
- backgroundimage : toggle master background image switch. If this flag is
- --------------- turned off, all background images will be ignored. By
- default, background images are disabled.
-
- Example :
- <param name="style:backgroundimage" value="true">
-
- backgroundimageX : background image configuration number X. Syntax is
- ---------------- "sourcetype sourcename tiling image" with sourcetype and
- sourcename the target source type and name, tiling a
- figure and image the image file name. Valid source types
- are DCCChat, Channel, Query, Status, ChanList and Default.
- As for the command parameter, there can't be any gap in the
- X indexes.
-
- Possible tiling values are:
- 0 : Center
- 1 : Stretch
- 2 : Tiling
- 3 : Top left
- 259 : Top right
- 515 : Bottom left
- 771 : Bottom right
-
- Example :
- <param name="style:backgroundimage1" value="none+channel none+#happy 1 img/content.gif">
- <param name="style:backgroundimage2" value="none+Query all 2 img/soleil.gif">
-
- bitmapsmileys : enable or disable bitmap smileys. Once enabled, bitmaps are
- ------------- defined via the smiley parameter. By default, bitmap smileys
- are disabled.
-
- Example :
- <param name="style:bitmapsmileys" value="true">
-
- smileyX : set the Xnth smiley. A smiley is a pair of text->image. Each time
- ------- the text is found on a line, it will be replaced by the
- corresponding image. As for the command parameter, the first smiley
- must be smiley1 and there must'nt be any gap. The format of the
- parameter is "text image", where image is any URL the applet can
- access.
-
- Example :
- <param name="style:smiley1" value=":) img/smile.gif">
- <param name="style:smiley2" value=":( img/sad.gif">
-
- floatingasl : activate "mouseover" floating asl information. By default,
- ----------- floating asl is disabled. "asl" parameter may be also activated,
- but this is not mandatory.
-
- Example :
- <param name="style:floatingasl" value="true">
-
- floatingaslalpha : set the floating asl alpha transparency value. Between 0
- ---------------- and 255, 0 is invisible and 255 fully opaque. By default,
- alpha value is 170. This parameter may be ignored if the
- java virtual machine doens't support transparency.
-
- Example :
- <param name="style:floatingaslalpha" value="150">
-
- linespacing : set the additional space that will be used between two lines
- ----------- of text. Default value is zero. Unit is pixel.
-
- Example :
- <param name="style:linespacing" value="10">
-
- maximumlinecount : set the maximum line count in the history buffer. This
- ---------------- can save memory for very long chats. Default value is
- 1024.
-
- Example
- <param name="style:maximumlinecount" value="256">
-
- highlightlinks : highlight links when mouse moves over them. By default,
- -------------- this is not enabled.
-
- Example
- <param name="style:highlightlinks" value="true">
-
-GUI parameters
---------------
-The Pixx's GUI documentation is available in a separate file in the default
-package. All GUI parameters begins with 'gui:', where gui is the name of the
-gui. For instance, any Pixx GUI specific parameter will begin by 'pixx:'.
-
-JavaScript support
-------------------
-
- PJIRC is designed to support events from the "outside". The applet supports
- the following methods :
-
- void sendString(String str) : send the given string to the server, through
- the current source interpretor. For instance,
- you can bring the channel list window by
- calling sendString("/list")
-
- void setFieldText(String txt) : set the textfield content.
-
- String getFieldText() : get the textfield content. setFieldText and
- getFieldText can be combined to append text for the
- user. For instance, adding a smiley can be done using
- setFieldText(getFieldText()+':)')
-
- void validateText() : validate the current textfield content, as if the user
- pressed the return key.
-
- void requestSourceFocus() : request the active source to gain focus.
-
- void sendPluginEvent(String pluginName,Object event) : send the given event
- value to the given
- plugin.
-
- Object getPluginValue(String pluginName,Object valueName) : Get the plugin
- value from the
- given plugin
- name.
-
-Minimal html fragment
----------------------
-
-<applet code=IRCApplet.class archive="irc.jar,securedirc.jar" width=640 height=400>
-<param name="CABINETS" value="irc.cab,securedirc.cab">
-
-<param name="nick" value="Anonymous???">
-<param name="name" value="Java User">
-<param name="host" value="irc.dal.net">
-<param name="gui" value="pixx">
-
-</applet>
-
-Runtime commands
-----------------
-
-A runtime command is any text prefixed by the / character. If the so-called
-interpretor recognize a command, it will parse and handle it. If not, the
-command will be sent as it (but without the initial / character) to the
-server.
-
-Here are the list of all recognized commands.
-
-ame %message : send an action to all active channels
-amsg %message : send a message to all active channels
-away [%message] : configure the away status
-beep : send a beep to the speakers
-clear : clear the window
-ctcp %command [%parameters] : send a ctcp request to the given nick
-dcc %nick : send a dcc request to the given nick
-disconnect : disconnect from the server
-echo %message : echo the specified text to the active source
-hop : leave and rejoin the active channel
-ignore %nick : ignore the specified nick
-j %channel [%password] : join the given channel
-join %channel [%password] : same as j
-kick %nick : kick the given nick
-leave : leave the active source
-load %plugin : load the given plugin
-me %message : send an action to the active source
-msg %target %message : send a message to the given target
-newserver %alias %host [%port [%password]] : create a new server status
-notice %target %message : send a notice to the given target
-onotice %target %message : send a notice to all operators at the given target
-part : same as leave
-ping : ping the given nickname
-play %sound : play the given sound, only on the local client
-query %nick : query the given nickname
-quit [%message] : same as disconnect, but with the given message
-raw %command : send a raw command to the server
-server %host [%port [%password]] : connect to the given server
-sound %soundfile : play the given sound on the client and all other clients on the source
-sleep %millis : freeze the interpretor for the given amount of milliseconds
-topic %channel %topic : change the given channel's topic
-unignore %nick : unignore the specified nick
-unload %plugin : unload the specified plugin
-url %url [%target] : open the given url on a new browser window
-
-Contacts
---------
-
-PJIRC is developped by Plouf - plouf@pjirc.com
-Have a look at http://www.pjirc.com/ for news about PJIRC.
-PJIRC has an official italian website on http://www.pjirc.it
-PJIRC has a CVS repository at SourceForge - http://sourceforge.net/projects/pjirc
`node_vector` varchar(400) NOT NULL,
PRIMARY KEY (`node_id`),
KEY `node_vector` (`node_vector`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
`external_link` varchar(123) NOT NULL,
`node_vector` varchar(230) NOT NULL,
`node_content` text NOT NULL,
- `node_level3` int(13) NOT NULL,
`node_destructor` int(13) NOT NULL,
`node_destructed` datetime NOT NULL,
PRIMARY KEY (`node_id`),
KEY `node_creator` (`node_creator`),
KEY `node_destructor` (`node_destructor`),
- KEY `node_level3` (`node_level3`),
FULLTEXT KEY `node_vector` (`node_vector`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
`user_id` int(11) default NULL,
`node_id` int(11) default NULL,
`access_time` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
`parameter2` varchar(23) default NULL,
`result` varchar(10) default NULL,
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
KEY `mail_duplicate_id` (`mail_duplicate_id`),
KEY `mail_user_from_to` (`mail_user`,`mail_from`,`mail_to`),
KEY `mail_user_to_read` (`mail_user`,`mail_to`,`mail_read`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
PRIMARY KEY (`mail_archive_id`),
KEY `user_id_date_from_to` (`user_id`,`date`,`user_from`,`user_to`),
KEY `user_id_date_to` (`user_id`,`date`,`user_to`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
`descendants` int(11) NOT NULL default '0',
`k` int(11) NOT NULL default '0',
PRIMARY KEY (`node_id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
`synapse_created` datetime default NULL,
`dst_vector` char(232) default NULL,
`synapse_creator` int(11) NOT NULL default '0',
- `dst_level3` int(13) NOT NULL default '0',
UNIQUE KEY `relation` (`dst`,`src`),
KEY `central_link` (`dst`,`link`),
KEY `dst_vector` (`dst_vector`),
- KEY `src` (`src`),
- KEY `dst_level3` (`dst_level3`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+ KEY `src` (`src`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
LOCK TABLES `neurons` WRITE;
/*!40000 ALTER TABLE `neurons` DISABLE KEYS */;
-INSERT INTO `neurons` VALUES (19,12,1,'soft','2009-05-26 23:23:58',NULL,NULL,904,0),(904,19,12,'soft','2010-02-16 22:35:57',NULL,NULL,904,0),(904,904,32,'soft','2010-02-21 17:25:16',NULL,NULL,904,0),(0,904,1,'soft','2009-05-26 23:24:13',NULL,NULL,904,0),(24,904,1,'soft','2009-05-26 23:24:39',NULL,NULL,904,0),(19,24,4,'soft','2010-02-16 22:36:34',NULL,NULL,904,0),(102,19,8,'soft','2010-02-21 17:26:27',NULL,NULL,904,0),(27,23,5,'soft','2010-02-16 22:35:39',NULL,NULL,904,0),(101,27,1,'soft','2009-05-26 23:25:24',NULL,NULL,904,0),(102,101,6,'soft','2010-02-16 23:03:33',NULL,NULL,904,0),(101,102,7,'soft','2010-02-16 22:48:43',NULL,NULL,904,0),(1,101,4,'soft','2010-02-16 22:48:45',NULL,NULL,904,0),(1,1,9,'soft','2010-02-21 17:54:58',NULL,NULL,904,0),(21,27,7,'soft','2010-02-16 18:05:41',NULL,NULL,904,0),(21,21,4,'soft','2010-02-21 17:27:08',NULL,NULL,904,0),(0,548,1,'soft','2009-05-27 21:50:29',NULL,NULL,904,0),(548,548,1,'soft','2009-05-28 11:38:01',NULL,NULL,904,0),(19,19,16,'soft','2009-05-30 08:49:02',NULL,NULL,904,0),(1,19,8,'soft','2010-02-21 17:54:57',NULL,NULL,904,0),(0,1,1,'soft','2009-05-28 14:30:30',NULL,NULL,904,0),(24,102,1,'soft','2009-05-28 14:30:48',NULL,NULL,904,0),(23,24,6,'soft','2010-02-16 18:05:38',NULL,NULL,904,0),(0,23,1,'soft','2009-05-28 14:30:58',NULL,NULL,904,0),(0,27,3,'soft','2009-05-29 22:40:53',NULL,NULL,904,0),(15,27,2,'soft','2009-05-30 11:31:30',NULL,NULL,904,0),(0,15,2,'soft','2009-05-28 14:31:19',NULL,NULL,904,0),(904,15,1,'soft','2009-05-28 14:31:21',NULL,NULL,904,0),(19,904,4,'soft','2009-05-28 21:01:54',NULL,NULL,904,0),(192,192,10,'soft','2009-05-28 19:56:36',NULL,NULL,904,0),(258,192,1,'soft','2009-05-28 19:56:44',NULL,NULL,904,0),(258,258,1,'soft','2009-05-28 19:56:49',NULL,NULL,904,0),(19,258,1,'soft','2009-05-28 19:56:53',NULL,NULL,904,0),(904,1,1,'soft','2009-05-28 20:37:33',NULL,NULL,904,0),(548,1,1,'soft','2009-05-28 20:50:49',NULL,NULL,904,0),(19,1,6,'soft','2010-02-21 17:54:54',NULL,NULL,904,0),(101,19,3,'soft','2010-02-15 23:58:26',NULL,NULL,904,0),(0,102,1,'soft','2009-05-28 21:02:19',NULL,NULL,904,0),(1,102,1,'soft','2009-05-28 21:08:51',NULL,NULL,904,0),(101,1,4,'soft','2010-02-16 23:03:31',NULL,NULL,904,0),(683817,102,6,'soft','2010-02-16 23:03:34',NULL,NULL,904,0),(19,683817,3,'soft','2010-02-15 23:58:19',NULL,NULL,904,0),(24,19,5,'soft','2010-02-16 18:05:36',NULL,NULL,904,0),(1522695,23,5,'soft','2009-05-30 14:11:23',NULL,NULL,904,0),(27,1522695,5,'soft','2009-05-30 14:11:24',NULL,NULL,904,0),(15,21,5,'soft','2010-02-16 18:05:46',NULL,NULL,904,0),(788016,15,7,'soft','2010-02-16 18:05:47',NULL,NULL,904,0),(876611,788016,6,'soft','2010-02-16 18:05:48',NULL,NULL,904,0),(1058182,788016,6,'soft','2010-02-16 18:05:52',NULL,NULL,904,0),(25,1058182,7,'soft','2010-02-16 18:05:54',NULL,NULL,904,0),(904,25,3,'soft','2010-02-16 16:21:57',NULL,NULL,904,0),(19,1017832,2,'soft','2010-02-16 22:49:47',NULL,NULL,904,0),(1017832,19,3,'soft','2010-02-16 23:02:52',NULL,NULL,904,0),(102,24,1,'soft','2009-05-28 21:49:12',NULL,NULL,904,0),(683817,101,1,'soft','2009-05-28 21:49:16',NULL,NULL,904,0),(683817,683817,5,'soft','2010-02-16 22:50:12',NULL,NULL,904,0),(332,683817,2,'soft','2009-05-30 14:34:54',NULL,NULL,904,0),(332,332,19,'soft','2010-02-16 22:45:11',NULL,NULL,904,0),(21,332,1,'soft','2009-05-28 21:50:07',NULL,NULL,904,0),(27,21,4,'soft','2010-02-16 16:22:20',NULL,NULL,904,0),(1522695,27,3,'soft','2010-02-16 22:49:22',NULL,NULL,904,0),(15,1522695,2,'soft','2010-02-16 22:35:41',NULL,NULL,904,0),(1017832,904,2,'soft','2010-02-16 16:22:00',NULL,NULL,904,0),(63556,1017832,1,'soft','2009-05-28 21:50:48',NULL,NULL,904,0),(23,27,3,'soft','2010-02-16 22:36:20',NULL,NULL,904,0),(24,24,2,'soft','2009-05-29 19:52:06',NULL,NULL,332,0),(1058182,19,3,'soft','2010-02-16 22:49:50',NULL,NULL,332,0),(27,27,1,'soft','2009-05-29 19:52:27',NULL,NULL,332,0),(332,102,1,'soft','2009-05-29 19:52:47',NULL,NULL,332,0),(24,1,1,'soft','2009-05-29 22:56:10',NULL,NULL,332,0),(21,15,2,'soft','2010-02-16 13:08:19',NULL,NULL,332,0),(1844482,21,4,'soft','2010-02-16 22:55:22',NULL,NULL,332,0),(1,25,2,'soft','2010-02-16 22:52:04',NULL,NULL,332,0),(21,19,2,'soft','2010-02-15 23:58:10',NULL,NULL,904,0),(1,21,2,'soft','2009-05-30 08:45:52',NULL,NULL,904,0),(332,25,3,'soft','2010-02-16 22:49:35',NULL,NULL,332,0),(1,332,1,'soft','2009-05-30 11:31:40',NULL,NULL,332,0),(1017832,101,1,'soft','2009-05-30 11:31:45',NULL,NULL,332,0),(332,1017832,1,'soft','2009-05-30 11:31:48',NULL,NULL,332,0),(101,332,1,'soft','2009-05-30 11:31:58',NULL,NULL,332,0),(101,101,9,'soft','2010-02-16 22:44:37',NULL,NULL,332,0),(4738019,101,1,'soft','2009-05-30 11:32:20',NULL,NULL,332,0),(332,19,1,'soft','2009-05-30 14:00:53',NULL,NULL,332,0),(102,683817,3,'soft','2010-02-16 22:48:41',NULL,NULL,332,0),(332,904,3,'bookmark','2009-05-30 14:10:11','2009-05-30 16:10:05',NULL,332,0),(23,23,2,'soft','2010-02-16 22:36:21',NULL,NULL,332,0),(1017832,332,2,'soft','2010-02-16 22:49:42',NULL,NULL,332,0),(683817,1017832,2,'soft','2010-02-16 22:48:20',NULL,NULL,332,0),(19,332,1,'soft','2009-05-30 14:35:08',NULL,NULL,904,0),(19,1062076,1,'soft','2010-02-15 23:58:03',NULL,NULL,904,0),(102,788016,1,'soft','2010-02-15 23:58:15',NULL,NULL,904,0),(63539,101,1,'soft','2010-02-15 23:58:30',NULL,NULL,904,0),(25,25,25,'soft','2010-02-17 00:33:53',NULL,NULL,904,0),(27,25,1,'soft','2010-02-16 13:08:13',NULL,NULL,904,0),(788016,27,1,'soft','2010-02-16 13:08:16',NULL,NULL,904,0),(15,788016,1,'soft','2010-02-16 13:08:18',NULL,NULL,904,0),(1522695,21,1,'soft','2010-02-16 13:08:22',NULL,NULL,904,0),(21,1522695,1,'soft','2010-02-16 13:08:23',NULL,NULL,904,0),(25,19,2,'soft','2010-02-16 13:33:43',NULL,NULL,904,0),(19,25,3,'soft','2010-02-16 22:25:04',NULL,NULL,904,0),(2115046,1,1,'soft','2010-02-16 16:21:41',NULL,NULL,904,0),(904,1058182,1,'soft','2010-02-16 16:21:54',NULL,NULL,904,0),(25,1017832,1,'soft','2010-02-16 16:22:16',NULL,NULL,904,0),(21,25,1,'soft','2010-02-16 16:22:18',NULL,NULL,904,0),(24,23,3,'soft','2010-02-16 22:49:28',NULL,NULL,904,0),(683817,19,2,'soft','2010-02-16 22:35:32',NULL,NULL,904,0),(1432305,683817,2,'soft','2010-02-16 22:50:04',NULL,NULL,904,0),(24,683817,1,'soft','2010-02-16 16:23:14',NULL,NULL,904,0),(1,24,1,'soft','2010-02-16 16:23:16',NULL,NULL,904,0),(876611,19,1,'soft','2010-02-16 18:05:10',NULL,NULL,904,0),(2335451,25,1,'soft','2010-02-16 22:25:19',NULL,NULL,904,0),(1844482,25,1,'soft','2010-02-16 22:25:25',NULL,NULL,904,0),(25,1,3,'soft','2010-02-16 23:16:39',NULL,NULL,904,0),(21842,25,2,'soft','2010-02-16 23:03:54',NULL,NULL,904,0),(904,21842,1,'soft','2010-02-16 22:31:50',NULL,NULL,904,0),(23,904,1,'soft','2010-02-16 22:32:35',NULL,NULL,904,0),(19,23,1,'soft','2010-02-16 22:35:30',NULL,NULL,904,0),(23,1,2,'soft','2010-02-16 23:06:53',NULL,NULL,904,0),(2527821,27,3,'soft','2010-02-16 22:49:21',NULL,NULL,904,0),(19,15,1,'soft','2010-02-16 22:35:45',NULL,NULL,904,0),(1522695,19,2,'soft','2010-02-21 17:24:53',NULL,NULL,904,0),(27,904,1,'soft','2010-02-16 22:36:18',NULL,NULL,904,0),(21842,21842,21,'soft','2010-02-21 17:52:44',NULL,NULL,904,0),(1,21842,3,'hard','2010-02-21 17:52:44','2010-02-21 12:52:44','0000000100021842',332,0),(1017832,1,2,'soft','2010-02-16 22:40:17',NULL,NULL,332,0),(102,1017832,1,'soft','2010-02-16 22:43:38',NULL,NULL,332,0),(31,1,1,'soft','2010-02-16 22:48:50',NULL,NULL,332,0),(17,1,1,'soft','2010-02-16 22:49:02',NULL,NULL,332,0),(12,1,1,'soft','2010-02-16 22:49:10',NULL,NULL,332,0),(27,1,1,'soft','2010-02-16 22:49:20',NULL,NULL,332,0),(23,1522695,1,'soft','2010-02-16 22:49:24',NULL,NULL,332,0),(876611,24,1,'soft','2010-02-16 22:49:30',NULL,NULL,332,0),(25,24,1,'soft','2010-02-16 22:49:34',NULL,NULL,332,0),(25,21842,1,'soft','2010-02-16 22:52:02',NULL,NULL,332,0),(3081544,25,2,'soft','2010-02-16 23:16:45',NULL,NULL,332,0),(1227763,1017832,1,'soft','2010-02-16 23:02:57',NULL,NULL,332,0),(1,683817,1,'soft','2010-02-16 23:03:38',NULL,NULL,332,0),(2284387,25,1,'soft','2010-02-16 23:16:46',NULL,NULL,332,0),(1662468,25,1,'soft','2010-02-16 23:16:48',NULL,NULL,332,0),(1870248,25,1,'soft','2010-02-16 23:16:49',NULL,NULL,332,0),(196177,25,1,'soft','2010-02-16 23:16:55',NULL,NULL,332,0),(2284387,2284387,7,'soft','2010-02-16 23:19:27',NULL,NULL,332,0),(1,23,1,'soft','2010-02-16 23:18:07',NULL,NULL,332,0),(3081544,3081544,5,'soft','2010-02-16 23:19:39',NULL,NULL,332,0),(2527821,1,18,'soft','2010-02-21 17:54:59',NULL,NULL,332,0),(2527821,19,3,'soft','2010-02-21 17:54:55',NULL,NULL,904,0),(4738023,904,1,'soft','2010-02-21 17:25:18',NULL,NULL,904,0),(4738023,4738023,6,'soft','2010-02-21 17:31:09',NULL,NULL,904,0),(904,4738023,1,'soft','2010-02-21 17:26:18',NULL,NULL,904,0),(23,4738023,1,'soft','2010-02-21 17:26:53',NULL,NULL,904,0),(21,4738023,1,'soft','2010-02-21 17:27:00',NULL,NULL,904,0),(23,21,1,'soft','2010-02-21 17:27:16',NULL,NULL,904,0),(4738022,4738023,1,'hard','2010-02-21 17:31:35','2010-02-21 12:31:35','000009040473802204738023',904,4738023),(4738025,4738023,1,'soft','2010-02-21 17:31:55',NULL,NULL,904,0),(4738026,4738025,1,'soft','2010-02-21 17:32:08',NULL,NULL,904,0),(4738027,4738026,2,'soft','2010-02-21 17:42:59',NULL,NULL,904,0),(4738028,4738027,1,'soft','2010-02-21 17:43:14',NULL,NULL,904,0),(4738026,4738027,1,'soft','2010-02-21 17:43:23',NULL,NULL,904,0),(4738025,4738028,1,'hard','2010-02-21 17:43:46','2010-02-21 12:43:46','00000101047380230473802504738028',904,4738025),(21842,1,1,'soft','2010-02-21 17:53:38',NULL,NULL,332,0);
+INSERT INTO `neurons` VALUES (19,12,1,'soft','2009-05-26 23:23:58',NULL,NULL,904),(904,19,12,'soft','2010-02-16 22:35:57',NULL,NULL,904),(904,904,32,'soft','2010-02-21 17:25:16',NULL,NULL,904),(0,904,1,'soft','2009-05-26 23:24:13',NULL,NULL,904),(24,904,1,'soft','2009-05-26 23:24:39',NULL,NULL,904),(19,24,4,'soft','2010-02-16 22:36:34',NULL,NULL,904),(102,19,8,'soft','2010-02-21 17:26:27',NULL,NULL,904),(27,23,5,'soft','2010-02-16 22:35:39',NULL,NULL,904),(101,27,1,'soft','2009-05-26 23:25:24',NULL,NULL,904),(102,101,6,'soft','2010-02-16 23:03:33',NULL,NULL,904),(101,102,7,'soft','2010-02-16 22:48:43',NULL,NULL,904),(1,101,4,'soft','2010-02-16 22:48:45',NULL,NULL,904),(1,1,9,'soft','2010-02-21 17:54:58',NULL,NULL,904),(21,27,7,'soft','2010-02-16 18:05:41',NULL,NULL,904),(21,21,4,'soft','2010-02-21 17:27:08',NULL,NULL,904),(0,548,1,'soft','2009-05-27 21:50:29',NULL,NULL,904),(548,548,1,'soft','2009-05-28 11:38:01',NULL,NULL,904),(19,19,16,'soft','2009-05-30 08:49:02',NULL,NULL,904),(1,19,8,'soft','2010-02-21 17:54:57',NULL,NULL,904),(0,1,1,'soft','2009-05-28 14:30:30',NULL,NULL,904),(24,102,1,'soft','2009-05-28 14:30:48',NULL,NULL,904),(23,24,6,'soft','2010-02-16 18:05:38',NULL,NULL,904),(0,23,1,'soft','2009-05-28 14:30:58',NULL,NULL,904),(0,27,3,'soft','2009-05-29 22:40:53',NULL,NULL,904),(15,27,2,'soft','2009-05-30 11:31:30',NULL,NULL,904),(0,15,2,'soft','2009-05-28 14:31:19',NULL,NULL,904),(904,15,1,'soft','2009-05-28 14:31:21',NULL,NULL,904),(19,904,4,'soft','2009-05-28 21:01:54',NULL,NULL,904),(192,192,10,'soft','2009-05-28 19:56:36',NULL,NULL,904),(258,192,1,'soft','2009-05-28 19:56:44',NULL,NULL,904),(258,258,1,'soft','2009-05-28 19:56:49',NULL,NULL,904),(19,258,1,'soft','2009-05-28 19:56:53',NULL,NULL,904),(904,1,1,'soft','2009-05-28 20:37:33',NULL,NULL,904),(548,1,1,'soft','2009-05-28 20:50:49',NULL,NULL,904),(19,1,6,'soft','2010-02-21 17:54:54',NULL,NULL,904),(101,19,3,'soft','2010-02-15 23:58:26',NULL,NULL,904),(0,102,1,'soft','2009-05-28 21:02:19',NULL,NULL,904),(1,102,1,'soft','2009-05-28 21:08:51',NULL,NULL,904),(101,1,4,'soft','2010-02-16 23:03:31',NULL,NULL,904),(683817,102,6,'soft','2010-02-16 23:03:34',NULL,NULL,904),(19,683817,3,'soft','2010-02-15 23:58:19',NULL,NULL,904),(24,19,5,'soft','2010-02-16 18:05:36',NULL,NULL,904),(1522695,23,5,'soft','2009-05-30 14:11:23',NULL,NULL,904),(27,1522695,5,'soft','2009-05-30 14:11:24',NULL,NULL,904),(15,21,5,'soft','2010-02-16 18:05:46',NULL,NULL,904),(788016,15,7,'soft','2010-02-16 18:05:47',NULL,NULL,904),(876611,788016,6,'soft','2010-02-16 18:05:48',NULL,NULL,904),(1058182,788016,6,'soft','2010-02-16 18:05:52',NULL,NULL,904),(25,1058182,7,'soft','2010-02-16 18:05:54',NULL,NULL,904),(904,25,3,'soft','2010-02-16 16:21:57',NULL,NULL,904),(19,1017832,2,'soft','2010-02-16 22:49:47',NULL,NULL,904),(1017832,19,3,'soft','2010-02-16 23:02:52',NULL,NULL,904),(102,24,1,'soft','2009-05-28 21:49:12',NULL,NULL,904),(683817,101,1,'soft','2009-05-28 21:49:16',NULL,NULL,904),(683817,683817,5,'soft','2010-02-16 22:50:12',NULL,NULL,904),(332,683817,2,'soft','2009-05-30 14:34:54',NULL,NULL,904),(332,332,19,'soft','2010-02-16 22:45:11',NULL,NULL,904),(21,332,1,'soft','2009-05-28 21:50:07',NULL,NULL,904),(27,21,4,'soft','2010-02-16 16:22:20',NULL,NULL,904),(1522695,27,3,'soft','2010-02-16 22:49:22',NULL,NULL,904),(15,1522695,2,'soft','2010-02-16 22:35:41',NULL,NULL,904),(1017832,904,2,'soft','2010-02-16 16:22:00',NULL,NULL,904),(63556,1017832,1,'soft','2009-05-28 21:50:48',NULL,NULL,904),(23,27,3,'soft','2010-02-16 22:36:20',NULL,NULL,904),(24,24,2,'soft','2009-05-29 19:52:06',NULL,NULL,332),(1058182,19,3,'soft','2010-02-16 22:49:50',NULL,NULL,332),(27,27,1,'soft','2009-05-29 19:52:27',NULL,NULL,332),(332,102,1,'soft','2009-05-29 19:52:47',NULL,NULL,332),(24,1,1,'soft','2009-05-29 22:56:10',NULL,NULL,332),(21,15,2,'soft','2010-02-16 13:08:19',NULL,NULL,332),(1844482,21,4,'soft','2010-02-16 22:55:22',NULL,NULL,332),(1,25,2,'soft','2010-02-16 22:52:04',NULL,NULL,332),(21,19,2,'soft','2010-02-15 23:58:10',NULL,NULL,904),(1,21,2,'soft','2009-05-30 08:45:52',NULL,NULL,904),(332,25,3,'soft','2010-02-16 22:49:35',NULL,NULL,332),(1,332,1,'soft','2009-05-30 11:31:40',NULL,NULL,332),(1017832,101,1,'soft','2009-05-30 11:31:45',NULL,NULL,332),(332,1017832,1,'soft','2009-05-30 11:31:48',NULL,NULL,332),(101,332,1,'soft','2009-05-30 11:31:58',NULL,NULL,332),(101,101,9,'soft','2010-02-16 22:44:37',NULL,NULL,332),(4738019,101,1,'soft','2009-05-30 11:32:20',NULL,NULL,332),(332,19,1,'soft','2009-05-30 14:00:53',NULL,NULL,332),(102,683817,3,'soft','2010-02-16 22:48:41',NULL,NULL,332),(332,904,3,'bookmark','2009-05-30 14:10:11','2009-05-30 16:10:05',NULL,332),(23,23,2,'soft','2010-02-16 22:36:21',NULL,NULL,332),(1017832,332,2,'soft','2010-02-16 22:49:42',NULL,NULL,332),(683817,1017832,2,'soft','2010-02-16 22:48:20',NULL,NULL,332),(19,332,1,'soft','2009-05-30 14:35:08',NULL,NULL,904),(19,1062076,1,'soft','2010-02-15 23:58:03',NULL,NULL,904),(102,788016,1,'soft','2010-02-15 23:58:15',NULL,NULL,904),(63539,101,1,'soft','2010-02-15 23:58:30',NULL,NULL,904),(25,25,25,'soft','2010-02-17 00:33:53',NULL,NULL,904),(27,25,1,'soft','2010-02-16 13:08:13',NULL,NULL,904),(788016,27,1,'soft','2010-02-16 13:08:16',NULL,NULL,904),(15,788016,1,'soft','2010-02-16 13:08:18',NULL,NULL,904),(1522695,21,1,'soft','2010-02-16 13:08:22',NULL,NULL,904),(21,1522695,1,'soft','2010-02-16 13:08:23',NULL,NULL,904),(25,19,2,'soft','2010-02-16 13:33:43',NULL,NULL,904),(19,25,3,'soft','2010-02-16 22:25:04',NULL,NULL,904),(2115046,1,1,'soft','2010-02-16 16:21:41',NULL,NULL,904),(904,1058182,1,'soft','2010-02-16 16:21:54',NULL,NULL,904),(25,1017832,1,'soft','2010-02-16 16:22:16',NULL,NULL,904),(21,25,1,'soft','2010-02-16 16:22:18',NULL,NULL,904),(24,23,3,'soft','2010-02-16 22:49:28',NULL,NULL,904),(683817,19,2,'soft','2010-02-16 22:35:32',NULL,NULL,904),(1432305,683817,2,'soft','2010-02-16 22:50:04',NULL,NULL,904),(24,683817,1,'soft','2010-02-16 16:23:14',NULL,NULL,904),(1,24,1,'soft','2010-02-16 16:23:16',NULL,NULL,904),(876611,19,1,'soft','2010-02-16 18:05:10',NULL,NULL,904),(2335451,25,1,'soft','2010-02-16 22:25:19',NULL,NULL,904),(1844482,25,1,'soft','2010-02-16 22:25:25',NULL,NULL,904),(25,1,3,'soft','2010-02-16 23:16:39',NULL,NULL,904),(21842,25,2,'soft','2010-02-16 23:03:54',NULL,NULL,904),(904,21842,1,'soft','2010-02-16 22:31:50',NULL,NULL,904),(23,904,1,'soft','2010-02-16 22:32:35',NULL,NULL,904),(19,23,1,'soft','2010-02-16 22:35:30',NULL,NULL,904),(23,1,2,'soft','2010-02-16 23:06:53',NULL,NULL,904),(2527821,27,3,'soft','2010-02-16 22:49:21',NULL,NULL,904),(19,15,1,'soft','2010-02-16 22:35:45',NULL,NULL,904),(1522695,19,2,'soft','2010-02-21 17:24:53',NULL,NULL,904),(27,904,1,'soft','2010-02-16 22:36:18',NULL,NULL,904),(21842,21842,21,'soft','2010-02-21 17:52:44',NULL,NULL,904),(1,21842,3,'hard','2010-02-21 17:52:44','2010-02-21 12:52:44','0000000100021842',332),(1017832,1,2,'soft','2010-02-16 22:40:17',NULL,NULL,332),(102,1017832,1,'soft','2010-02-16 22:43:38',NULL,NULL,332),(31,1,1,'soft','2010-02-16 22:48:50',NULL,NULL,332),(17,1,1,'soft','2010-02-16 22:49:02',NULL,NULL,332),(12,1,1,'soft','2010-02-16 22:49:10',NULL,NULL,332),(27,1,1,'soft','2010-02-16 22:49:20',NULL,NULL,332),(23,1522695,1,'soft','2010-02-16 22:49:24',NULL,NULL,332),(876611,24,1,'soft','2010-02-16 22:49:30',NULL,NULL,332),(25,24,1,'soft','2010-02-16 22:49:34',NULL,NULL,332),(25,21842,1,'soft','2010-02-16 22:52:02',NULL,NULL,332),(3081544,25,2,'soft','2010-02-16 23:16:45',NULL,NULL,332),(1227763,1017832,1,'soft','2010-02-16 23:02:57',NULL,NULL,332),(1,683817,1,'soft','2010-02-16 23:03:38',NULL,NULL,332),(2284387,25,1,'soft','2010-02-16 23:16:46',NULL,NULL,332),(1662468,25,1,'soft','2010-02-16 23:16:48',NULL,NULL,332),(1870248,25,1,'soft','2010-02-16 23:16:49',NULL,NULL,332),(196177,25,1,'soft','2010-02-16 23:16:55',NULL,NULL,332),(2284387,2284387,7,'soft','2010-02-16 23:19:27',NULL,NULL,332),(1,23,1,'soft','2010-02-16 23:18:07',NULL,NULL,332),(3081544,3081544,5,'soft','2010-02-16 23:19:39',NULL,NULL,332),(2527821,1,18,'soft','2010-02-21 17:54:59',NULL,NULL,332),(2527821,19,3,'soft','2010-02-21 17:54:55',NULL,NULL,904),(4738023,904,1,'soft','2010-02-21 17:25:18',NULL,NULL,904),(4738023,4738023,6,'soft','2010-02-21 17:31:09',NULL,NULL,904),(904,4738023,1,'soft','2010-02-21 17:26:18',NULL,NULL,904),(23,4738023,1,'soft','2010-02-21 17:26:53',NULL,NULL,904),(21,4738023,1,'soft','2010-02-21 17:27:00',NULL,NULL,904),(23,21,1,'soft','2010-02-21 17:27:16',NULL,NULL,904),(4738022,4738023,1,'hard','2010-02-21 17:31:35','2010-02-21 12:31:35','000009040473802204738023',904),(4738025,4738023,1,'soft','2010-02-21 17:31:55',NULL,NULL,904),(4738026,4738025,1,'soft','2010-02-21 17:32:08',NULL,NULL,904),(4738027,4738026,2,'soft','2010-02-21 17:42:59',NULL,NULL,904),(4738028,4738027,1,'soft','2010-02-21 17:43:14',NULL,NULL,904),(4738026,4738027,1,'soft','2010-02-21 17:43:23',NULL,NULL,904),(4738025,4738028,1,'hard','2010-02-21 17:43:46','2010-02-21 12:43:46','00000101047380230473802504738028',904),(21842,1,1,'soft','2010-02-21 17:53:38',NULL,NULL,332);
/*!40000 ALTER TABLE `neurons` ENABLE KEYS */;
UNLOCK TABLES;
UNIQUE KEY `node_access` (`node_id`,`user_id`),
KEY `user_bookmark` (`user_id`,`node_bookmark`),
KEY `node_bookmark` (`node_id`,`node_bookmark`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
`node_content` text NOT NULL,
UNIQUE KEY `node_id` (`node_id`),
FULLTEXT KEY `node_content_node_name` (`node_content`,`node_name`)
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
`node_id` int(11) NOT NULL,
`node_parent` int(11) NOT NULL default '0',
`node_vector` varchar(400) NOT NULL,
- `level3` int(11) NOT NULL default '0',
`is_hl` smallint(6) NOT NULL default '0',
PRIMARY KEY (`node_vector_id`),
- KEY `level3` (`level3`,`node_vector`(255),`is_hl`),
KEY `node_vector` (`node_vector`(255),`is_hl`),
KEY `node_parent` (`node_parent`,`is_hl`),
KEY `node_id` (`node_id`,`is_hl`)
-) ENGINE=InnoDB AUTO_INCREMENT=4514063 DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB AUTO_INCREMENT=4514063 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
LOCK TABLES `node_vector` WRITE;
/*!40000 ALTER TABLE `node_vector` DISABLE KEYS */;
-INSERT INTO `node_vector` VALUES (1,1,0,'00000001',0,0),(2,2,1,'0000000100000002',0,0),(47,3,1,'0000000100000003',0,0),(1005,4,1,'0000000100000004',0,0),(1011,5,1,'0000000100000005',0,0),(1012,6,1,'0000000100000006',0,0),(1082,8,1,'0000000100000008',0,0),(1083,9,1,'0000000100000009',0,0),(1957,10,1,'0000000100000010',0,0),(1958,11,1,'0000000100000011',0,0),(3643,12,1,'0000000100000012',0,0),(3651,14,1,'0000000100000014',0,0),(3652,15,1,'0000000100000015',0,0),(3658,16,1,'0000000100000016',0,0),(3659,17,1,'0000000100000017',0,0),(3661,18,1,'0000000100000018',0,0),(3662,19,1,'0000000100000019',0,0),(20146,20,1,'0000000100000020',0,0),(20147,22,1,'0000000100000022',0,0),(20185,23,1,'0000000100000023',0,0),(20186,24,1,'0000000100000024',0,0),(20189,25,1,'0000000100000025',0,0),(20191,29,1,'0000000100000029',0,0),(20202,100,1,'0000000100000100',0,0),(20204,102,1,'0000000100000102',0,0),(45341,7,0,'00000007',0,0),(45463,21,0,'00000021',0,0),(162930,27,0,'00000027',0,0),(163052,30,0,'00000030',0,0),(163058,31,0,'00000031',0,0),(163060,32,0,'00000032',0,0),(163065,101,0,'00000101',0,0),(634965,63532,101,'0000010100063532',0,0),(670513,683817,63532,'000001010006353200683817',683817,0),(1088477,332,0,'00000332',0,0),(1094462,548,0,'00000548',0,0),(1103222,904,0,'00000904',0,0),(1619197,788016,0,'00788016',0,0),(1642489,876611,0,'00876611',0,0),(1674186,1058182,0,'01058182',0,0),(2294629,1522695,1478222,'0000010100792011011419590147822201522695',1141959,0),(2728565,63539,101,'0000010100063539',0,0),(2893526,63556,63539,'000001010006353900063556',63556,0),(3135184,1017832,63556,'00000101000635390006355601017832',63556,0),(3847256,3,1058182,'0105818200000003',0,1),(3847257,7,1999688,'00000101007920110199968800000007',1999688,1),(3847258,19,63646,'0000010100063528000635840006364600000019',63584,1),(3847259,19,3766960,'0000010104166671037669470376696000000019',3766947,1),(3847260,21,962161,'0000010100063528000636970096216100000021',63697,1),(3847261,21,962439,'0000010100063528000635510096243900000021',63551,1),(3847262,21,64514,'00000101000635270006451400000021',64514,1),(3847263,21,1197,'0000119700000021',0,1),(3847264,21,965591,'000000210096559100000021',21,1),(3847265,21,667804,'0000010100063537007589480066780400000021',758948,1),(3847266,21,1143346,'000001010006353200063571000641790114334600000021',63571,1),(3847267,21,1070007,'0000010100063532000635710107000700000021',63571,1),(3847268,21,21788,'00000101000217480002178800000021',21788,1),(3847269,21,690922,'0000010100063564000635880069092200000021',63588,1),(3847270,21,1499948,'0149994800000021',0,1),(3847271,21,64393,'00000101000635390006439300000021',64393,1),(3847272,21,63868,'0000010100063537000635680006386800000021',63568,1),(3847273,21,1508656,'00000101000635280150865600000021',1508656,1),(3847274,21,1532090,'0153209000000021',0,1),(3847275,21,65013,'000001030006501300000021',21,1),(3847276,21,1870232,'000000210187023200000021',21,1),(3847277,21,1878809,'001234560187880900000021',21,1),(3847278,21,1665272,'0000144901663286020728670166527200000021',2072867,1),(3847279,21,64106,'0000010100063534000635770006410600000021',63577,1),(3847280,21,1217852,'0000010100063540000635420121785200000021',63542,1),(3847281,21,63682,'0000010100063540000635900006368200000021',63590,1),(3847282,21,912732,'0000010100063536000644480091273200000021',64448,1),(3847283,21,2098795,'000001010006354000063542000638550209879500000021',63542,1),(3847284,21,2626,'0000262600000021',0,1),(3847285,21,64252,'0000010100063539000635560006425200000021',63556,1),(3847286,21,2095367,'0000010100063539000635560209536700000021',63556,1),(3847287,21,2472165,'000001010079201101968274024712450247216500000021',1968274,1),(3847288,21,2202672,'0220267200000021',0,1),(3847289,21,1977992,'0000010100792011028419770197799200000021',2841977,1),(3847290,21,2587666,'0000010100063564000635660258766600000021',63566,1),(3847291,21,2785963,'000000210278596300000021',21,1),(3847292,21,644691,'0064469100000021',0,1),(3847293,21,3044722,'0304472200000021',0,1),(3847294,21,1741456,'0000010100063564000635660174145600000021',63566,1),(3847295,21,2836656,'00000101007920110283665600000021',2836656,1),(3847296,21,2237638,'00000101007920110223763800000021',2237638,1),(3847297,21,1527321,'00000101000635360152732100000021',1527321,1),(3847298,21,2716997,'00000101007920110271699700000021',2716997,1),(3847299,21,3091918,'00000101007920110309191800000021',3091918,1),(3847300,21,2860163,'008090960286016300000021',21,1),(3847301,21,2678826,'00000101000635640267882600000021',2678826,1),(3847302,21,3259183,'00000101007920110325918300000021',3259183,1),(3847303,21,2972154,'0000010100792011033602650297215400000021',3360265,1),(3847304,21,64190,'0000010100063564000635660006419000000021',63566,1),(3847305,21,1291752,'00000101007920110129175200000021',1291752,1),(3847306,21,1295591,'0000010100063564000635660129559100000021',63566,1),(3847307,21,923713,'0000010100063564000635660092371300000021',63566,1),(3847308,21,3105520,'00000101007920110310552000000021',3105520,1),(3847309,21,64348,'0000010100063564000635660006434800000021',63566,1),(3847310,21,2258192,'00000101007920110225819200000021',2258192,1),(3847311,21,3360055,'00000101007920110336005500000021',3360055,1),(3847312,21,2920607,'00000101007920110292060700000021',2920607,1),(3847313,21,64798,'00000101015515750006479800000021',64798,1),(3847314,21,63721,'0000010100063540000635460006372100000021',63546,1),(3847315,21,64506,'00000101000635290006450600000021',64506,1),(3847316,21,2009649,'0000010100063537007589480200964900000021',758948,1),(3847317,21,3861837,'0386183700000021',0,1),(3847318,21,2686250,'0000010100792011025484430268625000000021',2548443,1),(3847319,21,123456,'0012345600000021',0,1),(3847320,21,3966616,'0000010100063564000635660396661600000021',63566,1),(3847321,21,3691334,'00000101007920110369133400000021',3691334,1),(3847322,25,1203863,'0120386300000025',0,1),(3847323,25,3766960,'0000010104166671037669470376696000000025',3766947,1),(3847669,63556,63556,'00000101000635390006355600063556',63556,1),(3847670,63556,5154,'000001430000515400063556',63556,1),(3847671,63556,1197,'0000119700063556',0,1),(3847672,63556,63707,'000635600006370700063556',63556,1),(3847673,63556,1058182,'0105818200063556',0,1),(3852015,683817,1,'0000000100683817',0,1),(3853042,876611,1203863,'0120386300876611',0,1),(3853043,876611,3766960,'0000010104166671037669470376696000876611',3766947,1),(3854396,1017832,1,'0000000101017832',0,1),(3854397,1017832,64514,'00000101000635270006451401017832',64514,1),(3854398,1017832,743506,'00000001000000190074350601017832',743506,1),(3854399,1017832,3403,'000019960000340301017832',1017832,1),(3854400,1017832,2552771,'008020260255144202552728025527620255277101017832',2552728,1),(3950568,33,0,'00000033',0,0),(3988991,21,4126458,'00000101007920110412645800000021',4126458,1),(4187670,21,64915,'00000101013005470006491500000021',64915,1),(4249414,21,1340540,'00000101013005470134054000000021',1340540,1),(4249421,21,63782,'0000010100063537007590160006378200000021',759016,1),(4249422,21,3205556,'0000010100063537007590160320555600000021',759016,1),(4249424,21,63611,'0000010100063537007590160006361100000021',759016,1),(4252680,21,64222,'0006422200000021',0,1),(4444272,21,3470990,'00000101007920110347099000000021',3470990,1),(4514049,4738019,101,'0000010104738019',0,0),(4514050,4738020,101,'0000010104738020',0,0),(4514051,4738021,904,'0000090404738021',0,0),(4514052,4738022,904,'0000090404738022',0,0),(4514053,4738023,101,'0000010104738023',0,0),(4514054,4738023,904,'0000090404738023',0,0),(4514055,4738024,21,'0000002104738024',0,0),(4514056,4738023,4738022,'000009040473802204738023',4738023,1),(4514057,4738025,4738023,'000001010473802304738025',4738025,0),(4514058,4738026,4738025,'00000101047380230473802504738026',4738025,0),(4514059,4738027,4738026,'0000010104738023047380250473802604738027',4738025,0),(4514060,4738028,4738027,'000001010473802304738025047380260473802704738028',4738025,0),(4514061,4738028,4738025,'00000101047380230473802504738028',4738025,1),(4514062,21842,1,'0000000100021842',0,1);
+INSERT INTO `node_vector` VALUES (1,1,0,'00000001',0),(2,2,1,'0000000100000002',0),(47,3,1,'0000000100000003',0),(1005,4,1,'0000000100000004',0),(1011,5,1,'0000000100000005',0),(1012,6,1,'0000000100000006',0),(1082,8,1,'0000000100000008',0),(1083,9,1,'0000000100000009',0),(1957,10,1,'0000000100000010',0),(1958,11,1,'0000000100000011',0),(3643,12,1,'0000000100000012',0),(3651,14,1,'0000000100000014',0),(3652,15,1,'0000000100000015',0),(3658,16,1,'0000000100000016',0),(3659,17,1,'0000000100000017',0),(3661,18,1,'0000000100000018',0),(3662,19,1,'0000000100000019',0),(20146,20,1,'0000000100000020',0),(20147,22,1,'0000000100000022',0),(20185,23,1,'0000000100000023',0),(20186,24,1,'0000000100000024',0),(20189,25,1,'0000000100000025',0),(20191,29,1,'0000000100000029',0),(20202,100,1,'0000000100000100',0),(20204,102,1,'0000000100000102',0),(45341,7,0,'00000007',0),(45463,21,0,'00000021',0),(162930,27,0,'00000027',0),(163052,30,0,'00000030',0),(163058,31,0,'00000031',0),(163060,32,0,'00000032',0),(163065,101,0,'00000101',0),(634965,63532,101,'0000010100063532',0),(670513,683817,63532,'000001010006353200683817',0),(1088477,332,0,'00000332',0),(1094462,548,0,'00000548',0),(1103222,904,0,'00000904',0),(1619197,788016,0,'00788016',0),(1642489,876611,0,'00876611',0),(1674186,1058182,0,'01058182',0),(2294629,1522695,1478222,'0000010100792011011419590147822201522695',0),(2728565,63539,101,'0000010100063539',0),(2893526,63556,63539,'000001010006353900063556',0),(3135184,1017832,63556,'00000101000635390006355601017832',0),(3847256,3,1058182,'0105818200000003',1),(3847257,7,1999688,'00000101007920110199968800000007',1),(3847258,19,63646,'0000010100063528000635840006364600000019',1),(3847259,19,3766960,'0000010104166671037669470376696000000019',1),(3847260,21,962161,'0000010100063528000636970096216100000021',1),(3847261,21,962439,'0000010100063528000635510096243900000021',1),(3847262,21,64514,'00000101000635270006451400000021',1),(3847263,21,1197,'0000119700000021',1),(3847264,21,965591,'000000210096559100000021',1),(3847265,21,667804,'0000010100063537007589480066780400000021',1),(3847266,21,1143346,'000001010006353200063571000641790114334600000021',1),(3847267,21,1070007,'0000010100063532000635710107000700000021',1),(3847268,21,21788,'00000101000217480002178800000021',1),(3847269,21,690922,'0000010100063564000635880069092200000021',1),(3847270,21,1499948,'0149994800000021',1),(3847271,21,64393,'00000101000635390006439300000021',1),(3847272,21,63868,'0000010100063537000635680006386800000021',1),(3847273,21,1508656,'00000101000635280150865600000021',1),(3847274,21,1532090,'0153209000000021',1),(3847275,21,65013,'000001030006501300000021',1),(3847276,21,1870232,'000000210187023200000021',1),(3847277,21,1878809,'001234560187880900000021',1),(3847278,21,1665272,'0000144901663286020728670166527200000021',1),(3847279,21,64106,'0000010100063534000635770006410600000021',1),(3847280,21,1217852,'0000010100063540000635420121785200000021',1),(3847281,21,63682,'0000010100063540000635900006368200000021',1),(3847282,21,912732,'0000010100063536000644480091273200000021',1),(3847283,21,2098795,'000001010006354000063542000638550209879500000021',1),(3847284,21,2626,'0000262600000021',1),(3847285,21,64252,'0000010100063539000635560006425200000021',1),(3847286,21,2095367,'0000010100063539000635560209536700000021',1),(3847287,21,2472165,'000001010079201101968274024712450247216500000021',1),(3847288,21,2202672,'0220267200000021',1),(3847289,21,1977992,'0000010100792011028419770197799200000021',1),(3847290,21,2587666,'0000010100063564000635660258766600000021',1),(3847291,21,2785963,'000000210278596300000021',1),(3847292,21,644691,'0064469100000021',1),(3847293,21,3044722,'0304472200000021',1),(3847294,21,1741456,'0000010100063564000635660174145600000021',1),(3847295,21,2836656,'00000101007920110283665600000021',1),(3847296,21,2237638,'00000101007920110223763800000021',1),(3847297,21,1527321,'00000101000635360152732100000021',1),(3847298,21,2716997,'00000101007920110271699700000021',1),(3847299,21,3091918,'00000101007920110309191800000021',1),(3847300,21,2860163,'008090960286016300000021',1),(3847301,21,2678826,'00000101000635640267882600000021',1),(3847302,21,3259183,'00000101007920110325918300000021',1),(3847303,21,2972154,'0000010100792011033602650297215400000021',1),(3847304,21,64190,'0000010100063564000635660006419000000021',1),(3847305,21,1291752,'00000101007920110129175200000021',1),(3847306,21,1295591,'0000010100063564000635660129559100000021',1),(3847307,21,923713,'0000010100063564000635660092371300000021',1),(3847308,21,3105520,'00000101007920110310552000000021',1),(3847309,21,64348,'0000010100063564000635660006434800000021',1),(3847310,21,2258192,'00000101007920110225819200000021',1),(3847311,21,3360055,'00000101007920110336005500000021',1),(3847312,21,2920607,'00000101007920110292060700000021',1),(3847313,21,64798,'00000101015515750006479800000021',1),(3847314,21,63721,'0000010100063540000635460006372100000021',1),(3847315,21,64506,'00000101000635290006450600000021',1),(3847316,21,2009649,'0000010100063537007589480200964900000021',1),(3847317,21,3861837,'0386183700000021',1),(3847318,21,2686250,'0000010100792011025484430268625000000021',1),(3847319,21,123456,'0012345600000021',1),(3847320,21,3966616,'0000010100063564000635660396661600000021',1),(3847321,21,3691334,'00000101007920110369133400000021',1),(3847322,25,1203863,'0120386300000025',1),(3847323,25,3766960,'0000010104166671037669470376696000000025',1),(3847669,63556,63556,'00000101000635390006355600063556',1),(3847670,63556,5154,'000001430000515400063556',1),(3847671,63556,1197,'0000119700063556',1),(3847672,63556,63707,'000635600006370700063556',1),(3847673,63556,1058182,'0105818200063556',1),(3852015,683817,1,'0000000100683817',1),(3853042,876611,1203863,'0120386300876611',1),(3853043,876611,3766960,'0000010104166671037669470376696000876611',1),(3854396,1017832,1,'0000000101017832',1),(3854397,1017832,64514,'00000101000635270006451401017832',1),(3854398,1017832,743506,'00000001000000190074350601017832',1),(3854399,1017832,3403,'000019960000340301017832',1),(3854400,1017832,2552771,'008020260255144202552728025527620255277101017832',1),(3950568,33,0,'00000033',0),(3988991,21,4126458,'00000101007920110412645800000021',1),(4187670,21,64915,'00000101013005470006491500000021',1),(4249414,21,1340540,'00000101013005470134054000000021',1),(4249421,21,63782,'0000010100063537007590160006378200000021',1),(4249422,21,3205556,'0000010100063537007590160320555600000021',1),(4249424,21,63611,'0000010100063537007590160006361100000021',1),(4252680,21,64222,'0006422200000021',1),(4444272,21,3470990,'00000101007920110347099000000021',1),(4514049,4738019,101,'0000010104738019',0),(4514050,4738020,101,'0000010104738020',0),(4514051,4738021,904,'0000090404738021',0),(4514052,4738022,904,'0000090404738022',0),(4514053,4738023,101,'0000010104738023',0),(4514054,4738023,904,'0000090404738023',0),(4514055,4738024,21,'0000002104738024',0),(4514056,4738023,4738022,'000009040473802204738023',1),(4514057,4738025,4738023,'000001010473802304738025',0),(4514058,4738026,4738025,'00000101047380230473802504738026',0),(4514059,4738027,4738026,'0000010104738023047380250473802604738027',0),(4514060,4738028,4738027,'000001010473802304738025047380260473802704738028',0),(4514061,4738028,4738025,'00000101047380230473802504738028',1),(4514062,21842,1,'0000000100021842',1);
/*!40000 ALTER TABLE `node_vector` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @SAVE_SQL_MODE=@@SQL_MODE*/;
-DELIMITER ;;
-/*!50003 SET SESSION SQL_MODE="" */;;
-/*!50003 CREATE */ /*!50017 DEFINER=`root`@`localhost` */ /*!50003 TRIGGER `tr_node_vector_i` BEFORE INSERT ON `node_vector` FOR EACH ROW begin set new.level3 = case when length(new.node_vector) >= 24 then substring(new.node_vector, 17, 8) end;
-end */;;
-
-/*!50003 SET SESSION SQL_MODE="" */;;
-/*!50003 CREATE */ /*!50017 DEFINER=`root`@`localhost` */ /*!50003 TRIGGER `tr_node_vector_u` BEFORE UPDATE ON `node_vector` FOR EACH ROW begin set new.level3 = case when length(new.node_vector) >= 24 then substring(new.node_vector, 17, 8) end; end */;;
-
DELIMITER ;
/*!50003 SET SESSION SQL_MODE=@SAVE_SQL_MODE*/;
`external_link` varchar(123) collate utf8_slovak_ci default NULL,
`node_vector` varchar(230) collate utf8_slovak_ci default NULL,
`node_content` text collate utf8_slovak_ci,
- `node_level3` int(13) NOT NULL default '0',
+ `node_weight` double unsigned default 1,
`nl2br` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`node_id`),
KEY `node_name` (`node_name`),
KEY `node_vector_template_id` (`node_vector`,`template_id`),
KEY `node_creator_external_link` (`node_creator`,`external_link`),
KEY `external_link` (`external_link`),
- KEY `node_parent` (`node_parent`),
- KEY `node_level3_node_vector` (`node_level3`,`node_vector`)
+ KEY `node_parent` (`node_parent`)
) ENGINE=InnoDB AUTO_INCREMENT=4738029 DEFAULT CHARSET=utf8 COLLATE=utf8_slovak_ci;
SET character_set_client = @saved_cs_client;
PRIMARY KEY (`node_id`),
KEY `node_id` (`node_id`,`done`),
KEY `done` (`done`)
-) ENGINE=InnoDB AUTO_INCREMENT=1522696 DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB AUTO_INCREMENT=1522696 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
PRIMARY KEY (`poll_id`),
KEY `node_id` (`node_id`),
KEY `user_id` (`user_id`)
-) ENGINE=MyISAM AUTO_INCREMENT=1052 DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB AUTO_INCREMENT=1052 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
`option` varchar(255) NOT NULL,
PRIMARY KEY (`poll_option_id`),
KEY `poll_id` (`poll_id`)
-) ENGINE=MyISAM AUTO_INCREMENT=5041 DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB AUTO_INCREMENT=5041 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
PRIMARY KEY (`poll_vote_id`),
UNIQUE KEY `poll_id_user_id` (`poll_id`,`user_id`),
KEY `user_id` (`user_id`)
-) ENGINE=MyISAM AUTO_INCREMENT=23190 DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB AUTO_INCREMENT=23190 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
`reg_date` timestamp NOT NULL default CURRENT_TIMESTAMP,
`registrators` varchar(230) default NULL,
PRIMARY KEY (`user_id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
KEY `mail_read` (`mail_user`,`mail_to`,`mail_read`),
KEY `mail_user_id` (`mail_user`,`mail_id`),
KEY `mail_duplicate_id` (`mail_duplicate_id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
`template_id` int(11) default NULL,
`update_performed` timestamp NOT NULL default '0000-00-00 00:00:00',
`external_link` varchar(123) default NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
UNIQUE KEY `ldap_id` (`ldap_id`),
UNIQUE KEY `session_string` (`session_string`),
UNIQUE KEY `login` (`login`)
-) ENGINE=InnoDB AUTO_INCREMENT=802 DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB AUTO_INCREMENT=802 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;
--
/*!50001 DROP VIEW IF EXISTS `view_nodes`*/;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`kyberia`@`%` SQL SECURITY DEFINER */
-/*!50001 VIEW `view_nodes` AS select `n`.`node_id` AS `node_id`,date_format(`n`.`node_created`,_latin1'%Y%m%d') AS `node_created`,date_format(`n`.`node_updated`,_latin1'%Y%m%d') AS `node_updated`,`n`.`node_creator` AS `node_creator`,if((`n`.`node_system_access` = _utf8'private'),_utf8'',`n`.`node_name`) AS `node_name`,if((`n`.`node_system_access` = _utf8'private'),_utf8'',`n`.`node_content`) AS `node_content` from `nodes` `n` */;
+/*!50001 VIEW `view_nodes` AS select `n`.`node_id` AS `node_id`,date_format(`n`.`node_created`,_utf8'%Y%m%d') AS `node_created`,date_format(`n`.`node_updated`,_utf8'%Y%m%d') AS `node_updated`,`n`.`node_creator` AS `node_creator`,if((`n`.`node_system_access` = _utf8'private'),_utf8'',`n`.`node_name`) AS `node_name`,if((`n`.`node_system_access` = _utf8'private'),_utf8'',`n`.`node_content`) AS `node_content` from `nodes` `n` */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;