• 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, August 20. 2018

SEC Adopts Amendments to Simplify and Update Disclosure Requirements

On August 17th, the SEC voted to approve amendments to certain disclosure requirements that have become duplicative, overlapping, or outdated. These changes were proposed in light of other disclosure requirements, modifications to US-GAAP, or developments in the information environment. The SEC is also referring to the Financial Accounting Standards Board (FASB) particular disclosure requirements that overlap with but require information incremental to GAAP. These requirements will be considered for incorporation into US GAAP.

Continue reading "SEC Adopts Amendments to Simplify and Update..." »
Posted by
The Novaworks Team
in FASB News, IFRS Taxonomy, SEC, US GAAP Taxonomy at 17:46

Friday, August 17. 2018

LDC #98: Conditionals, If You Want Me To

Language directives allow you to change the code the programming language sees when it runs. We’ve talked a little bit about directives before, but today I will take a look at a subset of directives: conditionals. Conditionals allow a programmer to add or remove sections of code based on the existence of other directives. This means that it’s easy to build larger suites of code while allowing sections of code to be taken out without causing errors during runtime.


Continue reading "LDC #98: Conditionals, If You Want Me To" »
Posted by
Joshua Kwiatkowski
in Development at 17:40

Friday, August 10. 2018

LDC #97: Creating a Filing Calendar

Everyone in the EDGAR industry has experienced the customer who wants to know what the filing deadline is. For most companies the deadlines are easily found using a search engine. But what happens when your customer has an unusual fiscal year end? You can scramble to figure it out or you can just plug numbers into this week’s blog script does all the date calculations for you.

Continue reading "LDC #97: Creating a Filing Calendar" »
Posted by
David Theis
in Development at 14:37

Friday, August 03. 2018

LDC #96: Data Compression - Part I

Various forms of data compression are employed all over the computing world. In many instances, you may need to read compressed data or create your own. This article is the first in a series about data compression and the tools available within Legato. We will start with an overview and then dive into the ubiquitous zip method by creating a little program to zip a project.


Continue reading "LDC #96: Data Compression - Part I" »
Posted by
Scott Theis
in Development at 14:40

Wednesday, August 01. 2018

SEC Proposes Rules to Simplify and Streamline Disclosures in Certain Registered Debt Offerings

The SEC proposed rule amendments on July 24th to simplify and streamline the financial disclosure requirements applicable to registered debt offerings. These debt offerings are for guarantors and issuers of guaranteed securities, as well as for affiliates whose securities collateralize a registrant’s securities. The proposed amendments pertain to Rules 3-10 and 3-16 of Regulation S-X.

Continue reading "SEC Proposes Rules to Simplify and Streamline..." »
Posted by
The Novaworks Team
in SEC at 09:55

Monday, July 30. 2018

SEC Adopts Rules to Enhance Transparency and Oversight of Alternative Trading Systems

On July 18th, the SEC announced it will adopt amendments to Regulation ATS to enhance operational transparency and regulatory oversight of alternative trading systems (ATSs). This pertains to such systems that trade stocks listed on a national securities exchange (NMS Stock ATSs).

Continue reading "SEC Adopts Rules to Enhance Transparency and..." »
Posted by
The Novaworks Team
in EDGAR News, SEC at 14:35

Friday, July 27. 2018

LDC #95: Endnote to Footnote Mapper

This week, we’re going to take a closer look at a script that’s been in GoFiler for a while as a base script, but has been through several revisions. This script, the Endnotes to Footnotes converter, takes endnotes in an HTML file and moves them to the appropriate page in the HTML file. These endnotes are common if you have a Word file that has been converted to HTML, that had footnotes in it. They are often converted as endnotes, and putting them back where they belong can be annoying if you have to do it manually.


Continue reading "LDC #95: Endnote to Footnote Mapper" »
Posted by
Steven Horowitz
in Development at 17:40

Wednesday, July 25. 2018

SEC Adopts Final Rules to Modernize Offerings Pursuant to Compensatory Arrangements

On July 18th, the SEC issued final rules to amend the Securities Act Rule 701. Rule 701 provides an exemption from registration for securities issued by non-reporting companies pursuant to compensatory arrangements. The amendment increases the threshold of aggregate sales price or amount of securities sold in excess of which the issuer is required to deliver additional disclosures from $5 million to $10 million, in accordance with the Economic Growth, Regulatory Relief, and Consumer Protection Act.

Continue reading "SEC Adopts Final Rules to Modernize Offerings..." »
Posted by
The Novaworks Team
in SEC at 15:04

Friday, July 20. 2018

LDC #94: Taking Command Of GoFiler

