• Solutions
    • FERC XBRL Reporting
    • FDTA Financial Reporting
    • SEC Compliance
    • Windows Clipboard Management
    • Legato Scripting
  • Products
    • GoFiler Suite
    • XBRLworks
    • SEC Exhibit Explorer
    • SEC Extractor
    • Clipboard Scout
    • Legato
  • Education
    • Training
    • SEC and EDGAR Compliance
    • Legato Developers
  • Blog
  • Support
  • Skip to blog entries
  • Skip to archive page
  • Skip to right sidebar

Monday, May 20. 2019

SEC Proposes to Improve Cross-Border Application of Security-Based Swap Requirements

On May 10th, the SEC proposed a new package of rule amendments and interpretive guidance to better the framework for regulating cross-border security-based swaps transactions and market participants. Intended to improve regulation by pragmatically addressing implementation issues and efficiency concerns, the proposed rules will further harmonize the regulatory regime governing security-based swaps administered by the SEC with the regulatory regime administered by the Commodity Futures Trading Commission (CFTC). These rules primarily pertain to security-based swap dealers and major security-based swap participants (SBS Entities).

Continue reading "SEC Proposes to Improve Cross-Border..." »
Posted by
The Novaworks Team
in SEC at 09:25

Friday, May 17. 2019

Server Maintenance Scheduled for Saturday, May 18

Novaworks' webserver will be undergoing maintenance and inaccessible on Saturday, May 18th from 8:00 AM EST to 10:00 PM EST. During this period, our email, including support@novaworkssoftware.com, may also be offline. Product registrations and unregistrations will not be affected by this upgrade. However, new installations and software upgrades may not be available. Continue reading "Server Maintenance Scheduled for Saturday, May 18" »
Posted by
The Novaworks Team
in Novaworks News at 18:11

LDC #136: Using Legato to Automate Document Conversion

One of the most important features of GoFiler is the ability to take Microsoft Office documents and turn them into EDGAR compliant documents that can be filed to the SEC. While conversion is easy to do manually in GoFiler, there is a function in Legato that can add a crucial step into an automated set of steps that can help make setting up filings a breeze. Today I will go in-depth on this function: ConvertFile.

Continue reading "LDC #136: Using Legato to Automate Document..." »
Posted by
Joshua Kwiatkowski
in Development at 17:12

Thursday, May 16. 2019

SEC Releases Draft 2019 DEI Taxonomy for EDGAR 19.2

The SEC has released the draft version of the 2019 DEI taxonomy for public review. This taxonomy contains the elements required for the tagging of cover page data for Inline XBRL submissions and is open for public comment until June 6, 2019.

Continue reading "SEC Releases Draft 2019 DEI Taxonomy for EDGAR..." »
Posted by
The Novaworks Team
in EDGAR News, SEC at 16:48

Tuesday, May 14. 2019

SEC Proposes Amendments to the Accelerated and Large Accelerated Filer Definitions

The SEC voted on May 9th to propose amendments to the accelerated filer and large accelerated filer definitions. These amendments would reduce costs for certain lower-revenue companies by more appropriately tailoring the types of companies that are categorized as accelerated and large accelerated filers while maintaining effective investor protections. Under these new amendments to Exchange Act Rule 12b-2, smaller reporting companies with less than $100 million in revenues would not be required to obtain an attestation of their internal control over financial reporting from an independent outside auditor. The key protections from the Sarbanes-Oxley Act of 2002, including independent audit committee requirements, CEO and CFO certifications of financial reports, and the requirement that companies continue to establish, maintain, and assess the effectiveness of their internal control, would not be altered by the proposed changes.

Continue reading "SEC Proposes Amendments to the Accelerated and..." »
Posted by
The Novaworks Team
in SEC at 12:06

Friday, May 10. 2019

LDC #135: How To Automate Inserting Pictures into an HTML File

