Returns full_name decorated with HTML links

Property definitions

nitc :: html_model $ MEntity :: html_namespace
	# Returns `full_name` decorated with HTML links
	fun html_namespace: Template is abstract
src/doc/templates/html_model.nit:86,2--87,41

nitc :: html_model $ MClass :: html_namespace
	redef fun html_namespace do
		var mgroup = intro_mmodule.mgroup
		var tpl = new Template
		if mgroup != null then
			tpl.add mgroup.mpackage.html_namespace
			tpl.add " :: "
		end
		tpl.add "<span>"
		tpl.add html_link
		tpl.add "</span>"
		return tpl
	end
src/doc/templates/html_model.nit:139,2--150,4

nitc :: html_model $ MClassDef :: html_namespace
	redef fun html_namespace do
		var tpl = new Template
		var mpackage = mmodule.mpackage
		if mpackage != null and is_intro then
			if is_intro then
				tpl.add mpackage.html_namespace
				tpl.add " $ "
			else
				tpl.add mmodule.html_namespace
				tpl.add " $ "
				var intro_mpackage = mclass.intro.mmodule.mpackage
				if intro_mpackage != null and mpackage != intro_mpackage then
					tpl.add intro_mpackage.html_namespace
					tpl.add " :: "
				end
			end
		else
			tpl.add mmodule.html_namespace
			tpl.add " $ "
		end
		tpl.add html_link
		return tpl
	end
src/doc/templates/html_model.nit:156,2--178,4

nitc :: html_model $ MPackage :: html_namespace
	redef fun html_namespace do return html_link
src/doc/templates/html_model.nit:99,2--45

nitc :: html_model $ MGroup :: html_namespace
	redef fun html_namespace do
		var tpl = new Template
		var parent = self.parent
		if parent != null then
			tpl.add parent.html_namespace
			tpl.add " > "
		end
		tpl.add html_link
		return tpl
	end
src/doc/templates/html_model.nit:107,2--116,4

nitc :: html_model $ MProperty :: html_namespace
	redef fun html_namespace do
		var tpl = new Template
		tpl.add intro_mclassdef.mclass.html_namespace
		tpl.add " :: "
		tpl.add intro.html_link
		return tpl
	end
src/doc/templates/html_model.nit:212,2--218,4

nitc :: html_model $ MPropDef :: html_namespace
	redef fun html_namespace do
		var tpl = new Template
		tpl.add mclassdef.html_namespace
		tpl.add " :: "
		tpl.add html_link
		return tpl
	end
src/doc/templates/html_model.nit:224,2--230,4

nitc :: html_model $ MModule :: html_namespace
	redef fun html_namespace do
		var mpackage = self.mpackage
		var tpl = new Template
		if mpackage != null then
			tpl.add mpackage.html_namespace
			tpl.add " :: "
		end
		tpl.add html_link
		return tpl
	end
src/doc/templates/html_model.nit:122,2--131,4