Legato is an extremely powerful tool that allows you take control of GoFiler by helping you to automate tasks and giving you new features. In addition to Legato, GoFiler also includes a command line API, allowing you to perform some tasks without fully opening GoFiler. You can combine these features together to have GoFiler run Legato scripts from the command line interface. This means that your possibilities are actually endless for what you can accomplish. Today we are going to discuss extending your control over GoFiler by using the Windows command line to communicate directly with Legato, allowing you to write scripts that can span multiple computers.


Continue reading "LDC #94: Taking Command Of GoFiler" »
Posted by
Joshua Kwiatkowski
in Development at 18:04

Friday, July 13. 2018

LDC #93: Managing Memory in Legato

For this week’s blog we are going to shift from our usual discussions of what you can do with Legato to instead discuss how to make efficient Legato code. Like many scripting languages, in Legato you as the programmer typically do not need to worry about memory as the language takes care of a lot of it behind the scenes. That being said, you shouldn’t always ignore memory considerations when you write scripts. Doing so may result in a bad user experience or, even worse, unexpected failures. In this blog we will discuss some of the common pitfalls and how to avoid them.


Continue reading "LDC #93: Managing Memory in Legato" »
Posted by
David Theis
in Development at 09:42

Monday, July 09. 2018

SEC Releases EDGAR 18.2

On July 9, 2018, EDGAR Release 18.2 was released by the Securities and Exchange Commission. This release contains a number of changes to various EDGAR forms as well as support for the IFRS 2018 XBRL taxonomy.

Continue reading "SEC Releases EDGAR 18.2" »
Posted by
The Novaworks Team
in EDGAR News, SEC at 15:12

Friday, July 06. 2018

LDC #92: Capturing Images from the Clipboard

Occasionally I have had the need to serially capture images for later use. There are a number of utilities available, some free, with varying capabilities, that do this. Recently I was asked to try get download a bunch of photos from a site that had no simple way to download images. To accomplish this, I wrote a little script that lets a user capture images, presumably from a screenshot or from a right-click “Copy” command, and serially store them.

Continue reading "LDC #92: Capturing Images from the Clipboard" »
Posted by
The Novaworks Team
in Development at 10:54

Tuesday, July 03. 2018

SEC Expands the Scope of Smaller Public Companies that Qualify for Scaled Disclosures

During the June 28th Open Meeting, the SEC voted to expand the definition of “smaller reporting companies” (SRC) to allow for more companies to qualify for certain existing scaled disclosure accommodations. The SRC category was established in 2008 in an effort to provide greater regulatory relief for smaller companies, as SRCs can provide scaled disclosures under Regulations S-K and S-X.

Continue reading "SEC Expands the Scope of Smaller Public..." »
Posted by
The Novaworks Team
in SEC at 16:44

Monday, July 02. 2018

SEC Adopts Targeted Changes to Public Liquidity Risk Management Disclosure

The SEC voted on June 28th, 2018 to adopt amendments to public liquidity-related disclosure requirements for certain open-end funds. These funds must now discuss in their annual or semi-annual shareholder reports the operation and effectiveness of their liquidity risk management programs. This requirement replaces a quantitative end-of-period discussion of historic aggregate liquidity classification data for fund portfolios as part of Form N-PORT.

Continue reading "SEC Adopts Targeted Changes to Public Liquidity..." »
Posted by
The Novaworks Team
in SEC at 10:42

Friday, June 29. 2018

LDC #91: Find and Replace HTML Script Template

A pretty common task in any document editing environment is running find and replace operations. If you have a character that’s repeated, and you want to replace every instance of that character with a different character, then running a find and replace is the fastest way to do it. What happens if you need to execute these operations many times on different documents? You could run Find and Replace and type the information in each time but it’s often a much easier solution to just write a small Legato function. You can execute the Legato function from the Tools menu to run a common find and replace operation. I know in previous blog posts I’ve done similar scripts to replace wingdings characters with character entities, or to replace certain inline tags with other inline tags. For this week’s blog script, I took those previous scripts and made a more generic version, that can be easily modified by anyone to do different find and replace operations.


Continue reading "LDC #91: Find and Replace HTML Script Template" »
Posted by
Steven Horowitz
in Development at 14:49
« previous page   (Page 83 of 100, totaling 1496 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 May '25 Forward
Mo Tu We Th Fr Sa Su
Thursday, May 22. 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 Suite
  • SEC Exhibit Explorer
  • SEC Extractor
  • XBRLworks
  • Legato Scripting

Company

  • About Novaworks
  • News
  • Site Map
  • Support

Follow Us:

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