parent
1ba710d521
commit
307650c321
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@ -1,13 +0,0 @@
|
||||
<Router AppAssembly="@typeof(App).Assembly">
|
||||
<Found Context="routeData">
|
||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
||||
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
||||
</Found>
|
||||
<NotFound>
|
||||
<PageTitle>Not found</PageTitle>
|
||||
<LayoutView Layout="@typeof(MainLayout)">
|
||||
<p role="alert">Sorry, there's nothing at this address.</p>
|
||||
</LayoutView>
|
||||
</NotFound>
|
||||
</Router>
|
||||
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<RazorPage_SelectedScaffolderID>RazorPageScaffolder</RazorPage_SelectedScaffolderID>
|
||||
<RazorPage_SelectedScaffolderCategoryPath>root/Common/RazorPage</RazorPage_SelectedScaffolderCategoryPath>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -1,33 +0,0 @@
|
||||
@page "/activities"
|
||||
@using HeartTrack.Models
|
||||
|
||||
<PageTitle>Activities</PageTitle>
|
||||
|
||||
<h1>@Localizer["Title"]</h1>
|
||||
|
||||
<p>
|
||||
@Localizer["Description"]
|
||||
</p>
|
||||
|
||||
<DataGrid TItem="Activity"
|
||||
Data="@activities"
|
||||
ReadData="@OnReadData"
|
||||
TotalItems="@totalActivity"
|
||||
PageSize="10"
|
||||
ShowPager
|
||||
Responsive>
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.IdActivity)" Caption="Id" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Type)" Caption="Type" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Date)" Caption="Date" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.StartTime)" Caption="@Localizer["StartTime"]" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.EndTime)" Caption="@Localizer["EndTime"]" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.EffortRessenti)" Caption="@Localizer["EffortRessenti"]" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Variability)" Caption="@Localizer["Variability"]" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Variance)" Caption="@Localizer["Variance"]" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.StandardDeviation)" Caption="@Localizer["StandardDeviation"]" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Average)" Caption="@Localizer["Average"]" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Maximum)" Caption="Maximum" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Minimum)" Caption="Minimum" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.AvrTemperature)" Caption="@Localizer["AvrTemperature"]" />
|
||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.HasAutoPause)" Caption="@Localizer["HasAutoPause"]" />
|
||||
</DataGrid>
|
@ -1,11 +0,0 @@
|
||||
@page "/banned-users"
|
||||
|
||||
<PageTitle>Banned Users</PageTitle>
|
||||
|
||||
<h1>Banned Users</h1>
|
||||
|
||||
This is banned users list of this website.
|
||||
|
||||
<SurveyPrompt Title="How is Blazor working for you?" />
|
||||
|
||||
|
@ -1,43 +0,0 @@
|
||||
@page
|
||||
@model HeartTrack.Pages.ErrorModel
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<title>Error</title>
|
||||
<link href="~/css/bootstrap/bootstrap.min.css" rel="stylesheet" />
|
||||
<link href="~/css/site.css" rel="stylesheet" asp-append-version="true" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="main">
|
||||
<div class="content px-4">
|
||||
<h1 class="text-danger">Error.</h1>
|
||||
<h2 class="text-danger">An error occurred while processing your request.</h2>
|
||||
|
||||
@if (Model.ShowRequestId)
|
||||
{
|
||||
<p>
|
||||
<strong>Request ID:</strong> <code>@Model.RequestId</code>
|
||||
</p>
|
||||
}
|
||||
|
||||
<h3>Development Mode</h3>
|
||||
<p>
|
||||
Swapping to the <strong>Development</strong> environment displays detailed information about the error that occurred.
|
||||
</p>
|
||||
<p>
|
||||
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
|
||||
It can result in displaying sensitive information from exceptions to end users.
|
||||
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
|
||||
and restarting the app.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -1,16 +0,0 @@
|
||||
@page "/"
|
||||
@using System.Globalization
|
||||
|
||||
<PageTitle>Global View</PageTitle>
|
||||
|
||||
<h1>Global View</h1>
|
||||
|
||||
This is the global statistics of our website.
|
||||
|
||||
Actual language:
|
||||
<p>
|
||||
<b>CurrentCulture</b>: @CultureInfo.CurrentCulture
|
||||
</p>
|
||||
|
||||
<SurveyPrompt Title="How is Blazor working for you?" />
|
||||
|
@ -1,10 +0,0 @@
|
||||
@page "/reports"
|
||||
|
||||
<PageTitle>Reports</PageTitle>
|
||||
|
||||
<h1>Report list</h1>
|
||||
|
||||
This is the report list of users.
|
||||
|
||||
<SurveyPrompt Title="How is Blazor working for you?" />
|
||||
|
@ -1,10 +0,0 @@
|
||||
@page "/tickets"
|
||||
|
||||
<PageTitle>Tickets</PageTitle>
|
||||
|
||||
<h1>Tickets list</h1>
|
||||
|
||||
This is the ticket list of users.
|
||||
|
||||
<SurveyPrompt Title="How is Blazor working for you?" />
|
||||
|
@ -1,26 +0,0 @@
|
||||
@page "/tokens"
|
||||
@using HeartTrack.Models
|
||||
|
||||
<PageTitle>Tokens</PageTitle>
|
||||
|
||||
<h1>@Localizer["Title"]</h1>
|
||||
|
||||
<p>
|
||||
@Localizer["Description"]
|
||||
</p>
|
||||
|
||||
<DataGrid TItem="User"
|
||||
Data="@users"
|
||||
ReadData="@OnReadData"
|
||||
TotalItems="@totalUser"
|
||||
PageSize="10"
|
||||
ShowPager
|
||||
Responsive>
|
||||
<DataGridColumn TItem="User" Field="@nameof(User.Id)" Caption="Id" />
|
||||
<DataGridColumn TItem="User" Field="@nameof(User.Username)" Caption="@Localizer["Username"]" />
|
||||
<DataGridColumn TItem="User" Field="@nameof(User.Nom)" Caption="@Localizer["FirstN"]" />
|
||||
<DataGridColumn TItem="User" Field="@nameof(User.Prenom)" Caption="@Localizer["LastN"]" />
|
||||
<DataGridColumn TItem="User" Field="@nameof(User.Password)" Caption="@Localizer["Password"]" />
|
||||
</DataGrid>
|
||||
|
||||
|
@ -1,9 +0,0 @@
|
||||
@page "/"
|
||||
@namespace HeartTrack.Pages
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
@{
|
||||
Layout = "_Layout";
|
||||
}
|
||||
|
||||
<component type="typeof(App)" render-mode="ServerPrerendered" />
|
||||
|
@ -1,37 +0,0 @@
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@namespace HeartTrack.Pages
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<base href="~/" />
|
||||
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
|
||||
<link href="css/site.css" rel="stylesheet" />
|
||||
<link href="HeartTrack.styles.css" rel="stylesheet" />
|
||||
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />
|
||||
</head>
|
||||
<body>
|
||||
@RenderBody()
|
||||
|
||||
<div id="blazor-error-ui">
|
||||
<environment include="Staging,Production">
|
||||
An error has occurred. This application may no longer respond until reloaded.
|
||||
</environment>
|
||||
<environment include="Development">
|
||||
An unhandled exception has occurred. See browser dev tools for details.
|
||||
</environment>
|
||||
<a href="" class="reload">Reload</a>
|
||||
<a class="dismiss">🗙</a>
|
||||
</div>
|
||||
|
||||
<script src="_framework/blazor.server.js"></script>
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
|
||||
|
||||
<link href="_content/Blazorise/blazorise.css" rel="stylesheet" />
|
||||
<link href="_content/Blazorise.Bootstrap/blazorise.bootstrap.css" rel="stylesheet" />
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,28 +0,0 @@
|
||||
{
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:7346",
|
||||
"sslPort": 44333
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"HeartTrack": {
|
||||
"commandName": "Project",
|
||||
"launchBrowser": true,
|
||||
"applicationUrl": "https://localhost:7180;http://localhost:5176",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"dotnetRunMessages": true
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,150 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Title" xml:space="preserve">
|
||||
<value>List d'activités</value>
|
||||
</data>
|
||||
<data name="Description" xml:space="preserve">
|
||||
<value>This is t.</value>
|
||||
</data>
|
||||
<data name="StartTime" xml:space="preserve">
|
||||
<value>helle</value>
|
||||
</data>
|
||||
<data name="EndTime" xml:space="preserve">
|
||||
<value>Last e</value>
|
||||
</data>
|
||||
<data name="EffortRessenti" xml:space="preserve">
|
||||
<value>Efforressenti</value>
|
||||
</data>
|
||||
<data name="Variability" xml:space="preserve">
|
||||
<value>Variablity</value>
|
||||
</data>
|
||||
<data name="StandardDeviation" xml:space="preserve">
|
||||
<value>Standard deviation</value>
|
||||
</data>
|
||||
<data name="Average" xml:space="preserve">
|
||||
<value>Average</value>
|
||||
</data>
|
||||
<data name="AvrTemperature" xml:space="preserve">
|
||||
<value>Average temperature</value>
|
||||
</data>
|
||||
<data name="HasAutoPause" xml:space="preserve">
|
||||
<value>Has auto pause</value>
|
||||
</data>
|
||||
</root>
|
@ -1,150 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Title" xml:space="preserve">
|
||||
<value>Activities List</value>
|
||||
</data>
|
||||
<data name="Description" xml:space="preserve">
|
||||
<value>This is the activity list of users.</value>
|
||||
</data>
|
||||
<data name="StartTime" xml:space="preserve">
|
||||
<value>First name</value>
|
||||
</data>
|
||||
<data name="EndTime" xml:space="preserve">
|
||||
<value>Last name</value>
|
||||
</data>
|
||||
<data name="EffortRessenti" xml:space="preserve">
|
||||
<value>Effort ressenti</value>
|
||||
</data>
|
||||
<data name="Variability" xml:space="preserve">
|
||||
<value>Variability</value>
|
||||
</data>
|
||||
<data name="StandardDeviation" xml:space="preserve">
|
||||
<value>Standard deviation</value>
|
||||
</data>
|
||||
<data name="Average" xml:space="preserve">
|
||||
<value>Average</value>
|
||||
</data>
|
||||
<data name="AvrTemperature" xml:space="preserve">
|
||||
<value>Average temperature</value>
|
||||
</data>
|
||||
<data name="HasAutoPause" xml:space="preserve">
|
||||
<value>Has auto pause</value>
|
||||
</data>
|
||||
</root>
|
@ -1,138 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Description" xml:space="preserve">
|
||||
<value>Cette page regroupe la liste des jetons (nom utilisateur et le mot de passe) du site.</value>
|
||||
</data>
|
||||
<data name="FirstN" xml:space="preserve">
|
||||
<value>Nom de famille</value>
|
||||
</data>
|
||||
<data name="LastN" xml:space="preserve">
|
||||
<value>Prénom</value>
|
||||
</data>
|
||||
<data name="Password" xml:space="preserve">
|
||||
<value>Mot de passe</value>
|
||||
</data>
|
||||
<data name="Title" xml:space="preserve">
|
||||
<value>Jetons utilisateurs</value>
|
||||
</data>
|
||||
<data name="Username" xml:space="preserve">
|
||||
<value>Nom d'utilisateur</value>
|
||||
</data>
|
||||
</root>
|
@ -1,138 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Description" xml:space="preserve">
|
||||
<value>This is the token list of users.</value>
|
||||
</data>
|
||||
<data name="FirstN" xml:space="preserve">
|
||||
<value>First name</value>
|
||||
</data>
|
||||
<data name="LastN" xml:space="preserve">
|
||||
<value>Last name</value>
|
||||
</data>
|
||||
<data name="Password" xml:space="preserve">
|
||||
<value>Password</value>
|
||||
</data>
|
||||
<data name="Title" xml:space="preserve">
|
||||
<value>User token</value>
|
||||
</data>
|
||||
<data name="Username" xml:space="preserve">
|
||||
<value>Username</value>
|
||||
</data>
|
||||
</root>
|
@ -1,138 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Activity" xml:space="preserve">
|
||||
<value>Activité</value>
|
||||
</data>
|
||||
<data name="Ban" xml:space="preserve">
|
||||
<value>Utilisateurs bannis</value>
|
||||
</data>
|
||||
<data name="Global" xml:space="preserve">
|
||||
<value>Vue d'ensemble</value>
|
||||
</data>
|
||||
<data name="Report" xml:space="preserve">
|
||||
<value>Signalement</value>
|
||||
</data>
|
||||
<data name="Ticket" xml:space="preserve">
|
||||
<value>Ticket utilisateur</value>
|
||||
</data>
|
||||
<data name="Token" xml:space="preserve">
|
||||
<value>Jetons d'utilisateurs</value>
|
||||
</data>
|
||||
</root>
|
@ -1,138 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<data name="Activity" xml:space="preserve">
|
||||
<value>Activities</value>
|
||||
</data>
|
||||
<data name="Ban" xml:space="preserve">
|
||||
<value>Ban users</value>
|
||||
</data>
|
||||
<data name="Global" xml:space="preserve">
|
||||
<value>Global view</value>
|
||||
</data>
|
||||
<data name="Report" xml:space="preserve">
|
||||
<value>Reports</value>
|
||||
</data>
|
||||
<data name="Ticket" xml:space="preserve">
|
||||
<value>Tickets</value>
|
||||
</data>
|
||||
<data name="Token" xml:space="preserve">
|
||||
<value>Tokens</value>
|
||||
</data>
|
||||
</root>
|
@ -1,42 +0,0 @@
|
||||
@using System.Globalization
|
||||
@inject NavigationManager NavigationManager
|
||||
|
||||
<p>
|
||||
<label>
|
||||
<select @bind="Culture">
|
||||
@foreach (var culture in supportedCultures)
|
||||
{
|
||||
<option value="@culture">@culture.DisplayName</option>
|
||||
}
|
||||
</select>
|
||||
</label>
|
||||
</p>
|
||||
|
||||
@code
|
||||
{
|
||||
private CultureInfo[] supportedCultures = new[]
|
||||
{
|
||||
new CultureInfo("en-US"),
|
||||
new CultureInfo("fr-FR")
|
||||
};
|
||||
|
||||
private CultureInfo Culture
|
||||
{
|
||||
get => CultureInfo.CurrentCulture;
|
||||
set
|
||||
{
|
||||
if (CultureInfo.CurrentUICulture == value)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
var culture = value.Name.ToLower(CultureInfo.InvariantCulture);
|
||||
|
||||
var uri = new Uri(this.NavigationManager.Uri).GetComponents(UriComponents.PathAndQuery, UriFormat.Unescaped);
|
||||
var query = $"?culture={Uri.EscapeDataString(culture)}&" + $"redirectUri={Uri.EscapeDataString(uri)}";
|
||||
|
||||
// Redirect the user to the culture controller to set the cookie
|
||||
this.NavigationManager.NavigateTo("/Culture/SetCulture" + query, forceLoad: true);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
@inherits LayoutComponentBase
|
||||
|
||||
<PageTitle>HeartTrack</PageTitle>
|
||||
|
||||
<div class="page">
|
||||
<div class="sidebar @NavMenuCssClass" @onclick="ToggleNavMenu">
|
||||
<NavMenu />
|
||||
</div>
|
||||
|
||||
<main>
|
||||
<div class="top-row px-4 auth">
|
||||
<div class="container-fluid toggler-container">
|
||||
<button title="Navigation menu" class="navbar-toggler custom-toggler" @onclick="ToggleNavMenu">
|
||||
<span class="navbat-toggler-icon"></span>
|
||||
</button>
|
||||
</div>
|
||||
@* Messages, notifs et pp compte à mettre *@
|
||||
<div class="px-4">
|
||||
<CultureSelector />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<article class="content px-4">
|
||||
@Body
|
||||
</article>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
@code {
|
||||
private bool collapseNavMenu = true;
|
||||
|
||||
private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null;
|
||||
|
||||
private void ToggleNavMenu()
|
||||
{
|
||||
collapseNavMenu = !collapseNavMenu;
|
||||
}
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
<div class="top-row ps-3 navbar navbar-dark">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="">@Localizer["Panel"]</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<nav class="flex-column">
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
|
||||
<span class="oi oi-home" aria-hidden="true"></span> @Localizer["Global"]
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="tickets">
|
||||
<span class="oi oi-plus" aria-hidden="true"></span> @Localizer["Ticket"]
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="reports">
|
||||
<span class="oi oi-list-rich" aria-hidden="true"></span> @Localizer["Report"]
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="activities">
|
||||
<span class="oi oi-list-rich" aria-hidden="true"></span> @Localizer["Activity"]
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="banned-users">
|
||||
<span class="oi oi-list-rich" aria-hidden="true"></span> @Localizer["Ban"]
|
||||
</NavLink>
|
||||
</div>
|
||||
<div class="nav-item px-3">
|
||||
<NavLink class="nav-link" href="tokens">
|
||||
<span class="oi oi-list-rich" aria-hidden="true"></span> @Localizer["Tokens"]
|
||||
</NavLink>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
@ -1,17 +0,0 @@
|
||||
<div class="alert alert-secondary mt-4">
|
||||
<span class="oi oi-pencil me-2" aria-hidden="true"></span>
|
||||
<strong>@Title</strong>
|
||||
|
||||
<span class="text-nowrap">
|
||||
Please take our
|
||||
<a target="_blank" class="font-weight-bold link-dark" href="https://go.microsoft.com/fwlink/?linkid=2149017">brief survey</a>
|
||||
</span>
|
||||
and tell us what you think.
|
||||
</div>
|
||||
|
||||
@code {
|
||||
// Demonstrates how a parent component can supply parameters
|
||||
[Parameter]
|
||||
public string? Title { get; set; }
|
||||
}
|
||||
|
@ -1,11 +0,0 @@
|
||||
@using System.Net.Http
|
||||
@using Microsoft.AspNetCore.Authorization
|
||||
@using Microsoft.AspNetCore.Components.Authorization
|
||||
@using Microsoft.AspNetCore.Components.Forms
|
||||
@using Microsoft.AspNetCore.Components.Routing
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
||||
@using Microsoft.JSInterop
|
||||
@using HeartTrack
|
||||
@using HeartTrack.Shared
|
||||
@using Blazorise.DataGrid
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,19 +0,0 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
@ -1,22 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("HeartTrack")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("HeartTrack")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("HeartTrack")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Généré par la classe MSBuild WriteCodeFragment.
|
||||
|
@ -1 +0,0 @@
|
||||
38cc9ccf40333f347fc65f7d395d082767aa7d5d
|
@ -1,77 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb = true
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = HeartTrack
|
||||
build_property.RootNamespace = HeartTrack
|
||||
build_property.ProjectDir = /Users/Perederii/SAE/git/Admin/Sources/HeartTrack/
|
||||
build_property.RazorLangVersion = 6.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = /Users/Perederii/SAE/git/Admin/Sources/HeartTrack
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/App.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Pages/Activities.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvQWN0aXZpdGllcy5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Pages/BannedUsers.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvQmFubmVkVXNlcnMucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Pages/Index.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvSW5kZXgucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Pages/Reports.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvUmVwb3J0cy5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Pages/Tickets.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvVGlja2V0cy5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Pages/Tokens.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvVG9rZW5zLnJhem9y
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Shared/CultureSelector.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL0N1bHR1cmVTZWxlY3Rvci5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Shared/SurveyPrompt.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL1N1cnZleVByb21wdC5yYXpvcg==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/_Imports.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Shared/MainLayout.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL01haW5MYXlvdXQucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope = b-qmqi31untx
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Shared/NavMenu.razor]
|
||||
build_metadata.AdditionalFiles.TargetPath = U2hhcmVkL05hdk1lbnUucmF6b3I=
|
||||
build_metadata.AdditionalFiles.CssScope = b-0uf983aptq
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Pages/Error.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvRXJyb3IuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Pages/_Host.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX0hvc3QuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/Pages/_Layout.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXMvX0xheW91dC5jc2h0bWw=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
@ -1,17 +0,0 @@
|
||||
// <auto-generated/>
|
||||
global using global::Microsoft.AspNetCore.Builder;
|
||||
global using global::Microsoft.AspNetCore.Hosting;
|
||||
global using global::Microsoft.AspNetCore.Http;
|
||||
global using global::Microsoft.AspNetCore.Routing;
|
||||
global using global::Microsoft.Extensions.Configuration;
|
||||
global using global::Microsoft.Extensions.DependencyInjection;
|
||||
global using global::Microsoft.Extensions.Hosting;
|
||||
global using global::Microsoft.Extensions.Logging;
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Net.Http.Json;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
@ -1 +0,0 @@
|
||||
5860763757f4f08c7ebdea1b3a94a18109f17861
|
@ -1,17 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" +
|
||||
"ory, Microsoft.AspNetCore.Mvc.Razor")]
|
||||
|
||||
// Généré par la classe MSBuild WriteCodeFragment.
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
||||
e053309fb28ae4fdc5cf5bd9babeaa0398ff36c0
|
@ -1,123 +0,0 @@
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/appsettings.Development.json
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/appsettings.json
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.staticwebassets.runtime.json
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.exe
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.deps.json
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.runtimeconfig.json
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.pdb
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.AssemblyInfoInputs.cache
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.AssemblyInfo.cs
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.csproj.CoreCompileInputs.cache
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.MvcApplicationPartsAssemblyInfo.cache
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.RazorAssemblyInfo.cache
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.RazorAssemblyInfo.cs
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets.build.json
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets.development.json
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets/msbuild.HeartTrack.Microsoft.AspNetCore.StaticWebAssets.props
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets/msbuild.build.HeartTrack.props
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.HeartTrack.props
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.HeartTrack.props
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets.pack.json
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/scopedcss/bundle/HeartTrack.styles.css
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/scopedcss/projectbundle/HeartTrack.bundle.scp.css
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/refint/HeartTrack.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.pdb
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.genruntimeconfig.cache
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/ref/HeartTrack.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Blazorise.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Blazorise.Bootstrap.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Blazorise.DataGrid.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Blazorise.Icons.FontAwesome.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Blazorise.Licensing.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/DeepCloner.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.JSInterop.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/System.IO.Pipelines.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.csproj.AssemblyReference.cache
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.csproj.CopyComplete
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.Localization.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.Localization.Abstractions.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.Options.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/bin/Debug/net6.0/fr-FR/HeartTrack.resources.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.Resources.Pages.Tokens.resources
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.Resources.Pages.Tokens.fr-FR.resources
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.csproj.GenerateResource.cache
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/fr-FR/HeartTrack.resources.dll
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.Resources.Shared.NavMenu.resources
|
||||
C:/Users/antoi/Documents/Cours/2A/SAE/Admin/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.Resources.Shared.NavMenu.fr-FR.resources
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/appsettings.Development.json
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/appsettings.json
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.staticwebassets.runtime.json
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.deps.json
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.runtimeconfig.json
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/HeartTrack.pdb
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/fr-FR/HeartTrack.resources.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Blazorise.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Blazorise.Bootstrap.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Blazorise.DataGrid.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Blazorise.Icons.FontAwesome.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Blazorise.Licensing.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/DeepCloner.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.AspNetCore.Authorization.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.AspNetCore.Components.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Forms.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.AspNetCore.Components.Web.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.AspNetCore.Metadata.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.Localization.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.Localization.Abstractions.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.Options.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/Microsoft.JSInterop.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/bin/Debug/net6.0/System.IO.Pipelines.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.csproj.AssemblyReference.cache
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.Resources.Pages.Tokens.resources
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.Resources.Shared.NavMenu.resources
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.Resources.Pages.Tokens.fr-FR.resources
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.Resources.Shared.NavMenu.fr-FR.resources
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.csproj.GenerateResource.cache
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.AssemblyInfoInputs.cache
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.AssemblyInfo.cs
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.csproj.CoreCompileInputs.cache
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.MvcApplicationPartsAssemblyInfo.cache
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.RazorAssemblyInfo.cache
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.RazorAssemblyInfo.cs
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/fr-FR/HeartTrack.resources.cs
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/fr-FR/HeartTrack.resources.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets/msbuild.HeartTrack.Microsoft.AspNetCore.StaticWebAssets.props
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets/msbuild.build.HeartTrack.props
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets/msbuild.buildMultiTargeting.HeartTrack.props
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets/msbuild.buildTransitive.HeartTrack.props
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets.pack.json
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets.build.json
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/staticwebassets.development.json
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/scopedcss/Shared/MainLayout.razor.rz.scp.css
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/scopedcss/Shared/NavMenu.razor.rz.scp.css
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/scopedcss/bundle/HeartTrack.styles.css
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/scopedcss/projectbundle/HeartTrack.bundle.scp.css
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.csproj.CopyComplete
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/refint/HeartTrack.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.pdb
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.genruntimeconfig.cache
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/ref/HeartTrack.dll
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.Resources.Pages.Activities.resources
|
||||
/Users/Perederii/SAE/git/Admin/Sources/HeartTrack/obj/Debug/net6.0/HeartTrack.Resources.Pages.Activities.fr-FR.resources
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue