Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • support-subplugin-settings
  • add_phpunit_tests
  • start_heatmap_on_wanted_start_of_week
  • dev
  • custom_group_by_error
  • Daytime_offset_fix_weekheatmap
  • demo
  • v0.16.0
  • v0.15.0
  • v0.14.0
  • v0.13.0
  • v0.12.0
  • v0.11.1
  • v0.11.0
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.4
  • v0.7.3
  • v0.7.2
  • v0.7.1
  • v0.7.0
  • v0.6.1
  • v0.6.0
  • v0.5.0
  • v0.4.3
  • v0.4.2
28 results

renderer.php

Blame
  • Forked from LAIXMO / moodle-local_learning_analytics
    Source project has a limited visibility.
    • Thomas Dondorf's avatar
      5ca57219
      Cleanup of API · 5ca57219
      Thomas Dondorf authored
      Removed a lot of API that was unnecessary and too complex:
      - Simplified routing: There is only one file (router.php) that handles routes now (instead of two controllers, routes and route)
      - Removed parameters
      - Removed external output
      - Removed AJAX loading of tables and plots
      - Simplified renderers (e.g. removed HTML renderers)
      - Adapted reports accordingly
      5ca57219
      History
      Cleanup of API
      Thomas Dondorf authored
      Removed a lot of API that was unnecessary and too complex:
      - Simplified routing: There is only one file (router.php) that handles routes now (instead of two controllers, routes and route)
      - Removed parameters
      - Removed external output
      - Removed AJAX loading of tables and plots
      - Simplified renderers (e.g. removed HTML renderers)
      - Adapted reports accordingly
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Admin.csproj 1.17 KiB
    <Project Sdk="Microsoft.NET.Sdk">
    	<PropertyGroup>
    		<OutputType>Exe</OutputType>
    		<RootNamespace>Coscine.Api.Admin</RootNamespace>
    		<AssemblyName>Coscine.Api.Admin</AssemblyName>
    		<GenerateDocumentationFile>true</GenerateDocumentationFile>
    		<TargetFramework>net6.0</TargetFramework>
    		<Version>2.5.3</Version>
    	</PropertyGroup>
    	<PropertyGroup>
    		<Authors>RWTH Aachen University</Authors>
    		<Company>IT Center, RWTH Aachen University</Company>
    		<Copyright>2022 IT Center, RWTH Aachen University</Copyright>
    		<Description>Admin is a part of the Coscine group.</Description>
    		<PackageLicenseExpression>MIT</PackageLicenseExpression>
    		<PackageProjectUrl>https://git.rwth-aachen.de/coscine/backend/apis/Admin</PackageProjectUrl>
    		<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
    	</PropertyGroup>
    	<ItemGroup>
    		<PackageReference Include="Coscine.Action" Version="2.*-*" />
    		<PackageReference Include="Coscine.ApiCommons" Version="2.*-*" />
    		<PackageReference Include="Coscine.Database" Version="2.*-*" />
    		<PackageReference Include="Coscine.Metadata" Version="2.*-*" />
    		<PackageReference Include="Coscine.ResourceLoader" Version="2.*-*" />
    	</ItemGroup>
    </Project>