annotate rhodecode/public/js/mode/rpm/spec/index.html @ 4026:a60a0e9092c6

added codemirror edit mode with autodetection
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 20 Jun 2013 23:53:18 +0200
parents
children c9bcfe2d2ade
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4026
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 <!doctype html>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2 <html>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
3 <head>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4 <meta charset="utf-8">
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5 <title>CodeMirror: RPM spec mode</title>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
6 <link rel="stylesheet" href="../../../lib/codemirror.css">
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7 <script src="../../../lib/codemirror.js"></script>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8 <script src="spec.js"></script>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
9 <link rel="stylesheet" href="spec.css">
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
10 <link rel="stylesheet" href="../../../doc/docs.css">
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
11 <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
12 </head>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
13 <body>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
14 <h1>CodeMirror: RPM spec mode</h1>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
15
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
16 <div><textarea id="code" name="code">
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
17 #
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
18 # spec file for package minidlna
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
19 #
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
20 # Copyright (c) 2011, Sascha Peilicke <saschpe@gmx.de>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
21 #
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
22 # All modifications and additions to the file contributed by third parties
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
23 # remain the property of their copyright owners, unless otherwise agreed
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
24 # upon. The license for this file, and modifications and additions to the
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
25 # file, is the same license as for the pristine package itself (unless the
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
26 # license for the pristine package is not an Open Source License, in which
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
27 # case the license is the MIT License). An "Open Source License" is a
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
28 # license that conforms to the Open Source Definition (Version 1.9)
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
29 # published by the Open Source Initiative.
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
30
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
31
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
32 Name: libupnp6
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
33 Version: 1.6.13
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
34 Release: 0
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
35 Summary: Portable Universal Plug and Play (UPnP) SDK
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
36 Group: System/Libraries
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
37 License: BSD-3-Clause
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
38 Url: http://sourceforge.net/projects/pupnp/
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
39 Source0: http://downloads.sourceforge.net/pupnp/libupnp-%{version}.tar.bz2
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
40 BuildRoot: %{_tmppath}/%{name}-%{version}-build
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
41
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
42 %description
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
43 The portable Universal Plug and Play (UPnP) SDK provides support for building
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
44 UPnP-compliant control points, devices, and bridges on several operating
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
45 systems.
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
46
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
47 %package -n libupnp-devel
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
48 Summary: Portable Universal Plug and Play (UPnP) SDK
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
49 Group: Development/Libraries/C and C++
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
50 Provides: pkgconfig(libupnp)
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
51 Requires: %{name} = %{version}
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
52
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
53 %description -n libupnp-devel
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
54 The portable Universal Plug and Play (UPnP) SDK provides support for building
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
55 UPnP-compliant control points, devices, and bridges on several operating
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
56 systems.
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
57
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
58 %prep
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
59 %setup -n libupnp-%{version}
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
60
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
61 %build
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
62 %configure --disable-static
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
63 make %{?_smp_mflags}
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
64
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
65 %install
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
66 %makeinstall
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
67 find %{buildroot} -type f -name '*.la' -exec rm -f {} ';'
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
68
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
69 %post -p /sbin/ldconfig
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
70
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
71 %postun -p /sbin/ldconfig
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
72
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
73 %files
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
74 %defattr(-,root,root,-)
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
75 %doc ChangeLog NEWS README TODO
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
76 %{_libdir}/libixml.so.*
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
77 %{_libdir}/libthreadutil.so.*
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
78 %{_libdir}/libupnp.so.*
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
79
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
80 %files -n libupnp-devel
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
81 %defattr(-,root,root,-)
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
82 %{_libdir}/pkgconfig/libupnp.pc
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
83 %{_libdir}/libixml.so
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
84 %{_libdir}/libthreadutil.so
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
85 %{_libdir}/libupnp.so
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
86 %{_includedir}/upnp/
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
87
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
88 %changelog</textarea></div>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
89 <script>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
90 var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
91 mode: {name: "spec"},
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
92 lineNumbers: true,
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
93 indentUnit: 4
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
94 });
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
95 </script>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
96
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
97 <p><strong>MIME types defined:</strong> <code>text/x-rpm-spec</code>.</p>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
98 </body>
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
99 </html>