• 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

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

Thursday, June 28. 2018

SEC Mandates Inline XBRL

On June 28, 2018, the SEC voted to adopt amendments to the XBRL reporting requirements that would require registrants to use the Inline XBRL format for the submission of financial statement information and fund risk/return summary information.

Continue reading "SEC Mandates Inline XBRL" »
Posted by
The Novaworks Team
in EDGAR News, Filing Technology, SEC, US GAAP Taxonomy, XBRL at 11:58

SEC Approves Final Rules and Proposes New Requirements in Latest Open Meeting

On June 28, 2018, the SEC held an open meeting in which they presented several final, approved rules and new rule proposals. Taken together, these changes represent progress toward many of the Commission’s priorities.

Continue reading "SEC Approves Final Rules and Proposes New..." »
Posted by
The Novaworks Team
in SEC, XBRL at 11:44

Friday, June 22. 2018

SEC Publishes Draft Strategic Plan on Investors, Innovation, and Performance

On June 19, 2018, the SEC published a draft strategic plan that focuses on investors, innovation, and performance as top strategic goals in the coming years. This draft will guide the SEC’s policies and priorities through fiscal year 2022.

Continue reading "SEC Publishes Draft Strategic Plan on..." »
Posted by
The Novaworks Team
in SEC at 15:31

LDC #90: Emailing Collaboration Tasks

If you’re a long time reader of the developers corner, you may remember that last April I talked about using collaboration tasks in GoFiler through Legato. I shared a short script that read any tasks attached to a project upon opening a project and had Legato post the tasks in the Information View. Today I would like to present a modification to the script while introducing the email function. This script will also require a basic understanding of how HTML is formed and how CSS style data is stored in HTML.


Continue reading "LDC #90: Emailing Collaboration Tasks" »
Posted by
Joshua Kwiatkowski
in Development at 12:58

Friday, June 15. 2018

LDC #89: Automating Other Applications Through Legato Part 2

A few weeks back I wrote a blog about automating Internet Explorer using OLE and Legato. In that blog, I mentioned we would be adding more OLE automation capabilities as newer versions of GoFiler and Legato were released. Now that version 4.22c of the GoFiler line of products is out, the increased OLE automation functionality of Legato is available. Today I will discuss how to use it and give a small example of what it can do.

Continue reading "LDC #89: Automating Other Applications Through..." »
Posted by
David Theis
in Development at 16:24

Monday, June 11. 2018

XBRL US Data Quality Committee Approves Sixth Ruleset for IFRS and US GAAP Filings

On May 31, 2018 the XBRL US Center for Data Quality has released the sixth set of rules to provide guidance and aid for issuers in identifying errors in their XBRL SEC filings. The Data Quality Committee rules aim to help filers limit mistakes and avoid data inconsistencies that can adversely affect analysis of reported financial information. The sixth release of rules includes guidance for issuers using either the US-GAAP or IFRS taxonomies.

Continue reading "XBRL US Data Quality Committee Approves Sixth..." »
Posted by
The Novaworks Team
in Data Quality Committee, IFRS Taxonomy, SEC Filing Help, US GAAP Taxonomy at 11:06

Friday, June 08. 2018

LDC #88: Dialog Boxes Part IV — Combo Boxes

A combo box is a great tool to allow users to select options. Combo boxes, as the name implies, combine the functionality of an edit control with that of a list box. In this article we will look at the functionality of combo boxes and explore their implementations.

Continue reading "LDC #88: Dialog Boxes Part IV — Combo Boxes" »
Posted by
Scott Theis
in Development at 15:49

Thursday, June 07. 2018

XBRL US Seeks Input On XBRL For Earnings Announcements

XBRL US is seeking input from SEC-registered public companies as to the possibility of using XBRL for earnings announcements, either for a press release or a Form 8-K filing of an earnings announcement.

Continue reading "XBRL US Seeks Input On XBRL For Earnings..." »
Posted by
The Novaworks Team
in XBRL at 16:11

Tuesday, June 05. 2018

SEC Requests Comments on Fund Retail Investor Experience and Disclosure

On June 5, 2018, the SEC voted to improve the experience of investors who invest in mutual funds, exchange-traded funds, and other investment funds by releasing the Investment Company Disclosure and Delivery Rulemaking Package. This package contains three separate but related releases that are part of a long-term project led by the Division of Investment Management to explore the modernization of the design, delivery, and content of fund disclosures.

Continue reading "SEC Requests Comments on Fund Retail Investor..." »
Posted by
The Novaworks Team
in Investment Management, SEC at 15:37
« previous page   (Page 86 of 103, totaling 1532 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 August '25 Forward
Mo Tu We Th Fr Sa Su
Monday, August 25. 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