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)- 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...")
- 13:01, 22 September 2023 99.255.206.241 talk created page Ajax (Created page with "<strong>Create new axios instance.</strong> Add the following import: <pre>import axiosWrapper, { BusinessResult } from '@/common-axios'; This returns a singleton of the AxiosWrapper class, which is a class the wraps the calls to the Novus web service and internally uses the axios object. The BusinessResult class is a common class to return for POST requests to check if operation was successful or not: this.postData<BusinessResult>('foo', postData) .then((result) => {...")
- 21:05, 21 September 2023 99.255.206.241 talk created page Accounting Period (Created page with "Some parameters consists of year and period. Call accountingPeriodService.GetFiscalYearPeriod(DateTime.Now) to get the year and period.")
- 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")
- 18:23, 21 September 2023 99.255.206.241 talk created page EDI Setup and Configuration (Created page with "<strong>EDI Setup and Configuration</strong> {| class="wikitable" |- ! Customer ! Username ! Password |- | This is not a customer | ftp.kiwana | aC{^uo |- | ninodaversa.com | ftp.ninidaversa | LZ6<1[ |- | trinitymetalsgroup.com | ftp.trinity | [y^C$] |}")
- 18:16, 21 September 2023 99.255.206.241 talk created page EDI (Created page with "<strong>EDI Setup and Configuration</strong>")
- 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>")
- 15:03, 21 September 2023 99.255.206.241 talk created page Tasks After Restart (Created page with "<strong>1.</strong> Execute the following script when you know that SQL Server was restarted: DECLARE @command varchar(1000) SELECT @command = ' USE [?] IF (DB_NAME() LIKE ''%Novus'') BEGIN EXECUTE [dbo].[usp_AsyncTaskMarkAsIdle] ''EDI Scan Folder'' ,''admin''; EXECUTE [dbo].[usp_AsyncTaskMarkAsIdle] ''Orders Invoicing'' ,''admin''; EXECUTE [dbo].[usp_AsyncTaskMarkAsIdle] ''Invoice Printing'' ,''admin''; EN...")
- 14:54, 21 September 2023 99.255.206.241 talk created page MediaWiki (Created page with "<strong>MediaWiki has been installed.</strong> Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software. == Getting started == * [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list] * [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ] * [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikime...")
- 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
- 20:00, 20 September 2023 User talk contribs created page File:Starting virtual machine 1.png
- 20:00, 20 September 2023 User talk contribs uploaded File:Starting virtual machine 1.png
- 19:58, 20 September 2023 User talk contribs created page File:Azure portal.png
- 19:58, 20 September 2023 User talk contribs uploaded File:Azure portal.png
- 19:57, 20 September 2023 User talk contribs created page File:Virtual machine list.png
- 19:57, 20 September 2023 User talk contribs uploaded File:Virtual machine list.png
- 20:17, 19 September 2023 User talk contribs created page Start QA VM (Created page with "process")
- 20:16, 19 September 2023 User talk contribs deleted page Start QA Vm (content was: "Process: Restart SQLQA01", and the only contributor was "User" (talk))
- 20:16, 19 September 2023 User talk contribs created page Start QA Vm (Created page with "Process: Restart SQLQA01")
- 20:13, 19 September 2023 User talk contribs created page Azure (Created blank page)
- 14:06, 19 September 2023 User talk contribs created page File:Registered Servers.png
- 14:06, 19 September 2023 User talk contribs uploaded File:Registered Servers.png
- 12:59, 19 September 2023 User talk contribs created page File:Colour coded connection.png
- 12:59, 19 September 2023 User talk contribs uploaded File:Colour coded connection.png
- 20:43, 18 September 2023 User talk contribs created page Category:One Point Lesson (Created blank page)
- 20:33, 18 September 2023 User talk contribs created page Register a SQL Server connection (Created page with "<strong>Objective:</strong> Register SQL Server connections for easier access to connection information. <strong>Reason for lesson:</strong> Registering a SQL Server connection lets the user save connection information for multiple connections. <strong>Navigate:</strong> Main Menu | View | Registered Servers | <strong>Steps to register a SQL Server connection:</strong> 1. Click on View/Registered Servers. 2. The undocked list of registered servers will appear. There...")
- 20:21, 18 September 2023 User talk contribs created page SQL Server Management Studio (Created page with "=Colour coding connections=")
- 20:20, 18 September 2023 User talk contribs created page SQL Server (Created page with "=SQL Server Management Studio (SSMS)=")
- 19:25, 18 September 2023 User talk contribs created page Colour coding connections (Created page with "'''Objective:''' To provide instructions on how to colour code connects to SQL Server via SSMS. '''Reason for lesson:''' Colour coding connects will give the user a visual indicator of the current connection. This will help in indicting connections to dev, test and production servers. | Registered Servers | Database Engine | Local Server Groups | Select Database | '''Steps to colour coordinating SQL Server connections:''' 1. Open Registered Servers/Database Engine/Lo...")
- 19:17, 18 September 2023 User talk contribs created page One Point Lesson (Created page with "=SQL Server=")
- 19:14, 18 September 2023 User talk contribs deleted page One Point Lesson (content was: "= SQL Server = == SSMS Registered Servers == '''Register a SQL Server connection''' Register SQL Server connections for easier access to connection information. == Colour coding connections == '''SQL Server Management Studio (SSMS)''' Colour coding connects will give the user a visual indicator of the current connection. This will help in indicting connections to dev, test and pr...", and the only contributor was "User" (talk))
- 18:46, 18 September 2023 User talk contribs created page One Point Lesson (Created page with "= SQL Server = == Colour coding connections ==")
- 13:04, 1 September 2022 User account Dgriffin talk contribs was created
- 22:37, 30 August 2022 MediaWiki default talk contribs created page Main Page