Skip to content

Commit

Permalink
!BREAKING. Change project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
rendertom committed Aug 21, 2020
1 parent 1a66f72 commit 8b99a9f
Show file tree
Hide file tree
Showing 36 changed files with 89 additions and 134 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "extendscript-debug",
"request": "launch",
"name": "Ask for script name",
"program": "${workspaceFolder}/_testing/${command:AskForScriptName}",
"stopOnEntry": false
}
]
}
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ endif
# Internal variables.
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) docs
# the i18n builder cannot share the environment and doctrees with the others
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) docs

.PHONY: help
help:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.. highlight:: javascript

.. Productions:
.. Production:
Production
==========
Production object
===================

``app.production``

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
67 changes: 67 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
============================================
Welcome to the Premiere Pro Scripting Guide!
============================================

.. toctree::
:maxdepth: 2
:caption: Introduction

introduction/index
introduction/changelog
introduction/extendscript-overview
introduction/how-to-execute-scripts

.. toctree::
:maxdepth: 2
:caption: Application

application/application

.. toctree::
:maxdepth: 2
:caption: General

general/anywhere
general/encoder
general/marker
general/metadata
general/production
general/project
general/projectmanager
general/sourcemonitor

.. toctree::
:maxdepth: 2
:caption: Item

item/projectitem
item/trackitem

.. toctree::
:maxdepth: 2
:caption: Sequence

sequence/component
sequence/componentparam
sequence/sequence
sequence/track

.. toctree::
:maxdepth: 2
:caption: Other

other/audiochannelmapping
other/time

.. toctree::
:maxdepth: 2
:caption: Collection

collection/collection
collection/componentcollection
collection/markercollection
collection/projectcollection
collection/projectitemcollection
collection/sequencecollection
collection/trackcollection
collection/trackitemcollection
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
127 changes: 0 additions & 127 deletions index.rst

This file was deleted.

4 changes: 2 additions & 2 deletions make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% docs
set I18NSPHINXOPTS=%SPHINXOPTS% docs
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS%
set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS%
Expand Down

0 comments on commit 8b99a9f

Please sign in to comment.