All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Bitnami MediaWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 18:22, 6 October 2023 User talk contribs created page DevOps (Created page with " Back to DevOps")
- 18:48, 5 October 2023 User talk contribs created page Button (Created page with "Return to Programming Guide")
- 18:47, 5 October 2023 User talk contribs created page Kendo UI Vue (Created page with "Return to Programming Guide")
- 18:47, 5 October 2023 User talk contribs created page Front End (Created page with "Return to Programming Guide")
- 18:47, 5 October 2023 User talk contribs created page Back End (Created page with "Return to Programming Guide")
- 18:47, 5 October 2023 User talk contribs created page I18n (Internationalization) (Created page with "Return to Programming Guide")
- 18:47, 5 October 2023 User talk contribs created page HTML/CSS (Created page with "Return to Programming Guide")
- 18:47, 5 October 2023 User talk contribs created page G/L Distribution Table (Created page with "Return to Programming Guide")
- 18:47, 5 October 2023 User talk contribs created page GenericInput (Created page with "Return to Programming Guide")
- 18:46, 5 October 2023 User talk contribs created page Input Utilities (Created page with "Return to Programming Guide")
- 18:46, 5 October 2023 User talk contribs created page Forms, Inputs, and Editable Grids (Created page with "Return to Programming Guide")
- 18:46, 5 October 2023 User talk contribs created page Form Widgets Security (Created page with "Return to Programming Guide")
- 18:46, 5 October 2023 User talk contribs created page Filters (Created page with "Return to Programming Guide")
- 18:46, 5 October 2023 User talk contribs created page FileMaintenanceSplitPage (Created page with "Return to Programming Guide")
- 18:45, 5 October 2023 User talk contribs created page Single File Component (File Maintenance) (Created page with "Return to Programming Guide")
- 18:45, 5 October 2023 User talk contribs created page TypeScript Class (Created page with "Return to Programming Guide")
- 18:45, 5 October 2023 User talk contribs created page Controller (Created page with "Return to Programming Guide")
- 18:44, 5 October 2023 User talk contribs created page Service (Created page with "Return to Programming Guide")
- 18:44, 5 October 2023 User talk contribs created page File Maintenance (Created page with "Return to Programming Guide")
- 18:44, 5 October 2023 User talk contribs created page Certificate of Analysis Modal (Created page with "Return to Programming Guide")
- 18:44, 5 October 2023 User talk contribs created page Email (Created page with "Return to Programming Guide")
- 18:44, 5 October 2023 User talk contribs created page A note on async methods (Created page with "Return to Programming Guide")
- 18:36, 5 October 2023 User talk contribs deleted page One Point Lesson (content was: "<strong>Azure</strong> <strong>SQL Server</strong> Back to Main Page")
- 12:31, 4 October 2023 User talk contribs created page Git Branching Workflow (Old) (Created page with " Return to Project Setup")
- 12:31, 4 October 2023 User talk contribs created page Git Branching Workflow (Created page with " Return to Project Setup")
- 12:31, 4 October 2023 User talk contribs created page Novus-UI (Created page with " Return to Project Setup")
- 12:30, 4 October 2023 User talk contribs created page Novus-Server (Created page with " Return to Project Setup")
- 12:30, 4 October 2023 User talk contribs created page Technology Stack (Created page with " Return to Project Setup")
- 12:26, 4 October 2023 User talk contribs created page Project Setup (Created page with "Technology Stack")
- 12:21, 4 October 2023 User talk contribs created page EF Core (Created page with "<strong>Update entity classes</strong> by running the below command in PowerShell. Server 10.0.2.6 is QA database. Change the database (e.g. below is using MrDairyNovus as an example). <pre>dotnet ef dbcontext scaffold "Server=10.0.2.6;Database=MrDairyNovus;User Id=novususer;Password=h55C*ZftMX1V#ZWZ;" Microsoft.EntityFrameworkCore.SqlServer --startup-project "Novus.Web" --project "Novus.Model.Entity" -f --context-dir "..\Novus.DataAccess" -c NOVUSContext -o "Entities"<...")
- 12:11, 4 October 2023 User talk contribs created page General Service (Created page with "<pre>public class FooService : BaseService, IFooService { private readonly NOVUSContext dbContext; public FooService( IUnitOfWork uow, IMapper mapper, IHttpContextAccessor httpContextAccessor , NOVUSContext dbContext, ILogger<FooService> logger ) : base(uow, mapper, httpContextAccessor, logger) { this.dbContext = dbContext; } }</pre> Register the registerBusinessLayer() method in the Novus.Web.Common/RegisterLayerServices.cs class wi...")
- 12:10, 4 October 2023 User talk contribs created page General API Controller (Created page with "<pre>[Authorize] [Route("api/[controller]")] [ApiController] public class FooController : BaseController { private readonly IMapper mapper; private readonly IFooService fooService; public FooController( IConfigSettings config, ILogger<FooController> logger, IMapper mapper, IFooService fooService ) : base(config, logger) { this.mapper = mapper; this.fooService = fooService; } }</pre> <strong>Return to Programming Guide</str...")
- 20:47, 3 October 2023 User talk contribs created page Dates (Created page with "<strong>Use the current locale's date format.<strong> Import the following import { dateFormats } from '@/common-date'. The dateFormats is an object that contains the same date format for each library such as Kendo UI (kendoUi property) and Moment.js (moment property). For example, for moment you do moment(startingDate).format(this.dateFormats.moment). <strong>Date picker vs date input.</strong> Kendo UI has these two components. Use the date picker for filters. Use th...")
- 20:45, 3 October 2023 User talk contribs created page Optimistic Concurrency Control (Created page with " Return to Programming Guide")
- 20:39, 3 October 2023 User talk contribs created page Database (Created page with "<strong>See also</strong> the Optimistic Concurrency Control section. <strong>Audit fields (database).</strong> Generally, most tables should have the following audit files: <pre>created_on datetime2(7) NULL ,created_by varchar(100) NULL, ,updated_on datetime2(7) NULL, ,updated_by varchar(100) NULL</pre> Audit fields (C# code). In the Novus.Model.Entity.PartialEntities folder, create a partial class for the entity and implement the AuditFields interface e.g. public pa...")
- 14:52, 2 October 2023 User talk contribs created page Dapper (Created page with "<strong>Example:</strong> <pre>var dbConn = dbContext.Database.GetDbConnection(); if (dbConn.State != ConnectionState.Open) { await dbConn.OpenAsync(); } return await dbConn.QueryAsync<FooDTO>(@" SELECT f.foo_id AS FooId, f.name AS Name FROM dbo.Foo f WHERE f.foo_id = @fooId ", new { fooId, });</pre> <strong>Do not hard code</strong> the database name. In the service class that extends BaseService, you can call GetDatabase("id") to get the ten...")
- 14:49, 2 October 2023 User talk contribs created page Colour (Created page with "<strong>Text fields.</strong> For a yellow highlight, use lightgoldenrodyellow. <strong>Table rows.</strong> Default text color is black. For a green highlight, use #0DDD63 with white text color. For a yellow highlight, use #FAF027.")
- 18:09, 1 October 2023 User talk contribs created page Checkboxes (Created page with "<strong>Use BoostrapVue's checkbox:</strong> <b-form-checkbox v-model="isBar" > Bar </b-form-checkbox> Confusingly, it can also be <b-checkbox> (src). Tab navigation. See Tab Key Navigation section. To navigate away from the dropdown, define the keydown event handler: private onKeyDownFooCheckbox(e: KeyboardEvent) { this.emulateTab( e, () => { (this.$refs.barField as any).$el.focus(); (this.$refs.barField as any).$el.select(); }, () =>...")
- 13:54, 29 September 2023 User talk contribs created page New Customer Checklist (Created page with "Checklist for Logging into New Customer Novus/Shell Databases # Check [Identity].dbo.domain has a domain record. Run the following query: SELECT * FROM [Identity].dbo.domain d WHERE d.name = 'foobar.com'; If it doesn’t exist, run the following INSERT: INSERT INTO [Identity].dbo.domain (name,release_number) VALUES ( 'foobar.com', -- name, '2022.5.2.0' -- release_number ); 2) Check [Identity].dbo.domain_database has two records with IDs: SHELL and NOVUS: SELECT...")
- 13:45, 22 September 2023 User talk contribs created page Buttons (Created page with "<strong>Template.</strong> <pre><kendo-button class="k-outline" type="button"> <span class="k-icon k-i-search"></span> </kendo-button> </pre> However, the k-outline class makes it look plain compared to other options. See [https://www.telerik.com/kendo-vue-ui/components/buttons/button/ official documentation]. See list of icons [https://www.telerik.com/kendo-vue-ui/components/styling/icons/ here]. <strong>Add a tooltip:</strong> <pre><kendo-tooltip title="Tooltip L...")
- 13:17, 22 September 2023 User talk contribs created page Async Task (Created page with "<strong>The Async_Task table</strong> is useful for keep information on asynchronous tasks. Asynchronous tasks are useful when the processing time of a business operation will take longer than what Azure managed services (such as Azure App Service or Azure Front Door) allow. For example, Azure App Service has a maximum timeout of 230 seconds (src) so if you have a back-end method that takes almost that long or more, then you’ll need to make the call to the method async...")
- 19:20, 21 September 2023 User talk contribs created page Programming Guide (Created page with "# Accounting Period # Ajax # Buttons # Checkboxes # Colour # Dapper # Database # Dates # .NET Core General ## General API Controller ## General Service # EF Core ## Optimistic Concurrency Control ## A note on async methods # Email ## Certificate of Analysis Modal")
- 15:40, 21 September 2023 User talk contribs created page List of customers (Created page with "* accuratewaste.ca ** Admin Password: T3800^ ** Database prefix: Accurate ** Domain (AES): suYPShxmgRNC85V361dOFF0lG1bfq9w0QbvsslkuxRA= * dapasoft.com (for development only) ** Admin Password: admin ** Database prefix: none ** Domain (AES): fD729WvPLso9asuSRjjg5Q== * kiwanatechnologies.com (for internal non-customer non-demonstration purposes only) ** Admin Password: admin ** Database prefix: Sandbox ** Domain (AES): ??? * microforum.ca ** Admin Password: U6039^ ** Datab...")
- 15:34, 21 September 2023 User talk contribs created page Novus (Created page with "<strong>List of customers</strong>")
- 20:06, 20 September 2023 User talk contribs created page File:Sqlqa01.png
- 20:06, 20 September 2023 User talk contribs uploaded File:Sqlqa01.png
- 20:00, 20 September 2023 User talk contribs created page File:Started virtual machine.png
- 20:00, 20 September 2023 User talk contribs uploaded File:Started virtual machine.png
- 20:00, 20 September 2023 User talk contribs created page File:Starting virtual machine 2.png
- 20:00, 20 September 2023 User talk contribs uploaded File:Starting virtual machine 2.png