• 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, October 27. 2017

LDC #57: More CSS Property Editing With Legato

Last week, we explored editing SGML properties with Legato. By using some of the Legato SDK functions, we can read the properties of an SGML tag and change those properties to new values. This is pretty simple and straightforward. However, what if we want to do something based on a particular setting? For example, what if we want to employ an “Indent Body of Paragraph” function, where the first line of the paragraph doesn’t move but the subsequent lines are indented? We can’t simply read the indent value and add to it because we cannot guarantee that the same unit of measurement is being used. We need to read the unit, normalize it into a standard unit, add to it, convert it back to the original measurement style, and write it back out. It’s a bit more involved than simply setting properties, but it lets us perform some pretty interesting operations.


Continue reading "LDC #57: More CSS Property Editing With Legato" »
Posted by
Steven Horowitz
in Development at 17:23

Friday, October 20. 2017

LDC #56: Editing CSS Properties With Legato

In past blog posts, we’ve used Legato to remove HTML tags or to add new ones. One function we haven’t really explored is looking at a tag and changing its properties. Editing CSS properties with Legato is extremely powerful because it lets us change the document’s appearance in clean, interesting, and intelligent ways. This week’s script is a very basic but very powerful example of this concept.


Continue reading "LDC #56: Editing CSS Properties With Legato" »
Posted by
Steven Horowitz
in Development at 16:28

Wednesday, October 18. 2017

SEC Proposes FAST Act Modernization and Simplification of Regulation S-K

The SEC is proposing amendments to modernize and simplify certain disclosures requirements in Regulation S-K. These changes are based on the recommendations made in the staff’s Report on Modernization and Simplification of Regulation S-K, as required by Section 72003 of the Fixing America’s Surface Transportation Act (FAST Act). While modernizing Regulation S-K requirements and improving readability and navigability of related forms, these rules are also intended to reduce costs and burdens on registrants and discourage repetition and disclosure of immaterial information.

Continue reading "SEC Proposes FAST Act Modernization and..." »
Posted by
The Novaworks Team
in EDGAR News, SEC at 11:37

Friday, October 06. 2017

LDC #55: Protecting Your CCCs With Encryption Part 2

Last week, we covered a script that could take a single folder, search it, and encrypt (or redact) CCCs in project files and XML files. After thinking more about the problem, we realized that the script (while a good start) didn’t go far enough to solve the situation. First, the script only worked with EDGARLink Online XML and GFP files. Any file where the CCC appeared on a different line of the code than the tag declaring it a CCC would not have been obscured. Also, backup files created by GoFiler would not have been obscured. There are several ease of use items that should be addressed as well. The changes made to this newer version are enumerated below:


Continue reading "LDC #55: Protecting Your CCCs With Encryption..." »
Posted by
Steven Horowitz
in Development at 17:15

Friday, September 29. 2017

LDC #54: Protecting Your CCCs With Encryption

With the recent news about the SEC data breach, people are looking towards their own internal security practices to ensure they are handling their data responsibly and doing everything possible to prevent their own data breaches. In the financial document preparation and submission industry, one of the most common pieces of private data that is passed back and forth through email is a filer’s CCC. To file a document on behalf of a company, you only need their CIK (which is publicly available) and the CCC (which is not supposed to be publicly available). It follows then that if an unauthorized entity obtains a CCC, they could fraudulently file on a company’s behalf to the SEC. So it’s in your best interest to keep your CCC secret!


Continue reading "LDC #54: Protecting Your CCCs With Encryption" »
Posted by
Steven Horowitz
in Development at 17:35

Thursday, September 28. 2017

Good Security Practices: Simple Steps in Protecting Yourself from Cyber Intrusions

The recent breach at the SEC illustrates how prevalent internet cyberattacks have become. They are a ubiquitous threat, inherent to the information exchange the internet provides. Often times with little warning or even indication that the event is occurring, hackers can infiltrate secure systems and access nonpublic information that could be exploited or damaging to multiple parties. Particularly when it comes to EDGAR, a great deal of sensitive, private information is regularly exchanged between companies and the SEC. Should this information be accessed before it’s appropriate, it could lead to all sorts of undesirable consequences. Even something as simple as prior knowledge of the type of form a company is in the process of filing can result in unwanted outcomes. Therefore, it’s essential that we as filers, filing agents, and other involved parties protect ourselves from unwanted intrusions.

Continue reading "Good Security Practices: Simple Steps in..." »
Posted by
The Novaworks Team
in EDGAR News, Filing Technology, SEC Filing Help at 11:28

Wednesday, September 27. 2017

SEC Releases Interpretive Guidance on Pay Ratio Rule

