Galleriffic 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.DS_Store +0 -0
- data/.gitignore +17 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/Galleriffic.iml +20 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +5 -0
- data/.idea/modules.xml +9 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/vcs.xml +7 -0
- data/.idea/workspace.xml +471 -0
- data/Galleriffic.gemspec +24 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +34 -0
- data/Rakefile +1 -0
- data/lib/.DS_Store +0 -0
- data/lib/Galleriffic/version.rb +3 -0
- data/lib/Galleriffic.rb +6 -0
- data/vendor/.DS_Store +0 -0
- data/vendor/assets/.DS_Store +0 -0
- data/vendor/assets/javascripts/.DS_Store +0 -0
- data/vendor/assets/javascripts/jquery-1.3.2.js +4376 -0
- data/vendor/assets/javascripts/jquery.galleriffic.js +979 -0
- data/vendor/assets/javascripts/jquery.history.js +168 -0
- data/vendor/assets/javascripts/jquery.opacityrollover.js +42 -0
- data/vendor/assets/javascripts/jush.js +515 -0
- data/vendor/assets/stylesheets/.DS_Store +0 -0
- data/vendor/assets/stylesheets/basic.css +63 -0
- data/vendor/assets/stylesheets/black.css +57 -0
- data/vendor/assets/stylesheets/caption.png +0 -0
- data/vendor/assets/stylesheets/galleriffic-1.css +161 -0
- data/vendor/assets/stylesheets/galleriffic-2.css +150 -0
- data/vendor/assets/stylesheets/galleriffic-3.css +150 -0
- data/vendor/assets/stylesheets/galleriffic-4.css +160 -0
- data/vendor/assets/stylesheets/galleriffic-5.css +197 -0
- data/vendor/assets/stylesheets/jush.css +29 -0
- data/vendor/assets/stylesheets/loader.gif +0 -0
- data/vendor/assets/stylesheets/loaderWhite.gif +0 -0
- data/vendor/assets/stylesheets/nextPageArrow.gif +0 -0
- data/vendor/assets/stylesheets/nextPageArrowWhite.gif +0 -0
- data/vendor/assets/stylesheets/prevPageArrow.gif +0 -0
- data/vendor/assets/stylesheets/prevPageArrowWhite.gif +0 -0
- data/vendor/assets/stylesheets/white.css +57 -0
- metadata +121 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7bb7b425d96529bb0b0eb48f9fcd422ae75e5656
|
4
|
+
data.tar.gz: ce4d7720ed6b246c6e01d2967e2dac54950d6f31
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 67403275fce3ca2aa3dc9e532a7115e0ba4fb65e91354d9f0cbcfd1c07f436665fa6628df3b99496744662388ec1937acb4b199e0b8031d8f7e5514de2006984
|
7
|
+
data.tar.gz: 14afa835887ccd01314af90e03796a9c1877306d435b0952f753a3e57652d1ece4e1b1199f2b3e107af32afe0bd4a0ad4e18319de95d9202547020122e380ff4
|
data/.DS_Store
ADDED
Binary file
|
data/.gitignore
ADDED
data/.idea/.name
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Galleriffic
|
data/.idea/.rakeTasks
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
+
You are allowed to:
|
4
|
+
1. Remove rake task
|
5
|
+
2. Add existing rake tasks
|
6
|
+
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
+
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build Galleriffic-0.0.1.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Build and install Galleriffic-0.0.1.gem into system gems" fullCmd="install" taksId="install" /><RakeTask description="Create tag v0.0.1 and build and push Galleriffic-0.0.1.gem to Rubygems" fullCmd="release" taksId="release" /></RakeGroup></Settings>
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="FacetManager">
|
4
|
+
<facet type="gem" name="Gem">
|
5
|
+
<configuration>
|
6
|
+
<option name="GEM_APP_ROOT_PATH" value="$MODULE_DIR$" />
|
7
|
+
<option name="GEM_APP_TEST_PATH" value="" />
|
8
|
+
<option name="GEM_APP_LIB_PATH" value="$MODULE_DIR$/lib" />
|
9
|
+
</configuration>
|
10
|
+
</facet>
|
11
|
+
</component>
|
12
|
+
<component name="NewModuleRootManager">
|
13
|
+
<content url="file://$MODULE_DIR$" />
|
14
|
+
<orderEntry type="inheritedJdk" />
|
15
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.3.5, RVM: ruby-2.0.0-p195) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.1.0, RVM: ruby-2.0.0-p195) [gem]" level="application" />
|
18
|
+
</component>
|
19
|
+
</module>
|
20
|
+
|
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
data/.idea/modules.xml
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ProjectModuleManager">
|
4
|
+
<modules>
|
5
|
+
<module fileurl="file://$PROJECT_DIR$/.idea/Galleriffic.iml" filepath="$PROJECT_DIR$/.idea/Galleriffic.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|
9
|
+
|
data/.idea/vcs.xml
ADDED
data/.idea/workspace.xml
ADDED
@@ -0,0 +1,471 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="ChangeListManager">
|
4
|
+
<list default="true" id="96341361-d1a0-4aad-98bf-89c6f1ab3f43" name="Default" comment="" />
|
5
|
+
<ignored path="Galleriffic.iws" />
|
6
|
+
<ignored path=".idea/workspace.xml" />
|
7
|
+
<file path="/Dummy.txt" changelist="96341361-d1a0-4aad-98bf-89c6f1ab3f43" time="1383437031541" ignored="false" />
|
8
|
+
<file path="/Galleriffic.gemspec" changelist="96341361-d1a0-4aad-98bf-89c6f1ab3f43" time="1383437580675" ignored="false" />
|
9
|
+
<option name="TRACKING_ENABLED" value="true" />
|
10
|
+
<option name="SHOW_DIALOG" value="false" />
|
11
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
12
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
13
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
14
|
+
</component>
|
15
|
+
<component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
|
16
|
+
<component name="CreatePatchCommitExecutor">
|
17
|
+
<option name="PATCH_PATH" value="" />
|
18
|
+
</component>
|
19
|
+
<component name="DaemonCodeAnalyzer">
|
20
|
+
<disable_hints />
|
21
|
+
</component>
|
22
|
+
<component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
|
23
|
+
<component name="FavoritesManager">
|
24
|
+
<favorites_list name="Galleriffic" />
|
25
|
+
</component>
|
26
|
+
<component name="FileEditorManager">
|
27
|
+
<leaf>
|
28
|
+
<file leaf-file-name="Galleriffic.gemspec" pinned="false" current="true" current-in-tab="true">
|
29
|
+
<entry file="file://$PROJECT_DIR$/Galleriffic.gemspec">
|
30
|
+
<provider selected="true" editor-type-id="text-editor">
|
31
|
+
<state line="6" column="24" selection-start="203" selection-end="214" vertical-scroll-proportion="0.25641027">
|
32
|
+
<folding />
|
33
|
+
</state>
|
34
|
+
</provider>
|
35
|
+
</entry>
|
36
|
+
</file>
|
37
|
+
<file leaf-file-name="Galleriffic.rb" pinned="false" current="false" current-in-tab="false">
|
38
|
+
<entry file="file://$PROJECT_DIR$/lib/Galleriffic.rb">
|
39
|
+
<provider selected="true" editor-type-id="text-editor">
|
40
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
41
|
+
<folding />
|
42
|
+
</state>
|
43
|
+
</provider>
|
44
|
+
</entry>
|
45
|
+
</file>
|
46
|
+
<file leaf-file-name="README.md" pinned="false" current="false" current-in-tab="false">
|
47
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
48
|
+
<provider selected="true" editor-type-id="text-editor">
|
49
|
+
<state line="32" column="67" selection-start="959" selection-end="959" vertical-scroll-proportion="0.0">
|
50
|
+
<folding />
|
51
|
+
</state>
|
52
|
+
</provider>
|
53
|
+
</entry>
|
54
|
+
</file>
|
55
|
+
<file leaf-file-name="jquery.history.js" pinned="false" current="false" current-in-tab="false">
|
56
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/javascripts/jquery.history.js">
|
57
|
+
<provider selected="true" editor-type-id="text-editor">
|
58
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
59
|
+
<folding>
|
60
|
+
<marker date="1258210238000" expanded="false" signature="1087:1101" placeholder="..." />
|
61
|
+
</folding>
|
62
|
+
</state>
|
63
|
+
</provider>
|
64
|
+
</entry>
|
65
|
+
</file>
|
66
|
+
<file leaf-file-name="jquery.opacityrollover.js" pinned="false" current="false" current-in-tab="false">
|
67
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/javascripts/jquery.opacityrollover.js">
|
68
|
+
<provider selected="true" editor-type-id="text-editor">
|
69
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
70
|
+
<folding>
|
71
|
+
<element signature="n#!!doc" expanded="true" />
|
72
|
+
</folding>
|
73
|
+
</state>
|
74
|
+
</provider>
|
75
|
+
</entry>
|
76
|
+
</file>
|
77
|
+
<file leaf-file-name="Gemfile" pinned="false" current="false" current-in-tab="false">
|
78
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
79
|
+
<provider selected="true" editor-type-id="text-editor">
|
80
|
+
<state line="4" column="7" selection-start="96" selection-end="96" vertical-scroll-proportion="0.0">
|
81
|
+
<folding />
|
82
|
+
</state>
|
83
|
+
</provider>
|
84
|
+
</entry>
|
85
|
+
</file>
|
86
|
+
<file leaf-file-name="jush.js" pinned="false" current="false" current-in-tab="false">
|
87
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/javascripts/jush.js">
|
88
|
+
<provider selected="true" editor-type-id="text-editor">
|
89
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
90
|
+
<folding />
|
91
|
+
</state>
|
92
|
+
</provider>
|
93
|
+
</entry>
|
94
|
+
</file>
|
95
|
+
</leaf>
|
96
|
+
</component>
|
97
|
+
<component name="FindManager">
|
98
|
+
<FindUsagesManager>
|
99
|
+
<setting name="OPEN_NEW_TAB" value="false" />
|
100
|
+
</FindUsagesManager>
|
101
|
+
</component>
|
102
|
+
<component name="Git.Settings">
|
103
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
104
|
+
</component>
|
105
|
+
<component name="GitLogSettings">
|
106
|
+
<option name="myDateState">
|
107
|
+
<MyDateState />
|
108
|
+
</option>
|
109
|
+
</component>
|
110
|
+
<component name="IdeDocumentHistory">
|
111
|
+
<option name="changedFiles">
|
112
|
+
<list>
|
113
|
+
<option value="$PROJECT_DIR$/Galleriffic.gemspec" />
|
114
|
+
<option value="$PROJECT_DIR$/README.md" />
|
115
|
+
</list>
|
116
|
+
</option>
|
117
|
+
</component>
|
118
|
+
<component name="ProjectFrameBounds">
|
119
|
+
<option name="x" value="-54" />
|
120
|
+
<option name="y" value="49" />
|
121
|
+
<option name="width" value="1280" />
|
122
|
+
<option name="height" value="487" />
|
123
|
+
</component>
|
124
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
125
|
+
<OptionsSetting value="true" id="Add" />
|
126
|
+
<OptionsSetting value="true" id="Remove" />
|
127
|
+
<OptionsSetting value="true" id="Checkout" />
|
128
|
+
<OptionsSetting value="true" id="Update" />
|
129
|
+
<OptionsSetting value="true" id="Status" />
|
130
|
+
<OptionsSetting value="true" id="Edit" />
|
131
|
+
<ConfirmationsSetting value="0" id="Add" />
|
132
|
+
<ConfirmationsSetting value="0" id="Remove" />
|
133
|
+
</component>
|
134
|
+
<component name="ProjectReloadState">
|
135
|
+
<option name="STATE" value="0" />
|
136
|
+
</component>
|
137
|
+
<component name="ProjectView">
|
138
|
+
<navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
|
139
|
+
<flattenPackages />
|
140
|
+
<showMembers />
|
141
|
+
<showModules />
|
142
|
+
<showLibraryContents />
|
143
|
+
<hideEmptyPackages />
|
144
|
+
<abbreviatePackageNames />
|
145
|
+
<autoscrollToSource />
|
146
|
+
<autoscrollFromSource />
|
147
|
+
<sortByType />
|
148
|
+
</navigator>
|
149
|
+
<panes>
|
150
|
+
<pane id="Scope" />
|
151
|
+
<pane id="ProjectPane">
|
152
|
+
<subPane>
|
153
|
+
<PATH>
|
154
|
+
<PATH_ELEMENT>
|
155
|
+
<option name="myItemId" value="Galleriffic" />
|
156
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
157
|
+
</PATH_ELEMENT>
|
158
|
+
</PATH>
|
159
|
+
<PATH>
|
160
|
+
<PATH_ELEMENT>
|
161
|
+
<option name="myItemId" value="Galleriffic" />
|
162
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
163
|
+
</PATH_ELEMENT>
|
164
|
+
<PATH_ELEMENT>
|
165
|
+
<option name="myItemId" value="Galleriffic" />
|
166
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
167
|
+
</PATH_ELEMENT>
|
168
|
+
</PATH>
|
169
|
+
<PATH>
|
170
|
+
<PATH_ELEMENT>
|
171
|
+
<option name="myItemId" value="Galleriffic" />
|
172
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
173
|
+
</PATH_ELEMENT>
|
174
|
+
<PATH_ELEMENT>
|
175
|
+
<option name="myItemId" value="Galleriffic" />
|
176
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
177
|
+
</PATH_ELEMENT>
|
178
|
+
<PATH_ELEMENT>
|
179
|
+
<option name="myItemId" value="vendor" />
|
180
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
181
|
+
</PATH_ELEMENT>
|
182
|
+
<PATH_ELEMENT>
|
183
|
+
<option name="myItemId" value="assets" />
|
184
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
185
|
+
</PATH_ELEMENT>
|
186
|
+
<PATH_ELEMENT>
|
187
|
+
<option name="myItemId" value="stylesheets" />
|
188
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
189
|
+
</PATH_ELEMENT>
|
190
|
+
</PATH>
|
191
|
+
<PATH>
|
192
|
+
<PATH_ELEMENT>
|
193
|
+
<option name="myItemId" value="Galleriffic" />
|
194
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
195
|
+
</PATH_ELEMENT>
|
196
|
+
<PATH_ELEMENT>
|
197
|
+
<option name="myItemId" value="Galleriffic" />
|
198
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
199
|
+
</PATH_ELEMENT>
|
200
|
+
<PATH_ELEMENT>
|
201
|
+
<option name="myItemId" value="vendor" />
|
202
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
203
|
+
</PATH_ELEMENT>
|
204
|
+
<PATH_ELEMENT>
|
205
|
+
<option name="myItemId" value="assets" />
|
206
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
207
|
+
</PATH_ELEMENT>
|
208
|
+
<PATH_ELEMENT>
|
209
|
+
<option name="myItemId" value="javascripts" />
|
210
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
211
|
+
</PATH_ELEMENT>
|
212
|
+
</PATH>
|
213
|
+
<PATH>
|
214
|
+
<PATH_ELEMENT>
|
215
|
+
<option name="myItemId" value="Galleriffic" />
|
216
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
|
217
|
+
</PATH_ELEMENT>
|
218
|
+
<PATH_ELEMENT>
|
219
|
+
<option name="myItemId" value="Galleriffic" />
|
220
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
221
|
+
</PATH_ELEMENT>
|
222
|
+
<PATH_ELEMENT>
|
223
|
+
<option name="myItemId" value="lib" />
|
224
|
+
<option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" />
|
225
|
+
</PATH_ELEMENT>
|
226
|
+
</PATH>
|
227
|
+
</subPane>
|
228
|
+
</pane>
|
229
|
+
</panes>
|
230
|
+
</component>
|
231
|
+
<component name="PropertiesComponent">
|
232
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
233
|
+
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
234
|
+
</component>
|
235
|
+
<component name="RecentsManager">
|
236
|
+
<key name="MoveFile.RECENT_KEYS">
|
237
|
+
<recent name="$PROJECT_DIR$/vendor/assets/javascripts" />
|
238
|
+
</key>
|
239
|
+
</component>
|
240
|
+
<component name="RunManager">
|
241
|
+
<configuration default="true" type="RubyRunConfigurationType" factoryName="Ruby">
|
242
|
+
<module name="" />
|
243
|
+
<RUBY_RUN_CONFIG NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
|
244
|
+
<RUBY_RUN_CONFIG NAME="WORK DIR" VALUE="" />
|
245
|
+
<RUBY_RUN_CONFIG NAME="SHOULD_USE_SDK" VALUE="false" />
|
246
|
+
<RUBY_RUN_CONFIG NAME="ALTERN_SDK_NAME" VALUE="" />
|
247
|
+
<RUBY_RUN_CONFIG NAME="myPassParentEnvs" VALUE="true" />
|
248
|
+
<envs />
|
249
|
+
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
|
250
|
+
<EXTENSION ID="JRubyRunConfigurationExtension" />
|
251
|
+
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
252
|
+
<COVERAGE_PATTERN ENABLED="true">
|
253
|
+
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
254
|
+
</COVERAGE_PATTERN>
|
255
|
+
</EXTENSION>
|
256
|
+
<EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
|
257
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_PATH" VALUE="" />
|
258
|
+
<RUBY_RUN_CONFIG NAME="SCRIPT_ARGS" VALUE="" />
|
259
|
+
<method />
|
260
|
+
</configuration>
|
261
|
+
<list size="0" />
|
262
|
+
</component>
|
263
|
+
<component name="ShelveChangesManager" show_recycled="false" />
|
264
|
+
<component name="TaskManager">
|
265
|
+
<task active="true" id="Default" summary="Default task">
|
266
|
+
<changelist id="96341361-d1a0-4aad-98bf-89c6f1ab3f43" name="Default" comment="" />
|
267
|
+
<created>1383283632881</created>
|
268
|
+
<updated>1383283632881</updated>
|
269
|
+
</task>
|
270
|
+
<servers />
|
271
|
+
</component>
|
272
|
+
<component name="ToolWindowManager">
|
273
|
+
<frame x="-54" y="49" width="1280" height="487" extended-state="0" />
|
274
|
+
<editor active="true" />
|
275
|
+
<layout>
|
276
|
+
<window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
277
|
+
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
278
|
+
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
279
|
+
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
280
|
+
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.2617504" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
281
|
+
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
282
|
+
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
283
|
+
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
|
284
|
+
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
285
|
+
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
286
|
+
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
287
|
+
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
288
|
+
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
289
|
+
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
290
|
+
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
291
|
+
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
292
|
+
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
293
|
+
</layout>
|
294
|
+
</component>
|
295
|
+
<component name="VcsContentAnnotationSettings">
|
296
|
+
<option name="myLimit" value="2678400000" />
|
297
|
+
</component>
|
298
|
+
<component name="VcsManagerConfiguration">
|
299
|
+
<option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
|
300
|
+
<option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" />
|
301
|
+
<option name="CHECK_NEW_TODO" value="true" />
|
302
|
+
<option name="myTodoPanelSettings">
|
303
|
+
<value>
|
304
|
+
<are-packages-shown value="false" />
|
305
|
+
<are-modules-shown value="false" />
|
306
|
+
<flatten-packages value="false" />
|
307
|
+
<is-autoscroll-to-source value="false" />
|
308
|
+
</value>
|
309
|
+
</option>
|
310
|
+
<option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
|
311
|
+
<option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
|
312
|
+
<option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
|
313
|
+
<option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
|
314
|
+
<option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
|
315
|
+
<option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
|
316
|
+
<option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
|
317
|
+
<option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
|
318
|
+
<option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
|
319
|
+
<option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
|
320
|
+
<option name="DEFAULT_PATCH_EXTENSION" value="patch" />
|
321
|
+
<option name="SHORT_DIFF_HORIZONTALLY" value="true" />
|
322
|
+
<option name="SHORT_DIFF_EXTRA_LINES" value="2" />
|
323
|
+
<option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
|
324
|
+
<option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
|
325
|
+
<option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
|
326
|
+
<option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
|
327
|
+
<option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
|
328
|
+
<option name="SHOW_DIRTY_RECURSIVELY" value="false" />
|
329
|
+
<option name="LIMIT_HISTORY" value="true" />
|
330
|
+
<option name="MAXIMUM_HISTORY_ROWS" value="1000" />
|
331
|
+
<option name="UPDATE_FILTER_SCOPE_NAME" />
|
332
|
+
<option name="USE_COMMIT_MESSAGE_MARGIN" value="false" />
|
333
|
+
<option name="COMMIT_MESSAGE_MARGIN_SIZE" value="72" />
|
334
|
+
<option name="WRAP_WHEN_TYPING_REACHES_RIGHT_MARGIN" value="false" />
|
335
|
+
<option name="FORCE_NON_EMPTY_COMMENT" value="false" />
|
336
|
+
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
|
337
|
+
<option name="LAST_COMMIT_MESSAGE" />
|
338
|
+
<option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
|
339
|
+
<option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
|
340
|
+
<option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
|
341
|
+
<option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
|
342
|
+
<option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
|
343
|
+
<option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
|
344
|
+
<option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
|
345
|
+
<option name="ACTIVE_VCS_NAME" />
|
346
|
+
<option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
|
347
|
+
<option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
|
348
|
+
<option name="UPDATE_FILTER_BY_SCOPE" value="false" />
|
349
|
+
<option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
|
350
|
+
<option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
|
351
|
+
</component>
|
352
|
+
<component name="XDebuggerManager">
|
353
|
+
<breakpoint-manager />
|
354
|
+
</component>
|
355
|
+
<component name="editorHistoryManager">
|
356
|
+
<entry file="file://$PROJECT_DIR$/Galleriffic.gemspec">
|
357
|
+
<provider selected="true" editor-type-id="text-editor">
|
358
|
+
<state line="10" column="167" selection-start="530" selection-end="530" vertical-scroll-proportion="0.0">
|
359
|
+
<folding />
|
360
|
+
</state>
|
361
|
+
</provider>
|
362
|
+
</entry>
|
363
|
+
<entry file="file://$PROJECT_DIR$/lib/Galleriffic.rb">
|
364
|
+
<provider selected="true" editor-type-id="text-editor">
|
365
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
366
|
+
<folding />
|
367
|
+
</state>
|
368
|
+
</provider>
|
369
|
+
</entry>
|
370
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/javascripts/jquery.history.js">
|
371
|
+
<provider selected="true" editor-type-id="text-editor">
|
372
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
373
|
+
<folding>
|
374
|
+
<marker date="1258210238000" expanded="false" signature="1087:1101" placeholder="..." />
|
375
|
+
</folding>
|
376
|
+
</state>
|
377
|
+
</provider>
|
378
|
+
</entry>
|
379
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/javascripts/jquery.opacityrollover.js">
|
380
|
+
<provider selected="true" editor-type-id="text-editor">
|
381
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
382
|
+
<folding>
|
383
|
+
<element signature="n#!!doc" expanded="true" />
|
384
|
+
</folding>
|
385
|
+
</state>
|
386
|
+
</provider>
|
387
|
+
</entry>
|
388
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
389
|
+
<provider selected="true" editor-type-id="text-editor">
|
390
|
+
<state line="4" column="7" selection-start="96" selection-end="96" vertical-scroll-proportion="0.0">
|
391
|
+
<folding />
|
392
|
+
</state>
|
393
|
+
</provider>
|
394
|
+
</entry>
|
395
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/javascripts/jush.js">
|
396
|
+
<provider selected="true" editor-type-id="text-editor">
|
397
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
398
|
+
<folding />
|
399
|
+
</state>
|
400
|
+
</provider>
|
401
|
+
</entry>
|
402
|
+
<entry file="file://$PROJECT_DIR$/Galleriffic.gemspec">
|
403
|
+
<provider selected="true" editor-type-id="text-editor">
|
404
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
405
|
+
<folding />
|
406
|
+
</state>
|
407
|
+
</provider>
|
408
|
+
</entry>
|
409
|
+
<entry file="file://$PROJECT_DIR$/Galleriffic.gemspec">
|
410
|
+
<provider selected="true" editor-type-id="text-editor">
|
411
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
412
|
+
<folding />
|
413
|
+
</state>
|
414
|
+
</provider>
|
415
|
+
</entry>
|
416
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
417
|
+
<provider selected="true" editor-type-id="text-editor">
|
418
|
+
<state line="4" column="7" selection-start="96" selection-end="96" vertical-scroll-proportion="0.0">
|
419
|
+
<folding />
|
420
|
+
</state>
|
421
|
+
</provider>
|
422
|
+
</entry>
|
423
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/javascripts/jush.js">
|
424
|
+
<provider selected="true" editor-type-id="text-editor">
|
425
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
426
|
+
<folding />
|
427
|
+
</state>
|
428
|
+
</provider>
|
429
|
+
</entry>
|
430
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/javascripts/jquery.history.js">
|
431
|
+
<provider selected="true" editor-type-id="text-editor">
|
432
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
433
|
+
<folding>
|
434
|
+
<marker date="1258210238000" expanded="false" signature="1087:1101" placeholder="..." />
|
435
|
+
</folding>
|
436
|
+
</state>
|
437
|
+
</provider>
|
438
|
+
</entry>
|
439
|
+
<entry file="file://$PROJECT_DIR$/vendor/assets/javascripts/jquery.opacityrollover.js">
|
440
|
+
<provider selected="true" editor-type-id="text-editor">
|
441
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
442
|
+
<folding>
|
443
|
+
<element signature="n#!!doc" expanded="true" />
|
444
|
+
</folding>
|
445
|
+
</state>
|
446
|
+
</provider>
|
447
|
+
</entry>
|
448
|
+
<entry file="file://$PROJECT_DIR$/lib/Galleriffic.rb">
|
449
|
+
<provider selected="true" editor-type-id="text-editor">
|
450
|
+
<state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0">
|
451
|
+
<folding />
|
452
|
+
</state>
|
453
|
+
</provider>
|
454
|
+
</entry>
|
455
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
456
|
+
<provider selected="true" editor-type-id="text-editor">
|
457
|
+
<state line="32" column="67" selection-start="959" selection-end="959" vertical-scroll-proportion="0.0">
|
458
|
+
<folding />
|
459
|
+
</state>
|
460
|
+
</provider>
|
461
|
+
</entry>
|
462
|
+
<entry file="file://$PROJECT_DIR$/Galleriffic.gemspec">
|
463
|
+
<provider selected="true" editor-type-id="text-editor">
|
464
|
+
<state line="6" column="24" selection-start="203" selection-end="214" vertical-scroll-proportion="0.25641027">
|
465
|
+
<folding />
|
466
|
+
</state>
|
467
|
+
</provider>
|
468
|
+
</entry>
|
469
|
+
</component>
|
470
|
+
</project>
|
471
|
+
|
data/Galleriffic.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'Galleriffic/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "Galleriffic"
|
8
|
+
spec.version = Galleriffic::VERSION
|
9
|
+
spec.authors = ["gth824c@yahoo.com"]
|
10
|
+
spec.email = ["gth824c@yahoo.com"]
|
11
|
+
spec.description = %q{This gem contains all the css and javascript needed to make Gallerific box. Go to http://www.twospy.com/galleriffic/ for documentation.}
|
12
|
+
spec.summary = %q{This gem contains \n CSS: basic.css, black.css, galleriffic-1.css, galleriffic-2.css, galleriffic-3.css, galleriffic-4.css, galleriffic-5.css, jush.css, white.css \n
|
13
|
+
JS: jquery.galleriffic.js, jquery.history.js, jquery.opacityrollover.js, jush.js and jquery 1.3.2.js (if needed). Include the appropriate javascript and css file in your application.js and application.css respectively as outlined in the documentation.}
|
14
|
+
spec.homepage = ""
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files`.split($/)
|
18
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
19
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
23
|
+
spec.add_development_dependency "rake"
|
24
|
+
end
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 gth824c@gmail.com
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|