##// END OF EJS Templates
[#20288] Make clear that syntax highlighting cannot only be used in wiki pages....
[#20288] Make clear that syntax highlighting cannot only be used in wiki pages. Regarding the i18n: I used English as the base language. The changed sentence was the same in 93 out of 98 language files, public\help\xx[-xx]\wiki_syntax_detailed_[markdown||textile].html. The only five exceptions were: * cs; public\help\cs\wiki_syntax_detailed_textile.html * fr; public\help\fr\wiki_syntax_detailed_textile.html * ja; public\help\ja\wiki_syntax_detailed_textile.html * ru; public\help\ru\qiki_syntax_detailed_textile.html * zh-tw; public\help\zh-tw\wiki_syntax_detailed_textile.html In the above given files, the changed sentence is translated. I have replaced the whole translated sentence with the new English base sentence, as such leaving new translations up to translators. Contributed by Mischa The Evil. git-svn-id: http://svn.redmine.org/redmine/trunk@14491 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13009:63cb3680c14b
r14109:0554143d7e6f
Show More
show.api.rsb
16 lines | 566 B | text/plain | TextLexer
Jean-Philippe Lang
Converts ProjectsController to use the new API template system....
r4342 api.project do
api.id @project.id
api.name @project.name
api.identifier @project.identifier
api.description @project.description
api.homepage @project.homepage
Jean-Philippe Lang
Adds visibility condition on parent project in API....
r6084 api.parent(:id => @project.parent.id, :name => @project.parent.name) if @project.parent && @project.parent.visible?
Jean-Philippe Lang
Adds project status to GET /projects/:id and GET /projects API response (#15815)....
r12374 api.status @project.status
Jean-Baptiste Barth
Add project is_public to GET /projects/:id and /projects API response (#17628)....
r12985 api.is_public @project.is_public?
Toshi MARUYAMA
remove trailing white-spaces from app/views/projects/show.api.rsb...
r7187
Jean-Philippe Lang
Fixed: error when serializing back objects with custom fields using ActiveResource (#6403)....
r4366 render_api_custom_values @project.visible_custom_field_values, api
Jean-Baptiste Barth
Include enabled modules in projects API (#17602)....
r13009 render_api_includes(@project, api)
Toshi MARUYAMA
remove trailing white-spaces from app/views/projects/show.api.rsb...
r7187
Jean-Philippe Lang
Converts ProjectsController to use the new API template system....
r4342 api.created_on @project.created_on
api.updated_on @project.updated_on
end