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