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