Whenever a task has to be done repeatedly and there’s not much thought that needs to go into running the task, it’s generally a great candidate for automating using a Legato script. I’ve been asked a few times in the past month or so how to quickly and easily insert multiple images into an HTML file. Since that’s a relatively easy task that just requires a lot of the same operation over and over again, I thought it would make a great example of automation for our Legato blog. So this week, we’ll take a look at a simple script that takes a folder as an input, scans it for images, and then inserts all of the images it finds into an HTML file.

Continue reading "LDC #135: How To Automate Inserting Pictures..." »
Posted by
Steven Horowitz
in Development at 17:35

Thursday, May 09. 2019

SEC Proposes to Improve Disclosures Relating to Acquisitions and Dispositions of Businesses

On May 3rd, the SEC proposed rule amendments to improve information that investors receive regarding the acquisition and disposition of businesses. The proposed amendments are also intended to facilitate more timely access to capital and reduce complexity and compliance costs.

Continue reading "SEC Proposes to Improve Disclosures Relating to..." »
Posted by
The Novaworks Team
in SEC at 11:51

Friday, May 03. 2019

LDC #134: Using the Windows Registry

While Legato offers its own method of storing settings, sometimes a script will need to be able to read the settings of other applications. This includes applications that use the registry to store information. The Windows Registry is a database that is managed by the operating system that all applications, drivers, services, and other processes can use to store settings and other information. The registry was originally introduced as a common place for applications to store settings since INI files did not work well in a multi-user environment. With later versions of Windows, it became easier for applications to store INI or XML settings in a user’s profile, but some applications still use the registry as it offers some unique features. This week’s blog will be a discussion of the registry functions in Legato as well as some common pitfalls programmers may encounter when using the registry.

Continue reading "LDC #134: Using the Windows Registry" »
Posted by
David Theis
in Development at 15:14

Tuesday, April 30. 2019

SEC Staff Announces Agenda For May 31 FinTech Forum

On April 24th, the SEC announced the agenda for its May 31st forum that will discuss distributed ledger technology and assets. This conference, which is the 2019 FinTech Forum, will be held by the SEC’s Strategic Hub for Innovation and Financial Technology (FinHub) and will begin at 9:30 am EST in Washington, DC at the SEC’s Headquarters. It will be open to the public on a first-come, first-serve basis.

Continue reading "SEC Staff Announces Agenda For May 31 FinTech..." »
Posted by
The Novaworks Team
in EDGAR News, Events, SEC at 13:24

Friday, April 26. 2019

LDC #133: Checkbox and Radio Button Controls Part Three

Automatic operation of checkbox and radio buttons is easy, but what if you want to extend the functionality or do something out of the ordinary? This blog discusses how to manage the control more closely via button notifications. I will also update the checkbox script from Part One of this series to use notifications to add a narrative description to the dialog.

Continue reading "LDC #133: Checkbox and Radio Button Controls..." »
Posted by
Scott Theis
in Development at 17:13

Friday, April 19. 2019

LDC #132: Adding Edit Functionality to the Page Break Manager

Last year, I wrote a series of blog posts on a Page Break Manager tool for GoFiler. It allowed users to save page breaks into a style template, rename them, and delete them. One feature was conspicuously absent though, the ability to edit a page break. Well, it seems like now would be a good time to rectify that mistake! This blog post is going to go over how to add the edit function to this script. It’s also a really good example of code should be written in a fairly modular fashion, because it makes it a lot easier to come back in and edit things later. I wrote this seven months ago, I don’t really remember how a lot of the functions work exactly. Things like reading the file into a data table, or saving the file back out, are somewhat complicated, and while I’m sure I could figure out how it’s working, there’s really no need to, since those are self-contained functions within the script. I don’t need to know how they work really, as long as they do what they’re supposed to do I can simply re-use them in this new function without a problem.


Continue reading "LDC #132: Adding Edit Functionality to the Page..." »
Posted by
Steven Horowitz
in Development at 17:30

Friday, April 12. 2019

LDC #131: Building a Section 16 Data Scraper, Part 4: Dialog

