repo
string
commit
string
message
string
diff
string
ztatlock/spark
104071ae514a770cafc3a20d32f76e1f153ecbda
doc stubs
diff --git a/.gitignore b/.gitignore index 263d85f..fd61e7d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -.jsdb +.songdb test diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..d1f6c92 --- /dev/null +++ b/INSTALL @@ -0,0 +1 @@ +$ ./gen-songdb diff --git a/TODO b/TODO new file mode 100644 in...
ztatlock/spark
deb3f224fef8acf63157ae57f0d29a9d0bce23ca
"jsdb" -> "songdb"
diff --git a/gen-songdb b/gen-songdb new file mode 100755 index 0000000..4791b88 --- /dev/null +++ b/gen-songdb @@ -0,0 +1,59 @@ +#!/usr/bin/env bash + +# TODO check that eyeD3 is available + +# do not split on spaces in file names +IFS=$(echo -en "\n\b") + +function main { + echo "[" + first=true + for song in $(fi...
ztatlock/spark
5872d43f1135d707899d9af112f2c30eaa5eb84c
first usable version
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..263d85f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.jsdb +test diff --git a/gen-jsdb b/gen-jsdb new file mode 100755 index 0000000..954d1e0 --- /dev/null +++ b/gen-jsdb @@ -0,0 +1,59 @@ +#!/usr/bin/env bash + +# TODO check that eyeD3 is avail...
jeet/Album
477d09adcf943e72c150931bc8e561c50e3827c7
Display album names
diff --git a/app/controllers/images_controller.rb b/app/controllers/images_controller.rb index 6e4b308..b3cd260 100644 --- a/app/controllers/images_controller.rb +++ b/app/controllers/images_controller.rb @@ -1,164 +1,163 @@ class ImagesController < ApplicationController require "pp" # GET /images # GET /imag...
jeet/Album
eac0790b868a814fbb5f6368ac2a27d21164eaad
Many to many relationship update
diff --git a/app/controllers/images_controller.rb b/app/controllers/images_controller.rb index 21795fb..6e4b308 100644 --- a/app/controllers/images_controller.rb +++ b/app/controllers/images_controller.rb @@ -1,97 +1,164 @@ class ImagesController < ApplicationController + require "pp" # GET /images # GET /image...
jeet/Album
4c7fc1f0d49a20ecdb4ddf73c33c3c7b14a2e76b
adding missing files
diff --git a/app/models/album_image.rb b/app/models/album_image.rb new file mode 100644 index 0000000..dd35587 --- /dev/null +++ b/app/models/album_image.rb @@ -0,0 +1,4 @@ +class AlbumImage < ActiveRecord::Base + belongs_to :image + belongs_to :album +end diff --git a/db/migrate/20100525063134_create_album_images.rb...
jeet/Album
c77c4fe817424aeb2c28b208717d9f14f5bb7660
image has many albums
diff --git a/app/models/album.rb b/app/models/album.rb index 3162a46..9378551 100644 --- a/app/models/album.rb +++ b/app/models/album.rb @@ -1,6 +1,7 @@ class Album < ActiveRecord::Base - has_many :images + has_many :album_images + has_many :images , :thorugh => :album_images validates_presence_of :title vali...
jeet/Album
ccfb691639b5f35af634148ffe65d57cd3bca37a
adding gitignore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e044a6b --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +log/* +tmp/**/* +db/schema.rb +db/*.sqlite3 +public/system +*.DS_Store +coverage/* +*.swp +rerun.txt +.idea +!.keep
jeet/Album
128f32297f99c93a2706e691552bf16cc890b8f0
database
diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 1566a8b..952bdb2 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,579 +1,588 @@ <?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="ChangeListManager" verified="true"> <list default="true" readonly="true" id...
jeet/Album
8a23fa9503e3dc29e3aaddacc1d40cc5f76de552
validation changes
diff --git a/.idea/album.iml b/.idea/album.iml index 9b35506..bfc4d41 100644 --- a/.idea/album.iml +++ b/.idea/album.iml @@ -1,48 +1,48 @@ <?xml version="1.0" encoding="UTF-8"?> <module type="RUBY_MODULE" version="4"> <component name="DBNavigator.Module.ConnectionManager"> <connections /> </component> <...
kjellm/achoo
d708e62e01123d4c00f32937963e5f0743fe6a68
Only print log messages when started with --log
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index a973063..0edf82c 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,115 +1,117 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' require 'ostruct' require 'plugman' require 'shel...
kjellm/achoo
3a874de7f7edcf85e296c76bfe1a6ce0e92fb115
Add support for having a seperate username and password for http auth
diff --git a/lib/achoo/achievo/agent.rb b/lib/achoo/achievo/agent.rb index fe4db9e..77cb52a 100644 --- a/lib/achoo/achievo/agent.rb +++ b/lib/achoo/achievo/agent.rb @@ -1,106 +1,108 @@ require 'delegate' require 'mechanize' module Achoo module Achievo class Agent < DelegateClass(Mechanize) def ini...
kjellm/achoo
9bf370d0cdb002b5c35870c0363261d81ae62865
Support http auth
diff --git a/lib/achoo/achievo/agent.rb b/lib/achoo/achievo/agent.rb index 3e69497..fe4db9e 100644 --- a/lib/achoo/achievo/agent.rb +++ b/lib/achoo/achievo/agent.rb @@ -1,105 +1,106 @@ require 'delegate' require 'mechanize' module Achoo module Achievo class Agent < DelegateClass(Mechanize) def ini...
kjellm/achoo
d40b4fca3dacc50074e5ce01f72b0f95e6b0f4c5
Handle empty recent projects
diff --git a/lib/achoo/achievo/hour_registration_form.rb b/lib/achoo/achievo/hour_registration_form.rb index af977e9..480c874 100644 --- a/lib/achoo/achievo/hour_registration_form.rb +++ b/lib/achoo/achievo/hour_registration_form.rb @@ -1,224 +1,224 @@ require 'achoo/achievo' module Achoo module Achievo cla...
kjellm/achoo
368baa9aaa4c6999c8c07e4bf2e2f198c33b5939
Added a rake task for running achoo
diff --git a/Rakefile b/Rakefile index a1fd8dc..b1904a6 100644 --- a/Rakefile +++ b/Rakefile @@ -1,32 +1,35 @@ # encoding: utf-8 require 'rake/testtask' require 'rubygems' require 'rubygems/package_task' task :default => ['test:unit'] namespace 'build' do require "bundler/gem_tasks" end task :test =>...
kjellm/achoo
cfd70f1ec10c2389975f30f6c651fc208f2f0727
Use the proper exception handler
diff --git a/lib/achoo/.#app.rb b/lib/achoo/.#app.rb new file mode 120000 index 0000000..0836c73 --- /dev/null +++ b/lib/achoo/.#app.rb @@ -0,0 +1 @@ +kjellm@190.41.238.87.in-addr.arpa.242 \ No newline at end of file diff --git a/lib/achoo/plugin/ical.rb b/lib/achoo/plugin/ical.rb index 1ad3f3e..0acc71c 100644 --- a/li...
kjellm/achoo
46ba39f8f67298744fc9a96c7acd175868a904a0
Support new plugman
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index a20571f..9949edc 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,111 +1,112 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' require 'ostruct' require 'plugman' -require 'plug...
kjellm/achoo
4b511bdeef9c969e45ba2a7423189b417634f3b6
Fix bug introduced when upgrading Mechanize
diff --git a/lib/achoo/achievo/hour_registration_form.rb b/lib/achoo/achievo/hour_registration_form.rb index a3046b8..af977e9 100644 --- a/lib/achoo/achievo/hour_registration_form.rb +++ b/lib/achoo/achievo/hour_registration_form.rb @@ -1,224 +1,224 @@ require 'achoo/achievo' module Achoo module Achievo cla...
kjellm/achoo
649fcce80d81f046be58b41d9626e7a15a3010fe
Use latest ruby 1.9.3
diff --git a/.rvmrc b/.rvmrc index a43ca99..54a27e7 100644 --- a/.rvmrc +++ b/.rvmrc @@ -1,55 +1,55 @@ #!/usr/bin/env bash # This is an RVM Project .rvmrc file, used to automatically load the ruby # development environment upon cd'ing into the directory # First we specify our desired <ruby>[@<gemset>], the @gem...
kjellm/achoo
b20c45f807d1899426a626d596f00a67401a7f3c
Use ruby 1.9.3.p125
diff --git a/.rvmrc b/.rvmrc index e916a74..a43ca99 100644 --- a/.rvmrc +++ b/.rvmrc @@ -1,55 +1,55 @@ #!/usr/bin/env bash # This is an RVM Project .rvmrc file, used to automatically load the ruby # development environment upon cd'ing into the directory # First we specify our desired <ruby>[@<gemset>], the @gem...
kjellm/achoo
b56de7a5a09fdc5ad8b6bbc81ac5ef0be50dc9d8
Fix cut'n paste error
diff --git a/lib/achoo/achievo/agent.rb b/lib/achoo/achievo/agent.rb index eded6a6..3e69497 100644 --- a/lib/achoo/achievo/agent.rb +++ b/lib/achoo/achievo/agent.rb @@ -1,105 +1,105 @@ require 'delegate' require 'mechanize' module Achoo module Achievo class Agent < DelegateClass(Mechanize) def ini...
kjellm/achoo
779d4da72b134a8bb4330785b1cdbce61cf1d81f
Add Achievo::Agent
diff --git a/lib/achoo/achievo.rb b/lib/achoo/achievo.rb index d5b063b..b95c73d 100644 --- a/lib/achoo/achievo.rb +++ b/lib/achoo/achievo.rb @@ -1,13 +1,14 @@ require 'achoo' require 'achoo/achievo/date_field' module Achoo module Achievo + autoload :Agent, 'achoo/achievo/agent.rb' a...
kjellm/achoo
de1eb9a0098a92cc26d1e9250167669405f2f331
1.9.2 -> 1.9.3
diff --git a/README.rdoc b/README.rdoc index 07293db..fc5a0fb 100644 --- a/README.rdoc +++ b/README.rdoc @@ -1,100 +1,100 @@ = Achoo - the Achivo CLI Achoo is a command line interface for Achievo[http://achievo.org]. It works by scraping achievo web pages and sending HTTP requests. == INSTALL These instructi...
kjellm/achoo
9ac05cff34a3beb143b16ff514dabbff81aa2b13
Use shellout shortcuts
diff --git a/lib/achoo/achievo/hour_administration_form.rb b/lib/achoo/achievo/hour_administration_form.rb index c89940a..a0b4080 100644 --- a/lib/achoo/achievo/hour_administration_form.rb +++ b/lib/achoo/achievo/hour_administration_form.rb @@ -1,80 +1,80 @@ require 'achoo/achievo' -require 'achoo/term/table' require...
kjellm/achoo
78537202cecce03ba0bcc0670f02a3d72ccf9484
Setup task now replaced by bundle install
diff --git a/Rakefile b/Rakefile index c0a29c5..01521c0 100644 --- a/Rakefile +++ b/Rakefile @@ -1,133 +1,129 @@ # encoding: utf-8 require 'rake/testtask' require 'rubygems' require 'rubygems/package_task' load File.dirname(__FILE__) + '/achoo.gemspec' task :default => ['test:unit'] namespace 'build' do ...
kjellm/achoo
e1269c850552376ccfea24efabc1089676315b1e
Added some infrastructure (Bundler, RVM, git)
diff --git a/.gitignore b/.gitignore index c24c65d..f21149d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /achoo*.gem /achoo*.log /pkg /doc +Gemfile.lock diff --git a/.rvmrc b/.rvmrc new file mode 100644 index 0000000..e916a74 --- /dev/null +++ b/.rvmrc @@ -0,0 +1,55 @@ +#!/usr/bin/env bash + +# This is ...
kjellm/achoo
053766e74398101f7438090e9fd925871ffbed2a
Fix bug in all_projects_chooser
diff --git a/lib/achoo/ui/register_hours.rb b/lib/achoo/ui/register_hours.rb index 93bddc5..c036d1e 100644 --- a/lib/achoo/ui/register_hours.rb +++ b/lib/achoo/ui/register_hours.rb @@ -1,145 +1,149 @@ require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'readline' module Achoo module UI ...
kjellm/achoo
f928986b2ad222f19723d26bfbbe0832198c30bd
Use Shellout::Calendar for printing calendars
diff --git a/lib/achoo/ui/date_chooser.rb b/lib/achoo/ui/date_chooser.rb index 597dff5..180eee3 100644 --- a/lib/achoo/ui/date_chooser.rb +++ b/lib/achoo/ui/date_chooser.rb @@ -1,79 +1,84 @@ require 'achoo/term' require 'achoo/ui' +require 'date' +require 'shellout/calendar' module Achoo module UI class ...
kjellm/achoo
42169e00ab806b9786ed1c340bd7f6a8fca20590
Added bundler support
diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..1c86af9 --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +gemspec + diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..8619c81 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,29 @@ +PATH + remote: . + s...
kjellm/achoo
6592012181dd8e03f1ecb84af6376a2a0ce6ae3f
Renamed cookie file
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index 6eb1da0..d2261ef 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,153 +1,154 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' require 'plugman' require 'plugman/finder' requir...
kjellm/achoo
413641509c62596266f65e24b6a15377cd11139f
Use shellout for printing tables and boxes
diff --git a/achoo.gemspec b/achoo.gemspec index a515ce3..9ac7c4f 100644 --- a/achoo.gemspec +++ b/achoo.gemspec @@ -1,33 +1,34 @@ # encoding: utf-8 Spec = Gem::Specification.new do |s| s.required_ruby_version = '>= 1.8.1' s.platform = Gem::Platform::RUBY s.name = 'achoo' s.version = b...
kjellm/achoo
1b7e8418b32960e10a785cc35b8becf210b8d17c
Use cookiestxt format for saving the cookie jar
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index 32b1928..69ff14b 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,152 +1,152 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' require 'plugman' require 'plugman/finder' modu...
kjellm/achoo
e27baa32437e8b86efaf5089edf0451f576dc36a
Added execute bit to bin files
diff --git a/bin/achoo b/bin/achoo old mode 100644 new mode 100755 diff --git a/bin/awake b/bin/awake old mode 100644 new mode 100755 diff --git a/bin/ical b/bin/ical old mode 100644 new mode 100755 diff --git a/bin/vcs_commits b/bin/vcs_commits old mode 100644 new mode 100755
kjellm/achoo
8126dbdc99e0cad6bc26491044a8ad2c75cbf73d
Added hybernation as a suspend event
diff --git a/lib/achoo/system/pm_suspend.rb b/lib/achoo/system/pm_suspend.rb index dbce6ba..c3bd832 100644 --- a/lib/achoo/system/pm_suspend.rb +++ b/lib/achoo/system/pm_suspend.rb @@ -1,27 +1,27 @@ require 'achoo/system' require 'time' module Achoo module System class PMSuspend < Array def init...
kjellm/achoo
270abf05ac9614235b154fab3a7b7b53bc554620
Reformated git log
diff --git a/lib/achoo/vcs.rb b/lib/achoo/vcs.rb index 214052f..05a0c0f 100644 --- a/lib/achoo/vcs.rb +++ b/lib/achoo/vcs.rb @@ -1,45 +1,51 @@ require 'achoo' module Achoo class VCS autoload :Git, 'achoo/vcs/git' autoload :Subversion, 'achoo/vcs/subversion' LINE_LENGTH = 80 d...
kjellm/achoo
c866d79d48f6df49257d5cc61347a7288b6b5b4f
s/send_/signal_/ to comply with newest plugman version
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index d642f22..32b1928 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,152 +1,152 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' require 'plugman' require 'plugman/finder' modu...
kjellm/achoo
7b2dc16ff02ec11fb2af58903c7640b3da65ba36
Reset version number
diff --git a/achoo.gemspec b/achoo.gemspec index cfbac2d..a515ce3 100644 --- a/achoo.gemspec +++ b/achoo.gemspec @@ -1,29 +1,33 @@ # encoding: utf-8 Spec = Gem::Specification.new do |s| s.required_ruby_version = '>= 1.8.1' s.platform = Gem::Platform::RUBY s.name = 'achoo' - s.version = '...
kjellm/achoo
ce7e0a3ed6a94432c03acb0965afbeda17ede000
Prepared release
diff --git a/CHANGES b/CHANGES index 5cfbce2..51eb454 100644 --- a/CHANGES +++ b/CHANGES @@ -1,77 +1,83 @@ +2011-06-10: version 0.5.1 + + - Fixed failing tests + + - Some menu headers was not printed + 2011-06-10: version 0.5 - Added support for plugins. - Added tab completion for the hour registration all pro...
kjellm/achoo
b8bb61bcd49fe21253007e2d0b52f69280ff999d
Need a fresh ruby interpreter for each acceptance test
diff --git a/Rakefile b/Rakefile index fb27a0d..c0a29c5 100644 --- a/Rakefile +++ b/Rakefile @@ -1,135 +1,133 @@ # encoding: utf-8 -require 'rake/gempackagetask' require 'rake/testtask' require 'rubygems' +require 'rubygems/package_task' load File.dirname(__FILE__) + '/achoo.gemspec' task :default => ['test:...
kjellm/achoo
266881f62a9a4ab20d11af2f1a357ff7f694966e
s//ENV['DEBUG_ACHOO']/
diff --git a/test/acceptance/test_lock_month.rb b/test/acceptance/test_lock_month.rb index 2d7c719..1e762af 100644 --- a/test/acceptance/test_lock_month.rb +++ b/test/acceptance/test_lock_month.rb @@ -1,39 +1,39 @@ require 'test_helpers' class TestLockMonth < Test::Unit::TestCase include AcceptanceBase de...
kjellm/achoo
2818f7bdd8ad1c0bb7041a89c7cebb0e39a024aa
Fixed failing test: acceptance/test_register_hours
diff --git a/test/acceptance/test_register_hours.rb b/test/acceptance/test_register_hours.rb index eb98dfc..a767b26 100644 --- a/test/acceptance/test_register_hours.rb +++ b/test/acceptance/test_register_hours.rb @@ -1,161 +1,164 @@ require 'test_helpers' class TestLockMonth < Test::Unit::TestCase include Acce...
kjellm/achoo
91190c6cb6b603f9abc766d28424f22f8c595a9d
Moved test log to /tmp
diff --git a/test/lib/achievo_mock.rb b/test/lib/achievo_mock.rb index 296bdc8..9d7d1b0 100644 --- a/test/lib/achievo_mock.rb +++ b/test/lib/achievo_mock.rb @@ -1,76 +1,76 @@ # From http://dynamicorange.com/2009/02/18/ruby-mock-web-server/ require 'logger' require 'rack' require 'thin' class AchievoMock d...
kjellm/achoo
a6f7af123b7b0704226b272e383529e50cf9d93d
Forgot to print some headers in hour registration form
diff --git a/lib/achoo/ui/register_hours.rb b/lib/achoo/ui/register_hours.rb index 3377b99..e40fae5 100644 --- a/lib/achoo/ui/register_hours.rb +++ b/lib/achoo/ui/register_hours.rb @@ -1,143 +1,145 @@ require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'readline' module Achoo module UI ...
kjellm/achoo
aa530d2b2f43ff4f591674928aeb7f21fcd1bc35
Use a more robust state_ok? definition in plugins
diff --git a/lib/achoo/plugin/ical.rb b/lib/achoo/plugin/ical.rb index 40e40b9..1ad3f3e 100644 --- a/lib/achoo/plugin/ical.rb +++ b/lib/achoo/plugin/ical.rb @@ -1,47 +1,47 @@ require 'achoo' require 'achoo/ical' +require 'achoo/plugin_base' require 'achoo/ui' -require 'plugman/plugin_base' module Achoo class P...
kjellm/achoo
abb3613d9a59952a612397bb345c649480a541cd
instance_methods() returns symbols in ruby 1.9
diff --git a/test/unit/test_achievo_date_field.rb b/test/unit/test_achievo_date_field.rb index cceddeb..824ea76 100644 --- a/test/unit/test_achievo_date_field.rb +++ b/test/unit/test_achievo_date_field.rb @@ -1,34 +1,34 @@ require 'achoo/achievo' require 'test_helpers' class TestTermMenu < Test::Unit::TestCase ...
kjellm/achoo
b604e463fb9af021fa24730705c2a70e76f4db22
Add encoding definition to test file
diff --git a/test/unit/test_term_table.rb b/test/unit/test_term_table.rb index ff4a386..794d39a 100644 --- a/test/unit/test_term_table.rb +++ b/test/unit/test_term_table.rb @@ -1,52 +1,54 @@ +# encoding: utf-8 + require 'achoo/term/table' require 'test_helpers' class TestTermTable < Test::Unit::TestCase # def s...
kjellm/achoo
e1b859aa51eebba0f5ee5ff8378dc7e9ff6a0f70
Prepared release v0.5
diff --git a/CHANGES b/CHANGES index 679e907..5cfbce2 100644 --- a/CHANGES +++ b/CHANGES @@ -1,64 +1,77 @@ +2011-06-10: version 0.5 + + - Added support for plugins. + + - Added tab completion for the hour registration all projects chooser. + + - Added support for advanced line editing (readline). + + - More user friend...
kjellm/achoo
cc1c4f5a167b655f74be3b38f3c275d3af96628c
Warn the user if she uses the old ical config format
diff --git a/lib/achoo/rc_loader.rb b/lib/achoo/rc_loader.rb index 4702355..3f6f578 100644 --- a/lib/achoo/rc_loader.rb +++ b/lib/achoo/rc_loader.rb @@ -1,55 +1,64 @@ require 'achoo' require 'achoo/term' require 'yaml' module Achoo module RCLoader def load_rc(rc_file="#{ENV['HOME']}/.achoo") #cre...
kjellm/achoo
50a81ea2a477c6b3ebf83629ce995388489317f1
Added Achoo::PluginBase so that plugins won't need to know about plugman
diff --git a/lib/achoo/plugin_base.rb b/lib/achoo/plugin_base.rb new file mode 100644 index 0000000..3e1270d --- /dev/null +++ b/lib/achoo/plugin_base.rb @@ -0,0 +1,6 @@ +require 'plugman/plugin_base' + +module Achoo + class PluginBase < Plugman::PluginBase + end +end
kjellm/achoo
13df07c6fa908775f7921362519e9ad05d31b7a4
Made the homescreen plugin work
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index 27424fa..d642f22 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,153 +1,152 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' require 'plugman' require 'plugman/finder' modu...
kjellm/achoo
a38951168cdde247a70fa7531fd493b033851fda
Moved awake stuff to a plugin
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index 324c6c8..27424fa 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,153 +1,153 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' require 'plugman' require 'plugman/finder' modu...
kjellm/achoo
37d073ee6584156141edce41d06251cf4a482f78
Add exception type to error report
diff --git a/lib/achoo/ui/exception_handling.rb b/lib/achoo/ui/exception_handling.rb index 6f0a2ad..e506e12 100644 --- a/lib/achoo/ui/exception_handling.rb +++ b/lib/achoo/ui/exception_handling.rb @@ -1,22 +1,22 @@ require 'achoo/term' require 'achoo/ui' module Achoo module UI module ExceptionHandling ...
kjellm/achoo
3254a7e5c95e662f983c6c5461511b4943d64595
Use plugman for plugins
diff --git a/achoo.gemspec b/achoo.gemspec index 3a977d7..a9c46b3 100644 --- a/achoo.gemspec +++ b/achoo.gemspec @@ -1,32 +1,33 @@ # encoding: utf-8 Spec = Gem::Specification.new do |s| s.required_ruby_version = '>= 1.8.1' s.platform = Gem::Platform::RUBY s.name = 'achoo' s.version = b...
kjellm/achoo
bbde94e14837f80ab805d13e730066def891fee6
Started moving the homescreen stuff to a plugin
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index 637b9e8..914f340 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,169 +1,151 @@ require 'achoo' require 'achoo/achievo' require 'achoo/plugin_manager' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' module Achoo ...
kjellm/achoo
f66133ba54676007cf1749525cc3673bf9a14912
Fixed bug in plugin loading
diff --git a/lib/achoo/plugin_manager.rb b/lib/achoo/plugin_manager.rb index 2565295..c85f969 100644 --- a/lib/achoo/plugin_manager.rb +++ b/lib/achoo/plugin_manager.rb @@ -1,68 +1,69 @@ # encoding: utf-8 require 'achoo' require 'achoo/plugin' require 'rubygems'; require 'singleton' module Achoo class Plug...
kjellm/achoo
df3fc494b2ba9b33740cc3a9ec832e5ed098e616
Added tab completion for the hour registration all projects chooser
diff --git a/lib/achoo/ui/register_hours.rb b/lib/achoo/ui/register_hours.rb index 5243a69..f21791b 100644 --- a/lib/achoo/ui/register_hours.rb +++ b/lib/achoo/ui/register_hours.rb @@ -1,129 +1,157 @@ require 'achoo/achievo' require 'achoo/awake' require 'achoo/term' require 'achoo/ui' require 'achoo/plugin_manage...
kjellm/achoo
6fd113bc45670860d2be9398cdac427097410813
Use readline
diff --git a/lib/achoo/term.rb b/lib/achoo/term.rb index 2790adf..71fe6d5 100644 --- a/lib/achoo/term.rb +++ b/lib/achoo/term.rb @@ -1,87 +1,86 @@ # encoding: utf-8 require 'achoo' +require 'readline' module Achoo class Term autoload :Menu, 'achoo/term/menu' autoload :Table, 'achoo/term/table' ...
kjellm/achoo
f278a869d35726d373dd97bfa3344058ea5785c4
Refactored plugin_manager
diff --git a/lib/achoo/plugin_manager.rb b/lib/achoo/plugin_manager.rb index 18dcfdc..2565295 100644 --- a/lib/achoo/plugin_manager.rb +++ b/lib/achoo/plugin_manager.rb @@ -1,62 +1,68 @@ # encoding: utf-8 require 'achoo' require 'achoo/plugin' require 'rubygems'; require 'singleton' module Achoo class Plug...
kjellm/achoo
fb72f47529686b4de887e6d1a43fe12fa3716760
Don't load more than one version of the plugins
diff --git a/lib/achoo/plugin_manager.rb b/lib/achoo/plugin_manager.rb index 5fe16e5..18dcfdc 100644 --- a/lib/achoo/plugin_manager.rb +++ b/lib/achoo/plugin_manager.rb @@ -1,59 +1,62 @@ # encoding: utf-8 require 'achoo' require 'achoo/plugin' require 'rubygems'; require 'singleton' module Achoo class Plug...
kjellm/achoo
a225029a3b8c28c3005f091ef9c406c15460d921
The vcs plugin checked for the wrong RC key
diff --git a/lib/achoo/plugin/vcs.rb b/lib/achoo/plugin/vcs.rb index a19fa35..39ce1f4 100644 --- a/lib/achoo/plugin/vcs.rb +++ b/lib/achoo/plugin/vcs.rb @@ -1,25 +1,25 @@ require 'achoo' require 'achoo/vcs' require 'achoo/ui' module Achoo class Plugin class VCS < Achoo::Plugin include UI::Excepti...
kjellm/achoo
62b79ecc5295ecfd435655b41017d26d4272beac
Use URI to parse ical url. Changes the config format for ical slightly. More user friendly
diff --git a/lib/achoo/ical.rb b/lib/achoo/ical.rb index 4877e41..a450b07 100644 --- a/lib/achoo/ical.rb +++ b/lib/achoo/ical.rb @@ -1,66 +1,69 @@ require 'achoo' require 'achoo/temporal' require 'achoo/ui' require 'net/https' require 'ri_cal' +require 'uri' module Achoo class ICal include UI::Excepti...
kjellm/achoo
6281d0b0159532fcafd3863d5ef438022c27954a
Fixed a bug in plugin manager
diff --git a/lib/achoo/plugin_manager.rb b/lib/achoo/plugin_manager.rb index eca916b..5fe16e5 100644 --- a/lib/achoo/plugin_manager.rb +++ b/lib/achoo/plugin_manager.rb @@ -1,59 +1,59 @@ # encoding: utf-8 require 'achoo' require 'achoo/plugin' require 'rubygems'; require 'singleton' module Achoo class Plug...
kjellm/achoo
a7ba1cd40c2e48412f1dc82ed737d78143edb416
Made agent a global constant
diff --git a/lib/achoo/achievo/hour_administration_form.rb b/lib/achoo/achievo/hour_administration_form.rb index 0eec32d..9edc122 100644 --- a/lib/achoo/achievo/hour_administration_form.rb +++ b/lib/achoo/achievo/hour_administration_form.rb @@ -1,81 +1,80 @@ require 'achoo/achievo' require 'achoo/term/table' modul...
kjellm/achoo
403f8fa77e385560ffadf946f9d09ad4f0047c33
Moved vcs stuff to a plugin
diff --git a/lib/achoo/plugin/vcs.rb b/lib/achoo/plugin/vcs.rb new file mode 100644 index 0000000..611fcfc --- /dev/null +++ b/lib/achoo/plugin/vcs.rb @@ -0,0 +1,23 @@ +require 'achoo' +require 'achoo/vcs' +require 'achoo/ui' + +module Achoo + class Plugin + class VCS < Achoo::Plugin + + include UI::ExceptionH...
kjellm/achoo
74446b37cd7dfa65645bcafaaae5a271ad530563
Made it possible to send arguments to plugin hooks
diff --git a/lib/achoo/plugin/ical.rb b/lib/achoo/plugin/ical.rb index efbd8ec..37b387c 100644 --- a/lib/achoo/plugin/ical.rb +++ b/lib/achoo/plugin/ical.rb @@ -1,44 +1,44 @@ require 'achoo' require 'achoo/ical' require 'achoo/ui' module Achoo class Plugin class Ical < Achoo::Plugin - include Excep...
kjellm/achoo
996631224a11b19e90085ff801df195b6fa99270
Fixed some ruby 1.8 vs 1.9 issues
diff --git a/lib/achoo/extensions.rb b/lib/achoo/extensions.rb index d4e9f19..c3e4245 100644 --- a/lib/achoo/extensions.rb +++ b/lib/achoo/extensions.rb @@ -1,47 +1,51 @@ class Array %w(merge!).each do |method| raise "Method already defined: #{name}\##{method}" \ if method_defined?(method) end ...
kjellm/achoo
9e01e3df9852edc8bd701a22dd82e4b646148614
Fixed ical plugin
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3026cac --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/achoo*.gem +/achoo*.log +/pkg +/doc +/tmp diff --git a/CHANGES b/CHANGES new file mode 100644 index 0000000..679e907 --- /dev/null +++ b/CHANGES @@ -0,0 +1,64 @@ +2010-05-11: version 0.4.2 +...
kjellm/achoo
5ad4d80698fd2eedf3cde10020cd6b65d50760db
Started on a plugin architecture
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index a0dde06..6fa3750 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,153 +1,144 @@ require 'achoo' require 'achoo/achievo' +require 'achoo/plugin_manager' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' - module Achoo ...
kjellm/achoo
5971bfb5df60326c2b59e8dd3f05708b0884dace
Clear screen before showing the homescreen
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index b365853..37aead1 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,174 +1,178 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' module Achoo class App include UI::Co...
kjellm/achoo
f335029732c79dc6508da829b33913741b7a2520
When registering hours, return to the home screen for that day
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index 9391052..b365853 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,170 +1,174 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' module Achoo class App include UI::Co...
kjellm/achoo
a0c6badca2cd9824f64dac04a9d2959c90830c70
Add parameter for homescreen
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index a0dde06..9391052 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,153 +1,170 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' module Achoo class App include UI::Co...
kjellm/achoo
606aaa763e0bb9b91c408c6212564502294c5ab9
Report HTTP failures when retrieving ical data
diff --git a/lib/achoo/app.rb b/lib/achoo/app.rb index 4d60a03..a0dde06 100644 --- a/lib/achoo/app.rb +++ b/lib/achoo/app.rb @@ -1,153 +1,153 @@ require 'achoo' require 'achoo/achievo' require 'achoo/term' require 'achoo/ui' require 'logger' require 'mechanize' module Achoo class App include UI::Co...
kjellm/achoo
4058e41cfb87f532d6c9825151b44f1e2570c6b1
Need to also check the summaries row when calculating cell widths
diff --git a/lib/achoo/term/table.rb b/lib/achoo/term/table.rb index 0c62651..1ab2f3b 100644 --- a/lib/achoo/term/table.rb +++ b/lib/achoo/term/table.rb @@ -1,100 +1,99 @@ # encoding: utf-8 require 'achoo/term' # Unicode box drawing characters # # http://en.wikipedia.org/wiki/Box-drawing_characters # # # ...
kjellm/achoo
1088403fed7993305db7b2c30243b663d0e909a6
The -m option to cal seems to have changed its definition. Remove it
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3026cac --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +/achoo*.gem +/achoo*.log +/pkg +/doc +/tmp diff --git a/CHANGES b/CHANGES new file mode 100644 index 0000000..679e907 --- /dev/null +++ b/CHANGES @@ -0,0 +1,64 @@ +2010-05-11: version 0.4.2 +...
jeremyf/shallow
89f5409ba47e1ac9f90d249293a036c5096a5420
Version bump to 0.1.1
diff --git a/VERSION b/VERSION index 6e8bf73..17e51c3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 +0.1.1 diff --git a/shallow.gemspec b/shallow.gemspec index c1ec6e3..7d4ecfb 100644 --- a/shallow.gemspec +++ b/shallow.gemspec @@ -1,51 +1,51 @@ # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Inste...
jeremyf/shallow
098db5ae0cd6d16022e4829a842cca0c7aa389f6
Adjusted gemspec
diff --git a/Rakefile b/Rakefile index a9befcc..2be920a 100644 --- a/Rakefile +++ b/Rakefile @@ -1,52 +1,52 @@ require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "shallow" gem.summary = %Q{A gem for creating cached response for expensive method calls} -...
jeremyf/shallow
e709ef9a43bd5310d818feb609db2d66e8935acf
Version bump to 0.1.0
diff --git a/VERSION b/VERSION index 77d6f4c..6e8bf73 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0
jeremyf/shallow
94d822c329c026e97400bfba7741672fd2bdd8c6
Change internal naming from @cache to @data_store
diff --git a/lib/shallow.rb b/lib/shallow.rb index a28c502..89fe816 100644 --- a/lib/shallow.rb +++ b/lib/shallow.rb @@ -1,93 +1,94 @@ require 'yaml' require 'singleton' module Shallow CACHE_FOLDER = 'shallow' module Method def self.with_cache_clearing_for(context) yield and return unless context.r...
jeremyf/shallow
957f9c29cee2d0739fc8d30f2dc510537c70b427
Tweaked shallow to work on caching.
diff --git a/lib/shallow.rb b/lib/shallow.rb index e69de29..a28c502 100644 --- a/lib/shallow.rb +++ b/lib/shallow.rb @@ -0,0 +1,93 @@ +require 'yaml' +require 'singleton' +module Shallow + CACHE_FOLDER = 'shallow' + module Method + def self.with_cache_clearing_for(context) + yield and return unless context.re...
jeremyf/shallow
12d87faf333ac68fc5fb0c9bef44e95573414e7d
Build gem
diff --git a/shallow-0.0.0.gem b/shallow-0.0.0.gem new file mode 100644 index 0000000..d2faa50 Binary files /dev/null and b/shallow-0.0.0.gem differ diff --git a/shallow.gemspec b/shallow.gemspec index 700c97f..282e26d 100644 --- a/shallow.gemspec +++ b/shallow.gemspec @@ -1,50 +1,50 @@ # Generated by jeweler # DO NO...
jeremyf/shallow
0c4bd1d660accbe37ceeec9ca0f4210ef6b709d7
Defined gemspec
diff --git a/shallow.gemspec b/shallow.gemspec new file mode 100644 index 0000000..700c97f --- /dev/null +++ b/shallow.gemspec @@ -0,0 +1,50 @@ +# Generated by jeweler +# DO NOT EDIT THIS FILE DIRECTLY +# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command +# -*- encoding: utf-8 -*- + +Gem::Specificat...
jeremyf/shallow
c9bccfd9de8f558fb2995eab241f63b6a56fd601
Version bump to 0.0.0
diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..77d6f4c --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.0.0
lusis/padrino-mongomatic-example
9584f9aa7239a885f3f83fa564f2ee4a0fd7853d
Updating TODO
diff --git a/README.markdown b/README.markdown index 1b055e8..615710b 100644 --- a/README.markdown +++ b/README.markdown @@ -1,35 +1,39 @@ Padrino and Mongomatic Sample Application ========================================= This is a sample application showing how to use ['Padrino'](http://padrinorb.com) with ['Mon...
lusis/padrino-mongomatic-example
7dd1ae1a6a31602093bc431920e8d720410fcdd4
updating README
diff --git a/README.markdown b/README.markdown index 47deddf..1b055e8 100644 --- a/README.markdown +++ b/README.markdown @@ -1,30 +1,35 @@ Padrino and Mongomatic Sample Application ========================================= This is a sample application showing how to use ['Padrino'](http://padrinorb.com) with ['Mon...
lusis/padrino-mongomatic-example
978b28acd7c36631a1f8651f3d1c8a49a3861b12
Changing stylesheets and layouts
diff --git a/.components b/.components index 2db20a1..c024567 100644 --- a/.components +++ b/.components @@ -1,7 +1,7 @@ --- :orm: mongomatic :test: none :mock: none -:script: none +:script: jquery :renderer: haml -:stylesheet: none +:stylesheet: sass diff --git a/Gemfile.lock b/Gemfile.lock index 4a619b1..c10b9c...
lusis/padrino-mongomatic-example
b70cd9e2859a99b9fe6a59f44365afd6a636f1a8
Gemfile pointing to padrino git and README
diff --git a/Gemfile b/Gemfile index dfdd5ef..aae5d63 100644 --- a/Gemfile +++ b/Gemfile @@ -1,17 +1,17 @@ source :rubygems # Project requirements gem 'rake' gem 'rack-flash' gem 'thin' # or mongrel # Component requirements gem 'haml' gem 'mongomatic' gem 'bson_ext', :require => "mongo" # Test requireme...
lusis/padrino-mongomatic-example
ecf9f55e7dd77d2e7121d1e7f420cf4e436c4231
initial import
diff --git a/.components b/.components new file mode 100644 index 0000000..2db20a1 --- /dev/null +++ b/.components @@ -0,0 +1,7 @@ +--- +:orm: mongomatic +:test: none +:mock: none +:script: none +:renderer: haml +:stylesheet: none diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7c01eee --- /de...
fwenzel/reporter
f9a79791876a101e7ebb1d145aadb4bf50a38b58
Compile .mo when updating
diff --git a/bin/update_prod.sh b/bin/update_prod.sh index 03f2b2a..d2c8066 100644 --- a/bin/update_prod.sh +++ b/bin/update_prod.sh @@ -1,50 +1,51 @@ #!/bin/bash set -e INPUT_DIR="/data/input/python/input.mozilla.com/reporter" VENDOR_DIR="$INPUT_DIR/vendor" SYNC_DIR="/data/input/www/django/input.mozilla.com...
fwenzel/reporter
b4e88d48becfa89ea2911dfb920e8edadf3b3a35
Locale exclusively handled by SVN, bug 664558
diff --git a/.gitignore b/.gitignore index 2d93939..3753bef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,18 @@ settings_local.py *.py[co] *.sw[po] pip-log.txt .DS_Store vendor tmp docs/_gh-pages build.py *-min.css *-all.css *-min.js *-all.js media/data/*tsv.bz2 .coverage media/js/libs/highcharts...
fwenzel/reporter
fce70ebe93c6350c1c5187d8a00919005b04c6e7
L10n update (automatic commit)
diff --git a/locale b/locale index fc28aae..2bbc668 160000 --- a/locale +++ b/locale @@ -1 +1 @@ -Subproject commit fc28aae6e94bca01e4bfefa0cbe72a7bf258e670 +Subproject commit 2bbc668de452e523fb218352583b243006e8106e
fwenzel/reporter
bc8ac226b915607108fbbeb070d520568c61a29f
L10n update (automatic commit)
diff --git a/locale b/locale index 2503051..fc28aae 160000 --- a/locale +++ b/locale @@ -1 +1 @@ -Subproject commit 250305181216fa5d9e0e6143f341e92b0de8c550 +Subproject commit fc28aae6e94bca01e4bfefa0cbe72a7bf258e670
fwenzel/reporter
031cbe439636aedbea118b7a541dddc04b45f25e
bug 663031, fixed some old tests.
diff --git a/apps/themes/tests.py b/apps/themes/tests.py index 8c4a922..8d5ac13 100644 --- a/apps/themes/tests.py +++ b/apps/themes/tests.py @@ -1,74 +1,74 @@ from django.conf import settings import test_utils from nose.tools import eq_ from pyquery import PyQuery as pq from feedback.models import Opinion fro...
fwenzel/reporter
7fd7bf6fda1db544af0ad5613e8fe399a53af0ec
Bad PDB
diff --git a/apps/themes/cron.py b/apps/themes/cron.py index c0b5dc2..a84bab3 100644 --- a/apps/themes/cron.py +++ b/apps/themes/cron.py @@ -1,107 +1,106 @@ import datetime import logging from django.conf import settings from django.db import transaction import cronjobs from textcluster import Corpus, search ...
fwenzel/reporter
a0b8d5449abf5ee65bcdaab5a3eaf58b16856006
bug 663031, clusters read versions
diff --git a/apps/themes/cron.py b/apps/themes/cron.py index 56bc06e..c0b5dc2 100644 --- a/apps/themes/cron.py +++ b/apps/themes/cron.py @@ -1,136 +1,107 @@ import datetime import logging from django.conf import settings from django.db import transaction import cronjobs from textcluster import Corpus, search ...
fwenzel/reporter
1214449dc319220cfa6706d03bc4975a2406dd29
Post commit hooks for ElasticSearch
diff --git a/apps/feedback/models.py b/apps/feedback/models.py index d20e8dc..7615803 100644 --- a/apps/feedback/models.py +++ b/apps/feedback/models.py @@ -1,175 +1,214 @@ from datetime import timedelta from django.conf import settings from django.db import models from django.db.models import Count, signals i...
fwenzel/reporter
e31707542fc4afcb6eb820d01251be4258514e3b
Add to something else
diff --git a/settings.py b/settings.py index 121cae6..81f86b2 100644 --- a/settings.py +++ b/settings.py @@ -1,347 +1,347 @@ # Django settings for the reporter project. import os import logging from django.utils.functional import lazy # Make filepaths relative to settings. ROOT = os.path.dirname(os.path.a...
fwenzel/reporter
6990362ab59c21b0c0af9943c58f7c8db78dabc7
Add settings for elastic.
diff --git a/settings.py b/settings.py index 26c662e..121cae6 100644 --- a/settings.py +++ b/settings.py @@ -1,343 +1,347 @@ # Django settings for the reporter project. import os import logging from django.utils.functional import lazy # Make filepaths relative to settings. ROOT = os.path.dirname(os.path.a...
fwenzel/reporter
746436defa6276dbfc2c4aab81907de9431a810e
Get the default version of Firefox if no version present (bug 663745)
diff --git a/apps/search/forms.py b/apps/search/forms.py index 5706b6d..6fbc67b 100644 --- a/apps/search/forms.py +++ b/apps/search/forms.py @@ -1,121 +1,122 @@ from datetime import date from django.conf import settings from django import forms from product_details import product_details from product_details.v...
fwenzel/reporter
0403b847a9276af8978001006f19bbe858bbc521
Add ideas to mobile statistics tab (bug 663512)
diff --git a/apps/dashboard/templates/dashboard/mobile/overview.html b/apps/dashboard/templates/dashboard/mobile/overview.html index a22d02a..9c7c9c2 100644 --- a/apps/dashboard/templates/dashboard/mobile/overview.html +++ b/apps/dashboard/templates/dashboard/mobile/overview.html @@ -1,21 +1,29 @@ <div class="block co...
fwenzel/reporter
bb08d1fcd4350ca939bc106c47bf724d021f64cd
Hide trends tab in mobile interface while Sites are disabled
diff --git a/media/css/input-mobile.css b/media/css/input-mobile.css index 58d006e..1fbd793 100644 --- a/media/css/input-mobile.css +++ b/media/css/input-mobile.css @@ -1,627 +1,635 @@ @font-face { font-family: MetaBlack; font-weight: bold; src: url(https://www.mozilla.com/img/fonts/MetaWebPro-Black.wof...