typo 5.0.3.98.1 → 5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES-5.1 +54 -0
- data/app/apis/meta_weblog_service.rb +7 -6
- data/app/controllers/accounts_controller.rb +2 -1
- data/app/controllers/admin/content_controller.rb +45 -3
- data/app/controllers/admin/pages_controller.rb +1 -1
- data/app/controllers/admin/textfilters_controller.rb +4 -4
- data/app/controllers/admin/users_controller.rb +14 -2
- data/app/controllers/application.rb +4 -1
- data/app/controllers/articles_controller.rb +1 -3
- data/app/controllers/backend_controller.rb +2 -0
- data/app/controllers/comments_controller.rb +6 -0
- data/app/helpers/admin/base_helper.rb +24 -26
- data/app/helpers/admin/feedback_helper.rb +0 -20
- data/app/helpers/application_helper.rb +1 -0
- data/app/models/article.rb +2 -0
- data/app/models/blog.rb +1 -0
- data/app/models/blog_sweeper.rb +8 -9
- data/app/models/page_cache.rb +1 -0
- data/app/models/tag.rb +2 -2
- data/app/models/user.rb +5 -1
- data/app/views/admin/blacklist/destroy.html.erb +1 -1
- data/app/views/admin/categories/destroy.html.erb +1 -1
- data/app/views/admin/comments/destroy.html.erb +1 -1
- data/app/views/admin/content/_articles.html.erb +4 -4
- data/app/views/admin/content/_attachment.html.erb +6 -7
- data/app/views/admin/content/_drafts.html.erb +6 -0
- data/app/views/admin/content/_form.html.erb +47 -34
- data/app/views/admin/content/destroy.html.erb +1 -1
- data/app/views/admin/content/edit.html.erb +1 -1
- data/app/views/admin/content/index.html.erb +1 -6
- data/app/views/admin/content/new.html.erb +1 -1
- data/app/views/admin/pages/_form.html.erb +4 -3
- data/app/views/admin/pages/_pages.html.erb +3 -3
- data/app/views/admin/pages/destroy.html.erb +1 -1
- data/app/views/admin/resources/destroy.html.erb +1 -1
- data/app/views/admin/settings/index.html.erb +10 -0
- data/app/views/admin/shared/_edit.html.erb +1 -6
- data/app/views/admin/textfilters/destroy.html.erb +3 -0
- data/app/views/admin/textfilters/edit.html.erb +3 -1
- data/app/views/admin/textfilters/index.html.erb +1 -1
- data/app/views/admin/textfilters/new.html.erb +3 -1
- data/app/views/admin/trackbacks/show.html.erb +1 -1
- data/app/views/admin/users/destroy.html.erb +1 -1
- data/app/views/admin/users/edit.html.erb +1 -5
- data/app/views/admin/users/index.html.erb +1 -1
- data/app/views/articles/_comment_failed.html.erb +3 -0
- data/config/initializers/access_rules.rb +3 -3
- data/db/migrate/070_add_users_to_non_admins.rb +17 -0
- data/installer/rails_installer_defaults.yml +1 -1
- data/lib/tasks/release.rake +3 -3
- data/lib/typo_version.rb +1 -1
- data/public/images/admin/cancel.png +0 -0
- data/public/images/admin/checked.png +0 -0
- data/public/images/admin/delete.png +0 -0
- data/public/images/admin/edit.png +0 -0
- data/public/images/admin/show.png +0 -0
- data/public/javascripts/controls.js +2 -0
- data/public/javascripts/dragdrop.js +2 -0
- data/public/javascripts/effects.js +6 -4
- data/public/javascripts/fckeditor/editor/_source/classes/fckcontextmenu.js +13 -8
- data/public/javascripts/fckeditor/editor/_source/classes/fckdataprocessor.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange.js +189 -79
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_gecko.js +4 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_ie.js +16 -15
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrangeiterator.js +30 -9
- data/public/javascripts/fckeditor/editor/_source/classes/fckeditingarea.js +108 -90
- data/public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js +22 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js +76 -38
- data/public/javascripts/fckeditor/editor/_source/classes/fckevents.js +7 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckhtmliterator.js +142 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckicon.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckkeystrokehandler.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenublock.js +8 -5
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenublockpanel.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenuitem.js +6 -5
- data/public/javascripts/fckeditor/editor/_source/classes/fckpanel.js +85 -38
- data/public/javascripts/fckeditor/editor/_source/classes/fckplugin.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckspecialcombo.js +7 -8
- data/public/javascripts/fckeditor/editor/_source/classes/fckstyle.js +180 -17
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbar.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbutton.js +9 -4
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +5 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +15 -4
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +5 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +13 -13
- data/public/javascripts/fckeditor/editor/_source/classes/fckw3crange.js +17 -13
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml_gecko.js +28 -13
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml_ie.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fck_othercommands.js +75 -19
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js +64 -8
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js +3 -1
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckfitwindow.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckindentcommands.js +5 -3
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckjustifycommands.js +6 -6
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcklistcommands.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +3 -1
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +3 -1
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckshowblocks.js +7 -9
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +4 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +4 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckstylecommand.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktablecommand.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +28 -10
- data/public/javascripts/fckeditor/editor/_source/fckconstants.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/fckeditorapi.js +21 -13
- data/public/javascripts/fckeditor/editor/_source/fckjscoreextensions.js +5 -5
- data/public/javascripts/fckeditor/editor/_source/fckscriptloader.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/internals/fck.js +148 -38
- data/public/javascripts/fckeditor/editor/_source/internals/fck_contextmenu.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/internals/fck_gecko.js +45 -47
- data/public/javascripts/fckeditor/editor/_source/internals/fck_ie.js +50 -17
- data/public/javascripts/fckeditor/editor/_source/internals/fckbrowserinfo.js +4 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckcodeformatter.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckcommands.js +28 -28
- data/public/javascripts/fckeditor/editor/_source/internals/fckconfig.js +12 -13
- data/public/javascripts/fckeditor/editor/_source/internals/fckdebug.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckdialog.js +211 -15
- data/public/javascripts/fckeditor/editor/_source/internals/fckdocumentprocessor.js +63 -39
- data/public/javascripts/fckeditor/editor/_source/internals/fckdomtools.js +177 -37
- data/public/javascripts/fckeditor/editor/_source/internals/fcklanguagemanager.js +2 -1
- data/public/javascripts/fckeditor/editor/_source/internals/fcklisthandler.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fcklistslib.js +5 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckplugins.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckregexlib.js +5 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection_gecko.js +36 -27
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection_ie.js +91 -17
- data/public/javascripts/fckeditor/editor/_source/internals/fckstyles.js +22 -13
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler.js +15 -15
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_ie.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbaritems.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbarset.js +32 -6
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools.js +181 -22
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools_gecko.js +19 -7
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools_ie.js +8 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckundo.js +8 -5
- data/public/javascripts/fckeditor/editor/_source/internals/fckurlparams.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml.js +116 -61
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_gecko.js +6 -10
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_ie.js +51 -56
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtmlentities.js +1 -1
- data/public/javascripts/fckeditor/editor/css/fck_editorarea.css +3 -2
- data/public/javascripts/fckeditor/editor/css/fck_internal.css +19 -2
- data/public/javascripts/fckeditor/editor/css/fck_showtableborders_gecko.css +8 -1
- data/public/javascripts/fckeditor/editor/css/images/fck_plugin.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css +8 -1
- data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.js +199 -26
- data/public/javascripts/fckeditor/editor/dialog/fck_about.html +20 -14
- data/public/javascripts/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_anchor.html +15 -10
- data/public/javascripts/fckeditor/editor/dialog/fck_button.html +9 -14
- data/public/javascripts/fckeditor/editor/dialog/fck_checkbox.html +8 -13
- data/public/javascripts/fckeditor/editor/dialog/fck_colorselector.html +4 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_docprops.html +6 -6
- data/public/javascripts/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_flash.html +9 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash.js +18 -11
- data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +7 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_form.html +7 -4
- data/public/javascripts/fckeditor/editor/dialog/fck_hiddenfield.html +12 -15
- data/public/javascripts/fckeditor/editor/dialog/fck_image.html +9 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image.js +24 -12
- data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image_preview.html +24 -18
- data/public/javascripts/fckeditor/editor/dialog/fck_link.html +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_link/fck_link.js +41 -20
- data/public/javascripts/fckeditor/editor/dialog/fck_listprop.html +8 -4
- data/public/javascripts/fckeditor/editor/dialog/fck_paste.html +53 -54
- data/public/javascripts/fckeditor/editor/dialog/fck_radiobutton.html +8 -13
- data/public/javascripts/fckeditor/editor/dialog/fck_replace.html +157 -79
- data/public/javascripts/fckeditor/editor/dialog/fck_select.html +14 -11
- data/public/javascripts/fckeditor/editor/dialog/fck_select/fck_select.js +2 -2
- data/public/javascripts/fckeditor/editor/dialog/fck_smiley.html +9 -4
- data/public/javascripts/fckeditor/editor/dialog/fck_source.html +5 -2
- data/public/javascripts/fckeditor/editor/dialog/fck_specialchar.html +9 -6
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages.html +2 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +3 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +5 -2
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +2 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +0 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_table.html +10 -5
- data/public/javascripts/fckeditor/editor/dialog/fck_tablecell.html +8 -6
- data/public/javascripts/fckeditor/editor/dialog/fck_template.html +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_textarea.html +10 -11
- data/public/javascripts/fckeditor/editor/dialog/fck_textfield.html +10 -14
- data/public/javascripts/fckeditor/editor/dtd/fck_dtd_test.html +0 -2
- data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10strict.js +2 -2
- data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10transitional.js +3 -3
- data/public/javascripts/fckeditor/editor/fckdebug.html +1 -1
- data/public/javascripts/fckeditor/editor/fckdialog.html +660 -213
- data/public/javascripts/fckeditor/editor/fckeditor.html +66 -16
- data/public/javascripts/fckeditor/editor/fckeditor.original.html +70 -16
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.css +2 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.html +37 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +33 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmfolders.html +2 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +3 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmupload.html +2 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/common.js +34 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js +3 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx +5 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx +5 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl +50 -4
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/connector.cgi +2 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/io.pl +14 -4
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi +2 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl +23 -4
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py +43 -32
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py +16 -16
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckcommands.py +26 -9
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckconnector.py +2 -2
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckoutput.py +40 -9
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckutil.py +20 -21
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/htaccess.txt +2 -2
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/upload.py +13 -13
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/wsgi.py +3 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/zope.py +4 -5
- data/public/javascripts/fckeditor/editor/filemanager/connectors/test.html +34 -1
- data/public/javascripts/fckeditor/editor/filemanager/connectors/uploadtest.html +47 -4
- data/public/javascripts/fckeditor/editor/js/fckadobeair.js +176 -0
- data/public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js +77 -77
- data/public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js +74 -74
- data/public/javascripts/fckeditor/editor/lang/_translationstatus.txt +55 -54
- data/public/javascripts/fckeditor/editor/lang/af.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ar.js +16 -17
- data/public/javascripts/fckeditor/editor/lang/bg.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/bn.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/bs.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ca.js +27 -28
- data/public/javascripts/fckeditor/editor/lang/cs.js +18 -19
- data/public/javascripts/fckeditor/editor/lang/da.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/de.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/el.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en-au.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en-ca.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en-uk.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/eo.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/es.js +34 -35
- data/public/javascripts/fckeditor/editor/lang/et.js +32 -33
- data/public/javascripts/fckeditor/editor/lang/eu.js +32 -33
- data/public/javascripts/fckeditor/editor/lang/fa.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/fi.js +15 -16
- data/public/javascripts/fckeditor/editor/lang/fo.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/fr-ca.js +515 -0
- data/public/javascripts/fckeditor/editor/lang/fr.js +5 -6
- data/public/javascripts/fckeditor/editor/lang/gl.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/he.js +15 -16
- data/public/javascripts/fckeditor/editor/lang/hi.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/hr.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/hu.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/it.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ja.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/km.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ko.js +25 -26
- data/public/javascripts/fckeditor/editor/lang/lt.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/lv.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/mn.js +199 -200
- data/public/javascripts/fckeditor/editor/lang/ms.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/nb.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/nl.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/no.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/pl.js +51 -52
- data/public/javascripts/fckeditor/editor/lang/pt-br.js +16 -17
- data/public/javascripts/fckeditor/editor/lang/pt.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ro.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ru.js +31 -32
- data/public/javascripts/fckeditor/editor/lang/sk.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/sl.js +39 -40
- data/public/javascripts/fckeditor/editor/lang/sr-latn.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/sr.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/sv.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/th.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/tr.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/uk.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/vi.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/zh-cn.js +2 -3
- data/public/javascripts/fckeditor/editor/lang/zh.js +1 -2
- data/public/javascripts/fckeditor/editor/plugins/autogrow/fckplugin.js +9 -2
- data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.html +1 -1
- data/public/javascripts/fckeditor/editor/plugins/bbcode/fckplugin.js +2 -2
- data/public/javascripts/fckeditor/editor/plugins/dragresizetable/fckplugin.js +35 -11
- data/public/javascripts/fckeditor/editor/plugins/placeholder/fck_placeholder.html +10 -5
- data/public/javascripts/fckeditor/editor/plugins/placeholder/fckplugin.js +3 -3
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js +2 -2
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js +2 -2
- data/public/javascripts/fckeditor/editor/{filemanager/connectors/cfm/upload.cfm → plugins/placeholder/lang/es.js} +9 -13
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js +2 -2
- data/public/javascripts/fckeditor/editor/plugins/simplecommands/fckplugin.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/tablecommands/fckplugin.js +1 -1
- data/public/javascripts/fckeditor/editor/skins/_fckviewstrips.html +1 -1
- data/public/javascripts/fckeditor/editor/skins/default/fck_dialog.css +271 -8
- data/public/javascripts/fckeditor/editor/skins/default/fck_editor.css +2 -2
- data/public/javascripts/fckeditor/editor/skins/office2003/fck_dialog.css +270 -8
- data/public/javascripts/fckeditor/editor/skins/office2003/fck_editor.css +2 -2
- data/public/javascripts/fckeditor/editor/skins/silver/fck_dialog.css +270 -11
- data/public/javascripts/fckeditor/editor/skins/silver/fck_editor.css +2 -2
- data/public/javascripts/fckeditor/fckconfig.js +58 -55
- data/public/javascripts/fckeditor/fckeditor.js +99 -8
- data/public/javascripts/fckeditor/fckeditor.py +2 -4
- data/public/javascripts/fckeditor/fckpackager.xml +12 -12
- data/public/javascripts/fckeditor/fckstyles.xml +2 -5
- data/public/javascripts/fckeditor/fcktemplates.xml +1 -1
- data/public/javascripts/fckeditor/license.txt +1 -2
- data/public/javascripts/prototype.js +46 -101
- data/public/javascripts/scriptaculous.js +28 -17
- data/public/stylesheets/administration.css +5 -1
- data/themes/dirtylicious/about.markdown +3 -0
- data/themes/dirtylicious/images/body.jpg +0 -0
- data/themes/dirtylicious/images/container.jpg +0 -0
- data/themes/dirtylicious/images/gravatar.gif +0 -0
- data/themes/dirtylicious/images/header.jpg +0 -0
- data/themes/dirtylicious/images/li.gif +0 -0
- data/themes/dirtylicious/images/main.gif +0 -0
- data/themes/dirtylicious/images/nav.gif +0 -0
- data/themes/dirtylicious/images/quote.gif +0 -0
- data/themes/dirtylicious/images/spinner.gif +0 -0
- data/themes/dirtylicious/layouts/default.html.erb +60 -0
- data/themes/dirtylicious/preview.png +0 -0
- data/themes/dirtylicious/stylesheets/application.css +327 -0
- data/themes/dirtylicious/views/articles/_article.html.erb +33 -0
- data/themes/dirtylicious/views/articles/_comment.html.erb +14 -0
- data/themes/dirtylicious/views/articles/_comment_form.html.erb +37 -0
- data/themes/dirtylicious/views/articles/_comment_list.html.erb +7 -0
- data/themes/dirtylicious/views/articles/_trackback.html.erb +9 -0
- data/themes/dirtylicious/views/articles/comment_preview.html.erb +10 -0
- data/themes/dirtylicious/views/articles/index.html.erb +5 -0
- data/themes/dirtylicious/views/articles/read.html.erb +42 -0
- data/themes/dirtylicious/views/shared/_search.html.erb +16 -0
- data/themes/standard_issue/about.markdown +5 -0
- data/themes/standard_issue/images/img01.gif +0 -0
- data/themes/standard_issue/images/img02.gif +0 -0
- data/themes/standard_issue/images/img03.gif +0 -0
- data/themes/standard_issue/images/img04.jpg +0 -0
- data/themes/standard_issue/images/img05.gif +0 -0
- data/themes/standard_issue/images/img06.gif +0 -0
- data/themes/standard_issue/images/img07.gif +0 -0
- data/themes/standard_issue/images/img08.gif +0 -0
- data/themes/standard_issue/images/img09.gif +0 -0
- data/themes/standard_issue/images/img10.gif +0 -0
- data/themes/standard_issue/images/spacer.gif +0 -0
- data/themes/standard_issue/images/spinner.gif +0 -0
- data/themes/standard_issue/layouts/default.html.erb +59 -0
- data/themes/standard_issue/preview.png +0 -0
- data/themes/standard_issue/stylesheets/application.css +461 -0
- data/themes/standard_issue/views/articles/_article.html.erb +37 -0
- data/themes/standard_issue/views/articles/_comment.html.erb +12 -0
- data/themes/standard_issue/views/articles/_comment_form.html.erb +48 -0
- data/themes/standard_issue/views/articles/_comment_list.html.erb +7 -0
- data/themes/standard_issue/views/articles/_trackback.html.erb +9 -0
- data/themes/standard_issue/views/articles/comment_preview.html.erb +10 -0
- data/themes/standard_issue/views/articles/index.html.erb +5 -0
- data/themes/standard_issue/views/articles/read.html.erb +42 -0
- data/themes/standard_issue/views/shared/_search.html.erb +17 -0
- data/themes/standard_issue/views/theme/static_view_test.html.erb +1 -0
- data/themes/typographic/images/accept.gif +0 -0
- data/themes/typographic/images/accept50.gif +0 -0
- data/themes/typographic/images/bg_white.gif +0 -0
- data/themes/typographic/images/bg_wrapper.gif +0 -0
- data/themes/typographic/images/bullet_bottom.gif +0 -0
- data/themes/typographic/images/bullet_right.gif +0 -0
- data/themes/typographic/images/email_open.gif +0 -0
- data/themes/typographic/images/email_open50.gif +0 -0
- data/themes/typographic/images/meta.gif +0 -0
- data/themes/typographic/images/page_edit.gif +0 -0
- data/themes/typographic/images/page_edit50.gif +0 -0
- data/themes/typographic/images/spinner.gif +0 -0
- data/themes/typographic/images/tag.gif +0 -0
- data/themes/typographic/images/user.gif +0 -0
- data/themes/typographic/images/user50.gif +0 -0
- data/themes/typographic/images/world_link.gif +0 -0
- data/themes/typographic/images/world_link50.gif +0 -0
- data/themes/typographic/layouts/default.html.erb +5 -2
- data/themes/typographic/stylesheets/ie6.css +86 -0
- data/themes/typographic/views/articles/_article.html.erb +2 -2
- data/vendor/plugins/fckeditor/README +0 -7
- data/vendor/plugins/fckeditor/app/helpers/fckeditor_helper.rb +1 -3
- data/vendor/plugins/fckeditor/lib/fckeditor_version.rb +2 -2
- data/vendor/plugins/fckeditor/tasks/fckeditor_tasks.rake +1 -1
- data/vendor/plugins/fckeditor/test/fckeditor_test.rb +8 -0
- metadata +98 -66
- data/CHANGES-5.0.4 +0 -33
- data/SIDEBARS +0 -39
- data/app/views/admin/content/_quick_post.html.erb +0 -20
- data/db/schema.rb +0 -224
- data/public/.DS_Store +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/basexml.asp +0 -62
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/class_upload.asp +0 -353
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/commands.asp +0 -198
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/config.asp +0 -128
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/connector.asp +0 -88
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/io.asp +0 -222
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/upload.asp +0 -61
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/util.asp +0 -55
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc +0 -273
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm +0 -315
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm +0 -296
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm +0 -68
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm +0 -225
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm +0 -89
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm +0 -288
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm +0 -68
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm +0 -132
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/config.cfm +0 -183
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/connector.cfm +0 -31
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/image.cfc +0 -1325
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/config.lasso +0 -65
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/connector.lasso +0 -257
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/upload.lasso +0 -157
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/basexml.php +0 -93
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/commands.php +0 -245
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/config.php +0 -140
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/connector.php +0 -87
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/io.php +0 -272
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/phpcompat.php +0 -17
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/upload.php +0 -59
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/util.php +0 -185
- data/public/javascripts/fckeditor/fckeditor.afp +0 -161
- data/public/javascripts/fckeditor/fckeditor.asp +0 -235
- data/public/javascripts/fckeditor/fckeditor.cfc +0 -273
- data/public/javascripts/fckeditor/fckeditor.cfm +0 -210
- data/public/javascripts/fckeditor/fckeditor.lasso +0 -112
- data/test/mocks/themes/typographic/.DS_Store +0 -0
- data/themes/typographic/.DS_Store +0 -0
- data/vendor/plugins/audioscrobbler_sidebar/MAINTAINERS +0 -26
- data/vendor/plugins/audioscrobbler_sidebar/MIT-LICENSE +0 -21
- data/vendor/plugins/audioscrobbler_sidebar/README +0 -27
- data/vendor/plugins/audioscrobbler_sidebar/Rakefile +0 -22
- data/vendor/plugins/audioscrobbler_sidebar/init.rb +0 -5
- data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler.rb +0 -54
- data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler_sidebar.rb +0 -13
- data/vendor/plugins/audioscrobbler_sidebar/test/audioscrobbler_sidebar_test.rb +0 -8
- data/vendor/plugins/audioscrobbler_sidebar/views/content.rhtml +0 -10
@@ -0,0 +1,42 @@
|
|
1
|
+
<!--
|
2
|
+
<rdf:RDF
|
3
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
4
|
+
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
6
|
+
<rdf:Description
|
7
|
+
rdf:about=""
|
8
|
+
trackback:ping="<%= @article.trackback_url %>"
|
9
|
+
dc:title="<%=h @article.title.gsub(/-+/, '-') %>"
|
10
|
+
dc:identifier="<%= @article.permalink_url %>"
|
11
|
+
dc:description="<%=h (@article.html.strip_html[0..255]).gsub(/-+/, '-') %>"
|
12
|
+
dc:creator="<%= h @article.author %>"
|
13
|
+
dc:date="<%= @article.updated_at.xmlschema %>" />
|
14
|
+
</rdf:RDF>
|
15
|
+
-->
|
16
|
+
|
17
|
+
<%= render :partial => 'article', :object => @article %>
|
18
|
+
|
19
|
+
<% if @article.allow_pings? -%>
|
20
|
+
<h2 id="trackbacks">Trackbacks</h2>
|
21
|
+
<p>
|
22
|
+
Use the following link to trackback from your own site:<br />
|
23
|
+
<%= @article.trackback_url %>
|
24
|
+
</p>
|
25
|
+
|
26
|
+
<% unless @article.published_trackbacks.blank? -%>
|
27
|
+
<ol class="trackbacks">
|
28
|
+
<%= render(:partial => "trackback", :collection => @article.published_trackbacks) %>
|
29
|
+
</ol>
|
30
|
+
<% end -%>
|
31
|
+
<% end -%>
|
32
|
+
|
33
|
+
<% if @article.allow_comments? or @article.published_comments.size > 0 -%>
|
34
|
+
<h2 id="comments">Comments</h2>
|
35
|
+
<p><a href="#commentform">Leave a response</a></p>
|
36
|
+
|
37
|
+
<div id="comments_div">
|
38
|
+
<%= render :partial => "comment_list" %>
|
39
|
+
</div>
|
40
|
+
<% end -%>
|
41
|
+
|
42
|
+
<%= render :partial => 'comment_form' if @article.allow_comments? %>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<ul id="search" class="search">
|
2
|
+
<% form_tag({ :controller => 'articles', :action => 'search' },
|
3
|
+
{ :method => 'get', :id => 'sform' }) do -%>
|
4
|
+
<li><input type="text" id="q" name="q" value="" /></li>
|
5
|
+
<% end -%>
|
6
|
+
</ul>
|
7
|
+
<div id="loading" class="loading" style="display:none;"><%=_("Searching")%>...</div>
|
8
|
+
<div id="results" class="results"></div>
|
9
|
+
<%= observe_field 'q',
|
10
|
+
:url => { :controller => 'live', :action => 'search' },
|
11
|
+
:frequency => 1,
|
12
|
+
:loading => "Element.show('loading')",
|
13
|
+
:complete => "Element.hide('loading')",
|
14
|
+
:update => 'results',
|
15
|
+
:with => "'q=' + encodeURIComponent($F('q'))" %>
|
16
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,59 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<head>
|
4
|
+
<title><%=h page_title %></title>
|
5
|
+
<%= page_header %>
|
6
|
+
<%= stylesheet_link_tag '/stylesheets/theme/application.css', :media => 'all' %>
|
7
|
+
</head>
|
8
|
+
|
9
|
+
<body>
|
10
|
+
<!-- start header -->
|
11
|
+
<div id="header">
|
12
|
+
<div id="logo">
|
13
|
+
<h1><%= link_to this_blog.blog_name, this_blog.base_url %></h1>
|
14
|
+
<h2><%= this_blog.blog_subtitle %></h2>
|
15
|
+
</div>
|
16
|
+
<div id="menu">
|
17
|
+
<ul>
|
18
|
+
<li class="page_item <%= 'current_page_item' if (controller.controller_name == "articles" and controller.action_name == "index") %>">
|
19
|
+
<%= link_to _("Home"), this_blog.base_url %>
|
20
|
+
</li>
|
21
|
+
<li class="page_item <%= 'current_page_item' if (controller.action_name != 'index' and controller.action_name != 'view_page') %>">
|
22
|
+
<%= link_to _("Articles"), {:controller => "articles", :action => "archives"} if (controller.controller_name != "index" )%>
|
23
|
+
</li>
|
24
|
+
<li class="page_item <%= 'current_page_item' if (controller.controller_name == "articles" and controller.action_name == "view_page" and params[:name].to_s == 'about') %>">
|
25
|
+
<%= link_to _("About"), this_blog.base_url + "/pages/about" %>
|
26
|
+
</li>
|
27
|
+
</ul>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
<!-- end header -->
|
31
|
+
|
32
|
+
<div id="page">
|
33
|
+
<div id="content">
|
34
|
+
<%= @content_for_layout %>
|
35
|
+
<%= javascript_tag 'show_dates_as_local_time()' %>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div id="sidebar">
|
39
|
+
<!-- search -->
|
40
|
+
<%= render :partial => 'shared/search' %>
|
41
|
+
|
42
|
+
<!-- sidebar components -->
|
43
|
+
<%= render_sidebars %>
|
44
|
+
</div>
|
45
|
+
<br style="clear:both;" />
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<div id="footer">
|
49
|
+
<div class="wrap">
|
50
|
+
<p id="legal">
|
51
|
+
<%= _("Designed by %s ported to typo by %s ", link_to ('NodeThirtyThree', 'http://www.nodethirtythree.com/'),
|
52
|
+
link_to ("Frédéric de Villamil", 'http://fredericdevillamil.com')) %> <br />
|
53
|
+
<%= _("Powered by %s", link_to ('typo', 'http://typosphere.org')) %>
|
54
|
+
</p>
|
55
|
+
</div>
|
56
|
+
</div>
|
57
|
+
</body>
|
58
|
+
</html>
|
59
|
+
|
Binary file
|
@@ -0,0 +1,461 @@
|
|
1
|
+
body {
|
2
|
+
margin: 100px 0 0 0;
|
3
|
+
padding: 0;
|
4
|
+
background: #FFFFFF url(../../images/theme/img01.gif) repeat-x;
|
5
|
+
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
|
6
|
+
font-size: 13px;
|
7
|
+
color: #333333;
|
8
|
+
}
|
9
|
+
|
10
|
+
h1, h2, h3 {
|
11
|
+
margin: 0;
|
12
|
+
text-transform: lowercase;
|
13
|
+
font-weight: normal;
|
14
|
+
color: #3E3E3E;
|
15
|
+
}
|
16
|
+
|
17
|
+
h1 {
|
18
|
+
font-size: 32px;
|
19
|
+
}
|
20
|
+
|
21
|
+
h2 {
|
22
|
+
font-size: 23px;
|
23
|
+
}
|
24
|
+
|
25
|
+
p, ul, ol {
|
26
|
+
margin: 0 0 2em 0;
|
27
|
+
text-align: justify;
|
28
|
+
line-height: 26px;
|
29
|
+
font-size: 11px;
|
30
|
+
}
|
31
|
+
|
32
|
+
a:link {
|
33
|
+
color: #7BAA0F;
|
34
|
+
}
|
35
|
+
|
36
|
+
a:hover, a:active {
|
37
|
+
text-decoration: none;
|
38
|
+
color: #003448;
|
39
|
+
}
|
40
|
+
|
41
|
+
a:visited {
|
42
|
+
color: #333333;
|
43
|
+
}
|
44
|
+
|
45
|
+
img {
|
46
|
+
border: none;
|
47
|
+
}
|
48
|
+
|
49
|
+
img.left {
|
50
|
+
float: left;
|
51
|
+
margin-right: 15px;
|
52
|
+
}
|
53
|
+
|
54
|
+
img.right {
|
55
|
+
float: right;
|
56
|
+
margin-left: 15px;
|
57
|
+
}
|
58
|
+
|
59
|
+
/* Form */
|
60
|
+
|
61
|
+
form {
|
62
|
+
margin: 0;
|
63
|
+
padding: 0;
|
64
|
+
}
|
65
|
+
|
66
|
+
fieldset {
|
67
|
+
margin: 0;
|
68
|
+
padding: 0;
|
69
|
+
border: none;
|
70
|
+
}
|
71
|
+
|
72
|
+
legend {
|
73
|
+
display: none;
|
74
|
+
}
|
75
|
+
|
76
|
+
input, textarea, select {
|
77
|
+
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
|
78
|
+
font-size: 13px;
|
79
|
+
color: #333333;
|
80
|
+
}
|
81
|
+
|
82
|
+
/* Header */
|
83
|
+
|
84
|
+
#header {
|
85
|
+
width: 850px;
|
86
|
+
height: 82px;
|
87
|
+
margin: 0 auto 40px auto;
|
88
|
+
background: url(../../images/theme/img03.gif) repeat-x left bottom;
|
89
|
+
}
|
90
|
+
|
91
|
+
#logo {
|
92
|
+
float: left;
|
93
|
+
}
|
94
|
+
|
95
|
+
#logo h1 {
|
96
|
+
font-size: 38px;
|
97
|
+
color: #494949;
|
98
|
+
}
|
99
|
+
|
100
|
+
#logo h1 sup {
|
101
|
+
vertical-align: text-top;
|
102
|
+
font-size: 24px;
|
103
|
+
}
|
104
|
+
|
105
|
+
#logo h1 a {
|
106
|
+
color: #494949;
|
107
|
+
}
|
108
|
+
|
109
|
+
#logo h2 {
|
110
|
+
margin-top: -10px;
|
111
|
+
font-size: 12px;
|
112
|
+
color: #A0A0A0;
|
113
|
+
}
|
114
|
+
|
115
|
+
#logo a {
|
116
|
+
text-decoration: none;
|
117
|
+
}
|
118
|
+
|
119
|
+
/* Menu */
|
120
|
+
|
121
|
+
#menu {
|
122
|
+
float: right;
|
123
|
+
}
|
124
|
+
|
125
|
+
#menu ul {
|
126
|
+
margin: 0;
|
127
|
+
padding: 15px 0 0 0;
|
128
|
+
list-style: none;
|
129
|
+
}
|
130
|
+
|
131
|
+
#menu li {
|
132
|
+
display: inline;
|
133
|
+
}
|
134
|
+
|
135
|
+
#menu a {
|
136
|
+
display: block;
|
137
|
+
float: left;
|
138
|
+
margin-left: 30px;
|
139
|
+
padding: 7px;
|
140
|
+
text-decoration: none;
|
141
|
+
font-size: 13px;
|
142
|
+
color: #000000;
|
143
|
+
}
|
144
|
+
|
145
|
+
#menu a:hover {
|
146
|
+
text-decoration: underline;
|
147
|
+
}
|
148
|
+
|
149
|
+
#menu .current_page_item a {
|
150
|
+
background: url(../../images/theme/img02.gif) repeat-x left bottom;
|
151
|
+
}
|
152
|
+
|
153
|
+
/* Page */
|
154
|
+
|
155
|
+
#page {
|
156
|
+
width: 850px;
|
157
|
+
margin: 0 auto;
|
158
|
+
}
|
159
|
+
|
160
|
+
/* Content */
|
161
|
+
|
162
|
+
#content {
|
163
|
+
float: left;
|
164
|
+
width: 575px;
|
165
|
+
}
|
166
|
+
|
167
|
+
.navigation {
|
168
|
+
}
|
169
|
+
|
170
|
+
.alignleft {
|
171
|
+
float: left;
|
172
|
+
}
|
173
|
+
|
174
|
+
.alignright {
|
175
|
+
float: right;
|
176
|
+
}
|
177
|
+
|
178
|
+
/* Post */
|
179
|
+
|
180
|
+
.atomentry {
|
181
|
+
}
|
182
|
+
|
183
|
+
.atomentry .title,
|
184
|
+
h2.title {
|
185
|
+
margin-bottom: 20px;
|
186
|
+
padding-bottom: 5px;
|
187
|
+
background: url(../../images/theme/img03.gif) repeat-x left bottom;
|
188
|
+
}
|
189
|
+
|
190
|
+
.atomentry .title a:link, .atomentry .title a:active, .atomentry .title a:visited {
|
191
|
+
text-decoration: none;
|
192
|
+
color: #333333;
|
193
|
+
}
|
194
|
+
|
195
|
+
.atomentry .title a:hover {
|
196
|
+
text-decoration: underline;
|
197
|
+
}
|
198
|
+
|
199
|
+
.atomentry .entry {
|
200
|
+
}
|
201
|
+
|
202
|
+
.atomentry .meta {
|
203
|
+
padding: 15px 0 60px 0;
|
204
|
+
background: url(../../images/theme/img03.gif) repeat-x;
|
205
|
+
}
|
206
|
+
|
207
|
+
.atomentry .meta p {
|
208
|
+
margin: 0;
|
209
|
+
line-height: normal;
|
210
|
+
color: #999999;
|
211
|
+
}
|
212
|
+
|
213
|
+
.atomentry .meta .author {
|
214
|
+
float: left;
|
215
|
+
}
|
216
|
+
|
217
|
+
.atomentry .meta .links {
|
218
|
+
float: right;
|
219
|
+
}
|
220
|
+
|
221
|
+
.atomentry .meta .more {
|
222
|
+
padding: 0 20px 0 18px;
|
223
|
+
background: url(../../images/theme/img06.gif) no-repeat left center;
|
224
|
+
}
|
225
|
+
|
226
|
+
.atomentry .meta .comments {
|
227
|
+
padding-left: 22px;
|
228
|
+
background: url(../../images/theme/img07.gif) no-repeat left center;
|
229
|
+
}
|
230
|
+
|
231
|
+
.atomentry .meta b {
|
232
|
+
display: none;
|
233
|
+
}
|
234
|
+
|
235
|
+
/* Comments */
|
236
|
+
|
237
|
+
#comments {
|
238
|
+
}
|
239
|
+
|
240
|
+
#comments p, #comments ol, #comments ul {
|
241
|
+
line-height: normal;
|
242
|
+
}
|
243
|
+
|
244
|
+
#comments input {
|
245
|
+
padding: 3px;
|
246
|
+
background: #ECECEC url(../../images/theme/img08.gif) repeat-x left bottom;
|
247
|
+
border: none;
|
248
|
+
text-transform: lowercase;
|
249
|
+
font-size: 11px;
|
250
|
+
color: #4F4F4F;
|
251
|
+
}
|
252
|
+
|
253
|
+
#comments #submit {
|
254
|
+
background: #FFFFFF url(../../images/theme/spacer.gif);
|
255
|
+
border: 1px solid #F0F0F0;
|
256
|
+
}
|
257
|
+
|
258
|
+
#comment_body {
|
259
|
+
width: 500px;
|
260
|
+
}
|
261
|
+
|
262
|
+
/* Respond */
|
263
|
+
|
264
|
+
#respond {
|
265
|
+
}
|
266
|
+
|
267
|
+
#respond p {
|
268
|
+
margin-bottom: 5px;
|
269
|
+
line-height: normal;
|
270
|
+
}
|
271
|
+
|
272
|
+
/* Sidebar */
|
273
|
+
|
274
|
+
#sidebar {
|
275
|
+
float: right;
|
276
|
+
width: 195px;
|
277
|
+
}
|
278
|
+
|
279
|
+
#sidebar ul {
|
280
|
+
margin: 0;
|
281
|
+
padding: 0;
|
282
|
+
list-style: none;
|
283
|
+
margin-bottom: 40px;
|
284
|
+
}
|
285
|
+
|
286
|
+
#sidebar li li {
|
287
|
+
margin: 0;
|
288
|
+
}
|
289
|
+
|
290
|
+
#sidebar h3 {
|
291
|
+
margin-bottom: 10px;
|
292
|
+
background: url(../../images/theme/img03.gif) repeat-x left bottom;
|
293
|
+
font-size: 16px;
|
294
|
+
font-weight: bold;
|
295
|
+
}
|
296
|
+
|
297
|
+
/* Search */
|
298
|
+
|
299
|
+
#search {
|
300
|
+
}
|
301
|
+
|
302
|
+
#search br {
|
303
|
+
display: none;
|
304
|
+
}
|
305
|
+
|
306
|
+
#search h2 {
|
307
|
+
margin-bottom: 20px;
|
308
|
+
}
|
309
|
+
|
310
|
+
#search input {
|
311
|
+
padding: 3px;
|
312
|
+
background: #ECECEC url(../../images/theme/img08.gif) repeat-x left bottom;
|
313
|
+
border: none;
|
314
|
+
text-transform: lowercase;
|
315
|
+
font-size: 11px;
|
316
|
+
color: #4F4F4F;
|
317
|
+
}
|
318
|
+
|
319
|
+
#search #q {
|
320
|
+
width: 120px;
|
321
|
+
margin-right: 5px;
|
322
|
+
background: #FFFFFF url(../../images/theme/spacer.gif);
|
323
|
+
border: 1px solid #F0F0F0;
|
324
|
+
}
|
325
|
+
|
326
|
+
/* Boxes */
|
327
|
+
|
328
|
+
.box1 {
|
329
|
+
padding: 20px;
|
330
|
+
background: url(../../images/theme/img05.gif) no-repeat;
|
331
|
+
}
|
332
|
+
|
333
|
+
.box2 {
|
334
|
+
color: #BABABA;
|
335
|
+
}
|
336
|
+
|
337
|
+
.box2 h2 {
|
338
|
+
margin-bottom: 15px;
|
339
|
+
background: url(../../images/theme/img10.gif) repeat-x left bottom;
|
340
|
+
font-size: 16px;
|
341
|
+
color: #FFFFFF;
|
342
|
+
}
|
343
|
+
|
344
|
+
.box2 ul {
|
345
|
+
margin: 0;
|
346
|
+
padding: 0;
|
347
|
+
list-style: none;
|
348
|
+
}
|
349
|
+
|
350
|
+
.box2 a:link, .box2 a:hover, .box2 a:active, .box2 a:visited {
|
351
|
+
color: #EDEDED;
|
352
|
+
}
|
353
|
+
|
354
|
+
/* Footer */
|
355
|
+
|
356
|
+
#footer {
|
357
|
+
height: 150px;
|
358
|
+
min-height: 150px;
|
359
|
+
padding: 100px 0 0 0;
|
360
|
+
background: #003448 url(../../images/theme/img09.gif) repeat-x;
|
361
|
+
}
|
362
|
+
|
363
|
+
html>body #footer {
|
364
|
+
height: auto;
|
365
|
+
}
|
366
|
+
|
367
|
+
#footer .wrap {
|
368
|
+
width: 850px;
|
369
|
+
margin: 0 auto;
|
370
|
+
}
|
371
|
+
|
372
|
+
#legal {
|
373
|
+
clear: both;
|
374
|
+
padding-top: 20px;
|
375
|
+
text-align: center;
|
376
|
+
color: #375C69;
|
377
|
+
}
|
378
|
+
|
379
|
+
#legal a {
|
380
|
+
color: #476B77;
|
381
|
+
}
|
382
|
+
|
383
|
+
#fbox1, #fbox2, #fbox3 {
|
384
|
+
float: left;
|
385
|
+
}
|
386
|
+
|
387
|
+
#fbox1 {
|
388
|
+
width: 310px;
|
389
|
+
}
|
390
|
+
|
391
|
+
#fbox2 {
|
392
|
+
width: 200px;
|
393
|
+
padding-left: 70px;
|
394
|
+
}
|
395
|
+
|
396
|
+
#fbox3 {
|
397
|
+
width: 200px;
|
398
|
+
padding-left: 70px;
|
399
|
+
}
|
400
|
+
|
401
|
+
bottom;
|
402
|
+
font-size: 16px;
|
403
|
+
color: #FFFFFF;
|
404
|
+
}
|
405
|
+
|
406
|
+
.box2 ul {
|
407
|
+
margin: 0;
|
408
|
+
padding: 0;
|
409
|
+
list-style: none;
|
410
|
+
}
|
411
|
+
|
412
|
+
.box2 a:link, .box2 a:hover, .box2 a:active, .box2 a:visited {
|
413
|
+
color: #EDEDED;
|
414
|
+
}
|
415
|
+
|
416
|
+
/* Footer */
|
417
|
+
|
418
|
+
#footer {
|
419
|
+
height: 150px;
|
420
|
+
min-height: 150px;
|
421
|
+
padding: 100px 0 0 0;
|
422
|
+
background: #003448 url(../../images/theme/img09.gif) repeat-x;
|
423
|
+
}
|
424
|
+
|
425
|
+
html>body #footer {
|
426
|
+
height: auto;
|
427
|
+
}
|
428
|
+
|
429
|
+
#footer .wrap {
|
430
|
+
width: 850px;
|
431
|
+
margin: 0 auto;
|
432
|
+
}
|
433
|
+
|
434
|
+
#legal {
|
435
|
+
clear: both;
|
436
|
+
padding-top: 20px;
|
437
|
+
text-align: center;
|
438
|
+
color: #375C69;
|
439
|
+
}
|
440
|
+
|
441
|
+
#legal a {
|
442
|
+
color: #476B77;
|
443
|
+
}
|
444
|
+
|
445
|
+
#fbox1, #fbox2, #fbox3 {
|
446
|
+
float: left;
|
447
|
+
}
|
448
|
+
|
449
|
+
#fbox1 {
|
450
|
+
width: 310px;
|
451
|
+
}
|
452
|
+
|
453
|
+
#fbox2 {
|
454
|
+
width: 200px;
|
455
|
+
padding-left: 70px;
|
456
|
+
}
|
457
|
+
|
458
|
+
#fbox3 {
|
459
|
+
width: 200px;
|
460
|
+
padding-left: 70px;
|
461
|
+
}
|