Version at: 26/03/2014, 02:11 vs. version at: 30/03/2014, 14:09 | ||
---|---|---|
1 | 1 | #Admin logs |
2 | 2 | |
3 | 3 | Please post a description here every time you do a modification on tatoeba.org. |
4 | 4 | |
5 | ### 29th March 2014 22:00 Eastern U.S. time | |
6 | ||
7 | * who: alanf, guided by Trang | |
8 | * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html) | |
9 | ||
5 | 10 | ### 25th March 2014 22:00 Eastern U.S. time |
6 | 11 | |
7 | 12 | * who: alanf |
8 | 13 | * why: add audio |
9 | 14 | * what: |
10 | 15 | * sync up to most recent commit |
11 | 16 | |
12 | 17 | * i18n-ized "edited" word |
13 | 18 | |
14 | 19 | * German UI rework (extensive) |
15 | 20 | |
16 | 21 | * added audio: |
17 | 22 | |
18 | 23 | * several dozen sentences by CK |
19 | 24 | |
20 | 25 | * three sentences by LR |
21 | 26 | |
22 | 27 | ### 23rd March 2014 17:30 France time |
23 | 28 | |
24 | 29 | * who: alanf, guided by Trang |
25 | 30 | * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html)) |
26 | 31 | * what: https://gist.github.com/trang/baccdee9bea32808f871 |
27 | 32 | |
28 | 33 | ### 23rd February 2014 15AM China time |
29 | 34 | |
30 | 35 | * who: sysko |
31 | 36 | * why: wiki: fixed redirect problem after login and added reset password feature |
32 | 37 | * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 |
33 | 38 | |
34 | 39 | |
35 | 40 | ### 11nd February 2014 01AM China time |
36 | 41 | |
37 | 42 | * who: sysko |
38 | 43 | * why: restored transliteration for most languages |
39 | 44 | * what: linked nihongoparserd with tatoeba php code mostly |
40 | 45 | * how: |
41 | 46 | |
42 | 47 | I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` |
43 | 48 | |
44 | 49 | also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) |
45 | 50 | |
46 | 51 | also commented temporaly all call to `sinoparserd` as it's not yet restored |
47 | 52 | |
48 | 53 | |
49 | 54 | ### 10nd February 2014 11PM China time |
50 | 55 | |
51 | 56 | * who: sysko |
52 | 57 | * why: installed nihongoparserd (service to generate japanese reading) |
53 | 58 | * what: compiled source and installed service |
54 | 59 | * how: |
55 | 60 | |
56 | 61 | installed: |
57 | 62 | |
58 | 63 | apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 |
59 | 64 | |
60 | 65 | |
61 | 66 | executed |
62 | 67 | |
63 | 68 | git clone https://github.com/allan-simon/nihongoparserd.igt |
64 | 69 | cd nihongoparserd |
65 | 70 | mkdir build ; cd build ; cmake .. ; make |
66 | 71 | sudo cp nihongoparserd /usr/local/bin |
67 | 72 | cd .. |
68 | 73 | sudo cp conf/nihongoparserd /etc/init.d/ |
69 | 74 | sudo chmod +x /etc/init.d/nihongoparserd |
70 | 75 | sudo cp conf/default /etc/default/nihongoparserd |
71 | 76 | sudo useradd -r nihongoparserd |
72 | 77 | |
73 | 78 | start the service |
74 | 79 | |
75 | 80 | /etc/init.d/nihongoparserd |
76 | 81 | |
77 | 82 | |
78 | 83 | |
79 | 84 | ### 9nd February 2014 10AM China time |
80 | 85 | |
81 | 86 | |
82 | 87 | * who: sysko |
83 | 88 | * why: reinstall suggestd (service powering tag autocompletion) |
84 | 89 | * what: compiled source and installed service |
85 | 90 | * how: |
86 | 91 | |
87 | 92 | |
88 | 93 | installed |
89 | 94 | |
90 | 95 | apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev |
91 | 96 | |
92 | 97 | |
93 | 98 | compiled suggestd0.9 |
94 | 99 | |
95 | 100 | aclocal |
96 | 101 | autoconf |
97 | 102 | automake --add-missing |
98 | 103 | |
99 | 104 | ./configure |
100 | 105 | make |
101 | 106 | make install |
102 | 107 | |
103 | 108 | |
104 | 109 | after created init script in |
105 | 110 | |
106 | 111 | /etc/init.d/suggestd |
107 | 112 | |
108 | 113 | and configuration file in |
109 | 114 | |
110 | 115 | |
111 | 116 | /etc/suggestd.xml |
112 | 117 | |
113 | 118 | and default file in |
114 | 119 | |
115 | 120 | /etc/default/suggestd |
116 | 121 | |
117 | 122 | then create a suggestd user |
118 | 123 | |
119 | 124 | useradd -r suggestd |
120 | 125 | |
121 | 126 | then finally starting it |
122 | 127 | |
123 | 128 | |
124 | 129 | /etc/init.d/suggestd start |
125 | 130 | |
126 | 131 | |
127 | 132 | ###2nd February 2014 5AM China time |
128 | 133 | |
129 | 134 | * who: sysko |
130 | 135 | * why: resolve login problems |
131 | 136 | * what: used memcache instead of sqlite for storing session |
132 | 137 | * how: |
133 | 138 | |
134 | 139 | installed: |
135 | 140 | |
136 | 141 | apt-get install memcached php5-memcache |
137 | 142 | |
138 | 143 | modified: `/etc/php5/apache2/php.ini` |
139 | 144 | |
140 | 145 | ``` |
141 | 146 | [Session] |
142 | 147 | session.save_handler = memcache |
143 | 148 | session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" |
144 | 149 | ``` |
145 | 150 | |
146 | 151 | |
147 | 152 | |
diff view generated by jsdifflib |
Version at: 26/03/2014, 02:11
#Admin logs Please post a description here every time you do a modification on tatoeba.org. ### 25th March 2014 22:00 Eastern U.S. time * who: alanf * why: add audio * what: * sync up to most recent commit * i18n-ized "edited" word * German UI rework (extensive) * added audio: * several dozen sentences by CK * three sentences by LR ### 23rd March 2014 17:30 France time * who: alanf, guided by Trang * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html)) * what: https://gist.github.com/trang/baccdee9bea32808f871 ### 23rd February 2014 15AM China time * who: sysko * why: wiki: fixed redirect problem after login and added reset password feature * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 ### 11nd February 2014 01AM China time * who: sysko * why: restored transliteration for most languages * what: linked nihongoparserd with tatoeba php code mostly * how: I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) also commented temporaly all call to `sinoparserd` as it's not yet restored ### 10nd February 2014 11PM China time * who: sysko * why: installed nihongoparserd (service to generate japanese reading) * what: compiled source and installed service * how: installed: apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 executed git clone https://github.com/allan-simon/nihongoparserd.igt cd nihongoparserd mkdir build ; cd build ; cmake .. ; make sudo cp nihongoparserd /usr/local/bin cd .. sudo cp conf/nihongoparserd /etc/init.d/ sudo chmod +x /etc/init.d/nihongoparserd sudo cp conf/default /etc/default/nihongoparserd sudo useradd -r nihongoparserd start the service /etc/init.d/nihongoparserd ### 9nd February 2014 10AM China time * who: sysko * why: reinstall suggestd (service powering tag autocompletion) * what: compiled source and installed service * how: installed apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev compiled suggestd0.9 aclocal autoconf automake --add-missing ./configure make make install after created init script in /etc/init.d/suggestd and configuration file in /etc/suggestd.xml and default file in /etc/default/suggestd then create a suggestd user useradd -r suggestd then finally starting it /etc/init.d/suggestd start ###2nd February 2014 5AM China time * who: sysko * why: resolve login problems * what: used memcache instead of sqlite for storing session * how: installed: apt-get install memcached php5-memcache modified: `/etc/php5/apache2/php.ini` ``` [Session] session.save_handler = memcache session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" ```
version at: 30/03/2014, 14:09
#Admin logs Please post a description here every time you do a modification on tatoeba.org. ### 29th March 2014 22:00 Eastern U.S. time * who: alanf, guided by Trang * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html) ### 25th March 2014 22:00 Eastern U.S. time * who: alanf * why: add audio * what: * sync up to most recent commit * i18n-ized "edited" word * German UI rework (extensive) * added audio: * several dozen sentences by CK * three sentences by LR ### 23rd March 2014 17:30 France time * who: alanf, guided by Trang * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html)) * what: https://gist.github.com/trang/baccdee9bea32808f871 ### 23rd February 2014 15AM China time * who: sysko * why: wiki: fixed redirect problem after login and added reset password feature * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 ### 11nd February 2014 01AM China time * who: sysko * why: restored transliteration for most languages * what: linked nihongoparserd with tatoeba php code mostly * how: I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) also commented temporaly all call to `sinoparserd` as it's not yet restored ### 10nd February 2014 11PM China time * who: sysko * why: installed nihongoparserd (service to generate japanese reading) * what: compiled source and installed service * how: installed: apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 executed git clone https://github.com/allan-simon/nihongoparserd.igt cd nihongoparserd mkdir build ; cd build ; cmake .. ; make sudo cp nihongoparserd /usr/local/bin cd .. sudo cp conf/nihongoparserd /etc/init.d/ sudo chmod +x /etc/init.d/nihongoparserd sudo cp conf/default /etc/default/nihongoparserd sudo useradd -r nihongoparserd start the service /etc/init.d/nihongoparserd ### 9nd February 2014 10AM China time * who: sysko * why: reinstall suggestd (service powering tag autocompletion) * what: compiled source and installed service * how: installed apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev compiled suggestd0.9 aclocal autoconf automake --add-missing ./configure make make install after created init script in /etc/init.d/suggestd and configuration file in /etc/suggestd.xml and default file in /etc/default/suggestd then create a suggestd user useradd -r suggestd then finally starting it /etc/init.d/suggestd start ###2nd February 2014 5AM China time * who: sysko * why: resolve login problems * what: used memcache instead of sqlite for storing session * how: installed: apt-get install memcached php5-memcache modified: `/etc/php5/apache2/php.ini` ``` [Session] session.save_handler = memcache session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" ```