| 100 | | $writer->write('<post' . ' slogan="' . htmlspecialchars($post->slogan) . '"' . $newlineStyle . '>' . '<id>' . $post->id . '</id>' . '<visibility>' . $post->visibility . '</visibility>' . '<title>' . htmlspecialchars($post->title) . '</title>' . '<content formatter="' . htmlspecialchars($post->contentFormatter) . '" editor="' . htmlspecialchars($post->contentEditor) .'">' . htmlspecialchars(UTF8::correct($post->content)) . '</content>' . '<location>' . htmlspecialchars($post->location) . '</location>' . (!is_null($post->password) ? '<password>' . htmlspecialchars($post->password) . '</password>' : '') . '<acceptComment>' . $post->acceptComment . '</acceptComment>' . '<acceptTrackback>' . $post->acceptTrackback . '</acceptTrackback>' . '<published>' . $post->published . '</published>' . '<created>' . $post->created . '</created>' . '<modified>' . $post->modified . '</modified>'); |
| | 100 | $writer->write('<post' . ' slogan="' . htmlspecialchars($post->slogan) . '"' . $newlineStyle . '>' . |
| | 101 | '<id>' . $post->id . '</id>' . |
| | 102 | '<visibility>' . $post->visibility . '</visibility>' . |
| | 103 | '<starred>' . $post->starred . '</starred>' . |
| | 104 | '<title>' . htmlspecialchars($post->title) . '</title>' . |
| | 105 | '<content formatter="' . htmlspecialchars($post->contentFormatter) . '" editor="' . htmlspecialchars($post->contentEditor) .'">' . htmlspecialchars(UTF8::correct($post->content)) . '</content>' . |
| | 106 | '<location>' . htmlspecialchars($post->location) . '</location>' . |
| | 107 | (!is_null($post->password) ? '<password>' . htmlspecialchars($post->password) . '</password>' : '') . |
| | 108 | '<acceptComment>' . $post->acceptComment . '</acceptComment>' . |
| | 109 | '<acceptTrackback>' . $post->acceptTrackback . '</acceptTrackback>' . |
| | 110 | '<published>' . $post->published . '</published>' . |
| | 111 | '<created>' . $post->created . '</created>' . |
| | 112 | '<modified>' . $post->modified . '</modified>'); |
| 167 | | $writer->write('<notice' . $newlineStyle . '>' . '<id>' . $notice->id . '</id>' . '<visibility>' . $notice->visibility . '</visibility>' . '<title>' . htmlspecialchars(UTF8::correct($notice->title)) . '</title>' . '<content formatter="' . htmlspecialchars($notice->contentFormatter) . '" editor="' . htmlspecialchars($notice->contentEditor) .'">' . htmlspecialchars(UTF8::correct($notice->content)) . '</content>' . '<published>' . $notice->published . '</published>' . '<created>' . $notice->created . '</created>' . '<modified>' . $notice->modified . '</modified>'); |
| | 179 | $writer->write('<notice' . $newlineStyle . '>' . |
| | 180 | '<id>' . $notice->id . '</id>' . |
| | 181 | '<visibility>' . $notice->visibility . '</visibility>' . |
| | 182 | '<starred>' . $notice->starred . '</starred>' . |
| | 183 | '<title>' . htmlspecialchars(UTF8::correct($notice->title)) . '</title>' . |
| | 184 | '<content formatter="' . htmlspecialchars($notice->contentFormatter) . '" editor="' . htmlspecialchars($notice->contentEditor) .'">' . htmlspecialchars(UTF8::correct($notice->content)) . '</content>' . |
| | 185 | '<published>' . $notice->published . '</published>' . |
| | 186 | '<created>' . $notice->created . '</created>' . |
| | 187 | '<modified>' . $notice->modified . '</modified>'); |
| 191 | | $writer->write('<keyword' . $newlineStyle . '>' . '<id>' . $keyword->id . '</id>' . '<visibility>' . $keyword->visibility . '</visibility>' . '<name>' . htmlspecialchars(UTF8::correct($keyword->name)) . '</name>' . '<description editor="' . htmlspecialchars($keyword->descriptionEditor) . '" formatter="' . htmlspecialchars($keyword->descriptionFormatter) .'">' . htmlspecialchars(UTF8::correct($keyword->description)) . '</description>' . '<published>' . $keyword->published . '</published>' . '<created>' . $keyword->created . '</created>' . '<modified>' . $keyword->modified . '</modified>'); |
| | 211 | $writer->write('<keyword' . $newlineStyle . '>' . |
| | 212 | '<id>' . $keyword->id . '</id>' . |
| | 213 | '<visibility>' . $keyword->visibility . '</visibility>' . |
| | 214 | '<starred>' . $keyword->starred . '</starred>' . |
| | 215 | '<name>' . htmlspecialchars(UTF8::correct($keyword->name)) . '</name>' . |
| | 216 | '<description editor="' . htmlspecialchars($keyword->descriptionEditor) . '" formatter="' . htmlspecialchars($keyword->descriptionFormatter) .'">' . htmlspecialchars(UTF8::correct($keyword->description)) . '</description>' . |
| | 217 | '<published>' . $keyword->published . '</published>' . |
| | 218 | '<created>' . $keyword->created . '</created>' . |
| | 219 | '<modified>' . $keyword->modified . '</modified>'); |