On September 21st, the SEC approved sets of interpretive guidelines to assist companies in their efforts to comply with the pay ratio disclosure mandate. This mandate comes from Section 953(b) of the Dodd-Frank Wall Street Reform and Consumer Protection Act, and companies are required to begin making pay ratio disclosures in early 2018.

Continue reading "SEC Releases Interpretive Guidance on Pay Ratio..." »
Posted by
The Novaworks Team
in SEC, SEC Filing Help at 09:40

Monday, September 25. 2017

SEC To Host Compliance Outreach Program for Municipal Advisors

The Securities and Exchange Commission (SEC), the Municipal Securities Rulemaking Board (MSRB), and the Financial Industry Regulatory Authority (FINRA) opened registration for the Compliance Outreach Program for Municipal Advisors earlier this month.

Continue reading "SEC To Host Compliance Outreach Program for..." »
Posted by
The Novaworks Team
in Events, SEC at 11:20

Friday, September 22. 2017

LDC #53: Translate Post Process

If you’re interested in automating certain aspects of document conversion, then look no further. The TranslateSetPostProcessHook function in Legato is what you need. Added in GoFiler 4.20a, this function allows any direct import or insert from a file action to be post processed by a custom script.

Continue reading "LDC #53: Translate Post Process" »
Posted by
Scott Theis
in Development at 17:10

Thursday, September 21. 2017

SEC Indicates EDGAR System Was Hacked in 2016 and Releases Statement on Cybersecurity

On September 20th, the SEC indicated that a cybersecurity breach that occurred in 2016 may have provided the basis through which cyber threat actors achieved illicit gains. Accordingly, SEC Chairman Jay Clayton issued a statement detailing the importance of cybersecurity to the agency and market participants. The statement also reviews the SEC’s approach to cybersecurity in an effort to mitigate the risk of further incidents.

Continue reading "SEC Indicates EDGAR System Was Hacked in 2016..." »
Posted by
The Novaworks Team
in EDGAR News, SEC at 13:35

Friday, September 15. 2017

LDC #52: How to Make Your Script Secure

Legato is a tool that allows you as a developer to do almost anything you want: change registry keys, move files around, and create or delete application setting files. Because there’s a great deal of power behind Legato, sometimes we want our scripts to be run by only certain people, perhaps, for example, only by company IT members. How do we make it so that a script can be deployed globally in a company but yet make it so that only some people can run it? The answer lies in using the power of Legato to secure our scripts.

Continue reading "LDC #52: How to Make Your Script Secure" »
Posted by
Joshua Kwiatkowski
in Development at 17:35

Wednesday, September 13. 2017

SunSpec Alliance and XBRL US Announce Public Review of Orange Button Solar Data Standards

On September 12th, 2017, SunSpec Alliance and XBRL US announced the launch of a 30-day public review period on the initial draft of the Orange Button taxonomy for solar financing.

Continue reading "SunSpec Alliance and XBRL US Announce Public..." »
Posted by
The Novaworks Team
in Filing Technology, Information Technology, XBRL at 10:25

Monday, September 11. 2017

SEC Releases EDGAR 17.3

On September 11, 2017, EDGAR 17.3 was released by the Securities and Exchange Commission. This release introduces a pilot phase for the N-PORT and N-CEN EDGAR forms. Additionally, a number of forms were adjusted to allow co-registrants to designate whether they are an Emerging Growth Company.

Continue reading "SEC Releases EDGAR 17.3" »
Posted by
The Novaworks Team
in EDGAR News, SEC at 09:50

Friday, September 08. 2017

LDC #51: Streamlining Document Creation with Templates

HTML is the primary document type submitted to the SEC now. Every filing needs to have a primary document, and that primary document is almost always an HTML file. Because EDGAR HTML is a very specific type of HTML, you need special tools to create and convert these documents. Software packages like GoFiler exist to make this process as easy as possible, but in the end it still involves some level of user interaction to convert the document from a source file, make sure it converted alright, fix any issues, proof it, and either submit it or send it back to the client. Well, using Legato, we can cut a few steps out of that by making an HTML template that’s filled in with data populated from a data file!


Continue reading "LDC #51: Streamlining Document Creation with..." »
Posted by
Steven Horowitz
in Development at 17:14

Wednesday, September 06. 2017

SEC Names New Directors for the Division of Economic and Risk Analysis and the Division of Investment Management

On August 31, 2017, the SEC named Jeffrey Harris as Director of the Division of Economic and Risk Analysis (DERA). The Commission also named Dalia Blass as Director of the Division of Investment Management.

Continue reading "SEC Names New Directors for the Division of..." »
Posted by
The Novaworks Team
in DERA, Investment Management, SEC at 17:55
« previous page   (Page 88 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