mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2026-08-18 13:16:03 +00:00
This is an important refactor of the way documentation generation works
* Installs luarocks WITH it's executable (easy to install other rocks if necessary) * Use Lua supplied with luarocks * Create Utils/luadocumentor.bat, which works with RELATIVE PATH ! -> Everybody can generate the doc * Updated launch files accordingly
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
--------------------------------------------------------------------------------
|
||||
-- Copyright (c) 2012-2014 Sierra Wireless.
|
||||
-- All rights reserved. This program and the accompanying materials
|
||||
-- are made available under the terms of the Eclipse Public License v1.0
|
||||
-- which accompanies this distribution, and is available at
|
||||
-- http://www.eclipse.org/legal/epl-v10.html
|
||||
--
|
||||
-- Contributors:
|
||||
-- Kevin KIN-FOO <kkinfoo@sierrawireless.com>
|
||||
-- - initial API and implementation and initial documentation
|
||||
--------------------------------------------------------------------------------
|
||||
return [[#
|
||||
# if not isempty(_recordtypedef.fields) then
|
||||
<table class="function_list">
|
||||
# for _, item in sortedpairs( _recordtypedef.fields ) do
|
||||
<tr>
|
||||
<td class="name" nowrap="nowrap">$( fulllinkto(item) )</td>
|
||||
<td class="summary">$( format(item.shortdescription) )</td>
|
||||
</tr>
|
||||
# end
|
||||
</table>
|
||||
# end
|
||||
# ]]
|
||||
Reference in New Issue
Block a user