summaryrefslogtreecommitdiff
path: root/src/select/assets.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/select/assets.py')
-rw-r--r--src/select/assets.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/select/assets.py b/src/select/assets.py
new file mode 100644
index 0000000..67c6b6b
--- /dev/null
+++ b/src/select/assets.py
@@ -0,0 +1,30 @@
+# This file is part of LibCSS.
+# Licensed under the MIT License,
+# http://www.opensource.org/licenses/mit-license.php
+# Copyright 2017 Lucas Neves <lcneves@gmail.com>
+
+copyright = '''\
+/*
+ * This file is part of LibCSS
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2017 The NetSurf Project
+ */
+'''
+
+assets = {}
+
+assets['computed.h'] = {}
+assets['computed.h']['header'] = copyright
+assets['computed.h']['footer'] = ''
+
+assets['propset.h'] = {}
+assets['propset.h']['header'] = copyright + '''
+/** Default values are 'initial value', unless the property is inherited,
+ * in which case it is 'inherit'. */'''
+assets['propset.h']['footer'] = ''
+
+assets['propget.h'] = {}
+assets['propget.h']['header'] = copyright
+assets['propget.h']['footer'] = ''
+