This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ActiveRecord::StatementInvalid (Mysql::ServerError::BadFieldError: Unknown column 'issues.position' in 'order clause': SELECT `issues`.* FROM `issues` INNER JOIN `issue_statuses` ON `issue_statuses`.id = `issues`.status_id WHERE ( | |
| parent_id is NULL | |
| and project_id = 1 | |
| and tracker_id in (5) | |
| and fixed_version_id is NULL | |
| and is_closed = 0) ORDER BY case when issues.position is null then 1 else 0 end ASC, case when issues.position is NULL then issues.id else issues.position end ASC): | |
| vendor/plugins/redmine_backlogs/app/models/story.rb:38:in `backlog' | |
| vendor/plugins/redmine_backlogs/app/models/story.rb:51:in `product_backlog' | |
| vendor/plugins/redmine_backlogs/app/controllers/rb_master_backlogs_controller.rb:7:in `show' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo port install sqlite3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [WARN] repository metadata for: 'snapshot maven2sample:maven2sample:0.0.1-SNAPSHOT' could not be retrieved from repository: localhost.maven2 due to an error: Unsupported Protocol: 'dav': Cannot find wagon which supports the requested protocol: dav | |
| [INFO] Repository 'localhost.maven2' will be blacklisted | |
| org.apache.maven.plugin.MojoExecutionException: Error deploying artifact: Unsupported Protocol: 'dav': Cannot find wagon which supports the requested protocol: dav | |
| at org.apache.maven.plugin.deploy.DeployMojo.execute(DeployMojo.java:195) | |
| at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:578) | |
| at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:508) | |
| at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:328) | |
| at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:151) | |
| at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:220) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ^[a-zA-Z]+$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Facebook Scripts --> | |
| <div id="fb-root"></div> | |
| <script type="text/javascript">// <![CDATA[ | |
| window.fbAsyncInit = function() { | |
| FB.init({ | |
| appId : 'アプリIDをここに書く', // ENTER your FB App ID | |
| channelUrl : 'http://daipresents.com/channel.php', // Channel File | |
| status : true, // check login status | |
| cookie : true, // enable cookies to allow the server to access the session |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript" src="http://connect.facebook.net/ja_JP/all.js#xfbml=1&appId=アプリID"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript" src="http://www.google.com/jsapi"></script> | |
| <script type="text/javascript">google.load("jquery", "1.5");</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 新しいウィンドウを開くリンク | |
| @driver.find_element(:xpath, "/html/body/div/a").click | |
| # ウィンドウ切り替え | |
| @driver.window_handles.each do |handle| | |
| @driver.switch_to.window handle | |
| end | |
| # ここで新しいウィンドウの操作をごにょごにょ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| chrome_driver = Selenium::WebDriver.for :chrome, :switches => %w[--proxy-server=ProxyServer:Port] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @driver.manage.timeouts.implicit_wait = 10 |