It’s time to finish up our full script for our Section 16 data scraper. In the first three parts of this series we completed a base script that would go out to the SEC’s website, download all of the filings from a particular CIK, cache all of the Section 16 filings, find all of the reported transactions, put those transactions into a CSV file, and then read all of those transactions and figure out which of those transactions are current holdings. This week we are going to finish up by creating a dialog and adding our script functionality into the dialog.


Continue reading "LDC #131: Building a Section 16 Data Scraper,..." »
Posted by
Joshua Kwiatkowski
in Development at 17:47

Friday, April 05. 2019

LDC #130: Synchronizing Meta Data

This week’s blog post is going to be an example of using Legato to analyze a directory and a csv file, and to update a database with the results. While this script is specialized for a personal website and may have a lot of practical application outside of similar websites, it showcases many of the concepts I want to cover in this blog and illustrates the ability of Legato to bring data together.

Continue reading "LDC #130: Synchronizing Meta Data" »
Posted by
David Theis
in Development at 17:55

Monday, April 01. 2019

SEC Releases EDGAR 19.1.1

On April 1, 2019, EDGAR Release 19.1.1 was released by the Securities and Exchange Commission. This release included a new “confidential” flag for NPORT-P and NPORT-NP filings as well as changes to the Dissemination Rule for N-PORT filings. Additionally, filers are now allowed submit NPORT-EX as an attachment to NPORT-P and NPORT-NP after August 31, 2019.

Continue reading "SEC Releases EDGAR 19.1.1" »
Posted by
The Novaworks Team
in EDGAR News, SEC at 10:23

Friday, March 29. 2019

New Release (4.26b) for the GoFiler Family of Products

Version 4.26b of all applications in the GoFiler Suite has been released. This release corresponds to EDGAR Release 19.1.1 and contains a number of improvements to Form N-CEN View and Form N-PORT View. Additionally, this version contains new functions for XDX, support for the XBRL Previewer for EDGAR 19.1.1, and improvements to some general EDGAR tools.

Continue reading "New Release (4.26b) for the GoFiler Family of..." »
Posted by
The Novaworks Team
in EDGAR News, GoFiler Updates, Novaworks News at 17:35
« previous page   (Page 78 of 102, totaling 1522 entries) next page »

Quicksearch

Categories

  • XML Accounting
  • XML AICPA News
  • XML FASB News
  • XML GASB News
  • XML IASB News
  • XML Development
  • XML Events
  • XML FERC
  • XML eForms News
  • XML FERC Filing Help
  • XML Filing Technology
  • XML Information Technology
  • XML Investor Education
  • XML MSRB
  • XML EMMA News
  • XML FDTA
  • XML MSRB Filing Help
  • XML Novaworks News
  • XML GoFiler Online Updates
  • XML GoFiler Updates
  • XML XBRLworks Updates
  • XML SEC
  • XML Corporation Finance
  • XML DERA
  • XML EDGAR News
  • XML Investment Management
  • XML SEC Filing Help
  • XML XBRL
  • XML Data Quality Committee
  • XML GRIP Taxonomy
  • XML IFRS Taxonomy
  • XML US GAAP Taxonomy

Calendar

Back July '25 Forward
Mo Tu We Th Fr Sa Su
Wednesday, July 16. 2025
  1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31      

Feeds

  • XML
Sign Up Now
Get SEC news articles and blog posts delivered monthly to your inbox!
Based on the s9y Bulletproof template framework

Compliance

  • FERC
  • EDGAR
  • EMMA

Software

  • GoFiler
  • SEC Exhibit Explorer
  • SEC Extractor
  • XBRLworks
  • Legato Scripting

Company

  • About Novaworks
  • News
  • Site Map
  • Support

Follow Us:

  • LinkedIn
  • YouTube
  • RSS
  • Newsletter
  • © 2025 Novaworks, LLC
  • Privacy
  • Terms of Use
  • Trademarks and Patents
  • Contact Us